diff --git a/.github/workflows/publish-docker.yaml b/.github/workflows/publish-docker.yaml new file mode 100644 index 00000000..57a45847 --- /dev/null +++ b/.github/workflows/publish-docker.yaml @@ -0,0 +1,60 @@ +# Adapted from https://docs.github.com/en/actions/tutorials/publishing-packages/publishing-docker-images +name: Publish a Docker image + +# Configures this workflow to run every time a new release is created in the repository. +on: + release: + types: [ created ] + +# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. +jobs: + build-and-push-image: + runs-on: ubuntu-latest + # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. + permissions: + contents: read + packages: write + attestations: write + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + # Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here. + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels. + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages. + # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see [Usage](https://github.com/docker/build-push-action#usage) in the README of the `docker/build-push-action` repository. + # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step. + - name: Build and push Docker image + id: push + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + # This step generates an artifact attestation for the image, which is an unforgeable statement about where and how it was built. It increases supply chain security for people who consume the image. For more information, see [Using artifact attestations to establish provenance for builds](/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds). + - name: Generate artifact attestation + uses: actions/attest-build-provenance@v2 + with: + subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} + subject-digest: ${{ steps.push.outputs.digest }} + push-to-registry: true + diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1926c085..55047d38 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,7 @@ name: Build and Publish to PyPI or TestPyPI -on: push +on: + workflow_dispatch: jobs: build: diff --git a/.gitignore b/.gitignore index 823e17df..b194d901 100644 --- a/.gitignore +++ b/.gitignore @@ -71,4 +71,6 @@ dmypy.json .vscode/ # benchmarking results -.benchmarks/ \ No newline at end of file +.benchmarks/ + +.claude/ diff --git a/CHANGELOG.md b/CHANGELOG.md index cbc4983d..396c2077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,94 @@ ## [Unreleased][unreleased] +## [v1.3.0] + +**Release date: 2026-05-20** + +### Added + +* `` elements in the Wikidata extension XMLs now carry + `` tags, mirrored from their senses. Usage examples now + surface through the wn web API on synset endpoints and via + `included` in `/words` — e.g. L482 ("you") now returns + `"You, in the red shirt: what's your name?"` at + `/lexicons/omw-en:1.4/synsets/wikidata-en-L482-S1`. +* `extensions/wikidata-lexemes/create_extensions.py` falls back to + other-language glosses when the lemma language has no gloss + (lemma language → English → any available). Eliminates empty + `` tags across the 130 shipped XMLs. + +### Docs + +* README documents the `docker build` workaround for hosts that + inject IPv6 CIDR entries into `NO_PROXY` (e.g. OrbStack), which + breaks `httpx` during the in-image `wn download` step. + +### Fixed + +* Ruff `UP038` in `wn/_config.py`: replaced `isinstance(x, (str, Path))` + with the PEP-604 union form. + + +## [v1.2.1] + +**Release date: 2026-05-20** + +### Changed + +* Expanded `extensions/wikidata-lexemes/_pos_map.py` with ~120 new label + mappings so the regenerated extension XMLs use standard POS codes for + noun/verb/adjective/adverb/conjunction/adposition/numeral/pronoun/ + determiner/particle/phrase variants from Wikidata. The `x` bucket now + only holds genuinely non-POS labels (roots, plurals, sub-word affixes, + onomatopoeia, etc.). 5,195 entries across 66 languages moved from `x` + to a typed code. + +### Fixed + +* Normalize unmapped POS values in the shipped extension XMLs to `x` + (`OTHER`) to match `create_extensions.py`'s contract — previously + ~150 verbose Wikidata labels were stored as-is and ended up outside + `wn.constants.PARTS_OF_SPEECH`. Reported by Cursor Bugbot on PR #1. +* Lint failures on main: import-order in `wn/web.py` and two over-long + schema-hash comments in `wn/_db.py`. + + +## [v1.2.0] + +**Release date: 2026-05-20** + +Sign-language fork release built on top of upstream v1.1.0. + +### Added + +* Six function-word parts of speech in `wn.constants.PARTS_OF_SPEECH`: + `h` (pronoun), `d` (determiner), `m` (numeral), `i` (interjection), + `q` (interrogative), `y` (particle). +* `extensions/wikidata-lexemes/merge_extension.py`: utility that absorbs + a lexicon extension into its base lexicon, leaving one lexicon per + language in the database (addresses goodmami/wn#304 for this fork). +* `extensions/wikidata-lexemes/_pos_map.py`: shared Wikidata-label → + short-code map used by the extension generator. +* Web server now exposes pronunciation data on word forms (from + upstream's lexicon-element Pronunciation/Tag model). + +### Changed + +* Docker image now merges the Wikidata extension XMLs into their + base lexicons during build instead of loading them as separate + lexicons. +* `extensions/wikidata-lexemes/create_extensions.py` emits short + POS codes via `_pos_map.POS_MAP` and writes `partOfSpeech` on + `` elements. +* All 130 generated extension XMLs regenerated to use the new + short codes. + +### Fixed + +* Starlette lifespan handler in `wn.web`. + + ## [v1.1.0] **Release date: 2026-03-21** diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..6bb17c77 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,40 @@ +FROM python:3.11-slim + +WORKDIR /app + +# Install system dependencies +RUN apt-get update && apt-get install -y \ + python3-pip \ + python3-dev \ + build-essential \ + && rm -rf /var/lib/apt/lists/* + +# Install web server +RUN pip install uvicorn + +COPY wn/ wn/ +COPY pyproject.toml README.md LICENSE ./ +RUN pip install --no-cache-dir ".[web]" + +# Download the wordnet data and initialize the database +# CILI is for the Collaborative Interlingual Index +# ODENET is for the German WordNet (linked to CILI) +RUN python -m wn download omw:1.4 cili odenet:1.4 + +# Load data extensions and merge them into their base lexicons so the +# Open Multilingual Wordnet ends up with one lexicon per language. +COPY extensions/wikidata-lexemes/output ./extensions/wikidata-lexemes/output +COPY extensions/wikidata-lexemes/merge_extension.py ./extensions/wikidata-lexemes/merge_extension.py +RUN python extensions/wikidata-lexemes/merge_extension.py extensions/wikidata-lexemes/output/*.xml + +# Run ANALYZE so SQLite has query planner statistics baked into the image +RUN python -c "from wn._db import connect; c = connect(); c.execute('ANALYZE')" + +# Clean up the downloads directory +RUN rm -r ~/.wn_data/downloads + +# Expose the port +ENV PORT=8080 +EXPOSE 8080 + +CMD ["sh", "-c", "uvicorn wn.web:app --host 0.0.0.0 --port $PORT"] diff --git a/README.md b/README.md index d837f0ef..dbbf7c00 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,24 @@ uv add wn > >>> wn.reset_database() # initialize without re-adding; start from scratch > ``` +Or using **docker**: + +```sh +docker build -t wn . +docker run -it -p 8080:8080 wn +``` + +> [!NOTE] +> On hosts that inject IPv6 CIDR entries into `NO_PROXY` (e.g. OrbStack), +> `httpx` fails to parse the proxy config during `wn download` in the +> build. Override the proxy build args to work around it: +> ```sh +> docker build --network=host \ +> --build-arg NO_PROXY= --build-arg no_proxy= \ +> --build-arg HTTP_PROXY= --build-arg HTTPS_PROXY= \ +> -t wn . +> ``` + ## Getting Started First, download some data: diff --git a/docs/api/wn.constants.rst b/docs/api/wn.constants.rst index 663ababc..8bb58006 100644 --- a/docs/api/wn.constants.rst +++ b/docs/api/wn.constants.rst @@ -254,6 +254,12 @@ Parts of Speech - ``p`` -- Adposition - ``x`` -- Other - ``u`` -- Unknown + - ``h`` -- Pronoun + - ``d`` -- Determiner + - ``m`` -- Numeral + - ``i`` -- Interjection + - ``q`` -- Interrogative + - ``y`` -- Particle .. autodata:: NOUN .. autodata:: VERB @@ -280,6 +286,35 @@ Parts of Speech .. autodata:: OTHER .. autodata:: UNKNOWN +.. autodata:: PRONOUN +.. data:: PRON + + Alias of :py:data:`PRONOUN` + +.. autodata:: DETERMINER +.. data:: DET + + Alias of :py:data:`DETERMINER` + +.. autodata:: NUMERAL +.. data:: NUM + + Alias of :py:data:`NUMERAL` + +.. autodata:: INTERJECTION +.. data:: INTJ + + Alias of :py:data:`INTERJECTION` + +.. autodata:: INTERROGATIVE +.. data:: INTRG + + Alias of :py:data:`INTERROGATIVE` + +.. autodata:: PARTICLE +.. data:: PART + + Alias of :py:data:`PARTICLE` Adjective Positions diff --git a/extensions/wikidata-lexemes/.gitignore b/extensions/wikidata-lexemes/.gitignore new file mode 100644 index 00000000..11194594 --- /dev/null +++ b/extensions/wikidata-lexemes/.gitignore @@ -0,0 +1,2 @@ +latest-lexemes.json.bz2 +extras/ diff --git a/extensions/wikidata-lexemes/README.md b/extensions/wikidata-lexemes/README.md new file mode 100644 index 00000000..2beea109 --- /dev/null +++ b/extensions/wikidata-lexemes/README.md @@ -0,0 +1,73 @@ +# Wikidata Lexemes + +Our multilingual wordnet covers nouns, verbs, adjectives, and adverbs well, but lacks function words (prepositions, conjunctions, determiners, pronouns, etc.). + +This module creates Global WordNet LMF extension files using Wikidata Lexemes to fill that gap. + +## Setup + +Install dependencies: + +```bash +pip install ijson requests tqdm +``` + +Download the lexemes dump (~400MB): + +```bash +curl -O https://dumps.wikimedia.org/wikidatawiki/entities/latest-lexemes.json.bz2 +``` + +## Usage + +Run the extension generator: + +```bash +python create_extensions.py +``` + +This will: +1. Filter lexemes to exclude nouns, verbs, adjectives, adverbs, and phrases +2. Build an interlingual index (ILI) linking senses across languages via English +3. For lexemes with no Wikidata senses, fall back to the English Wiktionary REST API (filters out reference-only definitions, onomatopoeia, dialectal/archaic terms not covered by omw-en) +4. Generate XML extension files in `output/` for each language + +Set `LANG_FILTER=en` to restrict generation to a single language while iterating. + +### Caching + +Web requests are cached on disk under `extras/` (gitignored): +- `extras/wikidata/` — POS/language Q-code metadata +- `extras/wiktionary/` — Wiktionary REST `definition` responses +- `extras/wiktionary-cats/` — Wiktionary page categories (action API) + +To force a refresh of a cached entry, delete the corresponding file. + +## Output + +The script generates ~130 language-specific XML files in Global WordNet LMF format: +- `extensions/en.xml` - English +- `extensions/de.xml` - German +- `extensions/ja.xml` - Japanese +- etc. + +Each file contains lexical entries with: +- Lemma and part of speech (short WN-LMF codes — `h` pronoun, `d` determiner, `m` numeral, `i` interjection, `q` interrogative, `y` particle, plus the existing `n/v/a/r/s/t/c/p/x`) +- Sense definitions and glosses +- Usage examples (where available) +- Sense relations (synonyms, antonyms, hypernyms, hyponyms) +- "Interlingual index" like links to English senses + +## Loading into the database + +`wn.add(file.xml)` stores an extension as a separate lexicon. To get one +lexicon per language instead, use the bundled merge utility: + +```bash +python merge_extension.py output/*.xml +``` + +It calls `wn.add` and then rewrites the database so the extension's +entries, senses and synsets belong to the base lexicon (e.g. `omw-en:1.4`), +and deletes the now-empty extension lexicon row. See +[goodmami/wn#304](https://github.com/goodmami/wn/issues/304) for context. diff --git a/extensions/wikidata-lexemes/__init__.py b/extensions/wikidata-lexemes/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/extensions/wikidata-lexemes/_omw_en.py b/extensions/wikidata-lexemes/_omw_en.py new file mode 100644 index 00000000..3ba7918a --- /dev/null +++ b/extensions/wikidata-lexemes/_omw_en.py @@ -0,0 +1,17 @@ +"""Cached omw-en lemma → POS coverage.""" +from functools import cache + + +@cache +def omw_en_pos() -> dict[str, frozenset[str]]: + """Return {lemma_lower: frozenset of WN POSes}. Empty if omw-en unavailable.""" + try: + import wn + en = wn.Wordnet(lexicon="omw-en") + except Exception: + return {} + by_lemma: dict[str, set[str]] = {} + for word in en.words(): + for form in (word.lemma(), *word.forms()): + by_lemma.setdefault(form.lower(), set()).add(word.pos) + return {lemma: frozenset(pos) for lemma, pos in by_lemma.items()} diff --git a/extensions/wikidata-lexemes/_pos_map.py b/extensions/wikidata-lexemes/_pos_map.py new file mode 100644 index 00000000..03c93d52 --- /dev/null +++ b/extensions/wikidata-lexemes/_pos_map.py @@ -0,0 +1,209 @@ +"""Map verbose Wikidata POS labels to short WN-LMF POS codes.""" +from wn.constants import ( + ADJ, + ADP, + ADV, + CONJ, + DET, + INTERROGATIVE, + INTJ, + NOUN, + NUM, + OTHER, + PART, + PHRASE, + PRON, + VERB, +) + +# Content POS codes: those that omw-en covers natively. Used to decide +# whether a SKIP_POS-classified Wikidata lemma should still be included +# because omw-en doesn't have it under that POS. +CONTENT_TARGETS = frozenset({NOUN, VERB, ADJ, ADV}) + +POS_MAP: dict[str, str] = { + # --- Pronoun (h) --- + "pronoun": PRON, + "personal pronoun": PRON, + "possessive determiner": PRON, + "reflexive personal pronoun": PRON, + "reflexive pronoun": PRON, + "reciprocal pronoun": PRON, + "interrogative pronoun": PRON, + "indefinite pronoun": PRON, + "relative pronoun": PRON, + "demonstrative pronoun": PRON, + "definite pronoun": PRON, + "pronominal locution": PRON, + "possessive pronoun": PRON, + "subject pronoun": PRON, + "object pronoun": PRON, + "resumptive pronoun": PRON, + "distributive pronoun": PRON, + "determinative pronoun": PRON, + "pro-form": PRON, + # --- Determiner (d) --- + "determiner": DET, + "definite article": DET, + "indefinite article": DET, + "demonstrative determiner": DET, + "definite determiner": DET, + "indefinite determiner": DET, + "interrogative determinant": DET, + "demonstrative": DET, + "article": DET, + "quantifier": DET, + "partitive": DET, + # --- Noun (n) --- + "noun": NOUN, + "proper noun": NOUN, + "common noun": NOUN, + "abstract noun": NOUN, + "compound noun": NOUN, + "count noun": NOUN, + "mass noun": NOUN, + "personal noun": NOUN, + "agent noun": NOUN, + "locative noun": NOUN, + "indeclinable noun": NOUN, + "verbal noun": NOUN, + "plurale tantum": NOUN, + "noun class": NOUN, + "nominal": NOUN, + "name": NOUN, + "given name": NOUN, + "family name": NOUN, + "location": NOUN, + "jukugo": NOUN, # Japanese kanji compound noun + # --- Verb (v) --- + "verb": VERB, + "proper verb": VERB, + "phrasal verb": VERB, + "auxiliary verb": VERB, + "japanese auxiliary verb": VERB, + "passive verb": VERB, + "nominalized verb": VERB, + "copula": VERB, + "preverb": VERB, + "verbaliser": VERB, + "participle": VERB, + "present participle": VERB, + "gerund": VERB, + "transgressive": VERB, + "converb": VERB, + "past tense": VERB, + "imperative form": VERB, + "infinitive": VERB, + # --- Adjective (a) --- + "adjective": ADJ, + "satellite adjective": ADJ, + "proper adjective": ADJ, + "prenominal adjective": ADJ, + "adnominal adjective": ADJ, + "na-adjective": ADJ, + "true adjective": ADJ, + "demonstrative adjective": ADJ, + "possessive adjective": ADJ, + "relative adjective": ADJ, + "reflexive adjective": ADJ, + "reflexive possessive adjective": ADJ, + "indefinite adjective": ADJ, + "numeral adjective": ADJ, + "pronominal adjective": ADJ, + "interrogative adjective": ADJ, + "predicative": ADJ, + "nominal modifier": ADJ, + # --- Adverb (r) --- + "adverb": ADV, + "adverbial phrase": ADV, + "adverbial locution": ADV, + "adverbial particle": ADV, + "interrogative adverb": ADV, + "prepositional adverb": ADV, + "postpositive adverb": ADV, + "demonstrative adverb": ADV, + "modal adverb": ADV, + "correlative adverb": ADV, + "pronominal adverb": ADV, + "predicative adverb": ADV, + "intensifier": ADV, + "adverbial modifier": ADV, + "verbal modifier": ADV, + # --- Adposition (p) --- + "preposition": ADP, + "prepositional locution": ADP, + "postposition": ADP, + "ambiposition": ADP, + "adposition": ADP, + "localiser": ADP, + # --- Conjunction (c) --- + "conjunction": CONJ, + "coordinating conjunction": CONJ, + "subordinating conjunction": CONJ, + "concessive conjunction": CONJ, + "complementizer": CONJ, + "linker": CONJ, + "adversative linker": CONJ, + # --- Numeral (m) --- + "numeral": NUM, + "number": NUM, + "digit": NUM, + "ordinal numeral": NUM, + "classifier": NUM, + "chinese classifier": NUM, + "japanese counter word": NUM, + "measure word": NUM, + # --- Interjection (i) --- + "interjection": INTJ, + "idiomatic interjection": INTJ, + "greeting": INTJ, + # --- Interrogative (q) --- + "interrogative word": INTERROGATIVE, + "interrogative expression": INTERROGATIVE, + "interrogative": INTERROGATIVE, + "question": INTERROGATIVE, + "question tag": INTERROGATIVE, + # --- Particle (y) --- + "grammatical particle": PART, + "infinitive marker": PART, + "modal particle": PART, + "negative particle": PART, + "emphatic particle": PART, + "vocative particle": PART, + "allocutive particle": PART, + "interrogative particle": PART, + "verbal particle": PART, + "japanese particle": PART, + "助字": PART, # Japanese for "auxiliary character" — grammatical particle + "clitic": PART, + "enclitic": PART, + "proclitic": PART, + "mesoclitic": PART, + "object marker": PART, + "proper noun marker": PART, + "honorific particle": PART, + "exceptive particle": PART, + # --- Phrase (t) --- + "phraseme": PHRASE, + "established collocation": PHRASE, + "fixed expression": PHRASE, + "latin phrase": PHRASE, + "infinitive phrase": PHRASE, + "verbal expression": PHRASE, + "popular saying": PHRASE, + "locution": PHRASE, + "postpositive locution": PHRASE, + "copulative locution": PHRASE, + "simile": PHRASE, + # --- Other (x) --- + # acronym/abbreviation, sub-word affixes, and labels that don't map + # cleanly onto a single POS all fall through to OTHER via the + # POS_MAP.get(..., OTHER) default in create_extensions.py / + # the normalizer. Listed explicitly only when present in input. + "acronym": OTHER, + "abbreviation": OTHER, +} + +CONTENT_POS_MAP: dict[str, str] = { + label: code for label, code in POS_MAP.items() if code in CONTENT_TARGETS +} diff --git a/extensions/wikidata-lexemes/_wikidata.py b/extensions/wikidata-lexemes/_wikidata.py new file mode 100644 index 00000000..7c3dca90 --- /dev/null +++ b/extensions/wikidata-lexemes/_wikidata.py @@ -0,0 +1,68 @@ +"""Cached Wikidata entity fetcher (used to resolve POS/language Q-codes).""" +import json +import re +from collections.abc import Callable +from functools import cache +from pathlib import Path + +import requests + +EXTRAS_DIR = Path(__file__).parent / "extras" / "wikidata" +USER_AGENT = ( + "WikidataLexemesBot/1.0 " + "(https://github.com/sign-language-processing/dictionary)" +) + + +def safe_filename(name: str, max_len: int = 80) -> str: + return re.sub(r"[^A-Za-z0-9_\-]", "_", name)[:max_len] or "_" + + +def cached_json_fetch(path: Path, fetch: Callable[[], dict]) -> dict: + try: + with open(path, encoding="utf-8") as f: + return json.load(f) + except FileNotFoundError: + pass + data = fetch() + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2) + return data + + +@cache +def fetch_wikidata_entity(q_code: str) -> dict: + def _fetch(): + url = f"https://www.wikidata.org/wiki/Special:EntityData/{q_code}.json" + response = requests.get( + url, headers={"User-Agent": USER_AGENT}, timeout=30, + ) + response.raise_for_status() + return response.json() + + data = cached_json_fetch(EXTRAS_DIR / f"{q_code}.json", _fetch) + entities = data["entities"] + return entities.get(q_code) or next(iter(entities.values())) + + +@cache +def get_label(q_code: str) -> str: + entity = fetch_wikidata_entity(q_code) + labels = entity.get("labels", {}) + if "en" in labels: + return labels["en"]["value"].lower() + if labels: + return next(iter(labels.values()))["value"].lower() + return q_code + + +@cache +def get_language_iso(q_code: str) -> str | None: + entity = fetch_wikidata_entity(q_code) + iso_claim = entity.get("claims", {}).get("P218", []) + if iso_claim: + datavalue = iso_claim[0].get("mainsnak", {}).get("datavalue") + if datavalue: + return datavalue["value"] + return None diff --git a/extensions/wikidata-lexemes/_wiktionary.py b/extensions/wikidata-lexemes/_wiktionary.py new file mode 100644 index 00000000..e5b47649 --- /dev/null +++ b/extensions/wikidata-lexemes/_wiktionary.py @@ -0,0 +1,335 @@ +"""Wiktionary REST fallback for Wikidata Lexemes that lack senses.""" +import html +import json +import re +import threading +import time +from concurrent.futures import ThreadPoolExecutor +from functools import cache +from pathlib import Path + +import requests + +from _omw_en import omw_en_pos +from _wikidata import USER_AGENT, cached_json_fetch, safe_filename + +_EXTRAS = Path(__file__).parent / "extras" +CACHE_DIR = _EXTRAS / "wiktionary" +CATS_DIR = _EXTRAS / "wiktionary-cats" + +# " terms" tags the whole word as that flavor (e.g. +# "English archaic terms" — the entire term is archaic). The looser +# " terms with senses" tag matches plenty of modern +# multi-sense words and is unsafe as a hard filter on its own. +_OLD_FRAGMENTS = ( + "archaic", "obsolete", "dated", "poetic", "literary", +) +_ALWAYS_EXCLUDE_FRAGMENTS = ( + "onomatopoeia", "dialectal", "internet slang", "eye dialect", +) + +WD_TO_WKT_POS: dict[str, tuple[str, ...]] = { + "pronoun": ("Pronoun",), + "personal pronoun": ("Pronoun",), + "reflexive pronoun": ("Pronoun",), + "reflexive personal pronoun": ("Pronoun",), + "reciprocal pronoun": ("Pronoun",), + "interrogative pronoun": ("Pronoun",), + "indefinite pronoun": ("Pronoun",), + "relative pronoun": ("Pronoun",), + "demonstrative pronoun": ("Pronoun",), + "definite pronoun": ("Pronoun",), + "subject pronoun": ("Pronoun",), + "object pronoun": ("Pronoun",), + "possessive determiner": ("Determiner", "Pronoun"), + "determiner": ("Determiner", "Article"), + "definite article": ("Article", "Determiner"), + "indefinite article": ("Article", "Determiner"), + "demonstrative determiner": ("Determiner",), + "conjunction": ("Conjunction",), + "coordinating conjunction": ("Conjunction",), + "subordinating conjunction": ("Conjunction",), + "concessive conjunction": ("Conjunction",), + "interjection": ("Interjection",), + "preposition": ("Preposition",), + "postposition": ("Postposition", "Preposition"), + "numeral": ("Numeral", "Number"), + "number": ("Number", "Numeral"), + "digit": ("Number", "Numeral"), + "particle": ("Particle",), + "infinitive marker": ("Particle",), + "grammatical particle": ("Particle",), + "interrogative word": ("Adverb", "Determiner", "Pronoun"), + "adverb": ("Adverb",), + "prepositional adverb": ("Adverb",), + "interrogative adverb": ("Adverb",), + "noun": ("Noun",), + "agent noun": ("Noun",), + "common noun": ("Noun",), + "verb": ("Verb",), + "auxiliary verb": ("Verb",), + "adjective": ("Adjective",), +} + + +def _def_cache_path(lemma: str, lang_iso: str) -> Path: + return CACHE_DIR / lang_iso / f"{safe_filename(lemma)}.json" + + +def _cats_cache_path(lemma: str, lang_iso: str) -> Path: + return CATS_DIR / lang_iso / f"{safe_filename(lemma)}.json" + + +@cache +def fetch_wiktionary(lemma: str, lang_iso: str) -> dict | None: + path = _def_cache_path(lemma, lang_iso) + try: + with open(path, encoding="utf-8") as f: + data = json.load(f) + return data or None + except FileNotFoundError: + pass + + url = f"https://{lang_iso}.wiktionary.org/api/rest_v1/page/definition/{lemma}" + try: + response = requests.get( + url, headers={"User-Agent": USER_AGENT}, timeout=30, + ) + except requests.RequestException: + return None + + if response.status_code == 404: + data = {} + elif response.ok: + try: + data = response.json() + except ValueError: + data = {} + else: + # Transient (429, 5xx, ...) — don't cache; retry next run. + return None + + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2) + return data or None + + +@cache +def fetch_wiktionary_categories(lemma: str, lang_iso: str) -> list[str]: + path = _cats_cache_path(lemma, lang_iso) + try: + with open(path, encoding="utf-8") as f: + return json.load(f) + except FileNotFoundError: + pass + result = _fetch_categories_batch([lemma], lang_iso) + return result.get(lemma, []) + + +_thread_local = threading.local() + + +def _session() -> requests.Session: + sess = getattr(_thread_local, "session", None) + if sess is None: + sess = requests.Session() + sess.headers.update({"User-Agent": USER_AGENT}) + _thread_local.session = sess + return sess + + +def _fetch_one_batch( + batch: list[str], lang_iso: str, +) -> dict[str, list[str]]: + url = f"https://{lang_iso}.wiktionary.org/w/api.php" + session = _session() + per_lemma: dict[str, list[str]] = {lemma: [] for lemma in batch} + title_to_input: dict[str, str] = {lemma: lemma for lemma in batch} + cont: dict[str, str] = {} + succeeded = False + + while True: + params = { + "action": "query", + "prop": "categories", + "format": "json", + "titles": "|".join(batch), + "clshow": "!hidden", + "cllimit": "max", + "redirects": "1", + **cont, + } + response = None + for attempt in range(3): + try: + response = session.get(url, params=params, timeout=60) + except requests.RequestException: + time.sleep(1 + attempt) + continue + if response.status_code == 429: + time.sleep(2 + 2 * attempt) + continue + break + + if response is None or not response.ok: + break + try: + data = response.json() + except ValueError: + break + + succeeded = True + for n in data.get("query", {}).get("normalized", []): + title_to_input[n["to"]] = n["from"] + for r in data.get("query", {}).get("redirects", []): + title_to_input[r["to"]] = title_to_input.get(r["from"], r["from"]) + + for page in data.get("query", {}).get("pages", {}).values(): + title = page.get("title") + original = title_to_input.get(title, title) + cats = [ + c["title"].replace("Category:", "") + for c in page.get("categories", []) + ] + per_lemma.setdefault(original, []).extend(cats) + + cont_block = data.get("continue", {}) + if "clcontinue" in cont_block: + cont = {"clcontinue": cont_block["clcontinue"]} + else: + break + + if not succeeded: + return {} + for lemma, cats in per_lemma.items(): + path = _cats_cache_path(lemma, lang_iso) + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(cats, f) + return per_lemma + + +def _fetch_categories_batch( + lemmas: list[str], lang_iso: str, +) -> dict[str, list[str]]: + """Action API sums categories across all pages in one response under + cllimit, so a single popular term (e.g. ``moo``, 60 cats) can starve the + rest of its batch. Keep batches small and follow ``clcontinue`` pagination. + Batches run in parallel.""" + if not lemmas: + return {} + batches = [lemmas[i:i + 5] for i in range(0, len(lemmas), 5)] + out: dict[str, list[str]] = {} + with ThreadPoolExecutor(max_workers=4) as ex: + for partial in ex.map(lambda b: _fetch_one_batch(b, lang_iso), batches): + out.update(partial) + return out + + +def prefetch_categories_batch(lemmas: list[str], lang_iso: str) -> None: + missing = [ + lemma for lemma in lemmas + if not _cats_cache_path(lemma, lang_iso).exists() + ] + if missing: + _fetch_categories_batch(missing, lang_iso) + + +def _is_archaic_en(lemma: str) -> bool: + """Drop English lemmas Wiktionary tags as onomatopoeic/dialectal (always), + or as archaic/obsolete/dated/poetic/literary AND omw-en doesn't carry them + in current use under any POS.""" + cats = fetch_wiktionary_categories(lemma, "en") + relevant = [c.lower() for c in cats if c.startswith("English ")] + if any(any(f in c for f in _ALWAYS_EXCLUDE_FRAGMENTS) for c in relevant): + return True + if not any(any(f in c for f in _OLD_FRAGMENTS) for c in relevant): + return False + return lemma.lower() not in omw_en_pos() + + +_CSS_RULE = re.compile(r"\.[A-Za-z][\w\-]*(?:\s*\.[A-Za-z][\w\-]*)*\s*\{[^}]*\}") +_LEMMA_OK = re.compile(r"^[A-Za-z][A-Za-z'\-]*$") +_REFERENCE_PREFIXES = ( + "alternative form of", "alternative spelling of", + "alternate form of", "alternate spelling of", + "initialism of", "abbreviation of", "acronym of", + "contraction of", "eye dialect of", + "obsolete form of", "obsolete spelling of", + "archaic form of", "archaic spelling of", + "pronunciation spelling of", + "synonym of", "plural of", + "past tense of", "past participle of", "present participle of", + "inflected form of", "misspelling of", + "informal form of", "informal spelling of", +) +_SOUND_PATTERNS = ( + "used to indicate the sound", + "used to represent the sound", + "indicating the sound of", + "imitating the sound", + "representing the sound", + "the characteristic sound", + "the sound made by", + "onomatopoeia", +) + + +def _strip(text: str) -> str: + text = re.sub(r"<[^>]+>", "", text) + text = _CSS_RULE.sub("", text) + text = html.unescape(text) + return re.sub(r"\s+", " ", text).strip() + + +def _is_reference_definition(definition: str) -> bool: + lower = definition.lower().lstrip() + return any(lower.startswith(p) for p in _REFERENCE_PREFIXES) + + +def _is_sound_definition(definition: str) -> bool: + lower = definition.lower() + return any(p in lower for p in _SOUND_PATTERNS) + + +def is_quality_lemma(lemma: str) -> bool: + if not _LEMMA_OK.match(lemma): + return False + return not (lemma.isupper() and len(lemma) > 1) + + +def wiktionary_definition( + lemma: str, wd_pos_label: str, lang_iso: str, + *, bypass_archaic: bool = False, +) -> tuple[str, list[str]] | None: + """Return (definition, examples) from Wiktionary for the lemma + POS.""" + if not is_quality_lemma(lemma): + return None + if lang_iso == "en" and not bypass_archaic and _is_archaic_en(lemma): + return None + + data = fetch_wiktionary(lemma, lang_iso) + if not data: + return None + + entries = data.get(lang_iso) or data.get("en") or [] + if not entries: + entries = next(iter(data.values()), []) + + acceptable = WD_TO_WKT_POS.get(wd_pos_label) + if not acceptable: + return None + + for entry in entries: + if entry.get("partOfSpeech") not in acceptable: + continue + for defn in entry.get("definitions", []): + definition = _strip(defn.get("definition", "")) + if not definition or _is_reference_definition(definition): + continue + if _is_sound_definition(definition): + continue + examples = [_strip(e) for e in defn.get("examples", []) if _strip(e)] + return definition, examples + return None diff --git a/extensions/wikidata-lexemes/create_extensions.py b/extensions/wikidata-lexemes/create_extensions.py new file mode 100644 index 00000000..47c0b40d --- /dev/null +++ b/extensions/wikidata-lexemes/create_extensions.py @@ -0,0 +1,540 @@ +#!/usr/bin/env python3 +import bz2 +import os +from concurrent.futures import ThreadPoolExecutor +from pathlib import Path +from typing import NamedTuple +from xml.sax.saxutils import escape as xml_escape + +import ijson +from _omw_en import omw_en_pos +from _pos_map import CONTENT_POS_MAP, POS_MAP +from _wikidata import get_label, get_language_iso +from _wiktionary import ( + fetch_wiktionary, + is_quality_lemma, + prefetch_categories_batch, + wiktionary_definition, +) +from tqdm import tqdm + +from wn.constants import OTHER + +LANG_FILTER = os.environ.get("LANG_FILTER", "").strip() or None +DATA_PATH = Path(__file__).parent / "latest-lexemes.json.bz2" +EXTENSIONS_DIR = Path(__file__).parent / "output" + +SKIP_POS = frozenset({ + # Covered in WordNet already + "noun", + "proper noun", + "verb", + "proper verb", # to Zoom, to Google + "phrasal verb", # get over, find out + "adverb", + "adjective", + "satellite adjective", + "proper adjective", + # Subword, less useful for us + "prefix", + "suffix", + "interfix", + "adjectival suffix", + "nominal suffix", + "verbal suffix", + "adverbial suffix", + "combining form", + "postpositive adjective", + "digraph", # two letters representing one sound + "contraction", + "letter", + "name suffix", + "symbol", + # Phrases + "phrase", + "saying", + "idiom", + "proverb", + "everyday collocation", + "interjectional locution", + "formulaic language", + "verbal locution", + "prepositional syntagma", + "phrasal template", + "adjectival phrase", + "noun phrase", + "verb phrase", + "nominal locution", + "multiword expression", + "conjunctive locution", + "conjunctive adverb", + "collocation", + "attributive locution", + "slogan", + # Entities + "initialism", + "demonym", + "national demonym", + "toponym", +}) + +SENSE_RELATIONS = { + "P5973": "similar", # synonym + "P5974": "antonym", # antonym + "P5975": "hyponym", # troponym of (more specific) + "P6593": "hypernym", # hyperonym (more general) +} + +ENGLISH_LANG_Q = "Q1860" +MODAL_VERB_Q = "Q560570" # P31 value — lexemes the dictionary should always cover + +# Wikidata grammatical-feature Q-codes that disqualify a form from emission. +NEGATION_Q = "Q1478451" +_SKIP_FORM_FEATURES = frozenset({NEGATION_Q}) + + +def _has_p31(lex: dict, target_q: str) -> bool: + for claim in lex.get("claims", {}).get("P31", []): + dv = claim.get("mainsnak", {}).get("datavalue") + if (dv and dv.get("type") == "wikibase-entityid" + and dv["value"]["id"] == target_q): + return True + return False + +# Languages whose omw lexicon ID isn't `omw-`. +_BASE_LEXICON_OVERRIDES = {"de": ("odenet", "1.4")} + + +def _escape(text: str) -> str: + return xml_escape(text, {'"': """, "'": "'"}) + + +def _stream_lexemes(): + with bz2.open(DATA_PATH, "rb") as f: + yield from ijson.items(f, "item") + + +def _has_relation_to_kept(lex: dict, kept_sense_ids: set[str]) -> bool: + for sense in lex.get("senses", []): + for prop in SENSE_RELATIONS: + for claim in sense.get("claims", {}).get(prop, []): + dv = claim.get("mainsnak", {}).get("datavalue") + if (dv and dv.get("type") == "wikibase-entityid" + and dv["value"]["id"] in kept_sense_ids): + return True + return False + + +# POS labels that even the content-gap escape should never resurrect. +# Brand names, place names, and people belong in encyclopaedias, not dictionaries. +_NEVER_GAP_FILL = frozenset({"proper noun", "proper verb", "proper adjective"}) + + +def _is_english_content_gap(lex: dict, pos_name: str) -> bool: + """English-only escape: a SKIP_POS-classified content-POS lemma stays in if + omw-en lacks it under that same POS. Skips proper-noun-derived lemmas + (any capitalised lemma, initialism, etc.) — those belong to encyclopaedic + rather than dictionary scope.""" + if lex.get("language") != ENGLISH_LANG_Q: + return False + if pos_name in _NEVER_GAP_FILL: + return False + wn_pos = CONTENT_POS_MAP.get(pos_name) + if not wn_pos: + return False + raw_lemma = lex.get("lemmas", {}).get("en", {}).get("value", "") + if not raw_lemma or raw_lemma[0].isupper(): + return False + return wn_pos not in omw_en_pos().get(raw_lemma.lower(), frozenset()) + + +def filter_lexemes() -> tuple[list[dict], set[tuple[str, str]]]: + """Stream the dump once. Keep lexemes whose POS isn't in SKIP_POS — with + one exception: English content-POS lemmas that omw-en doesn't already + have are kept (filling the gap). Abbreviations are buffered and kept + only if they have a sense relation to a kept sense. + + Dedupe by (lang_iso, lemma, pos_code) so downstream sense-relation targets + can't dangle: if a duplicate lexeme is dropped here, its sense IDs are + excluded from `kept_lang_senses` too. + """ + print("Step 1: Filtering lexemes...") + kept_sense_ids: set[str] = set() + kept_lang_senses: set[tuple[str, str]] = set() + seen_lemma_pos: set[tuple[str, str, str]] = set() + filtered: list[dict] = [] + pending_abbrev: list[dict] = [] + + def _try_keep(lex: dict, pos_name: str) -> bool: + lemmas = lex.get("lemmas", {}) + if not lemmas: + return False + # English-only: skip lexemes Wikidata hasn't cross-referenced against + # any dictionary (no claims at all) — those are usually niche slang. + if lex.get("language") == ENGLISH_LANG_Q and not lex.get("claims"): + return False + pos_code = POS_MAP.get(pos_name, OTHER) + accepted_for_any_lang = False + for lang_iso, lemma_obj in lemmas.items(): + lemma = lemma_obj.get("value", "") + # Multi-word lemmas that start with uppercase are usually + # proper-noun-derived (e.g. "Jesus Christ", "God bless you"). + if " " in lemma and lemma[:1].isupper(): + continue + key = (lang_iso, lemma, pos_code) + if key in seen_lemma_pos: + continue + seen_lemma_pos.add(key) + accepted_for_any_lang = True + for sense in lex.get("senses", []): + kept_sense_ids.add(sense["id"]) + kept_lang_senses.add((lang_iso, sense["id"])) + return accepted_for_any_lang + + for lex in tqdm(_stream_lexemes(), desc="Streaming"): + pos_q = lex.get("lexicalCategory") + if not pos_q: + continue + pos_name = get_label(pos_q) + if pos_name == "abbreviation": + pending_abbrev.append(lex) + continue + if pos_name in SKIP_POS: + keep_for_modal = ( + lex.get("language") == ENGLISH_LANG_Q + and _has_p31(lex, MODAL_VERB_Q) + ) + if not keep_for_modal and not _is_english_content_gap(lex, pos_name): + continue + if _try_keep(lex, pos_name): + filtered.append(lex) + + for lex in pending_abbrev: + if _has_relation_to_kept(lex, kept_sense_ids): + pos_name = get_label(lex["lexicalCategory"]) + if _try_keep(lex, pos_name): + filtered.append(lex) + + print(f" Kept {len(filtered)} lexemes, {len(kept_lang_senses)} sense pairs") + return filtered, kept_lang_senses + + +def _build_ili_index(lexemes: list[dict]) -> dict[str, str]: + print("Step 2: Building ILI index...") + english_senses: set[str] = set() + translations: dict[str, list[str]] = {} + for lexeme in tqdm(lexemes, desc="Indexing"): + is_english = lexeme.get("language") == ENGLISH_LANG_Q + for sense in lexeme.get("senses", []): + sense_id = sense["id"] + if is_english: + english_senses.add(sense_id) + for claim in sense.get("claims", {}).get("P5972", []): + dv = claim.get("mainsnak", {}).get("datavalue") + if dv and dv.get("type") == "wikibase-entityid": + translations.setdefault(sense_id, []).append(dv["value"]["id"]) + + ili_index: dict[str, str] = {sense_id: sense_id.lower() for sense_id in english_senses} + for sense_id, targets in translations.items(): + if sense_id in ili_index: + continue + for target in targets: + if target in english_senses: + ili_index[sense_id] = target.lower() + break + + print(f" English senses: {len(english_senses)}") + print(f" Senses with ILI: {len(ili_index)}") + return ili_index + + +class NormalizedSense(NamedTuple): + id: str + gloss: str + examples: list[str] + relations_xml: list[str] + + +def _pick_gloss(glosses: dict, lang_iso: str) -> str: + for candidate in (lang_iso, "en"): + text = glosses.get(candidate, {}).get("value", "") + if text: + return text + for entry in glosses.values(): + text = entry.get("value", "") + if text: + return text + return "" + + +def _extract_sense_examples(lexeme: dict, lang_iso: str) -> dict[str, list[str]]: + sense_examples: dict[str, list[str]] = {} + for claim in lexeme.get("claims", {}).get("P5831", []): + dv = claim.get("mainsnak", {}).get("datavalue") + if not dv or dv.get("type") != "monolingualtext": + continue + text_value = dv.get("value", {}) + if text_value.get("language") != lang_iso: + continue + example_text = text_value.get("text", "") + for qual in claim.get("qualifiers", {}).get("P6072", []): + qual_dv = qual.get("datavalue") + if qual_dv and qual_dv.get("type") == "wikibase-entityid": + sense_examples.setdefault(qual_dv["value"]["id"], []).append(example_text) + return sense_examples + + +def _sense_relations_xml( + sense: dict, lang_iso: str, kept_lang_senses: set[tuple[str, str]], +) -> list[str]: + relations = [] + for prop, rel_type in SENSE_RELATIONS.items(): + for claim in sense.get("claims", {}).get(prop, []): + dv = claim.get("mainsnak", {}).get("datavalue") + if not (dv and dv.get("type") == "wikibase-entityid"): + continue + target_id = dv["value"]["id"] + if (lang_iso, target_id) not in kept_lang_senses: + continue + target_synset = f"wikidata-{lang_iso}-{target_id}" + relations.append( + f' ' + ) + return relations + + +_LEADING_APOS = "'’ʼ‘" # ASCII, curly right, modifier-letter, curly left + + +def _extract_alt_forms(lexeme: dict, lang_iso: str, main_lemma: str) -> list[str]: + """Return alternative form spellings for this lexeme in `lang_iso`, + excluding the main lemma, negation forms, and apostrophe-leading + contractions (`'ll`, `'d`, `'s`, ...).""" + out: list[str] = [] + seen = {main_lemma} + for form in lexeme.get("forms", []): + if any(f in _SKIP_FORM_FEATURES for f in form.get("grammaticalFeatures", [])): + continue + rep = form.get("representations", {}).get(lang_iso, {}).get("value") + if not rep or rep in seen: + continue + if rep[0] in _LEADING_APOS: + continue + seen.add(rep) + out.append(rep) + return out + + +def _normalized_senses( + lexeme: dict, lemma: str, pos_name: str, lang_iso: str, + kept_lang_senses: set[tuple[str, str]], +) -> list[NormalizedSense]: + raw = lexeme.get("senses", []) + if raw: + sense_examples = _extract_sense_examples(lexeme, lang_iso) + return [ + NormalizedSense( + id=sense["id"], + gloss=_pick_gloss(sense.get("glosses", {}), lang_iso), + examples=sense_examples.get(sense["id"], []), + relations_xml=_sense_relations_xml(sense, lang_iso, kept_lang_senses), + ) + for sense in raw + ] + if not lemma or len(lemma) > 80: + return [] + result = wiktionary_definition( + lemma, pos_name, lang_iso, + bypass_archaic=_has_p31(lexeme, MODAL_VERB_Q), + ) + if not result: + return [] + definition, examples = result + return [NormalizedSense( + id=f"{lexeme['id']}-WKT1", + gloss=definition, + examples=examples, + relations_xml=[], + )] + + +def build_xml_entry( + lexeme: dict, lang_iso: str, + ili_index: dict[str, str], + kept_lang_senses: set[tuple[str, str]], +) -> tuple[str, list[str], str, str] | None: + """Return (entry_xml, synset_xml_list, lemma, pos_code) or None.""" + lemmas = lexeme.get("lemmas", {}) + if lang_iso not in lemmas: + return None + lemma = lemmas[lang_iso]["value"] + + pos_q = lexeme.get("lexicalCategory") + if not pos_q: + return None + pos_name = get_label(pos_q) + pos_code = POS_MAP.get(pos_name, OTHER) + + senses = _normalized_senses(lexeme, lemma, pos_name, lang_iso, kept_lang_senses) + if not senses: + return None + + sense_entries = [] + synset_entries = [] + for sense in senses: + synset_id = f"wikidata-{lang_iso}-{sense.id}" + ili = ili_index.get(sense.id, synset_id) + + sense_content = ( + f' \n' + f' {_escape(sense.gloss)}\n' + ) + for example in sense.examples: + sense_content += f' {_escape(example)}\n' + if sense.relations_xml: + sense_content += "\n".join(sense.relations_xml) + "\n" + sense_content += " " + sense_entries.append(sense_content) + + synset_content = ( + f' \n' + f' {_escape(sense.gloss)}\n' + ) + for example in sense.examples: + synset_content += f' {_escape(example)}\n' + synset_content += " " + synset_entries.append(synset_content) + + alt_forms = _extract_alt_forms(lexeme, lang_iso, lemma) + form_lines = "".join( + f'
\n' for form in alt_forms + ) + entry_xml = ( + f' \n' + f' \n' + + form_lines + + "\n".join(sense_entries) + + "\n " + ) + return entry_xml, synset_entries, lemma, pos_code + + +def _xml_header(lang_iso: str) -> str: + base_id, base_version = _BASE_LEXICON_OVERRIDES.get( + lang_iso, (f"omw-{lang_iso}", "1.4"), + ) + return f''' + + + + +''' + + +_XML_FOOTER = """ + +""" + + +def _wiktionary_task(lex: dict) -> tuple[str, str] | None: + if lex.get("senses"): + return None + lang_q = lex.get("language") + if not lang_q: + return None + lang_iso = get_language_iso(lang_q) + if not lang_iso or (LANG_FILTER and lang_iso != LANG_FILTER): + return None + lemma_obj = lex.get("lemmas", {}).get(lang_iso) + if not lemma_obj: + return None + lemma = lemma_obj["value"] + if not is_quality_lemma(lemma): + return None + return (lemma, lang_iso) + + +def prefetch_wiktionary(lexemes: list[dict]) -> None: + tasks = sorted({task for lex in lexemes if (task := _wiktionary_task(lex))}) + if not tasks: + return + print(f"Pre-fetching {len(tasks)} Wiktionary entries...") + with ThreadPoolExecutor(max_workers=16) as executor: + list(tqdm( + executor.map(lambda t: fetch_wiktionary(*t), tasks), + total=len(tasks), desc="Wiktionary defs", + )) + + en_lemmas = [lemma for lemma, iso in tasks if iso == "en"] + if en_lemmas: + print(f"Pre-fetching categories for {len(en_lemmas)} EN lemmas...") + prefetch_categories_batch(en_lemmas, "en") + + +def write_all_extensions( + lexemes: list[dict], + ili_index: dict[str, str], + kept_lang_senses: set[tuple[str, str]], +) -> None: + EXTENSIONS_DIR.mkdir(parents=True, exist_ok=True) + + file_handlers: dict[str, object] = {} + entry_counts: dict[str, int] = {} + synsets_by_lang: dict[str, list[str]] = {} + + print("Step 3: Writing all language extensions...") + try: + for lexeme in tqdm(lexemes, desc="Writing"): + lang_q = lexeme.get("language") + if not lang_q: + continue + lang_iso = get_language_iso(lang_q) + if not lang_iso: + continue + if LANG_FILTER and lang_iso != LANG_FILTER: + continue + + result = build_xml_entry(lexeme, lang_iso, ili_index, kept_lang_senses) + if not result: + continue + entry, synsets, lemma, pos_code = result + + handler = file_handlers.get(lang_iso) + if handler is None: + output_path = EXTENSIONS_DIR / f"{lang_iso}.xml" + handler = open(output_path, "w", encoding="utf-8") # noqa: SIM115 + handler.write(_xml_header(lang_iso)) + file_handlers[lang_iso] = handler + entry_counts[lang_iso] = 0 + synsets_by_lang[lang_iso] = [] + + handler.write(entry + "\n") + synsets_by_lang[lang_iso].extend(synsets) + entry_counts[lang_iso] += 1 + finally: + for lang_iso, handler in file_handlers.items(): + for synset in synsets_by_lang.get(lang_iso, []): + handler.write(synset + "\n") + handler.write(_XML_FOOTER) + handler.close() + + print(f" Wrote {len(file_handlers)} language files:") + for lang_iso in sorted(entry_counts): + print(f" {lang_iso}: {entry_counts[lang_iso]} entries") + + +def main() -> None: + lexemes, kept_lang_senses = filter_lexemes() + ili_index = _build_ili_index(lexemes) + prefetch_wiktionary(lexemes) + write_all_extensions(lexemes, ili_index, kept_lang_senses) + + +if __name__ == "__main__": + main() diff --git a/extensions/wikidata-lexemes/merge_extension.py b/extensions/wikidata-lexemes/merge_extension.py new file mode 100644 index 00000000..76a789d0 --- /dev/null +++ b/extensions/wikidata-lexemes/merge_extension.py @@ -0,0 +1,187 @@ +#!/usr/bin/env python3 +"""Merge a WN-LMF lexicon extension into its base lexicon. + +`wn.add()` stores an extension as a separate lexicon row, which means +queries against the base lexicon won't see the extension's entries. +This script loads the extension normally and then rewrites the +``lexicon_rowid`` columns of every content table so the extension's +rows appear under the base lexicon — leaving one lexicon per language +in the database. + +See https://github.com/goodmami/wn/issues/304 for the original motivation. + +Usage:: + + python merge_extension.py path/to/extension.xml [more.xml ...] +""" +from __future__ import annotations + +import logging +import re +import sys +from contextlib import contextmanager +from pathlib import Path + +import wn +from wn import lmf +from wn._db import connect +from wn._util import format_lexicon_specifier + +log = logging.getLogger("wn") + +_FIRST_ENTRY_ID_RE = re.compile(rb']*\bid="([^"]+)"') + +# Tables with a ``lexicon_rowid`` column. Keep in sync with wn/schema.sql. +_LEXICON_OWNED_TABLES = ( + "entries", + "forms", + "pronunciations", + "tags", + "synsets", + "synset_relations", + "definitions", + "synset_examples", + "senses", + "sense_relations", + "sense_synset_relations", + "sense_examples", + "counts", + "syntactic_behaviours", +) + +# Tables in _LEXICON_OWNED_TABLES that lack an index on lexicon_rowid in +# the shipped schema. We create a temporary index over the bulk merge so +# each UPDATE is O(rows-to-update) instead of O(table-size). +_UNINDEXED_TABLES = ( + "entries", + "pronunciations", + "tags", + "synsets", + "synset_relations", + "definitions", + "synset_examples", + "senses", + "sense_relations", + "sense_synset_relations", + "sense_examples", + "counts", +) + + +def _get_lexicon_rowid(cur, specifier: str) -> int | None: + row = cur.execute( + "SELECT rowid FROM lexicons WHERE specifier = ?", + (specifier,), + ).fetchone() + return row[0] if row else None + + +def _first_entry_id(xml_path: Path) -> str | None: + with open(xml_path, "rb") as fh: + match = _FIRST_ENTRY_ID_RE.search(fh.read()) + return match.group(1).decode("utf-8") if match else None + + +def _is_already_merged(cur, xml_path: Path, base_rowid: int) -> bool: + entry_id = _first_entry_id(xml_path) + if entry_id is None: + return False + return ( + cur.execute( + "SELECT 1 FROM entries WHERE id = ? AND lexicon_rowid = ?", + (entry_id, base_rowid), + ).fetchone() + is not None + ) + + +def merge_extension(xml_path: Path) -> None: + """Add *xml_path* and absorb it into its base lexicon.""" + infos = lmf.scan_lexicons(xml_path) + if not infos: + log.warning("%s: no lexicons found, skipping", xml_path) + return + + info = infos[0] + extends = info.get("extends") + if not extends: + log.info("%s: not a lexicon extension, loading as-is", xml_path) + wn.add(xml_path, progress_handler=None) + return + + ext_spec = format_lexicon_specifier(info["id"], info["version"]) + base_spec = format_lexicon_specifier(extends["id"], extends["version"]) + + conn = connect() + cur = conn.cursor() + + base_rowid = _get_lexicon_rowid(cur, base_spec) + if base_rowid is None: + log.info( + "skipping %s: base lexicon %s is not in the database", + ext_spec, + base_spec, + ) + return + + if _is_already_merged(cur, xml_path, base_rowid): + log.info("%s already merged into %s", ext_spec, base_spec) + return + + wn.add(xml_path, progress_handler=None) + + ext_rowid = _get_lexicon_rowid(cur, ext_spec) + if ext_rowid is None: + raise RuntimeError(f"failed to add extension {ext_spec}") + + with conn: + for table in _LEXICON_OWNED_TABLES: + cur.execute( + f"UPDATE {table} SET lexicon_rowid = ? WHERE lexicon_rowid = ?", + (base_rowid, ext_rowid), + ) + cur.execute( + "DELETE FROM lexicon_extensions WHERE extension_rowid = ?", + (ext_rowid,), + ) + cur.execute( + "DELETE FROM lexicon_dependencies WHERE dependent_rowid = ?", + (ext_rowid,), + ) + cur.execute("DELETE FROM lexicons WHERE rowid = ?", (ext_rowid,)) + + log.info("Merged %s into %s", ext_spec, base_spec) + + +@contextmanager +def _bulk_merge_indexes(conn): + for table in _UNINDEXED_TABLES: + conn.execute( + f"CREATE INDEX IF NOT EXISTS " + f"tmp_merge_{table}_lex ON {table}(lexicon_rowid)" + ) + try: + yield + finally: + for table in _UNINDEXED_TABLES: + conn.execute(f"DROP INDEX IF EXISTS tmp_merge_{table}_lex") + + +def main(argv: list[str]) -> int: + if not argv: + print(__doc__) + return 1 + + with _bulk_merge_indexes(connect()): + for arg in argv: + path = Path(arg) + if not path.exists(): + log.warning("skipping missing path: %s", path) + continue + merge_extension(path) + return 0 + + +if __name__ == "__main__": + logging.basicConfig(level=logging.INFO, format="%(message)s") + sys.exit(main(sys.argv[1:])) diff --git a/extensions/wikidata-lexemes/output/ab.xml b/extensions/wikidata-lexemes/output/ab.xml new file mode 100644 index 00000000..c1ef5ebe --- /dev/null +++ b/extensions/wikidata-lexemes/output/ab.xml @@ -0,0 +1,84 @@ + + + + + + + + + second-person feminine singular pronoun + + + + + + second-person masculine singular pronoun + + + + + + натуральное число + + + + + + the cardinal number occurring after 9 and before 11 + + + + + + натуральное число + + + + + + cardinal number 1 + + + + + + first person singular, I + + + + + + натуральное число + + + + second-person feminine singular pronoun + + + second-person masculine singular pronoun + + + натуральное число + + + the cardinal number occurring after 9 and before 11 + + + натуральное число + + + cardinal number 1 + + + first person singular, I + + + натуральное число + + + diff --git a/extensions/wikidata-lexemes/output/ae.xml b/extensions/wikidata-lexemes/output/ae.xml new file mode 100644 index 00000000..53206762 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ae.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + four + + + + + + through + + + + + + one + + + + four + + + through + + + one + + + diff --git a/extensions/wikidata-lexemes/output/af.xml b/extensions/wikidata-lexemes/output/af.xml new file mode 100644 index 00000000..3009e91e --- /dev/null +++ b/extensions/wikidata-lexemes/output/af.xml @@ -0,0 +1,97 @@ + + + + + + + + + + third person singular pronoun + + + + + + + third person singular pronoun + + + + + + third person singular pronoun + + + + + + + I; first person singular pronoun + + + + + + + you; second person singular pronoun + + + + + + we; first person plural pronoun + + + + + + you; second person plural pronoun + + + + + + they; third person plural pronoun + + + + + + yes + + + + third person singular pronoun + + + third person singular pronoun + + + third person singular pronoun + + + I; first person singular pronoun + + + you; second person singular pronoun + + + we; first person plural pronoun + + + you; second person plural pronoun + + + they; third person plural pronoun + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/am.xml b/extensions/wikidata-lexemes/output/am.xml new file mode 100644 index 00000000..358de1db --- /dev/null +++ b/extensions/wikidata-lexemes/output/am.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/an.xml b/extensions/wikidata-lexemes/output/an.xml new file mode 100644 index 00000000..5ad21e02 --- /dev/null +++ b/extensions/wikidata-lexemes/output/an.xml @@ -0,0 +1,45 @@ + + + + + + + + + of, concerning, about + + + from, away from, down from, out of + + + + + + the (definite article) + + + + + + (contracción de la preposición “de” y el artículo “el”) + + + + of, concerning, about + + + from, away from, down from, out of + + + the (definite article) + + + (contracción de la preposición “de” y el artículo “el”) + + + diff --git a/extensions/wikidata-lexemes/output/ar.xml b/extensions/wikidata-lexemes/output/ar.xml new file mode 100644 index 00000000..c9ed91de --- /dev/null +++ b/extensions/wikidata-lexemes/output/ar.xml @@ -0,0 +1,4477 @@ + + + + + + + + + (weeping) + + + + + + (security, trust, confidence) + + + + + + (firmness) + + + (restraint) + + + (confirmation) + + + + + + (relating to seven) + + + + + + (referring to first-person singular subject) + + + + + + but, rather + + + + + + of, part of, some of + + + + + + (forefathers, parents) + + + (father) + + + + + + (firmly rooted) + + + (increase, acquire) + + + + + + (permission) + + + (announcement, declaration) + + + (ear) + + + + + + (kindle, alight, enflame) + + + (inheritance, origin) + + + + + + (coming, setting out) + + + (people, nationhood, community) + + + (period of time) + + + (religion) + + + (illiteracy) + + + (leadership, guidance) + + + (record) + + + (highway) + + + (in front, before) + + + (foundation) + + + (mother) + + + (final abode) + + + + + + (female) + + + + + + (time) + + + (heating, boiling) + + + + + + (disperse, scatter, spread) + + + (suffer) + + + + + + (blister, break out with pimples, be vesicated) + + + + + + (originate) + + + + + + (make vain, nullify) + + + (become futile) + + + (falsify; falsehood) + + + + + + (raise, resurrect) + + + (send forth) + + + + + + (land) + + + (steel) + + + + + + (destroy) + + + + + + (fulfillment, completion, perfection) + + + + + + (gathering, assembling, putting together) + + + (resolution, agreement) + + + + + + (beauty) + + + (grace) + + + (camel) + + + + + + (immense) + + + + + + (flaming, blazing, burning) + + + + + + (freeing) + + + + + + (related to quantity) + + + + + + + (related to jealousy, envy) + + + + + + this + + + + + + (sweetness) + + + + + + (deed, doing, work) + + + + + + + which + + + + + + how + + + + + + where, at which place + + + + + + (pour) + + + (abundance) + + + + + + (direction, indication) + + + + + + (gripping, holding) + + + + + + (study, learn) + + + + + + (refuge) + + + + + + (convalescent) + + + (adornment) + + + (carrying off) + + + (cup) + + + + + + (killing) + + + + + + (speak; speech, words) + + + + + + (continue, remain) + + + (shade, covering) + + + + + + (burden) + + + (ministry) + + + + + + (people) + + + (branch) + + + + + + (honor, nobility) + + + + + + (black) + + + (noble) + + + + + + (حرف نداء للبعيد حقيقةً أو حُكْمًا) + + + (حرف نداء للاستغاثة) + + + (حرف نداء للتعجُّب أو الشّفقة) + + + (حرف نداء للاستفهام) + + + + + + if, whether + + + + + + in front of + + + + + + will not + + + + + + (coccyx) + + + + + + (الطّايَةُ) + + + + + + (الطَيِّئ) + + + + + + (coming, bringing) + + + (giving) + + + + + + like, as + + + + + + sixteen + + + + + + (calumniate, accuse) + + + + (spreading) + + + + + + (running away, fleeing) + + + + + + (calumniate, accuse) + + + + + + + (excited, roused) + + + (lion) + + + + + + (sweat, perspire) + + + + + + (white) + + + + + + (new) + + + + + + (body, physique) + + + + + + (plaster) + + + + + + (protect) + + + (neighbour) + + + + + + (inevitability) + + + + + + (gardens) + + + (surrounding, encompassing) + + + (looking) + + + (the black of the eye) + + + + + + (sadness) + + + + + + (relating to action, doing) + + + + + + (related to coming) + + + (related to time, temporal setting) + + + (related to surroundings, spatial context) + + + (related to transfer) + + + + + + (ألقى) + + + + + + (utterance) + + + + + + except, but for + + + + + + in order to + + + + + + (درهم) + + + + + + (news, information) + + + + + + (knowledge, knowing) + + + + + + (judgement) + + + + + + (emptiness) + + + + + + (revolve, turn) + + + (carry out) + + + (home, residence) + + + + + + (acknowledge) + + + (contract) + + + (religion) + + + (debt) + + + + + + (arise) + + + (tree) + + + + + + (heap, store) + + + + + + (honour; make comfortable, be jealous) + + + + + + (month) + + + + + + (strength, firmness) + + + (power, force) + + + + + + during + + + + + + (esteem, dignity, honour) + + + (direct, turn) + + + (face) + + + (beginning) + + + + + + طاب + + + + + + (distress) + + + (importance) + + + + + + (sin) + + + + + + + (ضمير متَّصل للمفرد المذكر الغائب) + + + + + + (ear/spike of crop) + + + + + + (pepper) + + + + + + (day) + + + + + + you (masculine) + + + + + + (حاء) + + + + + + (long, tall) + + + + + + (التِّلِّيسَةُ) + + + + + + (related to circumcision) + + + + + + (related to torpidity, benumbment, languidity) + + + + + + (related to thinking, reckoning) + + + (related to measuring, accounting) + + + + + + and + + + + + + (refusing) + + + + + + (transmit, be related) + + + (prefer) + + + (footprints, tracks) + + + (trace) + + + + + + (relating to delay, respite) + + + (relating to other, last) + + + (relating to end, hereafter) + + + + + + (education, manners) + + + + + + (eat, devour, consume) + + + (harvest, produce) + + + + + + (God) + + + + + + (conceal, hide) + + + (internal, intimate) + + + (womb, belly) + + + + + + (imputation) + + + + + + (three) + + + + + + (endear) + + + (love) + + + (prefer) + + + (seed, grain) + + + + + + (related to breaking) + + + + + + (guard, protect) + + + (be entrusted) + + + + + + (adhere, abide eternally) + + + (live forever) + + + + + + (crawl, as a creature) + + + + + + (milk) + + + + + + (enlight, illuminate, shine) + + + + + + (air, space) + + + (desire, enticement) + + + + + + (dazzle) + + + (intoxicate) + + + (sugar) + + + + + + (throttled, strangled; choked, suffocated) + + + (flat-nosed) + + + (myrtleberry) + + + (bead, amulet) + + + + + + (gathering, crowd) + + + + + + (carrying, bearing) + + + + + + (support) + + + + + + (half) + + + (justice) + + + + + + (relationship) + + + + + + (succeed, come after) + + + (oppose, differ) + + + (leave behind) + + + (break, fail) + + + + + + (call, invocation) + + + (prayer) + + + + + + who, whom, which + + + + + + did not + + + + + + what, whatever, that which + + + + + + has already + + + + + + (والتِّنْبالُ ، والتِّنْبالَةُ) + + + + + + not + + + + + + without; under + + + + + + when + + + + + + (ذُو؛ أُولُو؛ صاحِب) + + + + + + علامة سَكّ‌، دَمْغَة + + + حَفْر + + + زَخْرفة + + + + + + (قَلاووظ) + + + + + + (شَاكُوش) + + + + + + أداة التعريف في اللغة العربية + + + + + + in + + + + + + (search) + + + (scratch, scrape) + + + + + + (حرف عطف يفيد الترتيب) + + + (حرف عطف يفيد التعقيب) + + + (حرف عطف يفيد السببيَّة) + + + + + + with, by + + + + + + fourteen + + + + + + (relating to grass, herbage, pasture) + + + + + + (burden, covenant) + + + (confinement, restriction, restraint) + + + + + + (humanity) + + + + + + (people; family) + + + + + + (first) + + + (possession) + + + (family) + + + (interpretation) + + + + + + (swell) + + + + + + (wound, ulcer) + + + (water-fowl, duck) + + + + + + (ashes, dust) + + + + + + (clear) + + + (between; among) + + + + + + (drag) + + + + + + (carve) + + + (answer, respond) + + + + + + (cross, pass beyond) + + + (overlook) + + + + + + (opposition) + + + (iron) + + + (limit) + + + (sharpness) + + + + + + (movement, motion) + + + + + + (related to quantity) + + + + + + + (related to stealing, theft) + + + + + + (relating to milk, curds, dairy products) + + + + + + + + + + عدد + + + عدد يساوي عشر عشرات، وهو عدد أصليّ بعد تسعة وتسعين + + + + + + memakai tutup kepala + + + bersongkok + + + + + + (one, single, lone) + + + + + + when, then, behold + + + + + + (night, night-time) + + + + + + (donkey) + + + (red) + + + + + + (understand, reason) + + + + + + to, that (introduces verb clause) + + + + + + (وقت) + + + (تعيين) + + + + + + (association, partnership) + + + (polytheism) + + + + + + (bread) + + + + + + (beard) + + + + + + (heart) + + + (turn over) + + + + + + (عالي، مرتفع؛ صعود، ارتفاع) + + + + + + no + + + not + + + + + + (spinning thread) + + + (sleeves, cuffs) + + + (stinking, sour) + + + (saffron) + + + (piled, arranged) + + + (wrinkled, shriveled) + + + (continued, lasting) + + + (dark) + + + (Jordan) + + + + + + (effaced, obliterated) + + + (smooth, shiny) + + + (blind, blinded) + + + (rag, wiper) + + + (obscure, mysterious) + + + (shawl) + + + (Atlas) + + + + + + (knot) + + + (contract) + + + + + + (الْمَرْتَكُ) + + + + + + (dwelling, habitation) + + + (tranquility) + + + (misery, poverty) + + + (knife) + + + + + + (peck; pick) + + + (choose) + + + (bite) + + + + + + who, whom, which + + + + + + after + + + + + + with, at + + + + + + (leap, spring out) + + + (walk slowly) + + + + + + (cave) + + + (sunken) + + + + + + (port) + + + + + + before + + + + + + if + + + + + + (lean, recline) + + + + + + (إِصْطَبْل) + + + + + + (related to writing) + + + + + + (related to sharpness, sharpening) + + + + + + to, towards + + + + + + away from, out of + + + + + + + eleven + + + + + + twelve + + + + + + (related to praise) + + + + + + (forever, ever) + + + + + + (relating to flocks) + + + (relating to camels) + + + + + + (straits, distress, calamity) + + + (eternity, infinity) + + + + + + (found) + + + + + + (origin, foundation, root; bottom) + + + (evening) + + + + + + (order, command) + + + (affair, matter) + + + (foul, grave) + + + (enjoin) + + + + + + (follow) + + + + + + (related to smoothness, levelness) + + + (related to softness, fragility) + + + (related to ease, gentleness) + + + + + + related to riding + + + + + + (skill, craft, expertise) + + + (dowry, nuptial gift) + + + (colt, male foal of a mare, a mare, the first male offspring of a mare or other animal kept for breeding) + + + (camels of Mahreh, or those like them which outstrip horses in a fleet) + + + + + + (hospitality) + + + + + + (appear, manifest) + + + (make apparent, reveal) + + + (support, back) + + + + + + (avert, divert, turn away) + + + (explain) + + + + + + (power, might, honour, glory) + + + + + + (insult) + + + (course, ways, means) + + + (relations) + + + (cable, rope) + + + + + + + + (suffixed to subjunctive or imperative verb forms to mark ‘energetic’ modality) + + + + + + (put, lay, emplace) + + + (deliver, give birth) + + + (be active) + + + + + + (restless; quiver, frolick) + + + + + + (knowledge, knowing) + + + + + + (pastured) + + + (marked, branded) + + + (bargain) + + + (afflict) + + + + + + (age) + + + (building) + + + + + + (pledge) + + + + + + (bank, shore) + + + + + + (عِشْق) + + + + + + (dog) + + + + + + (way, path) + + + + + + (worship) + + + (enslave) + + + + + + (shape) + + + + + + (residence) + + + + + + (city) + + + + + + + + + + + + + that + + + + + + he + + + + + + she + + + + + + (five) + + + + + + you (feminine) + + + + + + (الجَاثَلِيق) + + + + + + (دُنْبَهْ بَرَّهْ) + + + + + + poco a poco + + + + + + (related to shame, embarrassment) + + + (related to confusion, perplexion) + + + (related to furrows, trenches, wrinkles) + + + + + + until, up to + + + ظرف ويشترط فيه أن يُسبق بنفي + + + حرفُ جَرٍّ يَدُلُّ على الاِنْتِهاءِ، أَيِ انْتِهاءِ الغايَةِ الزَّمَنِيَّةِ + + + in order to + + + so that + + + + + + + on, over + + + + + + + since, from (denoting temporal context) + + + + + + since + + + + + + two + + + + + + (stone) + + + + + + (furnishing, possessions) + + + + + + (time, date) + + + + + + (ashes) + + + + + + (be full) + + + (curl lips) + + + + + + (overflow, break forth) + + + + + + (become distant; take away) + + + (lengthen) + + + (after; beyond) + + + + + + (reach) + + + (convey) + + + + + + (perish, ruin) + + + + + + (nine) + + + + + + (flow; running as in running water) + + + (sailing) + + + + + + (avoid, keep away) + + + (side) + + + + + + (furnish; supply) + + + + + + (care, solicitude) + + + (desire) + + + + + + (related to return) + + + + + + (related to wool) + + + + + + then, in that case + + + + + + (sanctity, holiness) + + + + + + (enter, admit) + + + (deceive) + + + + + + (frogs; abound with frogs) + + + + + + + مرتبط أو مرافق + + + يوجدان في ارتباط وثيق + + + + + + what + + + + + + (will, wish) + + + (thing) + + + + + + (protect) + + + (accompany; companionship) + + + + + + (obtained, resulting, produced) + + + (realized, made apparent) + + + + + + (reverse, invert, reflect) + + + + + + (midst) + + + (friendship) + + + + + + (to stand) + + + (people) + + + + + + (order, arrangement) + + + + + + (special) + + + + + + (hear) + + + + + + (prayer) + + + (supplication) + + + + + + (know) + + + + + + that + + + indeed + + + + + + between + + + + + + (ambergris) + + + + + + (dust, fumigation) + + + + + + (tortoise) + + + + + + (self) + + + (breath) + + + + + + (the “mysterious letters,” ṭa and ḥa) + + + + + + not; and not + + + + + + حرف ربط يربط بين جملتين أو كلمتين + + + حرف استثناء يستثني كلمة + + + + + + or + + + + + + twenty-one + + + + + + (throw down) + + + (armpit) + + + + + + (sin, recrimination) + + + + + + (moaning, groaning) + + + (that) + + + (whence, where, when) + + + + + + (sea) + + + + + + (bring into existence; create) + + + (absolve, clear) + + + (heal, cure) + + + (disown) + + + + + + (lightning) + + + + + + (smile) + + + + + + (spare, remain, last) + + + + + + (forbid, prohibit; make unlawful) + + + (sacred) + + + + + + (related to dispersal) + + + + + + (relating to exposure of something private) + + + (relating to the eye) + + + + + + (related to memory) + + + (related to masculinity) + + + + + + + that which, those who + + + + + + for what, why + + + + + + (perceive) + + + (inquire) + + + (kill) + + + + + + (witnessing, attending) + + + + + + (head) + + + + + + (yellow) + + + + + + (share) + + + + + + (possess, have power) + + + (kingdom, dominion) + + + (angel) + + + + + + (proceed) + + + (take away) + + + (breasts) + + + + + + (be great) + + + (magnify) + + + (admire greatly) + + + (be arrogant) + + + + + + (life) + + + + + + (wish, desire) + + + + + + (moderate) + + + + + + (declare, proclaim) + + + + + + (strike, brand on nose) + + + (muzzle, bridle) + + + + + + (change) + + + + + + তোমরা + + + + + + because + + + + + + who, whom + + + + + + (يُوسُف) + + + + + + if + + + + + + + + + + + + + + + + this + + + + + + to, for + + + + + + + thirteen + + + + + + seventeen + + + + + + eighteen + + + + + + twenty + + + + + + (follow, pursue) + + + (continuance, permanence) + + + (support, prop) + + + + + + (informer, spy) + + + + + + (bibi) + + + + + + (house) + + + + + + (commerce, trade, transaction) + + + + + + (eight) + + + (price) + + + + + + (fold up) + + + (except) + + + (repeat) + + + (two) + + + + + + + + الجزء الواحد من الثُّمْنُ ثمانية والجمع : أثمانٌ + + + + + + (drink) + + + + + + (wax) + + + (play, jest) + + + + + + (flow, melt, liquefy) + + + + + + (سنة) + + + + + + (قَسَم) + + + (تقسيم، توزيع) + + + + + + (lion, leonine) + + + + + + (alone) + + + + + + (falling) + + + (occurring) + + + + + + on each condition; in every way + + + + + + (cut, slice) + + + (steel) + + + + + + (with; near; from) + + + (obstinate; stubborn) + + + + + + around, about + + + + + + (جَهَنَّم) + + + + + + (دبلوم، دبلومة) + + + + (weeping) + + + (security, trust, confidence) + + + (firmness) + + + (restraint) + + + (confirmation) + + + (relating to seven) + + + (referring to first-person singular subject) + + + but, rather + + + of, part of, some of + + + (forefathers, parents) + + + (father) + + + (firmly rooted) + + + (increase, acquire) + + + (permission) + + + (announcement, declaration) + + + (ear) + + + (kindle, alight, enflame) + + + (inheritance, origin) + + + (coming, setting out) + + + (people, nationhood, community) + + + (period of time) + + + (religion) + + + (illiteracy) + + + (leadership, guidance) + + + (record) + + + (highway) + + + (in front, before) + + + (foundation) + + + (mother) + + + (final abode) + + + (female) + + + (time) + + + (heating, boiling) + + + (disperse, scatter, spread) + + + (suffer) + + + (blister, break out with pimples, be vesicated) + + + (originate) + + + (make vain, nullify) + + + (become futile) + + + (falsify; falsehood) + + + (raise, resurrect) + + + (send forth) + + + (land) + + + (steel) + + + (destroy) + + + (fulfillment, completion, perfection) + + + (gathering, assembling, putting together) + + + (resolution, agreement) + + + (beauty) + + + (grace) + + + (camel) + + + (immense) + + + (flaming, blazing, burning) + + + (freeing) + + + (related to quantity) + + + (related to jealousy, envy) + + + this + + + (sweetness) + + + (deed, doing, work) + + + which + + + how + + + where, at which place + + + (pour) + + + (abundance) + + + (direction, indication) + + + (gripping, holding) + + + (study, learn) + + + (refuge) + + + (convalescent) + + + (adornment) + + + (carrying off) + + + (cup) + + + (killing) + + + (speak; speech, words) + + + (continue, remain) + + + (shade, covering) + + + (burden) + + + (ministry) + + + (people) + + + (branch) + + + (honor, nobility) + + + (black) + + + (noble) + + + (حرف نداء للبعيد حقيقةً أو حُكْمًا) + + + (حرف نداء للاستغاثة) + + + (حرف نداء للتعجُّب أو الشّفقة) + + + (حرف نداء للاستفهام) + + + if, whether + + + in front of + + + will not + + + (coccyx) + + + (الطّايَةُ) + + + (الطَيِّئ) + + + (coming, bringing) + + + (giving) + + + like, as + + + sixteen + + + (calumniate, accuse) + + + (spreading) + + + (running away, fleeing) + + + (calumniate, accuse) + + + (excited, roused) + + + (lion) + + + (sweat, perspire) + + + (white) + + + (new) + + + (body, physique) + + + (plaster) + + + (protect) + + + (neighbour) + + + (inevitability) + + + (gardens) + + + (surrounding, encompassing) + + + (looking) + + + (the black of the eye) + + + (sadness) + + + (relating to action, doing) + + + (related to coming) + + + (related to time, temporal setting) + + + (related to surroundings, spatial context) + + + (related to transfer) + + + (ألقى) + + + (utterance) + + + except, but for + + + in order to + + + (درهم) + + + (news, information) + + + (knowledge, knowing) + + + (judgement) + + + (emptiness) + + + (revolve, turn) + + + (carry out) + + + (home, residence) + + + (acknowledge) + + + (contract) + + + (religion) + + + (debt) + + + (arise) + + + (tree) + + + (heap, store) + + + (honour; make comfortable, be jealous) + + + (month) + + + (strength, firmness) + + + (power, force) + + + during + + + (esteem, dignity, honour) + + + (direct, turn) + + + (face) + + + (beginning) + + + طاب + + + (distress) + + + (importance) + + + (sin) + + + (ضمير متَّصل للمفرد المذكر الغائب) + + + (ear/spike of crop) + + + (pepper) + + + (day) + + + you (masculine) + + + (حاء) + + + (long, tall) + + + (التِّلِّيسَةُ) + + + (related to circumcision) + + + (related to torpidity, benumbment, languidity) + + + (related to thinking, reckoning) + + + (related to measuring, accounting) + + + and + + + (refusing) + + + (transmit, be related) + + + (prefer) + + + (footprints, tracks) + + + (trace) + + + (relating to delay, respite) + + + (relating to other, last) + + + (relating to end, hereafter) + + + (education, manners) + + + (eat, devour, consume) + + + (harvest, produce) + + + (God) + + + (conceal, hide) + + + (internal, intimate) + + + (womb, belly) + + + (imputation) + + + (three) + + + (endear) + + + (love) + + + (prefer) + + + (seed, grain) + + + (related to breaking) + + + (guard, protect) + + + (be entrusted) + + + (adhere, abide eternally) + + + (live forever) + + + (crawl, as a creature) + + + (milk) + + + (enlight, illuminate, shine) + + + (air, space) + + + (desire, enticement) + + + (dazzle) + + + (intoxicate) + + + (sugar) + + + (throttled, strangled; choked, suffocated) + + + (flat-nosed) + + + (myrtleberry) + + + (bead, amulet) + + + (gathering, crowd) + + + (carrying, bearing) + + + (support) + + + (half) + + + (justice) + + + (relationship) + + + (succeed, come after) + + + (oppose, differ) + + + (leave behind) + + + (break, fail) + + + (call, invocation) + + + (prayer) + + + who, whom, which + + + did not + + + what, whatever, that which + + + has already + + + (والتِّنْبالُ ، والتِّنْبالَةُ) + + + not + + + without; under + + + when + + + (ذُو؛ أُولُو؛ صاحِب) + + + علامة سَكّ‌، دَمْغَة + + + حَفْر + + + زَخْرفة + + + (قَلاووظ) + + + (شَاكُوش) + + + أداة التعريف في اللغة العربية + + + in + + + (search) + + + (scratch, scrape) + + + (حرف عطف يفيد الترتيب) + + + (حرف عطف يفيد التعقيب) + + + (حرف عطف يفيد السببيَّة) + + + with, by + + + fourteen + + + (relating to grass, herbage, pasture) + + + (burden, covenant) + + + (confinement, restriction, restraint) + + + (humanity) + + + (people; family) + + + (first) + + + (possession) + + + (family) + + + (interpretation) + + + (swell) + + + (wound, ulcer) + + + (water-fowl, duck) + + + (ashes, dust) + + + (clear) + + + (between; among) + + + (drag) + + + (carve) + + + (answer, respond) + + + (cross, pass beyond) + + + (overlook) + + + (opposition) + + + (iron) + + + (limit) + + + (sharpness) + + + (movement, motion) + + + (related to quantity) + + + (related to stealing, theft) + + + (relating to milk, curds, dairy products) + + + عدد + + + عدد يساوي عشر عشرات، وهو عدد أصليّ بعد تسعة وتسعين + + + memakai tutup kepala + + + bersongkok + + + (one, single, lone) + + + when, then, behold + + + (night, night-time) + + + (donkey) + + + (red) + + + (understand, reason) + + + to, that (introduces verb clause) + + + (وقت) + + + (تعيين) + + + (association, partnership) + + + (polytheism) + + + (bread) + + + (beard) + + + (heart) + + + (turn over) + + + (عالي، مرتفع؛ صعود، ارتفاع) + + + no + + + not + + + (spinning thread) + + + (sleeves, cuffs) + + + (stinking, sour) + + + (saffron) + + + (piled, arranged) + + + (wrinkled, shriveled) + + + (continued, lasting) + + + (dark) + + + (Jordan) + + + (effaced, obliterated) + + + (smooth, shiny) + + + (blind, blinded) + + + (rag, wiper) + + + (obscure, mysterious) + + + (shawl) + + + (Atlas) + + + (knot) + + + (contract) + + + (الْمَرْتَكُ) + + + (dwelling, habitation) + + + (tranquility) + + + (misery, poverty) + + + (knife) + + + (peck; pick) + + + (choose) + + + (bite) + + + who, whom, which + + + after + + + with, at + + + (leap, spring out) + + + (walk slowly) + + + (cave) + + + (sunken) + + + (port) + + + before + + + if + + + (lean, recline) + + + (إِصْطَبْل) + + + (related to writing) + + + (related to sharpness, sharpening) + + + to, towards + + + away from, out of + + + eleven + + + twelve + + + (related to praise) + + + (forever, ever) + + + (relating to flocks) + + + (relating to camels) + + + (straits, distress, calamity) + + + (eternity, infinity) + + + (found) + + + (origin, foundation, root; bottom) + + + (evening) + + + (order, command) + + + (affair, matter) + + + (foul, grave) + + + (enjoin) + + + (follow) + + + (related to smoothness, levelness) + + + (related to softness, fragility) + + + (related to ease, gentleness) + + + related to riding + + + (skill, craft, expertise) + + + (dowry, nuptial gift) + + + (colt, male foal of a mare, a mare, the first male offspring of a mare or other animal kept for breeding) + + + (camels of Mahreh, or those like them which outstrip horses in a fleet) + + + (hospitality) + + + (appear, manifest) + + + (make apparent, reveal) + + + (support, back) + + + (avert, divert, turn away) + + + (explain) + + + (power, might, honour, glory) + + + (insult) + + + (course, ways, means) + + + (relations) + + + (cable, rope) + + + (suffixed to subjunctive or imperative verb forms to mark ‘energetic’ modality) + + + (put, lay, emplace) + + + (deliver, give birth) + + + (be active) + + + (restless; quiver, frolick) + + + (knowledge, knowing) + + + (pastured) + + + (marked, branded) + + + (bargain) + + + (afflict) + + + (age) + + + (building) + + + (pledge) + + + (bank, shore) + + + (عِشْق) + + + (dog) + + + (way, path) + + + (worship) + + + (enslave) + + + (shape) + + + (residence) + + + (city) + + + that + + + he + + + she + + + (five) + + + you (feminine) + + + (الجَاثَلِيق) + + + (دُنْبَهْ بَرَّهْ) + + + poco a poco + + + (related to shame, embarrassment) + + + (related to confusion, perplexion) + + + (related to furrows, trenches, wrinkles) + + + until, up to + + + ظرف ويشترط فيه أن يُسبق بنفي + + + حرفُ جَرٍّ يَدُلُّ على الاِنْتِهاءِ، أَيِ انْتِهاءِ الغايَةِ الزَّمَنِيَّةِ + + + in order to + + + so that + + + on, over + + + since, from (denoting temporal context) + + + since + + + two + + + (stone) + + + (furnishing, possessions) + + + (time, date) + + + (ashes) + + + (be full) + + + (curl lips) + + + (overflow, break forth) + + + (become distant; take away) + + + (lengthen) + + + (after; beyond) + + + (reach) + + + (convey) + + + (perish, ruin) + + + (nine) + + + (flow; running as in running water) + + + (sailing) + + + (avoid, keep away) + + + (side) + + + (furnish; supply) + + + (care, solicitude) + + + (desire) + + + (related to return) + + + (related to wool) + + + then, in that case + + + (sanctity, holiness) + + + (enter, admit) + + + (deceive) + + + (frogs; abound with frogs) + + + مرتبط أو مرافق + + + يوجدان في ارتباط وثيق + + + what + + + (will, wish) + + + (thing) + + + (protect) + + + (accompany; companionship) + + + (obtained, resulting, produced) + + + (realized, made apparent) + + + (reverse, invert, reflect) + + + (midst) + + + (friendship) + + + (to stand) + + + (people) + + + (order, arrangement) + + + (special) + + + (hear) + + + (prayer) + + + (supplication) + + + (know) + + + that + + + indeed + + + between + + + (ambergris) + + + (dust, fumigation) + + + (tortoise) + + + (self) + + + (breath) + + + (the “mysterious letters,” ṭa and ḥa) + + + not; and not + + + حرف ربط يربط بين جملتين أو كلمتين + + + حرف استثناء يستثني كلمة + + + or + + + twenty-one + + + (throw down) + + + (armpit) + + + (sin, recrimination) + + + (moaning, groaning) + + + (that) + + + (whence, where, when) + + + (sea) + + + (bring into existence; create) + + + (absolve, clear) + + + (heal, cure) + + + (disown) + + + (lightning) + + + (smile) + + + (spare, remain, last) + + + (forbid, prohibit; make unlawful) + + + (sacred) + + + (related to dispersal) + + + (relating to exposure of something private) + + + (relating to the eye) + + + (related to memory) + + + (related to masculinity) + + + that which, those who + + + for what, why + + + (perceive) + + + (inquire) + + + (kill) + + + (witnessing, attending) + + + (head) + + + (yellow) + + + (share) + + + (possess, have power) + + + (kingdom, dominion) + + + (angel) + + + (proceed) + + + (take away) + + + (breasts) + + + (be great) + + + (magnify) + + + (admire greatly) + + + (be arrogant) + + + (life) + + + (wish, desire) + + + (moderate) + + + (declare, proclaim) + + + (strike, brand on nose) + + + (muzzle, bridle) + + + (change) + + + তোমরা + + + because + + + who, whom + + + (يُوسُف) + + + if + + + this + + + to, for + + + thirteen + + + seventeen + + + eighteen + + + twenty + + + (follow, pursue) + + + (continuance, permanence) + + + (support, prop) + + + (informer, spy) + + + (bibi) + + + (house) + + + (commerce, trade, transaction) + + + (eight) + + + (price) + + + (fold up) + + + (except) + + + (repeat) + + + (two) + + + الجزء الواحد من الثُّمْنُ ثمانية والجمع : أثمانٌ + + + (drink) + + + (wax) + + + (play, jest) + + + (flow, melt, liquefy) + + + (سنة) + + + (قَسَم) + + + (تقسيم، توزيع) + + + (lion, leonine) + + + (alone) + + + (falling) + + + (occurring) + + + on each condition; in every way + + + (cut, slice) + + + (steel) + + + (with; near; from) + + + (obstinate; stubborn) + + + around, about + + + (جَهَنَّم) + + + (دبلوم، دبلومة) + + + diff --git a/extensions/wikidata-lexemes/output/av.xml b/extensions/wikidata-lexemes/output/av.xml new file mode 100644 index 00000000..c72a21c2 --- /dev/null +++ b/extensions/wikidata-lexemes/output/av.xml @@ -0,0 +1,30 @@ + + + + + + + + + one + + + + + + and + + + + one + + + and + + + diff --git a/extensions/wikidata-lexemes/output/az.xml b/extensions/wikidata-lexemes/output/az.xml new file mode 100644 index 00000000..72002d01 --- /dev/null +++ b/extensions/wikidata-lexemes/output/az.xml @@ -0,0 +1,41 @@ + + + + + + + + + one + + + + + + + and + + + + + + + (sual əvəz) + + + + one + + + and + + + (sual əvəz) + + + diff --git a/extensions/wikidata-lexemes/output/ba.xml b/extensions/wikidata-lexemes/output/ba.xml new file mode 100644 index 00000000..2900c0fe --- /dev/null +++ b/extensions/wikidata-lexemes/output/ba.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/be.xml b/extensions/wikidata-lexemes/output/be.xml new file mode 100644 index 00000000..add17c7c --- /dev/null +++ b/extensions/wikidata-lexemes/output/be.xml @@ -0,0 +1,30 @@ + + + + + + + + + the number 4 + + + + + + cardinal number 1 + + + + the number 4 + + + cardinal number 1 + + + diff --git a/extensions/wikidata-lexemes/output/bg.xml b/extensions/wikidata-lexemes/output/bg.xml new file mode 100644 index 00000000..84464964 --- /dev/null +++ b/extensions/wikidata-lexemes/output/bg.xml @@ -0,0 +1,39 @@ + + + + + + + + + I; first-person singular pronoun + + + + + + one + + + + + + (used to mark an infinitive) + + + + I; first-person singular pronoun + + + one + + + (used to mark an infinitive) + + + diff --git a/extensions/wikidata-lexemes/output/bi.xml b/extensions/wikidata-lexemes/output/bi.xml new file mode 100644 index 00000000..6da0567d --- /dev/null +++ b/extensions/wikidata-lexemes/output/bi.xml @@ -0,0 +1,21 @@ + + + + + + + + + yes + + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/bn.xml b/extensions/wikidata-lexemes/output/bn.xml new file mode 100644 index 00000000..b441a4fa --- /dev/null +++ b/extensions/wikidata-lexemes/output/bn.xml @@ -0,0 +1,2882 @@ + + + + + + + + + + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি + + + স্বয়ং + + + + + + + অঙ্কবাচক সংখ্যা (২) + + + + + + অঙ্কবাচক সংখ্যা (৮) + + + + + + + অঙ্কবাচক সংখ্যা (১০) + + + + + + অঙ্কবাচক সংখ্যা (১৪) + + + + + + অঙ্কবাচক সংখ্যা (১৫) + + + + + + অঙ্কবাচক সংখ্যা (২২) + + + + + + অঙ্কবাচক সংখ্যা (৪২) + + + + + + অঙ্কবাচক সংখ্যা (৫২) + দেখুন, প্রায় বাহান্ন বছর পরেও সেদিনের কথা আমার কেমন মনে আছে। + + + + + + অঙ্কবাচক সংখ্যা (৬৮) + + + + + + + + + অঙ্কবাচক সংখ্যা (৮৬) + + + + + + অঙ্কবাচক সংখ্যা (৮৯) + + + + + + অঙ্কবাচক সংখ্যা (৯০) + + + + + + সম্মতিসূচক শব্দ + + + + + + + সম্বোধনসূচক শব্দ + + + + + + সম্বোধনসূচক শব্দ + + + + + + সম্বোধনসূচক শব্দ + + + + + + + অনুকার শব্দ + + + + + + মারা পড়লাম + এমন সময় বুকের মধ্যে হৃৎপিণ্ডটা যেন হঠাৎ আছাড় খাইয়া “হা হতোস্মি” করিয়া পড়িয়া গেল। + + + + + + + প্রতিনিধি স্বরূপ + + + মধ্য দিয়ে + + + + + + ভয়, বিস্ময় বা ব্যথায় নির্গত শব্দ + + + + + + ঘণ্টা ইত্যাদির মৃদু শব্দ + + + + + + চড় মারার শব্দ + + + + + + থুথু ফেলার শব্দ + + + ঘৃণাসূচক শব্দ + + + + + + হঠাৎ ডুব দেওয়ার শব্দ + + + বৃষ্টি পড়ার শব্দ + + + + + + ঘণ্টার শব্দ + + + জল তরঙ্গের শব্দ + + + + + + অপেক্ষা + + + + + + সমস্ত + + + + + + + সে দ্রব্য + + + + + + + + + + আমি + + + + + + আশ্চর্যবোধক শব্দ + + + + + + অঙ্কবাচক সংখ্যা (৬) + + + + + + অঙ্কবাচক সংখ্যা (১৬) + + + + + + অঙ্কবাচক সংখ্যা (৪৯) + + + + + + অঙ্কবাচক সংখ্যা (৫৪) + + + + + + অঙ্কবাচক সংখ্যা (৬২) + + + + + + অঙ্কবাচক সংখ্যা (৬৪) + + + + + + অঙ্কবাচক সংখ্যা (৬৯) + + + + + + অঙ্কবাচক সংখ্যা (৭০) + + + + + + অঙ্কবাচক সংখ্যা (৮৮) + + + + + + অঙ্কবাচক সংখ্যা (৯৫) + + + + + + আমি + + + + + + + অঙ্কবাচক সংখ্যা (৭৬) + + + + + + অঙ্কবাচক সংখ্যা (৬৬) + + + + + + উচ্চহাস্য শব্দ + + + + + + অনুনয়সূচক শব্দ + + + + + + বেগে জল পড়বার শব্দ + + + + + + সম্মতিসূচক শব্দ + + + সন্দেহ প্রকাশক শব্দ + + + প্রতিজ্ঞা প্রকাশক শব্দ + + + রাগ প্রকাশকারী শব্দ + + + ভীতিপ্রদর্শক শব্দ + + + + + + নারীদের মধ্যে পরস্পর প্রণয়সূচক সম্বোধন + + + + + + + বমির শব্দ + + + + + + রাগ, দুঃখ, ভয় সূচক শব্দ + + + + + + কঠিন জিনিষ আঘাত করার মৃদু শব্দ + + + + + + ভেজা ঢোল বাজানোর শব্দ + + + + + + নূপুরের শব্দ + + + + + + বৃষ্টির শব্দ + + + নূপুরের শব্দ + + + + + + ক্রমাগত জলের ফোঁটা পড়ার শব্দ + + + ফল পড়ার শব্দ + + + + + + পুরোভাগে + + + + + + নির্দিষ্ট + + + + + + + + এই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + + + + সহিত + + + + + + + জিজ্ঞাসাবাচক শব্দ + + + + + + সে পরিমাণ + + + + + + অভিলাষ প্রকাশসূচক + + + + + + উপরি বা সম্বন্ধে + + + + অভিমুখে + + + + + + সাবধান + + + + + + + + সম্বোধিত ব্যক্তি + + + + + + + + সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + + + + + + + + + + বিভক্তি যে যোগে বিশেষ্যপদ সামান্য বা সাধারণ অর্থ ত্যাগ করিয়া বিশিষ্ট বা নির্দিষ্ট অর্থ প্রকাশ করে + + + + + + অঙ্কবাচক সংখ্যা (৩) + + + + + + অঙ্কবাচক সংখ্যা (৫) + + + + + + অঙ্কবাচক সংখ্যা (২০) + + + + + + + অঙ্কবাচক সংখ্যা (২১) + + + + + + অঙ্কবাচক সংখ্যা (৪৩) + + + + + + অঙ্কবাচক সংখ্যা (৪৪) + + + + + + অঙ্কবাচক সংখ্যা (৪৭) + + + + + + অঙ্কবাচক সংখ্যা (৬০) + + + + + + অঙ্কবাচক সংখ্যা (৬৭) + + + + + + অঙ্কবাচক সংখ্যা (৮৪) + + + + + + অঙ্কবাচক সংখ্যা (৯২) + + + + + + অঙ্কবাচক সংখ্যা (৯৪) + + + + + + অঙ্কবাচক সংখ্যা (৬০) + + + + + + অঙ্কবাচক সংখ্যা (৪৬) + + + + + + অঙ্কবাচক সংখ্যা (৬) + + + + + + সম্বোধনসূচক শব্দ + + + + + + + পাখি তাড়াবার শব্দ + + + + + + নিবারণ করার জন্য শব্দ + + + + + + পিচ্ছিলপথে গড়িয়ে যাওয়ার শব্দ + + + দ্রুত এবং বলপূর্বক টেনে নিয়ে যাওয়ার শব্দ + + + + + + + থেকে + + + + + + এবং + + + + + + খালি হাঁড়ি কলসীর শব্দ + + + + + + ছোট নরম জিনিষ পড়ার শব্দ + + + + + + নরম ভারী জিনিষ পড়ার শব্দ + + + + + + বেসুরো আওয়াজ + + + বিরক্তিসূচক শব্দ + + + + + + ফুটন্ত জলের শব্দ + + + ঘোড়া ছোটার শব্দ + + + + + + + + এই ব্যক্তি + + + + + + মাঝে + + + ভিতরে + + + ফাঁকে + + + + + + + + + দফা + + + পালা + + + + + + যে পরিমাণ + + + + + + জোর দেবার বিভক্তি + + + (সম্বন্ধের অর্থ প্রকাশ করে) + + + + + + কার্য কারণ সম্পর্ক বা হেতু + + + + + + একটি বিভক্তি + + + + + + + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + + + + অঙ্কবাচক সংখ্যা (৪) + + + + + + অঙ্কবাচক সংখ্যা (১২) + + + + + + অঙ্কবাচক সংখ্যা (২৪) + + + + + + অঙ্কবাচক সংখ্যা (৩০) + + + + + + অঙ্কবাচক সংখ্যা (৪১) + + + + + + অঙ্কবাচক সংখ্যা (৫০) + + + + + + অঙ্কবাচক সংখ্যা (৫৫) + + + + + + অঙ্কবাচক সংখ্যা (৭৪) + + + + + + অঙ্কবাচক সংখ্যা (৮২) + + + + + + অঙ্কবাচক সংখ্যা (৯১) + + + + + + অঙ্কবাচক সংখ্যা (০) + + + + + + প্রশ্নার্থ সম্বোধনসূচক শব্দ + + + + + + কিছু টেনে নিয়ে যাওয়ার শব্দ + + + + + + গাভীর রব + + + + + + সম্মতিসূচক শব্দ + + + + + + + সম্বোধনসূচক শব্দ + + + + + + + + + + সম্বোধনসূচক শব্দ + + + + + + কাঠের মতো জিনিষে আঘাত করার শব্দ + + + + + + ভেজা বা ছেঁড়া ঢোলের ন্যায় শব্দ + + + + + + ঘড়ি কাঁসর ইত্যাদির বার বার বাজার শব্দ + + + + + + ঘণ্টার শব্দ + + + ঘড়ির সময়সূচক আওয়াজ + + + + + + থুথু ফেলার শব্দ + + + ঘৃণাসূচক শব্দ + + + + + + আস্তে আস্তে বালি পড়ার শব্দ + + + + + + জল পড়ার শব্দ + + + + + + বৃষ্টির শব্দ + + + নূপুরের শব্দ + + + + + + + + সেই ব্যক্তি + + + + + + সম্মুখবর্তী + + + + + + + + সেই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + + + + কোন সময় + + + + + + তুল্য বা পারা + + + + + + ধাতুদ্রব্যাদি পড়ার বা আঘাত পাওয়ার তীক্ষ্ণ শব্দ + + + + + + তাহলে + + + + + + তথাপি + + + তদনন্তর + + + তাহলে + + + + + + অন্য ব্যক্তি, বস্তু, ইত্যাদি + + + + + + কথা না বলার নির্দেশসূচক + + + + + + + + + + + বক্তা স্বয়ং + চলার পথে দিনে রাতে / দেখা হবে সবার সাথে— / তাদের আমি চাব, তারা / আমায় চাবে॥ + মুক্ত কর হে মুক্ত কর আমারে, / তোমার নিবিড় নীরব উদার / অনন্ত আঁধারে। + + + + + + + + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + + + + + + + + + + বিশেষ্যের বহুত্ব-বোধক প্রত্যয় + + + + + + অঙ্কবাচক সংখ্যা (৭) + + + + + + অঙ্কবাচক সংখ্যা (৯) + + + + + + অঙ্কবাচক সংখ্যা (১১) + + + + + + অঙ্কবাচক সংখ্যা (১৭) + + + + + + অঙ্কবাচক সংখ্যা (১৮) + + + + + + অঙ্কবাচক সংখ্যা (২৫) + + + + + + + + + অঙ্কবাচক সংখ্যা (২৬) + + + + + + অঙ্কবাচক সংখ্যা (৩৭) + + + + + + অঙ্কবাচক সংখ্যা (৪০) + + + + + + অঙ্কবাচক সংখ্যা (৫১) + + + + + + + + + অঙ্কবাচক সংখ্যা (৫৬) + + + + + + অঙ্কবাচক সংখ্যা (৫৯) + + + + + + অঙ্কবাচক সংখ্যা (৬৬) + + + + + + অঙ্কবাচক সংখ্যা (৭৩) + + + + + + + + + অঙ্কবাচক সংখ্যা (৭৬) + + + + + + অঙ্কবাচক সংখ্যা (৭৯) + + + + + + অঙ্কবাচক সংখ্যা (৮৫) + + + + + + অঙ্কবাচক সংখ্যা (৮৭) + + + + + + অঙ্কবাচক সংখ্যা (৬০) + + + + + + অঙ্কবাচক সংখ্যা (৯৬) + + + + + + অঙ্কবাচক সংখ্যা (৮৬) + + + + + + অঙ্কবাচক সংখ্যা (৫৬) + + + + + + অঙ্কবাচক সংখ্যা (৩৬) + + + + + + তরল পদার্থ গলাঃধকরণের শব্দ + + + + + + হঠাৎ জোরে ধাতুদ্রব্য পড়ার বা আঘাতের শব্দ + + + + + + রস পড়ার শব্দ + + + + + + + + কোন বস্তু/বিষয় + + + + + + + + + কোন স্থান + + + + + + কারণে বা নিমিত্তে + + + + + + যে সময়ে + + + + + + সেই সময়ে + + + + + + + যে দ্রব্য + + + + + + ব্যতীত + + + + + + + + সকলেই + + + + + + + + কেহ; কোনো ব্যক্তি; + + + + + + অনির্দিষ্ট একটি বা একজন + + + + + + + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি + তোর বাবার শরীর ভালো নয়। + + + + + + অঙ্কবাচক সংখ্যা (৩৯) + + + + + + অঙ্কবাচক সংখ্যা (৪৬) + + + + + + অঙ্কবাচক সংখ্যা (৫৮) + + + + + + অঙ্কবাচক সংখ্যা (৬৫) + + + + + + অঙ্কবাচক সংখ্যা (৭২) + + + + + + অঙ্কবাচক সংখ্যা (২০) + + + + + + + অঙ্কবাচক সংখ্যা (৬) + + + + + + গরুকে তাড়ানোর শব্দ + + + + + + সম্বোধন বা আহ্বান + + + + পাদপূরণ + + + + + + ভারি জিনিষ পড়ার শব্দ + + + + + + হাসির শব্দ + + + শীতের কাঁপুনিজনিত শব্দ + + + + + + আহ্লাদ সূচক চিৎকার + + + + + + প্রণব + + + + + + কাঠের মতো জিনিষে আঘাত করার শব্দ + + + + + + অনুকার শব্দ + + + + + + + + এই ব্যক্তি/বস্তু/বিষয় + + + + + + নিকটে + + + তুলনায় + + + + + + অভিবাদন বিশেষ + + + + + + দৃঢ়তাসূচক শব্দ + + + + + + + + নির্দিষ্ট বস্তু বা ব্যক্তি + + + + + + ঊর্ধ্বে + + + প্রতি + + + + + + + সম্বোধন শব্দ + + + + + + সম্বোধনসূচক শব্দ + + + + + + + থেকে বা হতে + + + পর্যন্ত + + + + + + + চুপ করো + + + + + + + + অঙ্কবাচক সংখ্যা (১) + + + + + + অঙ্কবাচক সংখ্যা (১৩) + + + + + + অঙ্কবাচক সংখ্যা (২৮) + + + + + + অঙ্কবাচক সংখ্যা (৩১) + + + + + + অঙ্কবাচক সংখ্যা (৩২) + + + + + + অঙ্কবাচক সংখ্যা (৩৪) + + + + + + অঙ্কবাচক সংখ্যা (৩৫) + + + + + + অঙ্কবাচক সংখ্যা (৪৫) + + + + + + অঙ্কবাচক সংখ্যা (৪৮) + + + + + + অঙ্কবাচক সংখ্যা (৫৩) + + + + + + অঙ্কবাচক সংখ্যা (৫৭) + + + + + + অঙ্কবাচক সংখ্যা (৬৩) + + + + + + অঙ্কবাচক সংখ্যা (৭৭) + + + + + + অঙ্কবাচক সংখ্যা (৭৮) + + + + + + অঙ্কবাচক সংখ্যা (৮১) + + + + + + অঙ্কবাচক সংখ্যা (৮৩) + + + + + + অঙ্কবাচক সংখ্যা (৯৩) + + + + + + অঙ্কবাচক সংখ্যা (৯৭) + + + + + + সম্মতিসূচক শব্দ + + + + + + হাসির শব্দ + + + + + + হাসির শব্দ + + + + + + শূদ্রদের প্রণব + + + + + + খেদসূচক শব্দ + + + বিস্ময়সূচক শব্দ + + + + + + প্রিয়জনকে সম্বোধন + + + ব্যক্তিকে সম্বোধন + + + + + + + ঘণ্টা ইত্যাদির শব্দ + + + + + + হতে + + + চেয়ে + + + + + + লাফ দেওয়ার শব্দ + + + + + + মৃদু মন্দ বাতাস বওয়ার শব্দ + + + + + + ক্রমাগত জলের ফোঁটা পড়ার শব্দ + + + ফল পড়ার শব্দ + + + + + + ফোঁটা পড়ার শব্দ + + + + + + + + ওই ব্যক্তি/বস্তু/বিষয় + + + + + + + + সেই ব্যক্তি + + + সে বস্তু + + + + + + বৈপরীত্যবাচক + + + + + + অথবা + + + + + + + সাহায্যে + + + মারফৎ + + + + + + কর্তৃক + + + সাহায্যে + + + মারফৎ + + + দ্বার দিয়ে + + + + + + অস্থিরতা প্রকাশক শব্দ + + + + + + + + স্বয়ং + + + + + + নিজ + + + + + + অবধি + + + + + + + কোনো ব্যক্তি + + + আপনজন + + + + + + (প্রশংসাব্যঞ্জক শব্দ) + + + + + + দূরীকরণ, তিরস্কার, বিরক্তি + + + + + + + + বক্তা স্বয়ং ও অন্যান্য লোকজন + + + + + + অঙ্কবাচক সংখ্যা (১৯) + + + + + + অঙ্কবাচক সংখ্যা (২৩) + + + + + + অঙ্কবাচক সংখ্যা (২৭) + + + + + + অঙ্কবাচক সংখ্যা (২৯) + + + + + + অঙ্কবাচক সংখ্যা (৩৩) + + + + + + অঙ্কবাচক সংখ্যা (৩৬) + + + + + + অঙ্কবাচক সংখ্যা (৩৮) + + + + + + অঙ্কবাচক সংখ্যা (৬১) + + + + + + অঙ্কবাচক সংখ্যা (৭১) + + + + + + অঙ্কবাচক সংখ্যা (৭৫) + + + + + + অঙ্কবাচক সংখ্যা (৮০) + + + + + + + + + অঙ্কবাচক সংখ্যা (৯৬) + + + + + + অঙ্কবাচক সংখ্যা (৯৮) + + + + + + অঙ্কবাচক সংখ্যা (৯৯) + + + + + + বাতাস বা তরলের প্রবাহের শব্দ + + + আগুন জ্বলার শব্দ + + + দুঃখ প্রকাশের শব্দ + + + + + + নাট্যে সখীর প্রতি স্মবোধনসূচক শব্দ + + + + + + দ্রুত গমনের ভাব + + + + + + প্রণব + + + + + + ধাতু নির্মিত পাত্র ইত্যাদির শব্দ + + + + + + আঘাতের শব্দ + + + + + + + + + অঙ্কবাচক সংখ্যা (৮৬) + + + + + + দুটি শব্দ বা বাক্যকে সংযোগকারী অব্যয় + + + + + + + + ওই ব্যক্তি + + + + + + + + ওই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + + + + দুটি শব্দ বা বাক্যকে সংযোগকারী অব্যয় + + + অথবা + + + + + + সহিত + + + + + + + হঠাৎ + + + + + + তবে + + + তবু + + + + + + ভাত + + + + + + আক্ষেপের আবেগ + + + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি + + + স্বয়ং + + + অঙ্কবাচক সংখ্যা (২) + + + অঙ্কবাচক সংখ্যা (৮) + + + অঙ্কবাচক সংখ্যা (১০) + + + অঙ্কবাচক সংখ্যা (১৪) + + + অঙ্কবাচক সংখ্যা (১৫) + + + অঙ্কবাচক সংখ্যা (২২) + + + অঙ্কবাচক সংখ্যা (৪২) + + + অঙ্কবাচক সংখ্যা (৫২) + দেখুন, প্রায় বাহান্ন বছর পরেও সেদিনের কথা আমার কেমন মনে আছে। + + + অঙ্কবাচক সংখ্যা (৬৮) + + + অঙ্কবাচক সংখ্যা (৮৬) + + + অঙ্কবাচক সংখ্যা (৮৯) + + + অঙ্কবাচক সংখ্যা (৯০) + + + সম্মতিসূচক শব্দ + + + সম্বোধনসূচক শব্দ + + + সম্বোধনসূচক শব্দ + + + সম্বোধনসূচক শব্দ + + + অনুকার শব্দ + + + মারা পড়লাম + এমন সময় বুকের মধ্যে হৃৎপিণ্ডটা যেন হঠাৎ আছাড় খাইয়া “হা হতোস্মি” করিয়া পড়িয়া গেল। + + + প্রতিনিধি স্বরূপ + + + মধ্য দিয়ে + + + ভয়, বিস্ময় বা ব্যথায় নির্গত শব্দ + + + ঘণ্টা ইত্যাদির মৃদু শব্দ + + + চড় মারার শব্দ + + + থুথু ফেলার শব্দ + + + ঘৃণাসূচক শব্দ + + + হঠাৎ ডুব দেওয়ার শব্দ + + + বৃষ্টি পড়ার শব্দ + + + ঘণ্টার শব্দ + + + জল তরঙ্গের শব্দ + + + অপেক্ষা + + + সমস্ত + + + সে দ্রব্য + + + আমি + + + আশ্চর্যবোধক শব্দ + + + অঙ্কবাচক সংখ্যা (৬) + + + অঙ্কবাচক সংখ্যা (১৬) + + + অঙ্কবাচক সংখ্যা (৪৯) + + + অঙ্কবাচক সংখ্যা (৫৪) + + + অঙ্কবাচক সংখ্যা (৬২) + + + অঙ্কবাচক সংখ্যা (৬৪) + + + অঙ্কবাচক সংখ্যা (৬৯) + + + অঙ্কবাচক সংখ্যা (৭০) + + + অঙ্কবাচক সংখ্যা (৮৮) + + + অঙ্কবাচক সংখ্যা (৯৫) + + + আমি + + + অঙ্কবাচক সংখ্যা (৭৬) + + + অঙ্কবাচক সংখ্যা (৬৬) + + + উচ্চহাস্য শব্দ + + + অনুনয়সূচক শব্দ + + + বেগে জল পড়বার শব্দ + + + সম্মতিসূচক শব্দ + + + সন্দেহ প্রকাশক শব্দ + + + প্রতিজ্ঞা প্রকাশক শব্দ + + + রাগ প্রকাশকারী শব্দ + + + ভীতিপ্রদর্শক শব্দ + + + নারীদের মধ্যে পরস্পর প্রণয়সূচক সম্বোধন + + + বমির শব্দ + + + রাগ, দুঃখ, ভয় সূচক শব্দ + + + কঠিন জিনিষ আঘাত করার মৃদু শব্দ + + + ভেজা ঢোল বাজানোর শব্দ + + + নূপুরের শব্দ + + + বৃষ্টির শব্দ + + + নূপুরের শব্দ + + + ক্রমাগত জলের ফোঁটা পড়ার শব্দ + + + ফল পড়ার শব্দ + + + পুরোভাগে + + + নির্দিষ্ট + + + এই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + সহিত + + + জিজ্ঞাসাবাচক শব্দ + + + সে পরিমাণ + + + অভিলাষ প্রকাশসূচক + + + উপরি বা সম্বন্ধে + + + অভিমুখে + + + সাবধান + + + সম্বোধিত ব্যক্তি + + + সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + বিভক্তি যে যোগে বিশেষ্যপদ সামান্য বা সাধারণ অর্থ ত্যাগ করিয়া বিশিষ্ট বা নির্দিষ্ট অর্থ প্রকাশ করে + + + অঙ্কবাচক সংখ্যা (৩) + + + অঙ্কবাচক সংখ্যা (৫) + + + অঙ্কবাচক সংখ্যা (২০) + + + অঙ্কবাচক সংখ্যা (২১) + + + অঙ্কবাচক সংখ্যা (৪৩) + + + অঙ্কবাচক সংখ্যা (৪৪) + + + অঙ্কবাচক সংখ্যা (৪৭) + + + অঙ্কবাচক সংখ্যা (৬০) + + + অঙ্কবাচক সংখ্যা (৬৭) + + + অঙ্কবাচক সংখ্যা (৮৪) + + + অঙ্কবাচক সংখ্যা (৯২) + + + অঙ্কবাচক সংখ্যা (৯৪) + + + অঙ্কবাচক সংখ্যা (৬০) + + + অঙ্কবাচক সংখ্যা (৪৬) + + + অঙ্কবাচক সংখ্যা (৬) + + + সম্বোধনসূচক শব্দ + + + পাখি তাড়াবার শব্দ + + + নিবারণ করার জন্য শব্দ + + + পিচ্ছিলপথে গড়িয়ে যাওয়ার শব্দ + + + দ্রুত এবং বলপূর্বক টেনে নিয়ে যাওয়ার শব্দ + + + থেকে + + + এবং + + + খালি হাঁড়ি কলসীর শব্দ + + + ছোট নরম জিনিষ পড়ার শব্দ + + + নরম ভারী জিনিষ পড়ার শব্দ + + + বেসুরো আওয়াজ + + + বিরক্তিসূচক শব্দ + + + ফুটন্ত জলের শব্দ + + + ঘোড়া ছোটার শব্দ + + + এই ব্যক্তি + + + মাঝে + + + ভিতরে + + + ফাঁকে + + + দফা + + + পালা + + + যে পরিমাণ + + + জোর দেবার বিভক্তি + + + (সম্বন্ধের অর্থ প্রকাশ করে) + + + কার্য কারণ সম্পর্ক বা হেতু + + + একটি বিভক্তি + + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + অঙ্কবাচক সংখ্যা (৪) + + + অঙ্কবাচক সংখ্যা (১২) + + + অঙ্কবাচক সংখ্যা (২৪) + + + অঙ্কবাচক সংখ্যা (৩০) + + + অঙ্কবাচক সংখ্যা (৪১) + + + অঙ্কবাচক সংখ্যা (৫০) + + + অঙ্কবাচক সংখ্যা (৫৫) + + + অঙ্কবাচক সংখ্যা (৭৪) + + + অঙ্কবাচক সংখ্যা (৮২) + + + অঙ্কবাচক সংখ্যা (৯১) + + + অঙ্কবাচক সংখ্যা (০) + + + প্রশ্নার্থ সম্বোধনসূচক শব্দ + + + কিছু টেনে নিয়ে যাওয়ার শব্দ + + + গাভীর রব + + + সম্মতিসূচক শব্দ + + + সম্বোধনসূচক শব্দ + + + সম্বোধনসূচক শব্দ + + + কাঠের মতো জিনিষে আঘাত করার শব্দ + + + ভেজা বা ছেঁড়া ঢোলের ন্যায় শব্দ + + + ঘড়ি কাঁসর ইত্যাদির বার বার বাজার শব্দ + + + ঘণ্টার শব্দ + + + ঘড়ির সময়সূচক আওয়াজ + + + থুথু ফেলার শব্দ + + + ঘৃণাসূচক শব্দ + + + আস্তে আস্তে বালি পড়ার শব্দ + + + জল পড়ার শব্দ + + + বৃষ্টির শব্দ + + + নূপুরের শব্দ + + + সেই ব্যক্তি + + + সম্মুখবর্তী + + + সেই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + কোন সময় + + + তুল্য বা পারা + + + ধাতুদ্রব্যাদি পড়ার বা আঘাত পাওয়ার তীক্ষ্ণ শব্দ + + + তাহলে + + + তথাপি + + + তদনন্তর + + + তাহলে + + + অন্য ব্যক্তি, বস্তু, ইত্যাদি + + + কথা না বলার নির্দেশসূচক + + + বক্তা স্বয়ং + চলার পথে দিনে রাতে / দেখা হবে সবার সাথে— / তাদের আমি চাব, তারা / আমায় চাবে॥ + মুক্ত কর হে মুক্ত কর আমারে, / তোমার নিবিড় নীরব উদার / অনন্ত আঁধারে। + + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + বিশেষ্যের বহুত্ব-বোধক প্রত্যয় + + + অঙ্কবাচক সংখ্যা (৭) + + + অঙ্কবাচক সংখ্যা (৯) + + + অঙ্কবাচক সংখ্যা (১১) + + + অঙ্কবাচক সংখ্যা (১৭) + + + অঙ্কবাচক সংখ্যা (১৮) + + + অঙ্কবাচক সংখ্যা (২৫) + + + অঙ্কবাচক সংখ্যা (২৬) + + + অঙ্কবাচক সংখ্যা (৩৭) + + + অঙ্কবাচক সংখ্যা (৪০) + + + অঙ্কবাচক সংখ্যা (৫১) + + + অঙ্কবাচক সংখ্যা (৫৬) + + + অঙ্কবাচক সংখ্যা (৫৯) + + + অঙ্কবাচক সংখ্যা (৬৬) + + + অঙ্কবাচক সংখ্যা (৭৩) + + + অঙ্কবাচক সংখ্যা (৭৬) + + + অঙ্কবাচক সংখ্যা (৭৯) + + + অঙ্কবাচক সংখ্যা (৮৫) + + + অঙ্কবাচক সংখ্যা (৮৭) + + + অঙ্কবাচক সংখ্যা (৬০) + + + অঙ্কবাচক সংখ্যা (৯৬) + + + অঙ্কবাচক সংখ্যা (৮৬) + + + অঙ্কবাচক সংখ্যা (৫৬) + + + অঙ্কবাচক সংখ্যা (৩৬) + + + তরল পদার্থ গলাঃধকরণের শব্দ + + + হঠাৎ জোরে ধাতুদ্রব্য পড়ার বা আঘাতের শব্দ + + + রস পড়ার শব্দ + + + কোন বস্তু/বিষয় + + + কোন স্থান + + + কারণে বা নিমিত্তে + + + যে সময়ে + + + সেই সময়ে + + + যে দ্রব্য + + + ব্যতীত + + + সকলেই + + + কেহ; কোনো ব্যক্তি; + + + অনির্দিষ্ট একটি বা একজন + + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি + তোর বাবার শরীর ভালো নয়। + + + অঙ্কবাচক সংখ্যা (৩৯) + + + অঙ্কবাচক সংখ্যা (৪৬) + + + অঙ্কবাচক সংখ্যা (৫৮) + + + অঙ্কবাচক সংখ্যা (৬৫) + + + অঙ্কবাচক সংখ্যা (৭২) + + + অঙ্কবাচক সংখ্যা (২০) + + + অঙ্কবাচক সংখ্যা (৬) + + + গরুকে তাড়ানোর শব্দ + + + সম্বোধন বা আহ্বান + + + পাদপূরণ + + + ভারি জিনিষ পড়ার শব্দ + + + হাসির শব্দ + + + শীতের কাঁপুনিজনিত শব্দ + + + আহ্লাদ সূচক চিৎকার + + + প্রণব + + + কাঠের মতো জিনিষে আঘাত করার শব্দ + + + অনুকার শব্দ + + + এই ব্যক্তি/বস্তু/বিষয় + + + নিকটে + + + তুলনায় + + + অভিবাদন বিশেষ + + + দৃঢ়তাসূচক শব্দ + + + নির্দিষ্ট বস্তু বা ব্যক্তি + + + ঊর্ধ্বে + + + প্রতি + + + সম্বোধন শব্দ + + + সম্বোধনসূচক শব্দ + + + থেকে বা হতে + + + পর্যন্ত + + + চুপ করো + + + অঙ্কবাচক সংখ্যা (১) + + + অঙ্কবাচক সংখ্যা (১৩) + + + অঙ্কবাচক সংখ্যা (২৮) + + + অঙ্কবাচক সংখ্যা (৩১) + + + অঙ্কবাচক সংখ্যা (৩২) + + + অঙ্কবাচক সংখ্যা (৩৪) + + + অঙ্কবাচক সংখ্যা (৩৫) + + + অঙ্কবাচক সংখ্যা (৪৫) + + + অঙ্কবাচক সংখ্যা (৪৮) + + + অঙ্কবাচক সংখ্যা (৫৩) + + + অঙ্কবাচক সংখ্যা (৫৭) + + + অঙ্কবাচক সংখ্যা (৬৩) + + + অঙ্কবাচক সংখ্যা (৭৭) + + + অঙ্কবাচক সংখ্যা (৭৮) + + + অঙ্কবাচক সংখ্যা (৮১) + + + অঙ্কবাচক সংখ্যা (৮৩) + + + অঙ্কবাচক সংখ্যা (৯৩) + + + অঙ্কবাচক সংখ্যা (৯৭) + + + সম্মতিসূচক শব্দ + + + হাসির শব্দ + + + হাসির শব্দ + + + শূদ্রদের প্রণব + + + খেদসূচক শব্দ + + + বিস্ময়সূচক শব্দ + + + প্রিয়জনকে সম্বোধন + + + ব্যক্তিকে সম্বোধন + + + ঘণ্টা ইত্যাদির শব্দ + + + হতে + + + চেয়ে + + + লাফ দেওয়ার শব্দ + + + মৃদু মন্দ বাতাস বওয়ার শব্দ + + + ক্রমাগত জলের ফোঁটা পড়ার শব্দ + + + ফল পড়ার শব্দ + + + ফোঁটা পড়ার শব্দ + + + ওই ব্যক্তি/বস্তু/বিষয় + + + সেই ব্যক্তি + + + সে বস্তু + + + বৈপরীত্যবাচক + + + অথবা + + + সাহায্যে + + + মারফৎ + + + কর্তৃক + + + সাহায্যে + + + মারফৎ + + + দ্বার দিয়ে + + + অস্থিরতা প্রকাশক শব্দ + + + স্বয়ং + + + নিজ + + + অবধি + + + কোনো ব্যক্তি + + + আপনজন + + + (প্রশংসাব্যঞ্জক শব্দ) + + + দূরীকরণ, তিরস্কার, বিরক্তি + + + বক্তা স্বয়ং ও অন্যান্য লোকজন + + + অঙ্কবাচক সংখ্যা (১৯) + + + অঙ্কবাচক সংখ্যা (২৩) + + + অঙ্কবাচক সংখ্যা (২৭) + + + অঙ্কবাচক সংখ্যা (২৯) + + + অঙ্কবাচক সংখ্যা (৩৩) + + + অঙ্কবাচক সংখ্যা (৩৬) + + + অঙ্কবাচক সংখ্যা (৩৮) + + + অঙ্কবাচক সংখ্যা (৬১) + + + অঙ্কবাচক সংখ্যা (৭১) + + + অঙ্কবাচক সংখ্যা (৭৫) + + + অঙ্কবাচক সংখ্যা (৮০) + + + অঙ্কবাচক সংখ্যা (৯৬) + + + অঙ্কবাচক সংখ্যা (৯৮) + + + অঙ্কবাচক সংখ্যা (৯৯) + + + বাতাস বা তরলের প্রবাহের শব্দ + + + আগুন জ্বলার শব্দ + + + দুঃখ প্রকাশের শব্দ + + + নাট্যে সখীর প্রতি স্মবোধনসূচক শব্দ + + + দ্রুত গমনের ভাব + + + প্রণব + + + ধাতু নির্মিত পাত্র ইত্যাদির শব্দ + + + আঘাতের শব্দ + + + অঙ্কবাচক সংখ্যা (৮৬) + + + দুটি শব্দ বা বাক্যকে সংযোগকারী অব্যয় + + + ওই ব্যক্তি + + + ওই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো + + + দুটি শব্দ বা বাক্যকে সংযোগকারী অব্যয় + + + অথবা + + + সহিত + + + হঠাৎ + + + তবে + + + তবু + + + ভাত + + + আক্ষেপের আবেগ + + + diff --git a/extensions/wikidata-lexemes/output/bo.xml b/extensions/wikidata-lexemes/output/bo.xml new file mode 100644 index 00000000..afb73e1b --- /dev/null +++ b/extensions/wikidata-lexemes/output/bo.xml @@ -0,0 +1,183 @@ + + + + + + + + + million + + + + + + ten million + + + + + + hundred thousand + + + + + + hundred billion + + + + + + ten + + + + + + hundred million + + + + + + hundred quadrillion + + + + + + one + + + + + + ten trillion + + + + + + billion, thousand million + + + + + + ten thousand + + + + + + thousand + + + + + + ten quadrillion + + + + + + quintillion + + + + + + hundred trillion + + + + + + hundred + + + + + + ten billion + + + + + + trillion + + + + + + quadrillion + + + + million + + + ten million + + + hundred thousand + + + hundred billion + + + ten + + + hundred million + + + hundred quadrillion + + + one + + + ten trillion + + + billion, thousand million + + + ten thousand + + + thousand + + + ten quadrillion + + + quintillion + + + hundred trillion + + + hundred + + + ten billion + + + trillion + + + quadrillion + + + diff --git a/extensions/wikidata-lexemes/output/br.xml b/extensions/wikidata-lexemes/output/br.xml new file mode 100644 index 00000000..0f2c98b3 --- /dev/null +++ b/extensions/wikidata-lexemes/output/br.xml @@ -0,0 +1,1246 @@ + + + + + + + + + + + + + + + article indéfini + + + + + + + à cause de + + + + + + brumenn dour + + + + + + preposition equivalent to "of" + + + + + + + vers (spatialement) + + + vers (temporellement) + + + + + + en comparaison de + + + + + + + tout au travers + + + + + + niver 40 + + + + + + quand + + + puisque + + + + + + deuxième + + + + + + + + + + + niver 4 + + + + + + niver 12 + + + + + + niver 20 + + + + + + gour + + + + + + gour + + + + + + + + + + + + + + + + + à, pour, sur le point de + + + + + + prép + + + + + + tant que, tandis que + + + + + + in the middle + + + + + + + + conjonction + + + + + + + particule verbale + + + + + + + pendant + + + + + + + + depuis + + + + + + niver 1 + + + + + + niver 14 + + + + + + niver 17 + + + + + + niver 18 + + + + + + gour + + + + + + + anadenn aergelc'h + + + + + + + + + + + + + + + + + + sans + + + + + + + + auprès de + + + au dessus de + + + + + + près de + + + + + + + used for negation + + + + + + + + + + + + + + + + comme + + + + + + + + + article défini + + + + + + niver 8 + + + + + + + + niver 10 + + + + + + + + + + + + + + pour + + + + + + + + gremm + + + + + + + sans + + + + + + devant, avant + + + + + + particule verbale + + + + + + sur + + + + + + celui, celle + + + + + + + + niver 5 + + + + + + gour + + + + + + + + + prantad + + + + + + par dessus + + + + + + tant que + + + + + + avant + + + + + + vers + + + + + + hors de + + + + + + vieille interjection : fi ! + + + + + + préposition équivalent à "par" + + + à la force de, à l'aide de, etc. + + + + + + + particule de négation + + + + + + + mais + + + + + + + + + + + + + à propos de + + + au sujet de + + + + + + + + + + + + + + contre + + + + + + niver 13 + + + + + + gour + + + + + + connects alternatives + + + + + + + possessif, deuxième personne du singulier + + + + + + + + + + + + + + + + + vers + + + contre + + + à + + + + + + vers + + + + + + + + + + + + + + + environ, alentours (dans l'espace) + + + environ, vers (dans le temps) + + + environ, à peu près, approximativement + + + + + + + contre + + + + + + selon + + + + + + + + + + + + + + + + + + de (dans l'espace) + + + contre + + + sur + + + pendant, de (dans le temps) + + + + + + + + et + + + + + + + + + + + + + + + + + de (origine, provenance, etc.) + + + + + + + + + + + niver 3 + + + + + + niver 9 + + + + + + + niver 15 + + + + + + niver 16 + + + + + + niver 19 + + + + + + gour + + + + + + + + gremm + + + + + + + between + + + among + + + + + + + + + + + + + + + + par + + + à travers + + + + + + + + jusque, jusqu'à + + + même + + + pourvu que + + + + + + au delà + + + + + + de dessus + + + + + + + + envers + + + à côté + + + en face de, face à + + + + + + niver 30 + + + + + + + l'autre + + + + + + + + peseurt den + + + + + + + + + + + + + + + + + + + + + with + + + + + + + + + + + niver 2 + + + + + + niver 6 + + + + + + niver 7 + + + + + + niver 0 + + + + + + niver 11 + + + + + + gour + + + + + + sans + + + + + + + depuis (distance) + + + depuis (temporel) + + + + + + de + + + + + + + après (dans l'espace) + + + après (dans le temps) + + + + + + + + + + + + + + + + + + dire + + + + + + + à tue-tête + + + + + + + every + + + + + + + quel + + + + article indéfini + + + à cause de + + + brumenn dour + + + preposition equivalent to "of" + + + vers (spatialement) + + + vers (temporellement) + + + en comparaison de + + + tout au travers + + + niver 40 + + + quand + + + puisque + + + deuxième + + + niver 4 + + + niver 12 + + + niver 20 + + + gour + + + gour + + + à, pour, sur le point de + + + prép + + + tant que, tandis que + + + in the middle + + + conjonction + + + particule verbale + + + pendant + + + depuis + + + niver 1 + + + niver 14 + + + niver 17 + + + niver 18 + + + gour + + + anadenn aergelc'h + + + sans + + + auprès de + + + au dessus de + + + près de + + + used for negation + + + comme + + + article défini + + + niver 8 + + + niver 10 + + + pour + + + gremm + + + sans + + + devant, avant + + + particule verbale + + + sur + + + celui, celle + + + niver 5 + + + gour + + + prantad + + + par dessus + + + tant que + + + avant + + + vers + + + hors de + + + vieille interjection : fi ! + + + préposition équivalent à "par" + + + à la force de, à l'aide de, etc. + + + particule de négation + + + mais + + + à propos de + + + au sujet de + + + contre + + + niver 13 + + + gour + + + connects alternatives + + + possessif, deuxième personne du singulier + + + vers + + + contre + + + à + + + vers + + + environ, alentours (dans l'espace) + + + environ, vers (dans le temps) + + + environ, à peu près, approximativement + + + contre + + + selon + + + de (dans l'espace) + + + contre + + + sur + + + pendant, de (dans le temps) + + + et + + + de (origine, provenance, etc.) + + + niver 3 + + + niver 9 + + + niver 15 + + + niver 16 + + + niver 19 + + + gour + + + gremm + + + between + + + among + + + par + + + à travers + + + jusque, jusqu'à + + + même + + + pourvu que + + + au delà + + + de dessus + + + envers + + + à côté + + + en face de, face à + + + niver 30 + + + l'autre + + + peseurt den + + + with + + + niver 2 + + + niver 6 + + + niver 7 + + + niver 0 + + + niver 11 + + + gour + + + sans + + + depuis (distance) + + + depuis (temporel) + + + de + + + après (dans l'espace) + + + après (dans le temps) + + + dire + + + à tue-tête + + + every + + + quel + + + diff --git a/extensions/wikidata-lexemes/output/ca.xml b/extensions/wikidata-lexemes/output/ca.xml new file mode 100644 index 00000000..55429064 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ca.xml @@ -0,0 +1,507 @@ + + + + + + + + + ouch! (in response to physical pain) + + + + + + hallelujah + + + + + + + + + + the; definite article + + + + + + proposed gender-neutral third-person pronoun + + + + + + I; first-person singular pronoun + + + + + + lets get out of here + + + + + + oh (dear me)! + + + + + + come on/let's go! + + + + + + attention/your attention please! + + + + + + bark/bow-wow (sound a dog makes) + + + + + + the devil!/hang it! + + + + + + good heavens! (expression of admiration or on seeing something strange) + + + for heaven's sake! (expression of disgust or reacting to a nuisance) + + + + + + bollocks! (expression of anger) + + + + + + bloody hell!/dammit! + + + + + + we; first-person plural pronoun + + + + + + hey! + + + + + + ahem! + + + + + + come on! (expression of encouragement) + + + wow! (expression of surprise) + + + + + + hurrah!/hurray! + + + + + + yes indeed!/right!/I see + + + + + + he + + + + + + gee up! + + + + + + good heavens! (expression of surprise) + + + for heaven's sake! (expression of anger) + + + + + + good Lord! + + + + + + (expression used on having found/achieved something) + + + + + + fuck! (expression of disgust) + + + wow! (expression of admiration) + + + + + + gesundheit (response to someone sneezing) + + + good God!/jeez! (expression of surprise) + + + + + + ding-dong (sound of a bell) + + + + + + bang!/crash!/wallop! + + + + + + and + + + + + + man, ... (expression of persuasive intent) + + + wow!/good heavens! (expression of surprise) + + + + + + you; second-person singular pronoun + + + + + + goodbye + + + + + + see you later + + + + + + halt/stop! + + + + + + (expression of enthusiasm/approval) + + + + + + look out! + + + + + + + + + + + + + (third-person direct object) + + + + + + ooh/oh/ah! + + + + + + watch out/look out! + + + + + + for fuck's sake! (expression of anger) + + + fuckng hell! (expression of surprise) + + + + + + hah! (expression of surprise) + + + + + + hello! + + + + + + (expression of praise towards God) + + + + + + oh! (general expression of emotion) + + + + + + isn't it? (used to seek confirmation of something said) + + + + + + she + + + + + + + from + + + + + + hey! + + + + ouch! (in response to physical pain) + + + hallelujah + + + the; definite article + + + proposed gender-neutral third-person pronoun + + + I; first-person singular pronoun + + + lets get out of here + + + oh (dear me)! + + + come on/let's go! + + + attention/your attention please! + + + bark/bow-wow (sound a dog makes) + + + the devil!/hang it! + + + good heavens! (expression of admiration or on seeing something strange) + + + for heaven's sake! (expression of disgust or reacting to a nuisance) + + + bollocks! (expression of anger) + + + bloody hell!/dammit! + + + we; first-person plural pronoun + + + hey! + + + ahem! + + + come on! (expression of encouragement) + + + wow! (expression of surprise) + + + hurrah!/hurray! + + + yes indeed!/right!/I see + + + he + + + gee up! + + + good heavens! (expression of surprise) + + + for heaven's sake! (expression of anger) + + + good Lord! + + + (expression used on having found/achieved something) + + + fuck! (expression of disgust) + + + wow! (expression of admiration) + + + gesundheit (response to someone sneezing) + + + good God!/jeez! (expression of surprise) + + + ding-dong (sound of a bell) + + + bang!/crash!/wallop! + + + and + + + man, ... (expression of persuasive intent) + + + wow!/good heavens! (expression of surprise) + + + you; second-person singular pronoun + + + goodbye + + + see you later + + + halt/stop! + + + (expression of enthusiasm/approval) + + + look out! + + + (third-person direct object) + + + ooh/oh/ah! + + + watch out/look out! + + + for fuck's sake! (expression of anger) + + + fuckng hell! (expression of surprise) + + + hah! (expression of surprise) + + + hello! + + + (expression of praise towards God) + + + oh! (general expression of emotion) + + + isn't it? (used to seek confirmation of something said) + + + she + + + from + + + hey! + + + diff --git a/extensions/wikidata-lexemes/output/ce.xml b/extensions/wikidata-lexemes/output/ce.xml new file mode 100644 index 00000000..7213c1c9 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ce.xml @@ -0,0 +1,30 @@ + + + + + + + + + они + + + + + + one + + + + они + + + one + + + diff --git a/extensions/wikidata-lexemes/output/cs.xml b/extensions/wikidata-lexemes/output/cs.xml new file mode 100644 index 00000000..ded6eea9 --- /dev/null +++ b/extensions/wikidata-lexemes/output/cs.xml @@ -0,0 +1,6536 @@ + + + + + + + + + vyjadřuje nesouhlas + + + + + + + + vybízející k přijetí něčeho + + + no, nuže + + + + + + + + + + zastupuje neurčitou, obecnou věc + + + + + + + označuje počet 9 + + + + + + + označuje počet 7 + + + + + + + označuje počet 16 + + + + + + + označuje počet 90 + + + + + + pomoci (radou, penězi, atp.) + + + + + + muž, který dočasně žije bez nepřítomné manželky + + + + + + podobně přemýšlející lidi + + + + + + ale + + + ledaže + + + + + + + + + + + + + + + jedna z osmi stejných částí celku + + + + + + + + + + + + + + + jedna z devíti stejných částí celku + + + + + + + + + + + + + + + jedna z devatenácti stejných částí celku + + + + + + + + + + + + + + + jedna z padesáti stejných částí celku + + + + + + + + + + + + + + + jedna ze sta stejných částí celku + + + + + + několik + + + + + + lenošit + + + + + + nastejno + + + + + + klepání + + + + + + + citoslovce údivu + + + + + + citoslovce údivu + + + + + + zvuk prasete + + + + + + povel koni + + + + + + souhlas, přitakání + + + + + + vyjádření nesouhlasu + + + + + + souhlas, přitakání + + + + + + nesouhlas + + + + + + při vychloubání + + + + + + vyjádření kousnutí + + + + + + klepání + + + + + + + zvolání na zvířata + + + + + + nemožnost změnit nežádoucí stav + + + + + + structure that uses a water wheel or turbine to drive a mechanical process + + + + + + mechanical or electromechanical machine for typing characters + + + + + + + politická organizace sdružující osoby se stejnou ideologií a nominující kandidáty do veřejných úřadů + + + + + + cukřenka vyrobená z keramiky + + + + + + species of bird + + + + + + být opilý + + + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of parrot + + + + + + member of the albatross family + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of plant, alfalfa + + + + + + species of bird + + + + + + species of bird + + + + + + druh ptáka rodu Erythrura + + + druh ptáka Chloebia gouldiae + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Pionus + + + + + + druh ptáka rodu Pyrilia + + + + + + druh ptáka rodu Pionopsitta + + + + + + druh ptáka rodu Orthopsittaca + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Ognorhynchus + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Eupsittula + + + + + + druh ptáka rodu Psittacara + + + + + + druh rostliny rodu Callistephus + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Cryptospiza + + + + + + druh ptáka rodu Pytilia + + + + + + druh ptáka rodu Vidua + + + + + + uzavřená místnost, do které je vháněn plyn, což způsobuje smrt otravou nebo zadušením + + + + + + + označuje počet 19 + + + + + + + označuje počet 20 + + + + + + + označuje počet 60 + + + + + + + označuje počet 80 + + + + + + + + + + + + + + + + vyjadřuje pořadí na 4. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 50. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 90. místě + + + + + + promarnit svůj talent + + + + + + rozloučení + + + + + + + + + + + označuje žádný počet + + + + + + + + + + + + + + + jedna z patnácti stejných částí celku + + + + + + + + + + + + fyziologická reakce těla + + + + + + vyjadřuje upozornění na něco či podivení nad něčím + + + + + + + + + povel koni + + + + + + zaklení + + + + + + vyjádření oslovení + + + + + + upozorňovací + + + + + + souhlas, přitakání + + + + + + souhlas, přitakání + + + + + + souhlas, přitakání + + + + + + zvolání + + + + + + působivě zveličovat vlastní schopnosti + Před jedenáctikilometrovým závodem dělal ramena, nicméně skončil hluboko v poli poražených. + + + + + + manželka prezidenta + + + + + + předměty určené pro servírování + + + + + + říkat nesmysly + + + + + + + + + + + + + + + natural number with value 10¹⁵, named one quadrillion or one billiard depending on the scale; also one thousand, million, million + + + + + + + + + + + + + + + natural number with the value 10⁹, named one billion or one milliard + + + + + + system of politics and government + + + + + + druh piva + + + + + + kotouč používaný při střelbě na pohyblivý terč + + + + + + species of plant + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird, auk + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Amazona + + + + + + druh papouška rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Deroptyus + + + + + + druh ptáka rodu Pionus + + + + + + druh ptáka rodu Hapalopsittaca + + + + + + druh papouška rodu Pionites + + + + + + druh ptáka rodu Pionus + + + + + + druh květiny rodu Iris + + + + + + druh ptáka rodu Primolius + + + + + + druh ptáka rodu Primolius + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Eupsittula + + + + + + druh ptáka Aratinga jandaya + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Rheinardia + + + + + + druh ptáka rodu Emblema + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Vidua + + + + + + druh rostliny rodu Agave + + + + + + výkřik pro odehnání + + + + + + stav, ve kterém vláda používá mimořádné pravomoci či omezuje občanská práva + + + + + + dutina na zadním konci hlavně, do které se vkládá náboj před výstřelem + + + + + + objekty způsobující zvýšení (zdýmání) vodní hladiny ve vodním toku a umožňující převést plavidla mezi horní a dolní hladinou a zpět + + + + + + snaha o ovlivnění politických názorů v dané skupině + + + + + + osoba, která se snaží zapojit lidi do politických protestů, aktivit, stávek a nepokojů + + + + + + skalární fyzikální veličina používaná pro popis periodických, zpravidla harmonických dějů + + + + + + pojivo používané jako základní složka betonu + + + + + + české národní jídlo + + + + + + + + + + + označuje mluvčího promluvy + + + + + + + + + + + + + + + označuje počet 1 + + + + + + + označuje počet 50 + + + + + + + + + + + vyjadřuje pořadí na 3. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 5. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 9. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 15. místě + + + + + + osoba v pozadí s významným vlivem + + + + + + + žena, která dočasně žije bez nepřítomného manžela + + + + + + pokojová rostlina s typickými dlouhými listy + + + + + + šalvěj lékařská + + + + + + + + + + + + + dřívější označení svátosti nemocných + + + + + + + + + + + + + + + jedna z pěti stejných částí celku + + + + + + + + + + + + + + + jedna z osmnácti stejných částí celku + + + + + + + + + + + + + + + jedna z tisíce stejných částí celku + + + + + + + + + + + + + + + jedna ze dvou stejných částí celku + + + + + + slovní druh + + + + + + slovní druh + + + + + + vymlouvat se, dělat drahoty + + + + + + která, jež + + + + + + povel koni + + + + + + citoslovce údivu + + + + + + citoslovce údivu + + + + + + citoslovce volání na drůbež + + + + + + zaklení + + + + + + povzbuzení + + + + + + vyjádření pištění + + + + + + souhlas, přitakání + + + + + + souhlas, přitakání + + + + + + vyjádření rozčilení + + + + + + odmítnutí + + + + + + polévka z drštěk + + + + + + + výrazná hůl používaná při chůzi nevidomými + + + + + + + strašidelná ženská postava z hradů a zámků + + + + + + species of bird + + + + + + species of insect + + + + + + species of plant + + + + + + species of bird + + + + + + species in the daisy family (Asteraceae) + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of finches + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh středně velkého papouška + + + + + + druh ptáka rodu Amazona + + + + + + druh jihoamerického papouška + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Pyrilia + + + + + + druh ptáka rodu Hapalopsittaca + + + + + + druh ptáka rodu Hapalopsittaca + + + + + + druh ptáka rodu Pionus + + + + + + druh rostliny rodu Ambrosia + + + + + + druh ptáka rodu Anhinga + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Diopsittaca + + + + + + druh papouška rodu Rhynchopsitta + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Thectocercus + + + + + + druh ptáka rodu Eupsittula + + + + + + druh ptáka rodu Aratinga + + + + + + druh ptáka rodu Aratinga + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Pytilia + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Neochmia + + + + + + druh ptáka rodu Coccopygia + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Vidua + + + + + + druh ptáka rodu Vidua + + + + + + období o délce zhruba dva týdny + + + + + + volá o pomoc + + + + + + snaha o ovlivnění politických názorů v předvolební kampani + + + + + + mít kladný citový vztah + + + mít příjemný pocit z něčeho + + + mívat příjemný pocit při konzumaci něčeho + + + + + + nevýrazný, nenápadný člověk + + + + + + + + + označuje skupinu mluvčích promluvy + + + + + + + označuje počet 6 + + + + + + + označuje počet 13 + + + + + + + označuje počet 15 + + + + + + + označuje počet 17 + + + + + + + + + + + + + + + + vyjadřuje pořadí na 1. místě + + + + + + + + + + + + + + + + + vyjadřuje pořadí na 10. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 14. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 30. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 60. místě + + + + + + + + + + + + + + vyjadřuje počet 100 + + + + + + z místa za něčím + + + + + + vyjadřuje souhlas + + + + + + + + + velmi mnoho + A děcek mají jako máku. + + + + + + zkušený námořník + + + mořčák evropský + + + + + + vyjadřuje polohu ve středu nějakého prostoru + + + vyjadřuje, že k události došlo v průběhu nějakého děje + + + vyjadřuje, že k události došlo přibližně v prostředku nějakého časového úseku + + + + + + vyjadřuje povzdech + + + + + + neformální pozdrav + + + + + + topit se + + + + + + být opilý + + + + + + + + být opilý + + + + + + + + výkřik k odhánění + + + + + + + pozdrav + + + + + + pozdrav + + + + + + pozdrav + + + + + + pozdrav + + + + + + citoslovce údivu + + + + + + ona + + + + + + povel k pozoru + + + + + + upozornění + + + + + + upozornění + + + + + + upozornění + + + + + + upozorňuje na požár + + + + + + povel koni + + + + + + poděkování + + + + + + záporná odpověď na otázku + + + + + + odmítnutí + + + + + + povel koni + + + + + + zvolání na zvířata + + + + + + machine used to stitch fabric + + + + + + mythical torture device + + + + + + + druh ptáka rodu Amazonetta + + + + + + + druh hmyzu + + + + + + species of bird + + + + + + species of plant + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + druh ptáka rodu Stagonopleura + + + + + + druh astrildovitého ptáka z rodu Amadina + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Graydidascalus + + + + + + druh ptáka rodu Pionus + + + + + + druh ptáka rodu Pyrilia + + + + + + druh ptáka rodu Anodorhynchus + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Eupsittula + + + + + + druh ptáka rodu Aratinga + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Paludipasser + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Neochmia + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Vidua + + + + + + druh ptáka rodu Vidua + + + + + + druh rostliny + + + + + + + druh rostliny + + + + + + zvuk pro překvapení + + + + + + + dějiště, kde došlo k určité události + + + + + + tkalcovský stav + + + + + + písemný záznam o narozeních, svatbách a úmrtích udržovaný nějakou institucí + + + + + + komora v srdci + + + + + + země nebo místo s nízkými daněmi pro zahraniční investory + + + + + + nit používaná v zubní hygieně + + + + + + + počet tepů srdce za minutu + + + + + + + vyjma + + + + + + + + + + označuje počet 3 + + + + + + + + + + označuje počet 4 + + + + + + + označuje počet 5 + + + + + + + + + + odkazovaná osoba ženského rodu + + + + + + + + + wy + + + + + + + + + označuje počet 2 + + + + + + + označuje počet 18 + + + + + + + + + + + vyjadřuje pořadí na 1. místě + + + + + + + + + + + + + + + + + vyjadřuje pořadí na 8. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 12. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 13. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 16. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 18. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 40. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 80. místě + + + + + + přirovnává slovo předcházející ke slovu následujícímu + + + + + + přesto + + + + + + bohužel + + + + + + vyjadřuje lítost + + + + + + + + + + + + + + + jedna ze sedmi stejných částí celku + + + + + + + + + + + + + + + jedna z deseti stejných částí celku + + + + + + + + + + + + + + + jedna ze čtrnácti stejných částí celku + + + + + + + + + + + + + + + jedna ze sedmnácti stejných částí celku + + + + + + + + + + + + + + + jedna z devadesáti stejných částí celku + + + + + + + + + + sportovní událost + + + + + + dostat vynadáno nebo namláceno + + + + + + + vyjádření klepání + + + + + + vyjádření rozčilení + + + + + + citoslovce naznačující křik některých ptáků + + + + + + upozornění + + + + + + upozornění + + + + + + vyjádření nesouhlasu + + + + + + sbohem + + + + + + vyjádření pohybu zvířat + + + + + + zvolání na zvířata + + + + + + vyjadřuje upozornění na něco či podivení nad něčím + + + + + + + + + pravidlo používané v několika týmových sportech + + + + + + carnivorous plant + + + + + + cukřenka vyrobená z porcelánu + + + + + + druh ptáka rodu Amazonetta + + + + + + + druh ptáka rodu Aix + + + + + + druh ptáka rodu Nettapus + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Oreostruthus + + + + + + druh ptáka rodu Stagonopleura + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh papouškovitého ptáka + + + + + + druh ptáka rodu Amazona + + + + + + druh rostliny rodu Ambrosia + + + + + + druh ptáka rodu Anodorhynchus + + + + + + druh ptáka Ara glaucogularis + + + + + + druh papouška rodu Anodorhynchus + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Pytilia + + + + + + druh ptáka rodu Ortygospiza + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Vidua + + + + + + obdržet víc informací, než je únosné + + + + + + výkřik k zahnání + + + + + + formální záznam o finančních aktivitách a situaci podniku, osoby nebo jiného subjektu + + + + + + kniha zaznamenávající všechny návštěvy + + + + + + druh kamenné dlažby + + + přírodní stavební materiál na bázi dlažebních kamenů o velikosti dlažební kostky, používaný na dlažbu silnic, ulic a budov + + + + + + jedna ze čtyř hlavních složek zubů + + + + + + český jazykolam + + + + + + + + označuje počet 10 + + + + + + + označuje počet 11 + + + + + + + označuje počet 40 + + + + + + + + + + + + + + + + vyjadřuje pořadí na 19. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 100. místě + + + + + + + + + + + + + + + kdo neudrží nic v tajnosti + + + + + + ano + + + nuže + + + + + + + + + + + + + + + jedna ze tří stejných částí celku + + + + + + + + + + + + + + + jedna ze čtyř stejných částí celku + + + + + + + + + + + + + + + jedna z dvanácti stejných částí celku + + + + + + + + + + + + + + + jedna ze šestnácti stejných částí celku + + + + + + + + + + + + + + + jedna ze třiceti stejných částí celku + + + + + + + + + + + + + + + jedna ze šedesáti stejných částí celku + + + + + + + + + + + + + + + jedna ze sedmdesáti stejných částí celku + + + + + + + + + + + + + + + jedna z osmdesáti stejných částí celku + + + + + + + + + + + + + + + extrémně hmotný vesmírný objekt + + + + + + dostat vynadáno nebo namláceno + + + + + + + povel koni + + + + + + citoslovce údivu + + + + + + citoslovce údivu + + + + + + citoslovce volání na drůbež + + + + + + upozornění + + + + + + vyjádření škytnutí + + + + + + výkřik k odhánění + + + + + + + které, jež + + + + + + zdrobnělý pozdrav + + + + + + nesouhlas + + + + + + povel koni + + + + + + zvolání na zvířata + + + + + + tool to partially or fully automate the labour of mowing + + + + + + species of flowering plant in the honeysuckle family Caprifoliaceae + + + + + + dětská panenka s mrkacíma očima + + + + + + druh ptáka rodu Estrilda + + + + + + machine that converts the energy of wind into rotational energy + + + + + + extinct species of North American pigeon, most abundant bird on Earth before extinction + + + + + + species of insect + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + large seabird from the albatross family + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + druh ptáka rodu Erythrura + + + + + + druh astrildovitého ptáka + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh jihoamerického papouška + + + + + + druh ptáka rodu Pionus + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Ara + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Psittacara + + + + + + druh ptáka rodu Eupsittula + + + + + + druh ptáka rodu Cryptospiza + + + + + + druh ptáka rodu Cryptospiza + + + + + + Drobný pták z čeledi astrildovitých + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Vidua + + + + + + druh ptáka rodu Vidua + + + + + + druh rostliny rodu Azolla + + + + + + druh rostliny + + + + + + druh rostliny + + + + + + + druh rostliny + + + + + + útvar mořského dna + + + + + + nízká plochá nádoba používaná při tepelné úpravě jídla + + + + + + parametr udávající, kolikrát se obraz na zapnutém zobrazovacím zařízení aktualizuje za sekundu + + + + + + lepidla používaná k fixaci protetických pomůcek ke kostem a k lepení kostí na kost u obtížných zlomenin + + + + + + + označuje počet 8 + + + + + + + označuje počet 12 + + + + + + + + + + + + + + + + vyjadřuje pořadí na 11. místě + + + + + + + + + + + vyjadřuje pořadí na 1000. místě + + + + + + nezdárný člen + + + + + + označuje mňoukání kočky + + + + + + rozčílit + + + + + + + vyjadřuje vyšší pravděpodobnost + + + + + + + + + + + + + + + jedna ze šesti stejných částí celku + + + + + + + + + + + + + + + jedna ze třinácti stejných částí celku + + + + + + + + + + + + + + + jedna z dvaceti stejných částí celku + + + + + + hudební nástroj + + + + + + vyjadřuje příčinnou zásluhu + + + + + + považovat něco naivně za jednodušší, než tomu ve skutečnosti je + + + + + + zvuk strašení + + + zvuk k vyjádření hněvu + + + + + + výzva k pozoru + + + + + + + citoslovce údivu + + + + + + povel k zastavení + + + + + + upozornění + + + + + + upozornění + + + + + + upozornění + + + + + + upozornění + + + + + + zaklení + + + + + + výraz uvozující řeč + + + + + + zaklení + + + + + + vyjádření oslovení + + + + + + vyjádření znechucení + + + + + + souhlas, přitakání + + + + + + při bědování + + + + + + vyjádření kousnutí + + + + + + zvolání + + + + + + vyjadřuje upozornění na něco či podivení nad něčím + + + + + + utéct + + + + + + mythical torture device + + + + + + + druh ptáka rodu Aix + + + + + + + + + + + + + natural number of 1,000,000 + + + velké množství + + + + + + species of bird of prey + + + + + + + druh rostliny rodu Abelia + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + extinct species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + druh astrildovitého ptáka + + + + + + druh ptáka rodu Erythrura + + + + + + druh ptáka rodu Odontospiza + + + + + + druh ptáka rodu Neochmia + + + + + + druh papouškovitého ptáka + + + + + + druh ptáka rodu Triclaria + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Pyrilia + + + + + + druh papouška rodu Melopsittacus + + + + + + druh ptáka rodu Anhinga + + + + + + druh ptáka rodu Anhinga + + + + + + druh rostliny rodu Anoda + + + + + + druh ptáka rodu Rhynchopsitta + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Aulacorhynchus + + + + + + druh ptáka rodu Selenidera + + + + + + druh ptáka rodu Aratinga + + + + + + druh ptáka rody Argusianus + + + + + + druh rostliny rodu Arum + + + + + + druh ptáka rodu Estrilda + + + + + + druh ptáka rodu Sporopipes + + + + + + druh ptáka rodu Attila + + + + + + druh rostliny + + + + + + jako náhrada za + + + + + + stav, kdy je subjekt ve válce + + + + + + archivní kniha postihující řízení ve věcech majetkových probíhající u venkovských obcí na jejich shromážděních + + + + + + uzavřený prostor, ve kterém je vytvořeno vakuum + + + + + + specialistka na zubní hygienu + + + + + + + vyjadřuje souhlas + + + + + + + + + označuje počet 14 + + + + + + + označuje počet 30 + + + + + + + označuje počet 70 + + + + + + + + + + + + + + + + vyjadřuje pořadí na 2. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 6. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 7. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 17. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 20. místě + + + + + + + + + + + + + + + + vyjadřuje pořadí na 70. místě + + + + + + + + + + + + vyjadřuje počet 1000 + + + + + + osoba v pozadí s významným vlivem + + + + + + + výjimka, zvláštnost + + + + + + zvuk pro překvapení + + + + + + + okolo, kolem + + + + + + označuje štěkání psa + + + + + + správní středisko státu + + + + + + + pravděpodobně, možná + + + přibližně + + + + + + bohužel + + + + + + + + + + + + + + + jedna z jedenácti stejných částí celku + + + + + + + + + + + + + + + jedna ze čtyřiceti stejných částí celku + + + + + + vyjadřuje upozornění na něco či podivení nad něčím + + + + + + + + + pozdrav + + + + + + vyjádření rozčilení + + + + + + souhlas, přitakání + + + + + + pozdrav + + + + + + sezení + + + + + + ležení + + + + + + upozornění + + + + + + upozornění + + + + + + upozornění + + + + + + při bolesti + + + + + + souhlas, přitakání + + + + + + odmítnutí + + + + + + vyjadřuje upozornění na něco či podivení nad něčím + + + + + + + + + rychle a důrazně + + + + + + povel zahánějící zvířata + + + + + + hypothetical device capable of time travel + + + + + + species of bird of prey + + + + + + + species of plant + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + species of bird + + + + + + druh ptáka rodu Stagonopleura + + + + + + druh okrasného ptáka z Afriky + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh ptáka rodu Lagonosticta + + + + + + druh papouškovitého ptáka + + + + + + druh ptáka rodu Amazona + + + + + + druh ptáka rodu Pionites + + + + + + druh ptáka rodu Pyrilia + + + + + + druh ptáka rodu Pyrilia + + + + + + druh ptáka rodu Pionus + + + + + + druh ptáka rodu Hapalopsittaca + + + + + + druh rostliny rodu Ambrosia + + + + + + druh rostliny rodu Ananas + + + + + + druh ptáka rodu Pteroglossus + + + + + + druh ptáka rodu Aratinga + + + + + + druh ptáka rodu Guaruba + + + + + + druh ptáka rodu Rheinardia + + + + + + druh ptáka rodu Taeniopygia + + + + + + druh ptáka rodu Cryptospiza + + + + + + druh ptáka rodu Neochmia + + + + + + druh ptáka rodu Sporopipes + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Attila + + + + + + druh ptáka rodu Vidua + + + + + + výzva k pozoru + + + + + + + výkřik k odhánění + + + + + + zateplený vak na spaní + + + + + + vyvrcholení účetních prací za celé účetní období v účetní jednotce + + + + + + specialistka na zubní hygienu + + + + + + + nit používaná v zubní hygieně + + + + + + + osoba, která se snaží zapojit lidi do volebních protestů, aktivit, stávek a nepokojů + + + + + + čas hluboké noci + + + + + + člověk, který se zabývá hledáním vyjímečných lidí + + + + + + drobný objekt používaný pro generování náhodných čísel + + + + vyjadřuje nesouhlas + + + vybízející k přijetí něčeho + + + no, nuže + + + zastupuje neurčitou, obecnou věc + + + označuje počet 9 + + + označuje počet 7 + + + označuje počet 16 + + + označuje počet 90 + + + pomoci (radou, penězi, atp.) + + + muž, který dočasně žije bez nepřítomné manželky + + + podobně přemýšlející lidi + + + ale + + + ledaže + + + jedna z osmi stejných částí celku + + + jedna z devíti stejných částí celku + + + jedna z devatenácti stejných částí celku + + + jedna z padesáti stejných částí celku + + + jedna ze sta stejných částí celku + + + několik + + + lenošit + + + nastejno + + + klepání + + + citoslovce údivu + + + citoslovce údivu + + + zvuk prasete + + + povel koni + + + souhlas, přitakání + + + vyjádření nesouhlasu + + + souhlas, přitakání + + + nesouhlas + + + při vychloubání + + + vyjádření kousnutí + + + klepání + + + zvolání na zvířata + + + nemožnost změnit nežádoucí stav + + + structure that uses a water wheel or turbine to drive a mechanical process + + + mechanical or electromechanical machine for typing characters + + + politická organizace sdružující osoby se stejnou ideologií a nominující kandidáty do veřejných úřadů + + + cukřenka vyrobená z keramiky + + + species of bird + + + být opilý + + + species of bird + + + species of bird + + + species of bird + + + species of parrot + + + member of the albatross family + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of plant, alfalfa + + + species of bird + + + species of bird + + + druh ptáka rodu Erythrura + + + druh ptáka Chloebia gouldiae + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Pionus + + + druh ptáka rodu Pyrilia + + + druh ptáka rodu Pionopsitta + + + druh ptáka rodu Orthopsittaca + + + druh ptáka rodu Ara + + + druh ptáka rodu Ognorhynchus + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Eupsittula + + + druh ptáka rodu Psittacara + + + druh rostliny rodu Callistephus + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Cryptospiza + + + druh ptáka rodu Pytilia + + + druh ptáka rodu Vidua + + + uzavřená místnost, do které je vháněn plyn, což způsobuje smrt otravou nebo zadušením + + + označuje počet 19 + + + označuje počet 20 + + + označuje počet 60 + + + označuje počet 80 + + + vyjadřuje pořadí na 4. místě + + + vyjadřuje pořadí na 50. místě + + + vyjadřuje pořadí na 90. místě + + + promarnit svůj talent + + + rozloučení + + + označuje žádný počet + + + jedna z patnácti stejných částí celku + + + fyziologická reakce těla + + + vyjadřuje upozornění na něco či podivení nad něčím + + + povel koni + + + zaklení + + + vyjádření oslovení + + + upozorňovací + + + souhlas, přitakání + + + souhlas, přitakání + + + souhlas, přitakání + + + zvolání + + + působivě zveličovat vlastní schopnosti + Před jedenáctikilometrovým závodem dělal ramena, nicméně skončil hluboko v poli poražených. + + + manželka prezidenta + + + předměty určené pro servírování + + + říkat nesmysly + + + natural number with value 10¹⁵, named one quadrillion or one billiard depending on the scale; also one thousand, million, million + + + natural number with the value 10⁹, named one billion or one milliard + + + system of politics and government + + + druh piva + + + kotouč používaný při střelbě na pohyblivý terč + + + species of plant + + + species of bird + + + species of bird + + + species of bird + + + species of bird, auk + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Amazona + + + druh papouška rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Deroptyus + + + druh ptáka rodu Pionus + + + druh ptáka rodu Hapalopsittaca + + + druh papouška rodu Pionites + + + druh ptáka rodu Pionus + + + druh květiny rodu Iris + + + druh ptáka rodu Primolius + + + druh ptáka rodu Primolius + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Eupsittula + + + druh ptáka Aratinga jandaya + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Rheinardia + + + druh ptáka rodu Emblema + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Attila + + + druh ptáka rodu Vidua + + + druh rostliny rodu Agave + + + výkřik pro odehnání + + + stav, ve kterém vláda používá mimořádné pravomoci či omezuje občanská práva + + + dutina na zadním konci hlavně, do které se vkládá náboj před výstřelem + + + objekty způsobující zvýšení (zdýmání) vodní hladiny ve vodním toku a umožňující převést plavidla mezi horní a dolní hladinou a zpět + + + snaha o ovlivnění politických názorů v dané skupině + + + osoba, která se snaží zapojit lidi do politických protestů, aktivit, stávek a nepokojů + + + skalární fyzikální veličina používaná pro popis periodických, zpravidla harmonických dějů + + + pojivo používané jako základní složka betonu + + + české národní jídlo + + + označuje mluvčího promluvy + + + označuje počet 1 + + + označuje počet 50 + + + vyjadřuje pořadí na 3. místě + + + vyjadřuje pořadí na 5. místě + + + vyjadřuje pořadí na 9. místě + + + vyjadřuje pořadí na 15. místě + + + osoba v pozadí s významným vlivem + + + žena, která dočasně žije bez nepřítomného manžela + + + pokojová rostlina s typickými dlouhými listy + + + šalvěj lékařská + + + dřívější označení svátosti nemocných + + + jedna z pěti stejných částí celku + + + jedna z osmnácti stejných částí celku + + + jedna z tisíce stejných částí celku + + + jedna ze dvou stejných částí celku + + + slovní druh + + + slovní druh + + + vymlouvat se, dělat drahoty + + + která, jež + + + povel koni + + + citoslovce údivu + + + citoslovce údivu + + + citoslovce volání na drůbež + + + zaklení + + + povzbuzení + + + vyjádření pištění + + + souhlas, přitakání + + + souhlas, přitakání + + + vyjádření rozčilení + + + odmítnutí + + + polévka z drštěk + + + výrazná hůl používaná při chůzi nevidomými + + + strašidelná ženská postava z hradů a zámků + + + species of bird + + + species of insect + + + species of plant + + + species of bird + + + species in the daisy family (Asteraceae) + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of finches + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Lagonosticta + + + druh středně velkého papouška + + + druh ptáka rodu Amazona + + + druh jihoamerického papouška + + + druh ptáka rodu Amazona + + + druh ptáka rodu Pyrilia + + + druh ptáka rodu Hapalopsittaca + + + druh ptáka rodu Hapalopsittaca + + + druh ptáka rodu Pionus + + + druh rostliny rodu Ambrosia + + + druh ptáka rodu Anhinga + + + druh ptáka rodu Ara + + + druh ptáka rodu Diopsittaca + + + druh papouška rodu Rhynchopsitta + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Thectocercus + + + druh ptáka rodu Eupsittula + + + druh ptáka rodu Aratinga + + + druh ptáka rodu Aratinga + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Pytilia + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Neochmia + + + druh ptáka rodu Coccopygia + + + druh ptáka rodu Attila + + + druh ptáka rodu Vidua + + + druh ptáka rodu Vidua + + + období o délce zhruba dva týdny + + + volá o pomoc + + + snaha o ovlivnění politických názorů v předvolební kampani + + + mít kladný citový vztah + + + mít příjemný pocit z něčeho + + + mívat příjemný pocit při konzumaci něčeho + + + nevýrazný, nenápadný člověk + + + označuje skupinu mluvčích promluvy + + + označuje počet 6 + + + označuje počet 13 + + + označuje počet 15 + + + označuje počet 17 + + + vyjadřuje pořadí na 1. místě + + + vyjadřuje pořadí na 10. místě + + + vyjadřuje pořadí na 14. místě + + + vyjadřuje pořadí na 30. místě + + + vyjadřuje pořadí na 60. místě + + + vyjadřuje počet 100 + + + z místa za něčím + + + vyjadřuje souhlas + + + velmi mnoho + A děcek mají jako máku. + + + zkušený námořník + + + mořčák evropský + + + vyjadřuje polohu ve středu nějakého prostoru + + + vyjadřuje, že k události došlo v průběhu nějakého děje + + + vyjadřuje, že k události došlo přibližně v prostředku nějakého časového úseku + + + vyjadřuje povzdech + + + neformální pozdrav + + + topit se + + + být opilý + + + být opilý + + + výkřik k odhánění + + + pozdrav + + + pozdrav + + + pozdrav + + + pozdrav + + + citoslovce údivu + + + ona + + + povel k pozoru + + + upozornění + + + upozornění + + + upozornění + + + upozorňuje na požár + + + povel koni + + + poděkování + + + záporná odpověď na otázku + + + odmítnutí + + + povel koni + + + zvolání na zvířata + + + machine used to stitch fabric + + + mythical torture device + + + druh ptáka rodu Amazonetta + + + druh hmyzu + + + species of bird + + + species of plant + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + druh ptáka rodu Stagonopleura + + + druh astrildovitého ptáka z rodu Amadina + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Amazona + + + druh ptáka rodu Graydidascalus + + + druh ptáka rodu Pionus + + + druh ptáka rodu Pyrilia + + + druh ptáka rodu Anodorhynchus + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Eupsittula + + + druh ptáka rodu Aratinga + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Paludipasser + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Neochmia + + + druh ptáka rodu Attila + + + druh ptáka rodu Vidua + + + druh ptáka rodu Vidua + + + druh rostliny + + + druh rostliny + + + zvuk pro překvapení + + + dějiště, kde došlo k určité události + + + tkalcovský stav + + + písemný záznam o narozeních, svatbách a úmrtích udržovaný nějakou institucí + + + komora v srdci + + + země nebo místo s nízkými daněmi pro zahraniční investory + + + nit používaná v zubní hygieně + + + počet tepů srdce za minutu + + + vyjma + + + označuje počet 3 + + + označuje počet 4 + + + označuje počet 5 + + + odkazovaná osoba ženského rodu + + + wy + + + označuje počet 2 + + + označuje počet 18 + + + vyjadřuje pořadí na 1. místě + + + vyjadřuje pořadí na 8. místě + + + vyjadřuje pořadí na 12. místě + + + vyjadřuje pořadí na 13. místě + + + vyjadřuje pořadí na 16. místě + + + vyjadřuje pořadí na 18. místě + + + vyjadřuje pořadí na 40. místě + + + vyjadřuje pořadí na 80. místě + + + přirovnává slovo předcházející ke slovu následujícímu + + + přesto + + + bohužel + + + vyjadřuje lítost + + + jedna ze sedmi stejných částí celku + + + jedna z deseti stejných částí celku + + + jedna ze čtrnácti stejných částí celku + + + jedna ze sedmnácti stejných částí celku + + + jedna z devadesáti stejných částí celku + + + sportovní událost + + + dostat vynadáno nebo namláceno + + + vyjádření klepání + + + vyjádření rozčilení + + + citoslovce naznačující křik některých ptáků + + + upozornění + + + upozornění + + + vyjádření nesouhlasu + + + sbohem + + + vyjádření pohybu zvířat + + + zvolání na zvířata + + + vyjadřuje upozornění na něco či podivení nad něčím + + + pravidlo používané v několika týmových sportech + + + carnivorous plant + + + cukřenka vyrobená z porcelánu + + + druh ptáka rodu Amazonetta + + + druh ptáka rodu Aix + + + druh ptáka rodu Nettapus + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Oreostruthus + + + druh ptáka rodu Stagonopleura + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Lagonosticta + + + druh papouškovitého ptáka + + + druh ptáka rodu Amazona + + + druh rostliny rodu Ambrosia + + + druh ptáka rodu Anodorhynchus + + + druh ptáka Ara glaucogularis + + + druh papouška rodu Anodorhynchus + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Pytilia + + + druh ptáka rodu Ortygospiza + + + druh ptáka rodu Attila + + + druh ptáka rodu Vidua + + + obdržet víc informací, než je únosné + + + výkřik k zahnání + + + formální záznam o finančních aktivitách a situaci podniku, osoby nebo jiného subjektu + + + kniha zaznamenávající všechny návštěvy + + + druh kamenné dlažby + + + přírodní stavební materiál na bázi dlažebních kamenů o velikosti dlažební kostky, používaný na dlažbu silnic, ulic a budov + + + jedna ze čtyř hlavních složek zubů + + + český jazykolam + + + označuje počet 10 + + + označuje počet 11 + + + označuje počet 40 + + + vyjadřuje pořadí na 19. místě + + + vyjadřuje pořadí na 100. místě + + + kdo neudrží nic v tajnosti + + + ano + + + nuže + + + jedna ze tří stejných částí celku + + + jedna ze čtyř stejných částí celku + + + jedna z dvanácti stejných částí celku + + + jedna ze šestnácti stejných částí celku + + + jedna ze třiceti stejných částí celku + + + jedna ze šedesáti stejných částí celku + + + jedna ze sedmdesáti stejných částí celku + + + jedna z osmdesáti stejných částí celku + + + extrémně hmotný vesmírný objekt + + + dostat vynadáno nebo namláceno + + + povel koni + + + citoslovce údivu + + + citoslovce údivu + + + citoslovce volání na drůbež + + + upozornění + + + vyjádření škytnutí + + + výkřik k odhánění + + + které, jež + + + zdrobnělý pozdrav + + + nesouhlas + + + povel koni + + + zvolání na zvířata + + + tool to partially or fully automate the labour of mowing + + + species of flowering plant in the honeysuckle family Caprifoliaceae + + + dětská panenka s mrkacíma očima + + + druh ptáka rodu Estrilda + + + machine that converts the energy of wind into rotational energy + + + extinct species of North American pigeon, most abundant bird on Earth before extinction + + + species of insect + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + large seabird from the albatross family + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + druh ptáka rodu Erythrura + + + druh astrildovitého ptáka + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh jihoamerického papouška + + + druh ptáka rodu Pionus + + + druh ptáka rodu Ara + + + druh ptáka rodu Ara + + + druh ptáka rodu Ara + + + druh ptáka rodu Ara + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Psittacara + + + druh ptáka rodu Eupsittula + + + druh ptáka rodu Cryptospiza + + + druh ptáka rodu Cryptospiza + + + Drobný pták z čeledi astrildovitých + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Vidua + + + druh ptáka rodu Vidua + + + druh rostliny rodu Azolla + + + druh rostliny + + + druh rostliny + + + druh rostliny + + + útvar mořského dna + + + nízká plochá nádoba používaná při tepelné úpravě jídla + + + parametr udávající, kolikrát se obraz na zapnutém zobrazovacím zařízení aktualizuje za sekundu + + + lepidla používaná k fixaci protetických pomůcek ke kostem a k lepení kostí na kost u obtížných zlomenin + + + označuje počet 8 + + + označuje počet 12 + + + vyjadřuje pořadí na 11. místě + + + vyjadřuje pořadí na 1000. místě + + + nezdárný člen + + + označuje mňoukání kočky + + + rozčílit + + + vyjadřuje vyšší pravděpodobnost + + + jedna ze šesti stejných částí celku + + + jedna ze třinácti stejných částí celku + + + jedna z dvaceti stejných částí celku + + + hudební nástroj + + + vyjadřuje příčinnou zásluhu + + + považovat něco naivně za jednodušší, než tomu ve skutečnosti je + + + zvuk strašení + + + zvuk k vyjádření hněvu + + + výzva k pozoru + + + citoslovce údivu + + + povel k zastavení + + + upozornění + + + upozornění + + + upozornění + + + upozornění + + + zaklení + + + výraz uvozující řeč + + + zaklení + + + vyjádření oslovení + + + vyjádření znechucení + + + souhlas, přitakání + + + při bědování + + + vyjádření kousnutí + + + zvolání + + + vyjadřuje upozornění na něco či podivení nad něčím + + + utéct + + + mythical torture device + + + druh ptáka rodu Aix + + + natural number of 1,000,000 + + + velké množství + + + species of bird of prey + + + druh rostliny rodu Abelia + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + extinct species of bird + + + species of bird + + + species of bird + + + druh astrildovitého ptáka + + + druh ptáka rodu Erythrura + + + druh ptáka rodu Odontospiza + + + druh ptáka rodu Neochmia + + + druh papouškovitého ptáka + + + druh ptáka rodu Triclaria + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Amazona + + + druh ptáka rodu Pyrilia + + + druh papouška rodu Melopsittacus + + + druh ptáka rodu Anhinga + + + druh ptáka rodu Anhinga + + + druh rostliny rodu Anoda + + + druh ptáka rodu Rhynchopsitta + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Aulacorhynchus + + + druh ptáka rodu Selenidera + + + druh ptáka rodu Aratinga + + + druh ptáka rody Argusianus + + + druh rostliny rodu Arum + + + druh ptáka rodu Estrilda + + + druh ptáka rodu Sporopipes + + + druh ptáka rodu Attila + + + druh rostliny + + + jako náhrada za + + + stav, kdy je subjekt ve válce + + + archivní kniha postihující řízení ve věcech majetkových probíhající u venkovských obcí na jejich shromážděních + + + uzavřený prostor, ve kterém je vytvořeno vakuum + + + specialistka na zubní hygienu + + + vyjadřuje souhlas + + + označuje počet 14 + + + označuje počet 30 + + + označuje počet 70 + + + vyjadřuje pořadí na 2. místě + + + vyjadřuje pořadí na 6. místě + + + vyjadřuje pořadí na 7. místě + + + vyjadřuje pořadí na 17. místě + + + vyjadřuje pořadí na 20. místě + + + vyjadřuje pořadí na 70. místě + + + vyjadřuje počet 1000 + + + osoba v pozadí s významným vlivem + + + výjimka, zvláštnost + + + zvuk pro překvapení + + + okolo, kolem + + + označuje štěkání psa + + + správní středisko státu + + + pravděpodobně, možná + + + přibližně + + + bohužel + + + jedna z jedenácti stejných částí celku + + + jedna ze čtyřiceti stejných částí celku + + + vyjadřuje upozornění na něco či podivení nad něčím + + + pozdrav + + + vyjádření rozčilení + + + souhlas, přitakání + + + pozdrav + + + sezení + + + ležení + + + upozornění + + + upozornění + + + upozornění + + + při bolesti + + + souhlas, přitakání + + + odmítnutí + + + vyjadřuje upozornění na něco či podivení nad něčím + + + rychle a důrazně + + + povel zahánějící zvířata + + + hypothetical device capable of time travel + + + species of bird of prey + + + species of plant + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + species of bird + + + druh ptáka rodu Stagonopleura + + + druh okrasného ptáka z Afriky + + + druh ptáka rodu Lagonosticta + + + druh ptáka rodu Lagonosticta + + + druh papouškovitého ptáka + + + druh ptáka rodu Amazona + + + druh ptáka rodu Pionites + + + druh ptáka rodu Pyrilia + + + druh ptáka rodu Pyrilia + + + druh ptáka rodu Pionus + + + druh ptáka rodu Hapalopsittaca + + + druh rostliny rodu Ambrosia + + + druh rostliny rodu Ananas + + + druh ptáka rodu Pteroglossus + + + druh ptáka rodu Aratinga + + + druh ptáka rodu Guaruba + + + druh ptáka rodu Rheinardia + + + druh ptáka rodu Taeniopygia + + + druh ptáka rodu Cryptospiza + + + druh ptáka rodu Neochmia + + + druh ptáka rodu Sporopipes + + + druh ptáka rodu Attila + + + druh ptáka rodu Attila + + + druh ptáka rodu Vidua + + + výzva k pozoru + + + výkřik k odhánění + + + zateplený vak na spaní + + + vyvrcholení účetních prací za celé účetní období v účetní jednotce + + + specialistka na zubní hygienu + + + nit používaná v zubní hygieně + + + osoba, která se snaží zapojit lidi do volebních protestů, aktivit, stávek a nepokojů + + + čas hluboké noci + + + člověk, který se zabývá hledáním vyjímečných lidí + + + drobný objekt používaný pro generování náhodných čísel + + + diff --git a/extensions/wikidata-lexemes/output/cv.xml b/extensions/wikidata-lexemes/output/cv.xml new file mode 100644 index 00000000..9662f63b --- /dev/null +++ b/extensions/wikidata-lexemes/output/cv.xml @@ -0,0 +1,30 @@ + + + + + + + + + one + + + + + + one + + + + one + + + one + + + diff --git a/extensions/wikidata-lexemes/output/cy.xml b/extensions/wikidata-lexemes/output/cy.xml new file mode 100644 index 00000000..ea963881 --- /dev/null +++ b/extensions/wikidata-lexemes/output/cy.xml @@ -0,0 +1,265 @@ + + + + + + + + + the number 15 + + + + + + the number 20 + + + + + + the number three + + + + + + the number eight + + + + + + the number nine + + + + + + the number 13 + + + + + + the number one billion + + + + + + the number seven + + + + + + the number 16 + + + + + + the number ten + + + + + + the number 12 + + + + + + the number one million + + + + + + the number five + + + + + + the number 18 + + + + + + the number 19 + + + + + + the number 1000 + + + + + + the number 400 + + + + + + the number 500 + + + + + + the number one + + + + + + the number 200 + + + + + + the number two + + + + + + the number 11 + + + + + + the number 14 + + + + + + + article défini + + + + + + the number four + + + + + + the number six + + + + + + the number 17 + + + + + + the number 300 + + + + the number 15 + + + the number 20 + + + the number three + + + the number eight + + + the number nine + + + the number 13 + + + the number one billion + + + the number seven + + + the number 16 + + + the number ten + + + the number 12 + + + the number one million + + + the number five + + + the number 18 + + + the number 19 + + + the number 1000 + + + the number 400 + + + the number 500 + + + the number one + + + the number 200 + + + the number two + + + the number 11 + + + the number 14 + + + article défini + + + the number four + + + the number six + + + the number 17 + + + the number 300 + + + diff --git a/extensions/wikidata-lexemes/output/da.xml b/extensions/wikidata-lexemes/output/da.xml new file mode 100644 index 00000000..123d6b72 --- /dev/null +++ b/extensions/wikidata-lexemes/output/da.xml @@ -0,0 +1,3362 @@ + + + + + + + + + with + + + + + + anvendes til at angive, at det kommende skal ses som en begrundelse eller en forklaring på det tidligere nævnte + + + + + + as, like + + + + + + + tallet efter fire og før seks + Efter fem år er det på tide med en evaluering. + + + + + + suffix som bildar verbalsubstantiv + + + + + + according to + + + + + + + + tallet 17 mellem 16 og 18 + Jeg har været medlem af Parlamentet i sytten år. + + + + + + + tallet 80 + Gennem de seneste firs år er de nationale mindretal i Ungarn alle blevet udslettet, mens Europa så til i tavshed. + + + + + + + + + tallet 15 + Vi ved, at der i de sidste femten år er skabt stadig flere økologiske landbrug i Europa. + + + + + + + tallet 13 mellem tolv og fjorten + Alligevel idømmes de tretten måneders ubetinget fængsel og meget høje bøder. + + + + + + + tallet 11 mellem ti og tolv + På den ene side tager det tid at få dokumenterne oversat, så der kan forelægges et resumé på de elleve sprog. + + + + + + skaber tillægsord ud fra navneord + + + + + + morgenhilsen + + + + + + good night + + + + + + fandens + + + + + + + tallet 60 + Den danske regering vil opfordre de kompetente stedlige myndigheder til at overdrage Kommissionen brugen af de arealer, der rummer Det britiske Statssamfunds krigsgrave, for et tidsrum af tresindstyve år med mulighed for forlængelse. + + + + + + + + hjem + + + + + + samling + + + + + + tidligere end en given referenceramme + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + + + + until + + + + + + + tallet 40 + + + + + + + lyden fra en kat + + + + + + lyden af et damplokomotiv + + + + + + lyden fra en gøg + + + + + + vedrørende olie eller olieprodukter + + + + + + ny + + + + + + + tallet 30 + + + + + + trilliardtedel + + + + + + ti + + + + + + trillion + + + + + + kvadrillion + + + + + + + tallet 64 + + + + + + tidsperiode med skriftlige kilder + + + + + + + tallet 75 + + + + + + + + ordenstallet 22. + + + + + + + ordenstallet for en million million + + + + + + + tallet 45 + + + + + + + + tallet 45 + + + + + + + + ordenstallet 30. + + + + + + + tallet 65 + + + + + + + + tallet 85 + + + + + + + + + forstærkende kraftudtryk + + + + + + det tror jeg overhovedet ikke på; det tror jeg ikke en skid på + + + + + + tilbud om at acceptere noget som det er uden ændringer eller afvise det helt + + + + + + we, first-person plural pronoun + + + + + + + tallet for ingenting + Og nul plus nul giver stadig nul. + + + + + + + tallet mellem 6 og 8 + I syv måneder er der ikke blevet udbetalt lønninger og pensioner. + + + + + + børnesygdom + Vacciner mod polio, røde hunde, hepatitis B, difteri, mæslinger, fåresyge, rubella og meningitis er sammen med kombinationsterapilægemidler mod hiv, lægemidler til regulering af astma, livsopretholdelsessystemer til præmature spædbørn og deep brain-stimulering ved Parkinsons sygdom alle blevet udviklet via forsøg med dyr og navnlig primater. + + + + + + + tallet 60 + Det har i tres år været indprentet i vores kollektive hukommelse. + + + + + + + + + ordinaltallet 5 + + + + + + + tallet 16 mellem femten og sytten + Der er godkendt seksten produkter siden oprettelsen af WTO-panelet, men kun syv i 2007. + + + + + + jeg håber ikke at + + + + + + + tallet 21 + Med hensyn til tidsplanen synes De at være låst fast på idéen om en to-trinsreform. Først en lille reform, inden medlem nummer seksten lukkes ind, og derefter en stor reform, inden nummer enogtyve indtræder. + + + + + + + ordinalet 9 + Det niende møde bør vedtage økologiske kriterier til fastlæggelse af marine områder i dybhavsfarvandene, der har brug for beskyttelse. + + + + + + + ordenstallet 15 + Alan Johnston er den femtende journalist, der bortføres i Gazastriben, og i den måned, der fulgte bortførelsen, hørte vi længe intet nyt om ham. + + + + + + + tallet 22 + På området findes der fire og en halv million handelsforetagender, og de beskæftiger toogtyve millioner personer. + + + + + + billig, lavpris + + + + + + selv + + + + + + regardless of + + + + + + + delvis bekræftigelse med forbehold + + + + + + som, i egenskab af + + + + + + billion + + + + + + + et element i en rækkefølge angivet ved variablen 'x' + + + + + + billiardtedel + + + + + + ord som betyder at man griner og morer sig + + + + + + + tallet 70 + + + + + + + tallet 84 + + + + + + + tallet 94 + + + + + + containing + + + + + + + tallet 55 + + + + + + + + ordenstallet 18. + + + + + + piratstereotypisk udråb for overraskelse + + + + + + + ordenstallet 90. + + + + + + + + ordenstallet 50. + + + + + + + + ordentallet 14. + + + + + + + ordenstallet 40. + + + + + + + + ordenstallet 60. + + + + + + + + ordenstallet 60. + + + + + + + + anvendes for at udtrykke afsky eller lede + + + + + + forstærkende udtryk + + + + + + + + formelt eller høfligt pronomen brugt til at adressere en person + + + + + + meget + + + + + + kommando til hest om at den skal stoppe med at gå + + + + + + farvel + + + + + + + + + tallet 3 + Nu lå der tolv lig i de tre små stuer. + Jeg vil kort nævne tre milepæle. + + + + + + benyttes til at henvise til taleren selv + + + + + + person af hankøn + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + + + + in it + + + + + + ved forsiden eller i umiddelbar nærhed af forsiden; foran + + + + + + igennem + + + + + + + iberegnet + + + + + + + + med udelukkelse af + + + + + + + lyden som en ko siger + + + + + + + tallet 30 mellem 29 og 31 + Der er nu omkring tredive lande, der ikke har svaret. + + + + + + + tallet 70 mellem 69 og 71 + Alt foregik bag lukkede døre, og halvfjerds journalister blev udvist fra retslokalet. + + + + + + + + nummer ti i en række + Jeg ville ud på tiende sal. + Der er det kun hver tiende ansat. + I hvor mange århundreder fremover regner man med at skulle gøre dette hvert tiende år? + + + + + + + + indikere et element i en række der optræder i begyndelsen som nummer 2 + Alt i alt viser det, at hverken tredje søjle eller den marginale overdragelse af kompetence til en anden søjle er nok til at skabe effektive sikkerhedsstrukturer i Europa + + + + + + udtryk for smerte + + + + + + milliontedel + + + meget småt + + + + + + SI-præfiks for en hundrededel + + + + + + konjunktion, der bruges til at indlede en betingelse, hvori en handling eller situation kun vil finde sted, hvis en anden specifik betingelse ikke er opfyldt + + + + + + + tallet 28 + + + + + + before + + + + + + + tallet 23 + + + + + + + tallet 81 + + + + + + + tallet 91 + + + + + + lyden fra en and + + + + + + lyden fra et damptog eller maskine + + + + + + concerning, with respect to + + + + + + + + except for + + + + + + concerning, with respect to + Bestemmelser angående regeringens førelse i tilfælde af kongens umyndighed, sygdom eller fraværelse fastsættes ved lov. + + + + + + + + farvel + + + + + + + + milliard + + + + + + udtryk brugt når man presenterer noget for andre for at tilkalde deres opmærksomhed + + + + + + trilliontedel + + + + + + + to + Af forsikringsakten udstedes tvende ligelydende originaler, af hvilke den ene overgives folketinget for at opbevares i sammes arkiv, den anden nedlægges i rigsarkivet. + + + + + + + + tallet 50 + + + + + + + ordenstallet 70. + + + + + + + + ordenstallet for 1.000.000.000 + + + + + + + ordenstalordet 19. + + + + + + + tallet 60 + + + + + + + + + + + omkring 50 + + + + + + tallet 99 + + + + + + hån, triumf + + + + + + + a(n), indefinite article + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + + + + + + + + det naturlige tal "1" + Der er nu ganske vist to finske kanaler og en portugisisk kanal, men der er stadig ingen nederlandsk kanal, og jeg havde anmodet Dem om en nederlandsk kanal, fordi også nederlændere gerne vil følge med i nyhederne hver måned, når vi forvises til dette sted. + + + + + + except + + + + + + + ordinaltallet for 0 + ... og Rækken standser af sig selv med første eller nulte Potens af x+rb, eftersom p er ulige eller lige. + + + + + + henvisning til personen der tales til + + + + + + + tallet 10 mellem 9 og 11 + Antallet af allergier er de seneste ti år fordoblet 120 gange. + + + + + + imod + + + + + + lige overfor + + + + + + lyden fra et får eller et lam + + + + + + forstærker + + + + + + + ordinaltallet 3 + + + + + + kommando til hest for at få den til at bevæge sig + + + + + + med relation til Afrika + + + + + + + + + + + frø af arten Rana arvalis + + + + + + + + padde i arten Pseudepidalea viridis + + + + + + + tallet 24 + + + + + + + + + tallet 1000 + + + + + + + tallet 20 + + + + + + lyden når en hane galer + + + + + + from + + + + + + kommando til hund om at den skal hente noget + + + + + + billiard + + + + + + ti + + + + + + lægeligt, behandlingsmæssigt eller medicinmæssig + + + + + + vedrørende jern + + + + + + + ordinaltallet 8 + Hver tolvte EU-borger er arbejdsløs. + + + + + + kvadrilliard + + + + + + + tallet 54 + + + + + + + seventeenth + Fru Marie Grubbe. Interieurer fra det syttende Aarhundrede + + + + + + different + + + + + + + tallet 55 + + + + + + + + ordenstallet 70. + + + + + + + + ordenstallet 80. + + + + + + + ordenstallet 80. + + + + + + + tallet 35 + + + + + + + + ordenstallet 23. + + + + + + lykønskning + + + + + + + + tallet 83 + + + + + + i kemi + + + + + + kommando til en hund om at den skal sætte sig ned + + + + + + meget + + + + + + binder ord eller sætningsdele sammen + + + logisk og + + + + + + + the, definite article + + + + + + or + + + + + + konjunktion, der bruges til at indlede en årsag eller forklaring, svarende til 'fordi' eller 'da' + + + + + + cirka + vi må ikke glemme, at medlemsstaterne har ansvaret for at gennemføre omkring 80% af EU's budget. + + + + + + ord svarende til en kort intens lyd fra en hund + + + + + + + + tallet 4, større en tre og mindre en fem + Nu er der kun fire tilbage. + + + + + + alle og enhver + + + + + + + tallet 12 mellem 11 og 13 + Nu lå der tolv lig i de tre små stuer. + + + + + + for + + + + + + ord svarende til lyden fra et svin + + + + + + udråb om affejning af problem + Men Jenny kastede blot et Blik paa Telegrammet og sagde: — Aah pyt! hvad bryder jeg mig om det. + Jeg ved ganske vist ikke, hvorfor han så tog det op, men pyt nu med det. + + + + + + + tallet 25 + For hvis det er vanskeligt at træffe beslutninger ved enstemmighed i en organisation med femogtyve medlemmer, er det heller ikke acceptabelt at træffe flertalsbeslutninger, når organisationen har femogtyve heterogene medlemmer. + + + + + + proto-; original, primitive + + + + + + to + + + + + + + + + tallet 100 mellem 99 og 101 + Ulykker i transportsystemer kan bringe flere hundrede mennesker i fare. + + + ordenstal for 100 + + + + + + + 4.; ordinaltallet 4 + Jeg kommer nu til min fjerde og næstsidste betragtning. + + + + + + vedrørende levende organismer + + + + + + + + + + + this + + + + + + hello! + + + + + + + tallet 80 + For hver stat, som ratificerer overenskomsten eller tiltræder den efter deponeringen af det ottende ratifikations- eller tiltrædelsesdokument, som nævnt ovenfor i stk. 1, skal overenskomsten træde i kraft et hundrede og firsindstyve dage efter datoen for den pågældende stats deponering af ratifikations- eller tiltrædelsesdokumentet. + + + + + + + + + ordinaltallet 6 + For blot 100 år siden var hver sjette, syvende indbygger i verden europæer, men om 40 år vil blot hvert 20. menneske bo på vores kontinent. + + + + + + + + + everyone + + + + + + meget eller mere + + + + + + either + + + + + + tusind + + + + + + + everything + + + + + + + tallet 27 + + + + + + maskine, apparat + + + + + + + held og lykke + + + + + + lyden fra en gøende hund + + + + + + lyden når noget stort falder i vandet eller når en større mængde vand smides på noget + + + + + + på samme måde som + + + + + + kvadrilliardedel + + + + + + trilliard + + + + + + + thirteenth + + + + + + + tallet 66 + + + + + + + tallet 75 + + + + + + + + ordenstallet 40. + + + + + + + + ordenstallet 29. + + + + + + du må være tosset (anvendes for at udtrykke at den anden er helt ude og cykle) + + + + + + overveje noget nøje inden beslutning tages + + + + + + udtryk for overraskelse + + + + + + udtryk for tryllen + + + + + + but + + + + + + tallet 6, efter fem og før syv + En vindmølle leverer allerede efter fire til seks måneder mere energi, end det kostede at fremstille og opstille den. + + + + + + + antallet 20 mellem 19 og 21 + Forkert brug af organiske opløsningsmidler gav allerede for tyve år siden problemer. + + + + + + når noget passerer ind igennem noget andet fx en person som går gennem en gyde + + + + + + + tallet 19 + I gennemsnit blev der hver uge i 1996 vedtaget nitten forordninger og to direktiver, hvoraf de fleste drejede sig om den fælles landbrugspolitik. + + + + + + + tallet 14 mellem tretten og femten + Jeg nævner også de kommende klimaforhandlinger, som startes om fjorten dage i Bonn. + + + + + + + tallet 40 mellem 39 og 41 + For fyrre år siden var der god mening heri, og det er der også i dag! + + + + + + + tallet 90 mellem 89 og 91 + Tilsvarende burde verden selvfølgelig reagere, når over halvfems procent af de førende forskere på området i verden siger, at den globale opvarmning er reel, og at den er menneskeskabt. + + + + + + + + + + + + med forskel i forbindelse med selektiv referentialitet og kategori + + + + + + forstærker + + + + + + + 90 + Denne meddelelse må i de tilfælde, hvor en stat allerede har tiltrådt konventionen, gives inden halvfemsindstyve dage efter datoen for generalsekretærens meddelelse, og i de tilfælde, hvor en stat senere tiltræder, inden halvfemsindtyve dage efter datoen for deponeringen af ratifikations- eller tiltrædelsesinstrumentet. + + + + + + + + tallet 50 + + + + + + + + ordinaltallet 7 + Jeg er adræt nok til at gå ned fra sjette eller syvende sal. + + + + + + + ordinaltallet 8 + Dette er den ottende årsberetning om strukturfondsbevillinger. + + + + + + + ordenstal for 26 + + + + + + mod + + + + + + meget + + + + + + flere + + + + + + større ophobning + + + + + + + tallet 32 + + + + + + lyden fra en fugl + + + + + + forstærker + + + + + + milliardtedel + + + + + + kvadrilliontedel + + + + + + hundrede + + + + + + + tallet 44 + + + + + + + twentyfifth + + + + + + + tallet 35 + + + + + + + + twenty-first + + + + + + + ordenstallet 27. + + + + + + + ordenstallet 50. + + + + + + + + tallet 65 + + + + + + + meget, i høj grad + + + + + + held og lykke + + + + + + + udtryk for bestyrtelse og overraskelse + + + + + + når noget er afklaret eller løst + + + + + + + + tallet 2, der er mellem 1 og 3 + Det var de to beslutninger, der blev truffet i går. + + + + + + + it + + + + + + + each other + + + + + + kvalificerer noget (følger af noget, begivenhed eller dato) som er sket senere i forhold til noget andet + + + + + + spørgeord for identificering af person + + + + + + no + + + + + + henviser til flere personer der tales til + + + + + + + tallet 9 mellem 8 og 10 + Kan vi gøre noget positivt nu her ni år efter? + + + + + + nægtende eller modsigende + + + + + + + tallet 18 mellem sytten og nitten + For atten år siden ansøgte vi om optagelse i EU. + + + + + + udtryk for forbavselse eller overraskelse + + + + + + halv + + + + + + + tallet 26 + + + + + + + nummer 20 i en række + + + + + + tusindedel + + + + + + tiendedel + + + + + + since + + + + + + + tallet 42 + + + + + + lyd fra skud eller lignende høj og kort lyd + + + + + + lyden fra et mekanisk ur når det går + + + + + + except + + + + + + sorry + + + + + + konjunktion, der bruges til at indlede en sætning eller klausul, der udtrykker en indrømmelse eller en undtagelse, svarende til 'selvom' eller 'skønt' + + + + + + cheers + + + + + + + tallet 29 + + + + + + + tallet 90 + + + + + + + tallet 40 + + + + + + person + + + + + + + tallet 61 + + + + + + + ordenstallet 90. + + + + + + + + ordenstallet 11. + + + + + + + ordenstallet for en million + + + + + + + tallet 95 + + + + + + + ordenstallet 16. + + + + + + + tallet 80 + + + + + + + + + tallet 85 + + + + + + + + tallet 33 + + + + + + to a high degree + + + + + + forstærkende kraftudtryk + + + + + + gøre noget for andre og forvente sig noget tilbage + + + + + + ja, - bekræftigelse + + + + + + located within + Kongemagten nedarves til mænd og kvinder efter de i tronfølgeloven af 27. marts 1953 fastsatte regler. + + + något har kommit till uttryck med användning av en viss formell notation; ett datorprogram uttryckt i ett visst programspråk + + + + + + they, third-person plural pronoun + + + + + + + tallet 8 efter 7 og før 9 + Alt dette forsvandt for otte måneder siden. + + + + + + bekræftigelse + + + + + + suffix som skapar substantiv från adjektiv + + + + + + (denoting property or state of being) + + + + + + konjunktion, der bruges til at indlede en kontrast eller modsætning i forhold til det, der tidligere er nævnt + + + + + + ord + + + + + + -ism + + + + + + hi + + + + + + + tallet 50 mellem 49 og 51 + Lad os huske på, at kriminaliteten i Europa er steget betydeligt i løbet af de sidste halvtreds år. + + + + + + + element der optræder som nummer et i en rækkefølge + ... og Rækken standser af sig selv med første eller nulte Potens af x+rb, eftersom p er ulige eller lige. + + + + + + farewell + + + + + + + + + tallet 70 + + + + + + + udtryk for følelsen at man ønsker sig noget og det ikke gik i lås som man havde forestillet sig eller foreslået + + + + + + over, above + + + beyond, in addition + + + + + + + + + nothing + + + + + + + + + den rationelle talværdi der ligger midt imellem et og to + + + + + + udtryk som bruges om når folk taler helt forbi hinanden og helt misforstår hinanden + + + + + + med modsat egenskab + + + + + + than + + + + + + meget + + + + + + ord svarende til en kort intens lyd fra en hund + + + + + + + + tallet 31 + + + + + + lyden af et nys + + + + + + if + + + + + + sound of a loud bang + + + + + + kraftudtryk som betyder at man vil at nogen slutter med at tale + + + udtryk for overraskelse + + + + + + + tallet 74 + + + + + + + ordenstal for 28 + + + + + + + tallet 49 + + + + + + + ordenstallet 24. + + + + + + + tallet 25 + + + + + + + et element i en rækkefølge angivet ved variablen 'n' + + + + + + + tallet 82 + + + + + + bruges som udtryk for at det foregående ikke var så vigtigt eller værd at kæmpe for at forandre + + + udtryk for overraskelse eller forbavselse + + + + + + to eller tre + + + + + + udtryk for bekræftende indrømmelse eller indsigt + + + + + + udtryk for smerte + + + + + + concerning, with respect to + + + + + + + + ifølge + + + + + with + + + anvendes til at angive, at det kommende skal ses som en begrundelse eller en forklaring på det tidligere nævnte + + + as, like + + + tallet efter fire og før seks + Efter fem år er det på tide med en evaluering. + + + suffix som bildar verbalsubstantiv + + + according to + + + tallet 17 mellem 16 og 18 + Jeg har været medlem af Parlamentet i sytten år. + + + tallet 80 + Gennem de seneste firs år er de nationale mindretal i Ungarn alle blevet udslettet, mens Europa så til i tavshed. + + + tallet 15 + Vi ved, at der i de sidste femten år er skabt stadig flere økologiske landbrug i Europa. + + + tallet 13 mellem tolv og fjorten + Alligevel idømmes de tretten måneders ubetinget fængsel og meget høje bøder. + + + tallet 11 mellem ti og tolv + På den ene side tager det tid at få dokumenterne oversat, så der kan forelægges et resumé på de elleve sprog. + + + skaber tillægsord ud fra navneord + + + morgenhilsen + + + good night + + + fandens + + + tallet 60 + Den danske regering vil opfordre de kompetente stedlige myndigheder til at overdrage Kommissionen brugen af de arealer, der rummer Det britiske Statssamfunds krigsgrave, for et tidsrum af tresindstyve år med mulighed for forlængelse. + + + hjem + + + samling + + + tidligere end en given referenceramme + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + until + + + tallet 40 + + + lyden fra en kat + + + lyden af et damplokomotiv + + + lyden fra en gøg + + + vedrørende olie eller olieprodukter + + + ny + + + tallet 30 + + + trilliardtedel + + + ti + + + trillion + + + kvadrillion + + + tallet 64 + + + tidsperiode med skriftlige kilder + + + tallet 75 + + + ordenstallet 22. + + + ordenstallet for en million million + + + tallet 45 + + + tallet 45 + + + ordenstallet 30. + + + tallet 65 + + + tallet 85 + + + forstærkende kraftudtryk + + + det tror jeg overhovedet ikke på; det tror jeg ikke en skid på + + + tilbud om at acceptere noget som det er uden ændringer eller afvise det helt + + + we, first-person plural pronoun + + + tallet for ingenting + Og nul plus nul giver stadig nul. + + + tallet mellem 6 og 8 + I syv måneder er der ikke blevet udbetalt lønninger og pensioner. + + + børnesygdom + Vacciner mod polio, røde hunde, hepatitis B, difteri, mæslinger, fåresyge, rubella og meningitis er sammen med kombinationsterapilægemidler mod hiv, lægemidler til regulering af astma, livsopretholdelsessystemer til præmature spædbørn og deep brain-stimulering ved Parkinsons sygdom alle blevet udviklet via forsøg med dyr og navnlig primater. + + + tallet 60 + Det har i tres år været indprentet i vores kollektive hukommelse. + + + ordinaltallet 5 + + + tallet 16 mellem femten og sytten + Der er godkendt seksten produkter siden oprettelsen af WTO-panelet, men kun syv i 2007. + + + jeg håber ikke at + + + tallet 21 + Med hensyn til tidsplanen synes De at være låst fast på idéen om en to-trinsreform. Først en lille reform, inden medlem nummer seksten lukkes ind, og derefter en stor reform, inden nummer enogtyve indtræder. + + + ordinalet 9 + Det niende møde bør vedtage økologiske kriterier til fastlæggelse af marine områder i dybhavsfarvandene, der har brug for beskyttelse. + + + ordenstallet 15 + Alan Johnston er den femtende journalist, der bortføres i Gazastriben, og i den måned, der fulgte bortførelsen, hørte vi længe intet nyt om ham. + + + tallet 22 + På området findes der fire og en halv million handelsforetagender, og de beskæftiger toogtyve millioner personer. + + + billig, lavpris + + + selv + + + regardless of + + + delvis bekræftigelse med forbehold + + + som, i egenskab af + + + billion + + + et element i en rækkefølge angivet ved variablen 'x' + + + billiardtedel + + + ord som betyder at man griner og morer sig + + + tallet 70 + + + tallet 84 + + + tallet 94 + + + containing + + + tallet 55 + + + ordenstallet 18. + + + piratstereotypisk udråb for overraskelse + + + ordenstallet 90. + + + ordenstallet 50. + + + ordentallet 14. + + + ordenstallet 40. + + + ordenstallet 60. + + + ordenstallet 60. + + + anvendes for at udtrykke afsky eller lede + + + forstærkende udtryk + + + formelt eller høfligt pronomen brugt til at adressere en person + + + meget + + + kommando til hest om at den skal stoppe med at gå + + + farvel + + + tallet 3 + Nu lå der tolv lig i de tre små stuer. + Jeg vil kort nævne tre milepæle. + + + benyttes til at henvise til taleren selv + + + person af hankøn + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + in it + + + ved forsiden eller i umiddelbar nærhed af forsiden; foran + + + igennem + + + iberegnet + + + med udelukkelse af + + + lyden som en ko siger + + + tallet 30 mellem 29 og 31 + Der er nu omkring tredive lande, der ikke har svaret. + + + tallet 70 mellem 69 og 71 + Alt foregik bag lukkede døre, og halvfjerds journalister blev udvist fra retslokalet. + + + nummer ti i en række + Jeg ville ud på tiende sal. + Der er det kun hver tiende ansat. + I hvor mange århundreder fremover regner man med at skulle gøre dette hvert tiende år? + + + indikere et element i en række der optræder i begyndelsen som nummer 2 + Alt i alt viser det, at hverken tredje søjle eller den marginale overdragelse af kompetence til en anden søjle er nok til at skabe effektive sikkerhedsstrukturer i Europa + + + udtryk for smerte + + + milliontedel + + + meget småt + + + SI-præfiks for en hundrededel + + + konjunktion, der bruges til at indlede en betingelse, hvori en handling eller situation kun vil finde sted, hvis en anden specifik betingelse ikke er opfyldt + + + tallet 28 + + + before + + + tallet 23 + + + tallet 81 + + + tallet 91 + + + lyden fra en and + + + lyden fra et damptog eller maskine + + + concerning, with respect to + + + except for + + + concerning, with respect to + Bestemmelser angående regeringens førelse i tilfælde af kongens umyndighed, sygdom eller fraværelse fastsættes ved lov. + + + farvel + + + milliard + + + udtryk brugt når man presenterer noget for andre for at tilkalde deres opmærksomhed + + + trilliontedel + + + to + Af forsikringsakten udstedes tvende ligelydende originaler, af hvilke den ene overgives folketinget for at opbevares i sammes arkiv, den anden nedlægges i rigsarkivet. + + + tallet 50 + + + ordenstallet 70. + + + ordenstallet for 1.000.000.000 + + + ordenstalordet 19. + + + tallet 60 + + + omkring 50 + + + tallet 99 + + + hån, triumf + + + a(n), indefinite article + En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. + + + det naturlige tal "1" + Der er nu ganske vist to finske kanaler og en portugisisk kanal, men der er stadig ingen nederlandsk kanal, og jeg havde anmodet Dem om en nederlandsk kanal, fordi også nederlændere gerne vil følge med i nyhederne hver måned, når vi forvises til dette sted. + + + except + + + ordinaltallet for 0 + ... og Rækken standser af sig selv med første eller nulte Potens af x+rb, eftersom p er ulige eller lige. + + + henvisning til personen der tales til + + + tallet 10 mellem 9 og 11 + Antallet af allergier er de seneste ti år fordoblet 120 gange. + + + imod + + + lige overfor + + + lyden fra et får eller et lam + + + forstærker + + + ordinaltallet 3 + + + kommando til hest for at få den til at bevæge sig + + + med relation til Afrika + + + frø af arten Rana arvalis + + + padde i arten Pseudepidalea viridis + + + tallet 24 + + + tallet 1000 + + + tallet 20 + + + lyden når en hane galer + + + from + + + kommando til hund om at den skal hente noget + + + billiard + + + ti + + + lægeligt, behandlingsmæssigt eller medicinmæssig + + + vedrørende jern + + + ordinaltallet 8 + Hver tolvte EU-borger er arbejdsløs. + + + kvadrilliard + + + tallet 54 + + + seventeenth + Fru Marie Grubbe. Interieurer fra det syttende Aarhundrede + + + different + + + tallet 55 + + + ordenstallet 70. + + + ordenstallet 80. + + + ordenstallet 80. + + + tallet 35 + + + ordenstallet 23. + + + lykønskning + + + tallet 83 + + + i kemi + + + kommando til en hund om at den skal sætte sig ned + + + meget + + + binder ord eller sætningsdele sammen + + + logisk og + + + the, definite article + + + or + + + konjunktion, der bruges til at indlede en årsag eller forklaring, svarende til 'fordi' eller 'da' + + + cirka + vi må ikke glemme, at medlemsstaterne har ansvaret for at gennemføre omkring 80% af EU's budget. + + + ord svarende til en kort intens lyd fra en hund + + + tallet 4, større en tre og mindre en fem + Nu er der kun fire tilbage. + + + alle og enhver + + + tallet 12 mellem 11 og 13 + Nu lå der tolv lig i de tre små stuer. + + + for + + + ord svarende til lyden fra et svin + + + udråb om affejning af problem + Men Jenny kastede blot et Blik paa Telegrammet og sagde: — Aah pyt! hvad bryder jeg mig om det. + Jeg ved ganske vist ikke, hvorfor han så tog det op, men pyt nu med det. + + + tallet 25 + For hvis det er vanskeligt at træffe beslutninger ved enstemmighed i en organisation med femogtyve medlemmer, er det heller ikke acceptabelt at træffe flertalsbeslutninger, når organisationen har femogtyve heterogene medlemmer. + + + proto-; original, primitive + + + to + + + tallet 100 mellem 99 og 101 + Ulykker i transportsystemer kan bringe flere hundrede mennesker i fare. + + + ordenstal for 100 + + + 4.; ordinaltallet 4 + Jeg kommer nu til min fjerde og næstsidste betragtning. + + + vedrørende levende organismer + + + this + + + hello! + + + tallet 80 + For hver stat, som ratificerer overenskomsten eller tiltræder den efter deponeringen af det ottende ratifikations- eller tiltrædelsesdokument, som nævnt ovenfor i stk. 1, skal overenskomsten træde i kraft et hundrede og firsindstyve dage efter datoen for den pågældende stats deponering af ratifikations- eller tiltrædelsesdokumentet. + + + ordinaltallet 6 + For blot 100 år siden var hver sjette, syvende indbygger i verden europæer, men om 40 år vil blot hvert 20. menneske bo på vores kontinent. + + + everyone + + + meget eller mere + + + either + + + tusind + + + everything + + + tallet 27 + + + maskine, apparat + + + held og lykke + + + lyden fra en gøende hund + + + lyden når noget stort falder i vandet eller når en større mængde vand smides på noget + + + på samme måde som + + + kvadrilliardedel + + + trilliard + + + thirteenth + + + tallet 66 + + + tallet 75 + + + ordenstallet 40. + + + ordenstallet 29. + + + du må være tosset (anvendes for at udtrykke at den anden er helt ude og cykle) + + + overveje noget nøje inden beslutning tages + + + udtryk for overraskelse + + + udtryk for tryllen + + + but + + + tallet 6, efter fem og før syv + En vindmølle leverer allerede efter fire til seks måneder mere energi, end det kostede at fremstille og opstille den. + + + antallet 20 mellem 19 og 21 + Forkert brug af organiske opløsningsmidler gav allerede for tyve år siden problemer. + + + når noget passerer ind igennem noget andet fx en person som går gennem en gyde + + + tallet 19 + I gennemsnit blev der hver uge i 1996 vedtaget nitten forordninger og to direktiver, hvoraf de fleste drejede sig om den fælles landbrugspolitik. + + + tallet 14 mellem tretten og femten + Jeg nævner også de kommende klimaforhandlinger, som startes om fjorten dage i Bonn. + + + tallet 40 mellem 39 og 41 + For fyrre år siden var der god mening heri, og det er der også i dag! + + + tallet 90 mellem 89 og 91 + Tilsvarende burde verden selvfølgelig reagere, når over halvfems procent af de førende forskere på området i verden siger, at den globale opvarmning er reel, og at den er menneskeskabt. + + + med forskel i forbindelse med selektiv referentialitet og kategori + + + forstærker + + + 90 + Denne meddelelse må i de tilfælde, hvor en stat allerede har tiltrådt konventionen, gives inden halvfemsindstyve dage efter datoen for generalsekretærens meddelelse, og i de tilfælde, hvor en stat senere tiltræder, inden halvfemsindtyve dage efter datoen for deponeringen af ratifikations- eller tiltrædelsesinstrumentet. + + + tallet 50 + + + ordinaltallet 7 + Jeg er adræt nok til at gå ned fra sjette eller syvende sal. + + + ordinaltallet 8 + Dette er den ottende årsberetning om strukturfondsbevillinger. + + + ordenstal for 26 + + + mod + + + meget + + + flere + + + større ophobning + + + tallet 32 + + + lyden fra en fugl + + + forstærker + + + milliardtedel + + + kvadrilliontedel + + + hundrede + + + tallet 44 + + + twentyfifth + + + tallet 35 + + + twenty-first + + + ordenstallet 27. + + + ordenstallet 50. + + + tallet 65 + + + meget, i høj grad + + + held og lykke + + + udtryk for bestyrtelse og overraskelse + + + når noget er afklaret eller løst + + + tallet 2, der er mellem 1 og 3 + Det var de to beslutninger, der blev truffet i går. + + + it + + + each other + + + kvalificerer noget (følger af noget, begivenhed eller dato) som er sket senere i forhold til noget andet + + + spørgeord for identificering af person + + + no + + + henviser til flere personer der tales til + + + tallet 9 mellem 8 og 10 + Kan vi gøre noget positivt nu her ni år efter? + + + nægtende eller modsigende + + + tallet 18 mellem sytten og nitten + For atten år siden ansøgte vi om optagelse i EU. + + + udtryk for forbavselse eller overraskelse + + + halv + + + tallet 26 + + + nummer 20 i en række + + + tusindedel + + + tiendedel + + + since + + + tallet 42 + + + lyd fra skud eller lignende høj og kort lyd + + + lyden fra et mekanisk ur når det går + + + except + + + sorry + + + konjunktion, der bruges til at indlede en sætning eller klausul, der udtrykker en indrømmelse eller en undtagelse, svarende til 'selvom' eller 'skønt' + + + cheers + + + tallet 29 + + + tallet 90 + + + tallet 40 + + + person + + + tallet 61 + + + ordenstallet 90. + + + ordenstallet 11. + + + ordenstallet for en million + + + tallet 95 + + + ordenstallet 16. + + + tallet 80 + + + tallet 85 + + + tallet 33 + + + to a high degree + + + forstærkende kraftudtryk + + + gøre noget for andre og forvente sig noget tilbage + + + ja, - bekræftigelse + + + located within + Kongemagten nedarves til mænd og kvinder efter de i tronfølgeloven af 27. marts 1953 fastsatte regler. + + + något har kommit till uttryck med användning av en viss formell notation; ett datorprogram uttryckt i ett visst programspråk + + + they, third-person plural pronoun + + + tallet 8 efter 7 og før 9 + Alt dette forsvandt for otte måneder siden. + + + bekræftigelse + + + suffix som skapar substantiv från adjektiv + + + (denoting property or state of being) + + + konjunktion, der bruges til at indlede en kontrast eller modsætning i forhold til det, der tidligere er nævnt + + + ord + + + -ism + + + hi + + + tallet 50 mellem 49 og 51 + Lad os huske på, at kriminaliteten i Europa er steget betydeligt i løbet af de sidste halvtreds år. + + + element der optræder som nummer et i en rækkefølge + ... og Rækken standser af sig selv med første eller nulte Potens af x+rb, eftersom p er ulige eller lige. + + + farewell + + + tallet 70 + + + udtryk for følelsen at man ønsker sig noget og det ikke gik i lås som man havde forestillet sig eller foreslået + + + over, above + + + beyond, in addition + + + nothing + + + den rationelle talværdi der ligger midt imellem et og to + + + udtryk som bruges om når folk taler helt forbi hinanden og helt misforstår hinanden + + + med modsat egenskab + + + than + + + meget + + + ord svarende til en kort intens lyd fra en hund + + + tallet 31 + + + lyden af et nys + + + if + + + sound of a loud bang + + + kraftudtryk som betyder at man vil at nogen slutter med at tale + + + udtryk for overraskelse + + + tallet 74 + + + ordenstal for 28 + + + tallet 49 + + + ordenstallet 24. + + + tallet 25 + + + et element i en rækkefølge angivet ved variablen 'n' + + + tallet 82 + + + bruges som udtryk for at det foregående ikke var så vigtigt eller værd at kæmpe for at forandre + + + udtryk for overraskelse eller forbavselse + + + to eller tre + + + udtryk for bekræftende indrømmelse eller indsigt + + + udtryk for smerte + + + concerning, with respect to + + + ifølge + + + diff --git a/extensions/wikidata-lexemes/output/de.xml b/extensions/wikidata-lexemes/output/de.xml new file mode 100644 index 00000000..3f734eb3 --- /dev/null +++ b/extensions/wikidata-lexemes/output/de.xml @@ -0,0 +1,3782 @@ + + + + + + + + + without + + + + + + ungefährer Ort + + + + + + after + + + to + + + + + + + + + weibliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist + + + + + + freundschaftlicher Verabschiedungsgruß + + + + + + that + + + + + + sobald + + + sooft, während + + + unter der Voraussetzung, dass; falls + + + obwohl + + + + + + on both sides of + + + + + + rechtfertigende Konjunktion, da + + + + + + before + + + + + + thanks to + + + + + + weit weg vom bezeichneten Ort + + + + + + except + + + + + + if; when + + + + + + let alone + + + + + + multipliziert mit + + + + + + (in der Eigenschaft) als + + + + + + how + + + + + + where + + + + + + at the beginning of + + + + + + not far from + + + + + + + + + + + ours + + + + + + for (used in temporal expressions) + + + + + + the number 17 + + + + + + the number 22 + + + + + + the number 26 + + + + + + the number 35 + + + + + + the number 41 + + + + + + the number 53 + + + + + + the number 59 + + + + + + the number 71 + + + + + + the number 78 + + + + + + the number 79 + + + + + + the number 83 + + + + + + the number 800 + + + + + + the number 20,000 + + + + + + the number 2 + + + + + + Ausruf des Erstaunens + + + hallo + + + + + + moo, the sound a cow makes + + + + + + glug, the sound made when swallowing a drink + + + + + + bye + + + + + + 1001 + + + + + + 1001 + + + + + + goodbye + + + + + + umgangssprachliches Wortbildungselement, das in Verbindung mit Substantiven eine leicht pejorative Bedeutung annimmt, das die Gewöhnlichkeit des Gegenstands ausdrückt + + + + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer idealen, extrem guten oder extrem gut laufenden Variante + + + + + + polite response to a "Thank you" + + + phrase used when handing a requested item + + + + + + frei von + + + + + + ich (betont) + + + + + + Wortbildungselement, das in Verbindung mit Adjektiven eine Verstärkung der bezeichneten Eigenschaft ausdrückt + + + + + + against + + + + + + with + + + + + + under + + + + + + in front of + + + + + + + + + interrogative pronoun or question asking for the identity of one or several persons + + + + + + or + + + + + + + + + genau solcher, solche, solches + + + + + + nein + + + + + + used as a tag question + + + + + + with the effect that + + + + + + behind + + + + + + until + + + + + + west of + + + + + + Tonsilbe + + + + + + that; which + + + + + + northwest of + + + + + + the number 11 + + + + + + the number 0 + + + + + + hi, informal hello + + + + + + Ausruf bei körperlichem Schmerz + + + + + + and + + + + + + the number 20 + + + + + + the number 31 + + + + + + the number 34 + + + + + + the number 52 + + + + + + the number 65 + + + + + + the number 68 + + + + + + the number 70 + + + + + + the number 77 + + + + + + the number 81 + + + + + + the number 84 + + + + + + the number 86 + + + + + + the number 89 + + + + + + the number 95 + + + + + + the number 96 + + + + + + the number 97 + + + + + + the number 99 + + + + + + the number 100 + + + + + + the number 300 + + + + + + the number 180 + + + + + + the number 10,000 + + + + + + the number 1200 + + + + + + zu jeder Zeit, stets + + + + + + Begrüßung + + + + + + achoo, the sound made when sneezing + + + + + + nee-naw, mimicking the sound made by sirens on emergency vehicles + + + + + + cheers, toast when drinking alcohol + + + + + + + 101 + + + + + + 101 + + + + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer besonders stark ausgeprägten Variante + + + + + + sound of bells ringing + + + + + + what's this? + + + + + + + because of + + + + + + die Natürliche Zahl zwischen Null und Zwei + + + + + + drückt Zustimmung, Einverständnis aus + + + + + + + die natürliche Zahl zwischen 49999 und 50001 + + + + + + + + Personalpronomen + + + + + + until + + + + + + + die natürliche Zahl zwischen Drei und Fünf + + + + + + + + we; first-person plural pronoun + + + + + + indefinite pronoun; one, you + + + + + + within a place + + + within a period of time + + + + + + except + + + + + + nein + + + + + + nein + + + + + + + + + + + a; an + + + + + + außer wenn + + + + + + while + + + + + + neither, used with "noch" to mean "neither ... nor" + + + + + + wie + + + + + + Tonsilbe + + + + + + Tonsilbe + + + + + + the number 12 + + + + + + proposed gender-neutral definite article + Obwohl sier in England geboren wurde, lebt und arbeitet dier nicht-binäre, genderqueere Elektro-Musiker*in seit 2002 in Berlin. + + + + + + zwei + + + + + + the number 21 + + + + + + the number 27 + + + + + + the number 39 + + + + + + the number 49 + + + + + + the number 85 + + + + + + the number 87 + + + + + + the number 200 + + + + + + the number 900 + + + + + + the number 3500 + + + + + + the number 11,000 + + + + + + phew, sound made after doing something which took a lot of effort + + + + + + hey, used to get someone's attention + + + hey, used to express surprise + + + informal hello + + + + + + hic, the sound of a hiccup + + + + + + vocalization by cats + + + + + + achoo, the sound made when sneezing + + + + + + oops + + + + + + Ausruf mit mehreren Bedeutungen im Deutschen, Schwedischen, Dänischen etc. + + + + + + tick tock, mimicking the sound of a clock ticking + + + + + + goodbye + + + + + + goodbye + + + + + + come on/let's go/hurry up + + + + + + 1001 + + + + + + I swear (expressing confirmation of a statement) + + + + + + eintausendfünfhundert + + + + + + oops + + + + + + used to attract chicken + + + + + + + + immitation of a dog vocalisation + + + + + + außer + + + + + + in der Nähe + + + + + + for + + + + + + because of + + + + + + Kardinalzahl zwischen 1 und 3 + + + + + + + + + + männliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist + + + Bezugsobjekt der grammatisch männlichen Phrase, für die dieses Pronomen steht + + + + + + Expression of awe, terror, surprise or astonishment + + + + + + + + second-person plural pronoun + + + + + + + + + second person formal pronoun + + + + + + number 8 + + + + + + during + + + + + + because + + + + + + + + + + + not a; no + + + + + + per + + + + + + obwohl + + + + + + obwohl, obgleich + + + + + + south of + + + + + + Tonsilbe + + + + + + Tonsilbe + + + + + + + + + + + + his + + + + + + left of + + + + + + halber + + + + + + the number 14 + + + + + + the number 19 + + + + + + the number 38 + + + + + + the number 44 + + + + + + the number 45 + + + + + + the number 62 + + + + + + the number 80 + + + + + + the number 6000 + + + + + + the number 30,000 + + + + + + the number 1100 + + + + + + the number 12,000 + + + + + + den folgenden Satzteil verstärkend + + + + + + bzz, the sound made by flying insects, especially bees + + + + + + informal hello + + + informal goodbye + + + + + + 1001 + + + + + + Wortbildungselement, das in Verbindung mit Adjektiven eine Verstärkung der bezeichneten Eigenschaft ausdrückt + + + Wortbildungselement, das in Verbindung mit Substantiven eine pejorative Bedeutung annimmt + + + Wortbildungselement, das in Verbindung mit Substantiven einen besonders hohen Erfüllungsgrad anzeigt + + + + + + response to sneezing + + + Zustand des vollständigen körperlichen, geistigen und sozialen Wohlergehens + + + + + + third-person gender-neutral neopronoun + + + + + + + + + + other + + + + + + (discourse marking particle for highlighting understood information and corrective utterances) + + + + + + Angabe einer Richtung + + + Angabe eines Ortes + + + + + + die natürliche Zahl zwischen 99 und 101 + + + + + + "when compared with" + + + + + + + + + + Neopronomen + + + + + + greeting of non-binding nature + + + + + + please + + + + + + number 10 + + + + + + number 5 + + + + + + number 9 + + + + + + Kardinalzahl zwischen zweiunddreißig und vierunddreißig + + + + + + so that + + + + + + after + + + + + + because + + + + + + either (... or ...) + + + + + + according to + + + + + + including + + + + + + minus + + + + + + igennem + + + + + + north of + + + + + + Wohlwollende Erwiderung + + + + + + + + + + + + my + + + + + + + + + + + yours (formal) + + + + + + southeast of + + + + + + onomatopoeic representation of laughter + + + + + + ow, ouch + + + + + + the number 18 + + + + + + the number 24 + + + + + + the number 25 + + + + + + the number 28 + + + + + + the number 32 + + + + + + the number 37 + + + + + + the number 42 + + + + + + the number 55 + + + + + + the number 56 + + + + + + the number 57 + + + + + + the number 58 + + + + + + the number 73 + + + + + + the number 76 + + + + + + the number 82 + + + + + + the number 88 + + + + + + the number 91 + + + + + + the number 500 + + + + + + the number 1000 + + + + + + the number 3000 + + + + + + the number 5000 + + + + + + the number 80,000 + + + + + + danke + + + + + + onomatopoeic representation of the sound of a cuckoo + + + + + + oops + + + + + + cheep, mimicking the sound made by small birds + + + + + + informal hello + + + + + + bye + + + + + + Zahlwort für 1,5 + + + + + + "all sorts of" + + + + + + 101 + + + + + + deswegen + + + + + + onomatopoeic representation of the sound of a rooster + + + + + + bezüglich, hinsichtlich + + + + + + vorangestelltes Wortbildungselement bei Adjektiven zur Verdeutlichung einer besonders stark ausgeprägten Eigenschaft + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer besonders stark ausgeprägten Variante + + + + + + + + + + + this one + + + + + + Kardinalzahl zwischen 6 und 8 + + + + + + 400 + + + + + + between + + + + + + + Neopronomen + Obwohl sier in England geboren wurde, lebt und arbeitet dier nicht-binäre, genderqueere Elektro-Musiker*in Jam Rostrom aka Planningtorock seit 2002 in Berlin. + Musik baute Brücken zwischen sier und siehrer Mutter und siehrer Schwester. + + + + + + the number 8000 + + + + + + + + + + + + one (as a pronoun); someone; one thing + + + + + + not far from + + + + + + and/or + + + + + + + + + + + + + + the one; this one; that one + + + + + + freundschaftlicher Gruß + + + + + + Verwendung zum Ausdruck unterschiedlicher Gefühle wie Überraschung oder Aufregung + + + Verwendung zum Ausdruck des Verstehens + + + + + + + the number 15 + + + + + + the number 48 + + + + + + the number 54 + + + + + + the number 60 + + + + + + the number 63 + + + + + + the number 74 + + + + + + the number 90 + + + + + + the number 93 + + + + + + the number 300,000 + + + + + + the number 1300 + + + + + + the number 1600 + + + + + + the number 1700 + + + + + + oops + + + + + + + + + boom + + + + + + onomatopoeic representation of the sound of a rooster + + + + + + + baa, the sound made by sheep + + + + + + snip, mimicking the sound of cutting with scissors + + + + + + bye + + + + + + goodbye + + + + + + informal hello + + + + + + quarter + + + + + + 101 + + + + + + immitation of a dog vocalisation + + + + + + used to invite someone into one's home + + + + + + gegenüber + + + + + + on top of + + + + + + einen Gegensatz ausdrückend + + + + + + 1000 + + + + + + + + + + + bestimmter Artikel + Der Mann hat einen Hund. + + + + + + + and, joins words and sentence parts together + + + + + + + + + second-person singular pronoun + + + + + + number 6 + + + + + + this side of + + + + + + the other side of + + + + + + despite + + + + + + even though + + + + + + by + + + + + + if; whether + + + + + + without + + + + + + in der Nähe + + + + + + both sides of + + + + + + unterhalb + + + + + + east of + + + + + + Tonsilbe + + + + + + Tonsilbe + + + + + + + + + + + yours (plural) + + + + + + the number 13 + + + + + + the number 23 + + + + + + the number 40 + + + + + + the number 47 + + + + + + the number 51 + + + + + + the number 66 + + + + + + the number 67 + + + + + + the number 72 + + + + + + the number 94 + + + + + + the number 98 + + + + + + the number 600 + + + + + + the number 700 + + + + + + the number 110 + + + + + + the number 2000 + + + + + + the number 4000 + + + + + + the number 1500 + + + + + + the number 1800 + + + + + + the number 1900 + + + + + + expression of consent + + + expression of thoughtfulness + + + + + + ew, an expression of disgust + + + + + + cheers, toast when drinking alcohol + + + + + + + nur selten, unregelmäßig + + + + + + used to wish someone the best of luck and that events will turn out favorably + + + + + + vorangestelltes Wortbildungselement bei Adjektiven zur Verdeutlichung einer besonders stark ausgeprägten Eigenschaft + + + + + + fraw Melibea, hör, hör wunder + + + + + + Lokal: Bewegung von einer Seite zur anderen oder das Durchqueren eines Hindernisses/Raumes. + Der Weg führt durch den Wald. + + + Instrumental: Vermittlung, Hilfsmittel oder Handlung, die zu einem Ergebnis führt. + Wir haben das Problem durch ein Gespräch gelöst. + + + Kausal: Grund oder Ursache für eine (oft passive) Wirkung. + Die Straße wurde durch das Erdbeben zerstört. + + + Temporal: Während eines gesamten Zeitraums; von Anfang bis Ende. + Es hat die ganze Nacht durch stark geregnet. + + + + + + Präposition und Bestandteil von Adelstiteln + + + + + + + + + + bezeichnet die eigene Person + + + + + + Ausdruck von Amüsement + + + + + + Partikel, die Ablehnung, Verneinung, Negation, Widerspruch bekundet, gewöhnlich auf eine Frage + + + + + + + 50 + + + + + + third-person singular neopronoun + + + + + + number 3 + + + + + + opposite + + + + + + instead of + + + + + + outside of + + + + + + ehe; bevor + + + + + + next to + + + + + + for the sake of + + + + + + so viele Male; sooft + + + + + + with the effect that + + + + + + Kardinalzahl zwischen neunundzwanzig und einunddreißig + + + + + + unterhalb + + + + + + Tonsilbe + + + + + + + + + + + + yours (singular) + + + + + + proposed gender-neutral relative pronoun + Das Konzert von Planningtorock, dier zuletzt 2011 auf Kampnagel gespielt hat, wird präsentiert + + + + + + northeast of + + + + + + southwest of + + + + + + the number 16 + + + Zahlwort + + + + + + the number 29 + + + + + + the number 36 + + + + + + the number 43 + + + + + + the number 46 + + + + + + the number 61 + + + + + + the number 64 + + + + + + the number 69 + + + + + + the number 75 + + + + + + the number 92 + + + + + + the number 7000 + + + + + + the number 9000 + + + + + + the number 100,000 + + + + + + the number 1400 + + + + + + expresses resignation + + + + + + yuck + + + + + + (expression of physical pain) + + + + + + yuck + + + + + + shh, sound used to indicate that someone should be quiet + + + shoo, sound used to indicate that someone or something should go away + + + + + + sound made by a frog or a duck + + + + + + Imitation des Bellens eines Hundes + + + + + + undefined entity + + + + + + cheers, toast when drinking alcohol + + + + + + Aufforderung, still oder leise zu sein + + + + + + Entschuldigung + + + + + + + + + greeting + + + + + + polite response to a "Thank you" + + + + + + first-person singular pronoun; I + + + + + + third-person singular possessive pronoun + + + + without + + + ungefährer Ort + + + after + + + to + + + weibliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist + + + freundschaftlicher Verabschiedungsgruß + + + that + + + sobald + + + sooft, während + + + unter der Voraussetzung, dass; falls + + + obwohl + + + on both sides of + + + rechtfertigende Konjunktion, da + + + before + + + thanks to + + + weit weg vom bezeichneten Ort + + + except + + + if; when + + + let alone + + + multipliziert mit + + + (in der Eigenschaft) als + + + how + + + where + + + at the beginning of + + + not far from + + + ours + + + for (used in temporal expressions) + + + the number 17 + + + the number 22 + + + the number 26 + + + the number 35 + + + the number 41 + + + the number 53 + + + the number 59 + + + the number 71 + + + the number 78 + + + the number 79 + + + the number 83 + + + the number 800 + + + the number 20,000 + + + the number 2 + + + Ausruf des Erstaunens + + + hallo + + + moo, the sound a cow makes + + + glug, the sound made when swallowing a drink + + + bye + + + 1001 + + + 1001 + + + goodbye + + + umgangssprachliches Wortbildungselement, das in Verbindung mit Substantiven eine leicht pejorative Bedeutung annimmt, das die Gewöhnlichkeit des Gegenstands ausdrückt + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer idealen, extrem guten oder extrem gut laufenden Variante + + + polite response to a "Thank you" + + + phrase used when handing a requested item + + + frei von + + + ich (betont) + + + Wortbildungselement, das in Verbindung mit Adjektiven eine Verstärkung der bezeichneten Eigenschaft ausdrückt + + + against + + + with + + + under + + + in front of + + + interrogative pronoun or question asking for the identity of one or several persons + + + or + + + genau solcher, solche, solches + + + nein + + + used as a tag question + + + with the effect that + + + behind + + + until + + + west of + + + Tonsilbe + + + that; which + + + northwest of + + + the number 11 + + + the number 0 + + + hi, informal hello + + + Ausruf bei körperlichem Schmerz + + + and + + + the number 20 + + + the number 31 + + + the number 34 + + + the number 52 + + + the number 65 + + + the number 68 + + + the number 70 + + + the number 77 + + + the number 81 + + + the number 84 + + + the number 86 + + + the number 89 + + + the number 95 + + + the number 96 + + + the number 97 + + + the number 99 + + + the number 100 + + + the number 300 + + + the number 180 + + + the number 10,000 + + + the number 1200 + + + zu jeder Zeit, stets + + + Begrüßung + + + achoo, the sound made when sneezing + + + nee-naw, mimicking the sound made by sirens on emergency vehicles + + + cheers, toast when drinking alcohol + + + 101 + + + 101 + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer besonders stark ausgeprägten Variante + + + sound of bells ringing + + + what's this? + + + because of + + + die Natürliche Zahl zwischen Null und Zwei + + + drückt Zustimmung, Einverständnis aus + + + die natürliche Zahl zwischen 49999 und 50001 + + + Personalpronomen + + + until + + + die natürliche Zahl zwischen Drei und Fünf + + + we; first-person plural pronoun + + + indefinite pronoun; one, you + + + within a place + + + within a period of time + + + except + + + nein + + + nein + + + a; an + + + außer wenn + + + while + + + neither, used with "noch" to mean "neither ... nor" + + + wie + + + Tonsilbe + + + Tonsilbe + + + the number 12 + + + proposed gender-neutral definite article + Obwohl sier in England geboren wurde, lebt und arbeitet dier nicht-binäre, genderqueere Elektro-Musiker*in seit 2002 in Berlin. + + + zwei + + + the number 21 + + + the number 27 + + + the number 39 + + + the number 49 + + + the number 85 + + + the number 87 + + + the number 200 + + + the number 900 + + + the number 3500 + + + the number 11,000 + + + phew, sound made after doing something which took a lot of effort + + + hey, used to get someone's attention + + + hey, used to express surprise + + + informal hello + + + hic, the sound of a hiccup + + + vocalization by cats + + + achoo, the sound made when sneezing + + + oops + + + Ausruf mit mehreren Bedeutungen im Deutschen, Schwedischen, Dänischen etc. + + + tick tock, mimicking the sound of a clock ticking + + + goodbye + + + goodbye + + + come on/let's go/hurry up + + + 1001 + + + I swear (expressing confirmation of a statement) + + + eintausendfünfhundert + + + oops + + + used to attract chicken + + + immitation of a dog vocalisation + + + außer + + + in der Nähe + + + for + + + because of + + + Kardinalzahl zwischen 1 und 3 + + + männliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist + + + Bezugsobjekt der grammatisch männlichen Phrase, für die dieses Pronomen steht + + + Expression of awe, terror, surprise or astonishment + + + second-person plural pronoun + + + second person formal pronoun + + + number 8 + + + during + + + because + + + not a; no + + + per + + + obwohl + + + obwohl, obgleich + + + south of + + + Tonsilbe + + + Tonsilbe + + + his + + + left of + + + halber + + + the number 14 + + + the number 19 + + + the number 38 + + + the number 44 + + + the number 45 + + + the number 62 + + + the number 80 + + + the number 6000 + + + the number 30,000 + + + the number 1100 + + + the number 12,000 + + + den folgenden Satzteil verstärkend + + + bzz, the sound made by flying insects, especially bees + + + informal hello + + + informal goodbye + + + 1001 + + + Wortbildungselement, das in Verbindung mit Adjektiven eine Verstärkung der bezeichneten Eigenschaft ausdrückt + + + Wortbildungselement, das in Verbindung mit Substantiven eine pejorative Bedeutung annimmt + + + Wortbildungselement, das in Verbindung mit Substantiven einen besonders hohen Erfüllungsgrad anzeigt + + + response to sneezing + + + Zustand des vollständigen körperlichen, geistigen und sozialen Wohlergehens + + + third-person gender-neutral neopronoun + + + other + + + (discourse marking particle for highlighting understood information and corrective utterances) + + + Angabe einer Richtung + + + Angabe eines Ortes + + + die natürliche Zahl zwischen 99 und 101 + + + "when compared with" + + + Neopronomen + + + greeting of non-binding nature + + + please + + + number 10 + + + number 5 + + + number 9 + + + Kardinalzahl zwischen zweiunddreißig und vierunddreißig + + + so that + + + after + + + because + + + either (... or ...) + + + according to + + + including + + + minus + + + igennem + + + north of + + + Wohlwollende Erwiderung + + + my + + + yours (formal) + + + southeast of + + + onomatopoeic representation of laughter + + + ow, ouch + + + the number 18 + + + the number 24 + + + the number 25 + + + the number 28 + + + the number 32 + + + the number 37 + + + the number 42 + + + the number 55 + + + the number 56 + + + the number 57 + + + the number 58 + + + the number 73 + + + the number 76 + + + the number 82 + + + the number 88 + + + the number 91 + + + the number 500 + + + the number 1000 + + + the number 3000 + + + the number 5000 + + + the number 80,000 + + + danke + + + onomatopoeic representation of the sound of a cuckoo + + + oops + + + cheep, mimicking the sound made by small birds + + + informal hello + + + bye + + + Zahlwort für 1,5 + + + "all sorts of" + + + 101 + + + deswegen + + + onomatopoeic representation of the sound of a rooster + + + bezüglich, hinsichtlich + + + vorangestelltes Wortbildungselement bei Adjektiven zur Verdeutlichung einer besonders stark ausgeprägten Eigenschaft + + + vorangestelltes Wortbildungselement bei Substantiven zur Verdeutlichung einer besonders stark ausgeprägten Variante + + + this one + + + Kardinalzahl zwischen 6 und 8 + + + 400 + + + between + + + Neopronomen + Obwohl sier in England geboren wurde, lebt und arbeitet dier nicht-binäre, genderqueere Elektro-Musiker*in Jam Rostrom aka Planningtorock seit 2002 in Berlin. + Musik baute Brücken zwischen sier und siehrer Mutter und siehrer Schwester. + + + the number 8000 + + + one (as a pronoun); someone; one thing + + + not far from + + + and/or + + + the one; this one; that one + + + freundschaftlicher Gruß + + + Verwendung zum Ausdruck unterschiedlicher Gefühle wie Überraschung oder Aufregung + + + Verwendung zum Ausdruck des Verstehens + + + the number 15 + + + the number 48 + + + the number 54 + + + the number 60 + + + the number 63 + + + the number 74 + + + the number 90 + + + the number 93 + + + the number 300,000 + + + the number 1300 + + + the number 1600 + + + the number 1700 + + + oops + + + boom + + + onomatopoeic representation of the sound of a rooster + + + baa, the sound made by sheep + + + snip, mimicking the sound of cutting with scissors + + + bye + + + goodbye + + + informal hello + + + quarter + + + 101 + + + immitation of a dog vocalisation + + + used to invite someone into one's home + + + gegenüber + + + on top of + + + einen Gegensatz ausdrückend + + + 1000 + + + bestimmter Artikel + Der Mann hat einen Hund. + + + and, joins words and sentence parts together + + + second-person singular pronoun + + + number 6 + + + this side of + + + the other side of + + + despite + + + even though + + + by + + + if; whether + + + without + + + in der Nähe + + + both sides of + + + unterhalb + + + east of + + + Tonsilbe + + + Tonsilbe + + + yours (plural) + + + the number 13 + + + the number 23 + + + the number 40 + + + the number 47 + + + the number 51 + + + the number 66 + + + the number 67 + + + the number 72 + + + the number 94 + + + the number 98 + + + the number 600 + + + the number 700 + + + the number 110 + + + the number 2000 + + + the number 4000 + + + the number 1500 + + + the number 1800 + + + the number 1900 + + + expression of consent + + + expression of thoughtfulness + + + ew, an expression of disgust + + + cheers, toast when drinking alcohol + + + nur selten, unregelmäßig + + + used to wish someone the best of luck and that events will turn out favorably + + + vorangestelltes Wortbildungselement bei Adjektiven zur Verdeutlichung einer besonders stark ausgeprägten Eigenschaft + + + fraw Melibea, hör, hör wunder + + + Lokal: Bewegung von einer Seite zur anderen oder das Durchqueren eines Hindernisses/Raumes. + Der Weg führt durch den Wald. + + + Instrumental: Vermittlung, Hilfsmittel oder Handlung, die zu einem Ergebnis führt. + Wir haben das Problem durch ein Gespräch gelöst. + + + Kausal: Grund oder Ursache für eine (oft passive) Wirkung. + Die Straße wurde durch das Erdbeben zerstört. + + + Temporal: Während eines gesamten Zeitraums; von Anfang bis Ende. + Es hat die ganze Nacht durch stark geregnet. + + + Präposition und Bestandteil von Adelstiteln + + + bezeichnet die eigene Person + + + Ausdruck von Amüsement + + + Partikel, die Ablehnung, Verneinung, Negation, Widerspruch bekundet, gewöhnlich auf eine Frage + + + 50 + + + third-person singular neopronoun + + + number 3 + + + opposite + + + instead of + + + outside of + + + ehe; bevor + + + next to + + + for the sake of + + + so viele Male; sooft + + + with the effect that + + + Kardinalzahl zwischen neunundzwanzig und einunddreißig + + + unterhalb + + + Tonsilbe + + + yours (singular) + + + proposed gender-neutral relative pronoun + Das Konzert von Planningtorock, dier zuletzt 2011 auf Kampnagel gespielt hat, wird präsentiert + + + northeast of + + + southwest of + + + the number 16 + + + Zahlwort + + + the number 29 + + + the number 36 + + + the number 43 + + + the number 46 + + + the number 61 + + + the number 64 + + + the number 69 + + + the number 75 + + + the number 92 + + + the number 7000 + + + the number 9000 + + + the number 100,000 + + + the number 1400 + + + expresses resignation + + + yuck + + + (expression of physical pain) + + + yuck + + + shh, sound used to indicate that someone should be quiet + + + shoo, sound used to indicate that someone or something should go away + + + sound made by a frog or a duck + + + Imitation des Bellens eines Hundes + + + undefined entity + + + cheers, toast when drinking alcohol + + + Aufforderung, still oder leise zu sein + + + Entschuldigung + + + greeting + + + polite response to a "Thank you" + + + first-person singular pronoun; I + + + third-person singular possessive pronoun + + + diff --git a/extensions/wikidata-lexemes/output/dz.xml b/extensions/wikidata-lexemes/output/dz.xml new file mode 100644 index 00000000..1f5c6a94 --- /dev/null +++ b/extensions/wikidata-lexemes/output/dz.xml @@ -0,0 +1,98 @@ + + + + + + + + + + + you; second person singular pronoun + + + + + + + + third person singular pronoun + + + + + + one + + + + + + + + third person singular pronoun + + + + + + + + I; first person singular pronoun + + + + + + + + we; first person plural pronoun + + + + + + + + they; third person plural pronoun + + + + + + + + you; second person plural pronoun + + + + you; second person singular pronoun + + + third person singular pronoun + + + one + + + third person singular pronoun + + + I; first person singular pronoun + + + we; first person plural pronoun + + + they; third person plural pronoun + + + you; second person plural pronoun + + + diff --git a/extensions/wikidata-lexemes/output/el.xml b/extensions/wikidata-lexemes/output/el.xml new file mode 100644 index 00000000..cb57e2ac --- /dev/null +++ b/extensions/wikidata-lexemes/output/el.xml @@ -0,0 +1,141 @@ + + + + + + + + + the number 6 + + + + + + the number 7 + + + + + + + and + + + + + + the number 4 + + + + + + (marker of the future tense) + + + + + + the number 3 + + + + + + cardinal number 1 + + + + + + + + + + + + + + + + + (definite article) + + + + + + (forms various subjunctive moods) + + + + + + (forms hortative/jussive expressions) + + + + + + until, up to + + + + + + the number 2 + + + + + + the number 5 + + + + the number 6 + + + the number 7 + + + and + + + the number 4 + + + (marker of the future tense) + + + the number 3 + + + cardinal number 1 + + + (definite article) + + + (forms various subjunctive moods) + + + (forms hortative/jussive expressions) + + + until, up to + + + the number 2 + + + the number 5 + + + diff --git a/extensions/wikidata-lexemes/output/en.xml b/extensions/wikidata-lexemes/output/en.xml new file mode 100644 index 00000000..debaa496 --- /dev/null +++ b/extensions/wikidata-lexemes/output/en.xml @@ -0,0 +1,85296 @@ + + + + + + + + + number between 12 and 14 + article thirteen (13) of the Constitution of Louisiana + + + + + + For what cause, reason, or purpose + + + + + + the number 10 + the Interim Constitution was amended ten times + + + playing card + + + + + + + + + to give an old object a new purpose/role + + + + + + + (second-person possessive) belonging to you + + + + + + + joins words and sentence parts together + + + then; and then (concessive) + + + with, accompanied by; and with (associative) + + + + + + although + + + + + + + + (auxiliary) expressing the future tense + + + give in a will, bequeath + + + + + + third power of ten + Solomon is said to have written three thousand proverbs, and those contained in this book may be a selection from these + + + + + + + sixth power of ten + + + + + + Concerning, with regard to, on the subject of + Let's get serious about plagiarism + + + + + + word denoting something already mentioned, or assumed to be known + Did you see my car over there? The exterior was spray-painted red yesterday. + + + + + + In the (same) way or manner that; to the (same) degree that + it is hereby ordered as follows + + + + + + later in time + for 50 years after the year of first publication + + + + + + enclosing in a circle or other curve + + + nearby + + + in a variety of places within an enclosed space + + + + + + next to + + + + + + into the middle of an object and out again + + + + + + beyond + + + + + + used to indicate that something happens or is the case even though there is an obstacle, difficulty, or another opposing factor + + + + + + one of two choices + + + one or the other of a pair + + + + + + On the outside of, not inside + This work is in the public domain in some countries and areas outside the United Kingdom, including the United States. + + + + + + also not + + + + + + denoting something learned + + + + + + in spite of, occurring even with some contrary indicator + + + + + + + million million + + + + million million million + + + + + + on the top of, above + + + physically supported by + + + at (a point in time) + + + + + + according to previous knowledge + + + + + + More than enough. + Acquire one of these and you'll have plenty of car for your money. + + + + + + + + the number 0 + + + + + + technique for imaging internal structure using magnetic fields + + + + + + + core of the atom; composed of bound nucleons (protons and neutrons) + + + + + + Apart from, except (for), excluding. + Everyone but Father left early. + I like everything but that. + Nobody answered the door when I knocked, so I had no choice but to leave. + + + + + + number between 39 and 41 + + + + + + before + + + + + + form of laughter (especially when repeated) + + + + + + Certainly; verily. + + + + + + + + + make the noise 'woof' + + + + + + used to express surprise, interest, or alarm, or to command attention + + + + + + + praise + + + + + + expressing relief + + + + + + chemical element with atomic number 114 + + + + + + without + + + + + + + word or phrase that means exactly or nearly the same as another word + + + + + + Used to indicate something dramatic, sudden, and unanticipated has occurred. + Our relationship was going smoothly and then wham! Out of nowhere he told me he was leaving me for another woman. + + + + + + + music group made up of young women + + + + + + describes rocks low in silica + + + + + + + + steel element reinforcing concrete + + + + + + + the world's largest land biome, characterized by coniferous forests + + + + + + study of the upper atmosphere + + + + + + study of chemistry pertaining to agriculture + + + + + + science + + + + + + type of higher education institution + + + type of tertiary education teaching institution in the UK between 1965 and 1992 + + + + + + + molecule found in living beings + + + + + + + decomposition by living organisms + + + + + + + renewable energy + + + + + + + molecule that is produced by a living organism + + + + + + + substance providing scientific evidence of past or present life + + + + + + + communications medium with a high data transmission rate + + + + + + + response of a sense organ to chemicals + + + + + + + act of consigning + + + + + + + + + license + + + + + + not binary + + + outside or beyond the gender binary; not exclusively male or female + + + + + + study of diabetes + + + clinical science of diabetes mellitus + + + + + + + indicator of a problem + + + process to assist in medical diagnosis + + + + + + + being diurnal + + + + + + measurement of electrical properties + + + + + + pertaining to electrotechnology + + + + + + study of energy transformations + + + + + + of or pertaining to a eutectic mixture + + + + + + + semiconductor quasiparticle + + + chemical compound + + + + + + relating to fermions + + + + + + attracted to all genders + + + + + + + + + counter-argue + + + + + + fluid analog of electronics + + + + + + + spacecraft flight past a celestial object + + + ceremonial aircraft flight + + + flight event at some distance from the object + + + + + + + provider of funds + + + + + + pertaining to geomatics + + + + + + + + + use getter to improve vacuum + + + + + + + skill at obtaining grants + + + + + + + single layer of graphite + + + + + + + undeveloped land + + + + + + + + + provide a guarantee + + + + + + deliberately incorrect version of “who” or “whom”, used humorously in place of those words + Yes, even though she’s one of the YouTubers whomst is bad. + + + + + + + medical specialist in hepatology + + + + + + + study of water in the atmosphere + + + + + + + + term for faster-than-light travel mechanism + + + + + + between communities + + + + + + between ministries + + + + + + between mountains + + + + + + + type of crystal defect + + + + + + + type of Korean food + + + + + + + device or process to make linear + + + type of circuit + + + + + + study of fats + + + + + + + middle part of a city + + + + + + pertaining to modernism + + + + + + of a size measured in nanometers + + + + + + + study of animal behavior related to nervous system + + + + + + + study of nervous system disease + + + + + + + study of drug interactions with brain and psychology + + + + + + not clinical + + + + + + against proliferation (particularly of nuclear weapons) + + + + + + + electron state in an atomic or molecular system + + + an orbital road + + + + + + relating to orthotics + + + + + + + economic concept + + + + + + + environment of an area in the distant past + + + + + + study of veins + + + + + + + degree to which something can be verified + + + + + + pertaining to podiatry + + + + + + + + cast (as in concrete) elsewhere before installing + + + + + + + + + construction technique + + + + + + pertaining to psychonomics + + + + + + relating to sales directly to final customers + + + + + + characteristic + + + + + + + + + break into fragments + + + + + + + + notes held only briefly in music + + + + + + steel components of a structure + + + + + + + one who studies suicide + + + occupation + + + + + + quality of object + + + interrogative word + + + + + + + vehicle safety device + + + + + + + period when a broadcast program is shown + + + feeling of weightlessness on a roller coaster + + + + + + + entity coming closer + + + + + + + helper + + + + + + + recording of a text being read + + + + + + + person who enjoys the good things in life + + + + + + In spite of, despite. + Notwithstanding personal preferences, the school district's rules on the topic govern our decision. + + + + + + causing a transformation + + + + + + + + + to call someone by their deadname + + + + + + + branch of medicine concerned with urological problems affecting women + + + + + + of a desirable age + + + + + + + earthquake on the Moon + + + + + + process of overseeing a collection, for example in a museum + + + + + + + statistical method that summarizes data from multiple sources + + + + + + a certain proportion of, at least one + + + an unspecified quantity or number of + + + an unspecified amount of (something uncountable) + + + a certain; an unspecified or unknown + + + + + + + version of a scholarly or scientific paper that precedes publication in a peer-reviewed scholarly or scientific journal + + + + + + + type of sponge + + + + + + + perspective of an individual or group + + + + + + + action to include someone else’s tweet into one’s own timeline + I'm still learning the full use of hashtags and retweets. + + + + + + + + + include someone else’s tweet into one’s own timeline + In my case, I started following two of the accounts after other people who I follow retweeted or linked to content posted online. + + + reposting of a tweet + + + + + + + Slang English language term of endearment + + + + + + + type of antibiotic + + + + + + + type of pasta + + + beef flank steak + + + + + + + female Buddhist monk + + + + + + + ethanol produced by fermenting crops for fuel + + + + + + fabrication using biological or biochemical methods + + + + + + + Italian antipasto + + + + + + + literary genre + + + + + + + type of cell + + + + + + + + female gladiator + + + + + + + poetry with 11 syllables per line + + + + + + + virtual machine-supporting software or firmware + + + + + + + unlawful withholding of employee pay by their employer + + + + + + + collection of fashion photographs + + + + + + + type of neutron star + + + + + + + very thin synthetic fiber + + + + + + fallacious argumentative strategy that avoids genuine discussion of the topic by instead attacking the character, motive etc. of the person(s) associated with the argument + + + + + + et cetera + + + + + + in an apposite manner, appropriately, to the point + + + + + + radiantly (in the manner of beaming light) + + + + + + in a cheating manner + + + + + + In a controllable manner. + + + + + + in a dapper manner; neatly, trimly, sprucely + + + + + + meritoriously (in a deserving manner) + + + + + + used as a lense to improve sight + + + + + + faintingly/fadingly, so as to resemble/evoke death (in dying) + + + + + + without emotion or feeling (in an emotionless manner) + + + + + + the state of not having anything in one's hand + + + + + + so as to enrich + + + + + + in a manner involving multiple cells + + + + + + on the face of + + + + + + without friction (in a frictionless manner) + + + + + + in a guileless manner + + + + + + to what extent? + + + at what cost? + + + + + + + in an insubordinate manner + + + + + + without motive + + + + + + type of document issued by the Pope + + + + + + polite response to a "Thank you" + + + + + + said of the time of day, according to the clock + + + + + + onward + + + + + + in a way that involves wild, uncontrolled behavior and feelings of great pleasure and excitement + + + + + + illicit partner in love + + + + + + slang for a user being added to a killfile + + + + + + In a way that is pretended; under false pretence. + + + + + + in a priceless manner + + + + + + in the earliest stage/at first/originally + + + + + + irresistibly/without resistance + + + + + + in a stifling manner + + + + + + without weeping (in a tearless manner) + + + + + + имсол + + + + + + without reference to time, independently of time's passage + + + + + + across an (imaginary) line around which an object may be spun, referring to a mammalian head it is the second cervical vertebra of the spine + + + + + + in a way that is large, bulky, or full + + + + + + in a kind and friendly manner + + + + + + done in a manner that worships another + + + + + + without any mental or neurological abnormalities + + + + + + + type of parasitic organism + + + + + + + holistic training discipline + + + + + + + organism that eats multiple types of other organisms + + + + + + + functionless DNA or RNA sequence + + + + + + garbled text as a result of incorrect character encoding + + + + + + Any apparently useless activity which, by allowing you to overcome intermediate difficulties, allows you to solve a larger problem. + + + A less useful activity done consciously or subconsciously to procrastinate about a larger but more useful task. + + + + + + + class of small, light notebook computers + + + + + + + study of saccharides + + + + + + + + + excessively express a gene by producing too much of its effect or product + + + + + + + process of formation of cancer + + + + + + + condensed form of chromatin + + + + + + + type of signaling protein + + + + + + + fraction of population testing positive for a disease + + + + + + + narrow shaft bored in the ground + + + + + + + instrument that records seismic waves by measuring ground motions, caused by earthquakes, volcanic eruptions, and explosions + + + + + + type of computer software + + + + + + all disciplines related to managing data as a valuable resource + + + + + + condition that results from not enough consumption of nutrients + + + cause to lack nutrients + + + + + + + land surface + + + + + + cardinal number + + + + + + + + + + freeze again + + + + + + process by which the embryo is formed and develops + + + + + + + + + to magnetize + + + + + + + + + fold again (origami sense) + + + + + + + + + to make sickly + + + + + + + + + post, again + + + + + + + + + to make horn-like in texture + + + + + + + + + to coat or impregnate with zinc + + + + + + + + + to make or render plebeian + + + + + + + + + watch again + + + + + + + process of defining the measurement of a phenomenon that is not directly measurable, though its existence is indicated by other phenomena + + + + + + type of civil service position + + + + + + + + + to place in a basket + + + + + + + Human disease + + + + + + + Human disease + + + + + + + filtration by force through a semipermeable membrane + + + + + + + bile duct adenocarcinoma that has material basis in bile duct epithelial cells. + + + + + + paralysis of all four limbs and torso + + + + + + + excision of the urinary bladder + + + removal of a cyst + + + + + + + surgical removal of all or part of an intervertebral disc + + + + + + + environment with extremely low apparent gravitational force + + + + + + + deepest layer of the oceans + + + + + + + the re-emission of photons from a surface following exposure + + + + + + + surgical procedure that creates a long-term opening between the kidney and the skin + + + + + + + surgical excision of a part of the cornea + + + + + + + correlation between measurements of quantum subsystems, even when spatially separated + + + + + + phenomenon applied in physics + + + geometric property of some molecules and ions + + + + + + + miniaturized and simplified version of an organ + + + + + + aesthetic ideal introduced into English cultural debate in 1782 by William Gilpin; along with the aesthetic and cultural strands of Gothic and Celticism, was a part of the emerging Romantic sensibility of the 18th century + + + + + + + metric in epidemiology + + + + + + process of finding and identifying people in close contact with someone who is infected with a transmissible pathogen + + + + + + + dish made from rice + + + + + + + crystalline piece of solid matter less than 100nm in diameter + + + + + + + nanostructure with its diameter in nanometers + + + + + + + human disease + + + + + + + formation and then immediate implosion of cavities in a liquid + + + form cavities in tissue or organs + + + + + + + phenotype of the typical form of a species as it occurs in nature. Most prevalent allele – i.e., the one with the highest gene frequency – is the one deemed as wild type + + + + + + + type of organelle + + + + + + + class of chemical compounds + + + + + + + a class of chemical compounds + + + + + + the ability of certain substances to produce several distinct biological responses + + + + + + + slide show + + + + + + + toxic effects on the nervous system + + + + + + + word or phrase prefixed by # for categorization + + + + + + + large mass of glacier ice + + + + + + + device that increases humidity + + + + + + branch of statistics focusing on spatial data sets + + + + + + + function of the coefficients of a polynomial that gives information on its roots + + + + + + non-binary gender identity with partial association to a gender + + + + + + + territory legally or politically attached to a main territory with which it is not physically contiguous because of surrounding alien territory + + + + + + + loss or extinctions of animals in the forests + + + + + + + audio effect + + + fictional weapon + + + + + + ancient Persian unit of mass + + + + + + + + + neopronoun + + + + + + exclamation of astonishment + + + + + + distance between different groups in society + + + + + + species of fish + + + + + + worker who is considered to provide an essential service but not necessarily in a special legal category + + + + + + + + + to exhibit especially in an attractive or favorable aspect + + + + + + + pay out + + + provide a payout + + + + + + + argument for the existence of an intelligent cause adequate to explain the extraordinary design and intelligence we observe in our information-rich universe, particularly within living organisms + + + + + + + type of performance art + + + + + + + dislike of or prejudice against bisexual people + + + + + + + type of cancer of the brain originating in a particular kind of glial cells, star-shaped brain cells in the cerebrum called astrocytes + + + + + + (of a man or woman) attracted to both men and women + + + + + + + + + to capture an image of the on-screen view of an electronic device + + + + + + + nostalgic Internet aesthetic celebrating a return to traditional skills and crafts + + + + + + + person or object that practices correction + + + + + + + dissolute person + + + + + + + + + to travel by dogsled + + + + + + With all due respect to. + + + + + + Unless (something) happens; excepting; in the absence of. + Barring any further red tape, we will finally be able to open the restaurant. + Barring any sudden storms, the plane should arrive on time. + + + + + + Signifies that the action of the clause it starts takes place before the action of the other clause. + The show ends after the fat lady sings. + After we had decided to call it a day, I went home. + + + + + + If + + + + + + English word + + + + + + Where, or in which location. + + + + + + Indicates annoyance, anger, or disappointment. + Nuts! They didn't even listen to what I had to say. + + + + + + Represents the sound of music or singing. + "La la la la, I can't hear you!" Jimmy said, sticking his fingers in his ears. + + + + + + vocalization by cats + + + + + + A mild expression of annoyance. + + + + + + look out!; beware! + + + + + + Please perform again! + + + + + + Used to express repugnance, disgust, or annoyance. + Ugh! The bread in the pantry has gone moldy. + + + + + + An expression of annoyance or disgust; damn, darn. + + + + + + Thanks! + + + + + + Used to show anger or disappointment: damn + + + + + + violating convention or propriety : bizarre + + + + + + + + + third person singular neopronoun + + + + + + + the state of being a grandparent + + + + + + + process of items shrinking in size or quantity while their prices remain the same + + + + + + + a cupboard or cubbyhole + + + a hug + + + + + + + planned process of introducing foreign nucleic acids into eukaryotic cells, usually physically or chemically + + + + + + he or she + + + + + + + synthetic media where a content is created that resembles a person often by the machine learning models + + + + + + + name for an ethnic group + + + + + + + word with opposite or contradictory meanings + + + + + + energy that is collected from renewable resources + + + + + + tradeable certificate used in carbon mitigation policy systems + + + + + + + for positive and negative feedbacks associated with climate change + + + + + + legal requirements governing air pollutants released into the atmosphere; set quantitative limits on the permissible amount of specific air pollutants that may be released from specific sources over specific timeframes + + + + + + earthquakes as large as magnitude 5.1 that occur in glaciated areas where the glacier moves faster than one kilometer per year + + + + + + + system of interaction and processes that regulate the Earth's climate + + + + + + tax on the carbon content of fuels + + + + + + + hypothetical type of planet whose surface is completely covered with an ocean of water; in fiction see Q98807723 + + + + + + + person with a high performance level + + + + + + for four years in a row + + + + + + across a span of five consecutive years + + + + + + + differential operator in vector calculus + + + + + + + field at the intersection of medicine and ethics + + + + + + research involving fundamental scientific principles that may apply to a preclinical understanding – to clinical research, which involves studies of people who may be subjects in clinical trials + + + + + + + Unwanted pre-installed software + + + + + + Having a gender identity other than male or female + + + + + + + a biography or biographical sketch + + + + + + + mineral chemically consistent of aluminum and silicon oxide + + + + + + + A full length album. Larger than a mini album. Relates to KPOP + + + + + + + fictional technology that translates spoken language instantaneously + + + + + + + pronoun used to refer reflexively to a hypothetical or generic person + + + + + + + response to sneezing + + + + + + + out of equilibrium + + + + + + + distributed data store for digital transactions + + + the technology used to create such a database + + + + + + + person who performs magic in fiction or mythology + + + + + + + attribute in video game representing the health of a game character + + + + + + + type of fictional weapon in the Star Wars franchise + + + + + + Polynesiain spiritural practice + + + concept in fantasy literature + + + attribute assigned to characters within a game + + + prestige + + + + + + + + + to acquire again + + + + + + + heart muscle cell + + + + + + + + + to be over-excited + + + + + + describes rocks with high silica content + + + + + + + + ethological class; trace fossils in the form of dwelling structures which reflect the life positions of organisms + + + + + + artificial removal of carbon dioxide from blood + + + + + + + multiple instances of earbud + + + a single pair of earbuds + + + + + + + research involving volunteers + + + + + + species spreading outside its native range + + + + + + the pause in human activity due to the COVID-19 pandemic + + + + + + + + I love you + + + + + + + paddleball sport combining elements of tennis, badminton, and table tennis + + + ball used in pickleball + + + + + + attracted to males + + + + + + attraction to both the same and opposite sex or gender + + + + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + + + + + + member of the Viverridae family + + + + + + + one who comments + + + + + + the use of e-cigarettes or other devices that let you breathe in nicotine or other drugs as vapor rather than smoke + + + + + + + a bundle of clothes or bedding + + + + + + + type of digital cryptocurrency + + + + + + reply to something negative happening, expressing one's panic or disappointment + + + + + + + you (plural) + + + + + + + + without attraction (all senses) + + + + + + drunk + + + + + + + person who streams activities on their computer to a live online audience + + + + + + + emoticons or emoji with elements from Japanese katakana + + + + + + + Any beetle of the order Coleoptera + + + + + + + 21st, ordinal number of 21 + + + + + + + Chromobotia macracanthus + + + + + + + any sponge of the clade Heteroscleromorpha + + + + + + + any spider in the family Sparassidae + + + + + + + of, relating to, or shaped like a torus or segment of a torus + + + + + + + center of a target + + + + + + not amused + + + + + + + a strike of lightning + + + + + + second person plural pronoun + + + + + + + post that is a copy of another + + + + + + + Knulliana cincta + + + + + + + any weevil of the subfamily Entiminae + + + + + + + any weevil of the family Curculionidae + + + + + + + + any parasitoid wasp in the family Braconidae + + + + + + + Habrophallos collaris + + + + + + + + + to be extraordinarily proud + + + to be extraordinarily pleased + + + + + + + a sauna or steam bath, or a session in one + + + + + + + type of information container consising of words + + + + + + + person responsible for something + + + + + + + hall (building owned by a college or university where students live) where all the food is cooked for you + + + + + + + event without spectators at which photographs are taken of people wearing fashionable clothes + + + + + + + pine oil-based disinfectant used in India + In aniline, one of the atoms of hydrogen is replaced by the radical phenyle. The converse is also possible, and, if phenyle is in its turn replaced by hydrogen, the ammonia should reappear. + + + + + + + installment, debt paid in sequential parts + + + + + + without sweat + + + + + + + + liberal or progressive + + + + + + + plant-based substitute for milk from animals + + + + + + + a small map, typically in a video game + + + a simple map of landmarks + + + + + + sale of products and services in individual quantities to end consumers or customers + + + + + + + + + + + + + + + + + to tithe; give 10 percent (of earnings, produce, etc.) to charity + + + + + + + languid state + + + + + + + + + to show off + + + + + + + a garden, usually open to the public, where a wide range of plants are grown for scientific and educational purposes + + + + + + + a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + + + + + any algae of the genus Ecklonia + + + + + + + any river shrimp in the genus Macrobrachium + + + + + + treating the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + + + + Having a positive and uplifting effect. + + + + + + + chemical compound; 6'-Hydroxycinchonidine + + + + + + + (biochemistry) A bacterial form of erythrocuprein that contains two atoms of zinc + + + + + + + + + grammatical construction in which clauses are joined by a coordinating conjunction + Often, however, the significance of a succession of syndeta and asyndeta is perfectly clear from the character of the clauses or sentences connected. + + + + + + + + + a location where war is being waged + + + + + + spontaneous motion of dispersed particles in a mixed solvent induced by a gradient of solvent concentration + + + + + + + an instrument for measuring the growth of trees + + + + + + + outfit used when exercising + + + + + + + the process of making a tunnel + + + + + + having strabismus of the eyes + + + + + + + + showing artistry + + + + + + + + nerd-like + + + of interest to nerds + + + + + + + adopted logographic Chinese characters used in the modern Japanese writing system + + + + + + + coin made from silver-copper alloy used in Germany and the Low Countries during the 13th and 14th centuries + + + + + + + harassment that occurs in a public setting + + + + + + female genitalia + + + intercourse; have sex + + + + + + + group that is dedicated to a well-known person, group, idea + + + + + + + + + afsygeliggøre + + + + + + + follower of conspiracy theories that assert that Barack Obama is not a natural-born citizen of the United States + + + + + + + + natural disaster: dust storm + + + + + + + flashy, but impractical public transport technologies + + + + + + + a weed (Suaeda moquinii) of the family Chenopodiaceae growing on alkaline lands in the southwestern U.S. + + + a shrub (Allenrolfea occidentalis) of the family Chenopodiaceae that grows in the southwestern U.S. + + + a plant of the genus Franseria, especially Franseria dumosa of desert regions of the southwestern U.S. and adjacent Mexico + + + the plant Isocoma tenuisecta, native to Arizona, New Mexico, and Sonora + + + any of several rayless goldenrods + + + + + + + + resembling a bun + + + + + + + + a mammal of the family Ursidae + + + + + + + a mammal in the family Odobenidae + + + + + + + process by which a preexisting dark mineral is replaced by amphibole + + + + + + having texture of felt or woolen cloth + + + + + + + any bird in the family Motacillidae + + + + + + practical + + + + + + + + + neopronoun (ze/hir/hirs form) + + + + + + + sweet pastry with strawberries + + + + + + Completely destroyed (of mass-scale objects such as villages or fields) + + + + + + + any bird in the family Ciconiidae + + + + + + + plants of the genus Morinda + + + dye obtained from plants of the genus Morinda + + + + + + + clothing worn by men during Mobutu Sese Seko's rule + + + + + + + pejorative term used for a person who fakes Native American ancestry + + + + + + + honour, personal dignity + + + power to command admiration; prestige + + + + + + + any member of the mammal family Chrysochloridae + + + + + + + + + to hang (someone) + + + + + + + a wrongful advantage + + + + + + + folded exterior seat of some early vehicles + + + + + + + any cetacean in the family Balaenopteridae + + + + + + + robe worn on beach + + + + + + one fourth + + + + + + + device to turn a light on or off + + + + + + + a covered way or passage between a cathedral transept and the chapter house or deanery + + + + + + + + + to yearn, to desire something one does not have + + + to miss someone or something + + + + + + impertinent; having chutzpah + + + + + + irreplaceable, irreplicable (of a product which has been contracted for) + + + + + + + + subject to much public attention + + + + + + + Derogatory slang for a large utility passenger vehicle. + + + + + + + scientific and musical study of bells and the art of bell ringing + + + + + + the minute cytological characteristics of the cell nucleus especially with regard to the chromosomes + + + branch of cytology concerned with the karyology of cell nuclei + + + + + + + branch of entomology dealing with the Diptera + + + + + + branch of zoology dealing with barnacles + + + + + + branch of medicine concerned with the anatomy, functions, and disorders (such as infertility or impotence) of the male reproductive system + + + + + + + branch of zoology concerning the study of spiders and other arachnids + + + + + + + + glaucophane-bearing schist variety + + + + + + + ecology dealing with individual organisms or individual species of organisms + + + + + + the study of human growth + + + + + + study of unknown, legendary, or extinct animals whose existence or survival to the present day is disputed or unsubstantiated + + + + + + + microstructure + + + + + + the study of flags + + + + + + academic and professional field combining gerontology and technology + + + + + + + + branch of technology and engineering concerned with the installation, maintenance, and replacement of industrial plant and equipment and with related subjects and practices + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + the study of and hobby of collecting postcards + + + + + + the study of human populations, activities, and behavior + + + + + + + branch of science which treats of the laws and phenomena of aqueous vapor + + + + + + + branch of science concerned with the effect of environmental and atmospheric conditions (both natural and artificial) on living organisms + + + + + + + branch of biology concerned with the study of natural communities and the interaction of the members of such a community + + + + + + + performer of or enthusiast for jungle music + + + + + + the study of human cognition and behavior with respect to their evolutionary origins + + + + + + + a winter sporting event in which athletes ski over the countryside and stop to shoot rifles at targets + + + + + + in imprecations, subject to damnation + + + + + + from + + + + + + + a round, low neckline on a woman's shirt or dress + + + + + + + + courtyard of a Māori meeting house + + + prison cell, especially one where its occupant entertains many friends + + + + + + out + + + + + + + branch of psychology concerned with human maturation, school learning, teaching methods, guidance, and evaluation of aptitude and progress by standardized tests + + + + + + the study of accentuation in language + + + + + + the study of ligaments + + + + + + geology of the ocean floor + + + + + + + a psychological approach or system affirming that human acts are understandable and predictable only through an analysis of the previous experiences and motivational states of the organism rather than through a simple description of the objective stimuli temporally preceding human acts + + + + + + + speculative psychology concerned with postulating the structure (such as the ego and id) and processes (such as cathexis) of the mind which usually cannot be demonstrated objectively + + + + + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + + + + + of or relating to the mammal family Erinaceidae (the gymnures and hedgehogs) + + + + + + + branch of biogeography concerned with the geographic distribution of animals + + + + + + + scientific study of human biological remains (such as bones) from archaeological sites + + + + + + + + branch of pedology that is concerned with the soils of past geological ages + + + + + + + the study of spines (as of sea urchins) especially as an adjunct of taxonomy + + + + + + + the science of remedies or therapeutics + + + + + + + the study of deliberate, culturally induced ignorance or doubt, typically to sell a product, influence opinion, or win favour, particularly through the publication of inaccurate or misleading scientific data (disinformation) + + + + + + + the application of modern technology to agriculture + + + + + + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + + + + + + science of plant nutrition and growth in relation to soil conditions + + + + + + + the study of the effects of toxic chemicals on biological organisms, especially at the population, community, ecosystem level + + + + + + + ecology of deserts + + + + + + + in science fiction, the study of aliens + + + in genetics, homology from horizontal gene transfer + + + + + + + crystallography + + + + + + + + + + branch of entomology that studies pests and beneficial insects of field crops, fruits, and vegetables + + + + + + + the physiology of sensation and sense organs + + + + + + + + the study of the comparative anatomy and physiology of humans; physical anthropology + + + + + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + + + + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + + + + + + a physical examination + + + + + + + + the art or "science" of dining + + + + + + + branch of anatomy dealing with the arteries + + + a description or illustration of arteries + + + a system of arteries + + + + + + + the branch of zoology that deals with crustaceans + + + + + + + + + + Atlantic cod + + + fried fishcake of cod, onions and mashed potato + + + + + + + tedium, irksomeness, annoyance + + + + + + + rival gang member; the opposition + + + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + + + + + + + the science of climate with respect to its relevance to habitats and ecoregions + + + + + + + technology designed to deal with environmental concerns; an instance of this + + + + + + + the scientific discipline concerned with the application of geological knowledge to engineering problems + + + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + + + + + + of a mix of warmed or chilled alcohol, optionally including ingredient + + + + + + + a treatise on mushrooms and other fungi + + + + + + + branch of meteorology that deals with precipitation (as of rain and snow) + + + + + + + the branch of meteorology that deals with atmospheric conditions and weather in the past + + + + + + + + + to speak ill of, abuse, malign, disparage + + + to act crazily, aggressively, wildly + + + to do something very well + + + + + + + the study of the ways in which people negotiate, contest, and reproduce cultural forms and social relations through language + + + + + + + in Kantianism, practical ethics + + + + + + + a field of creating architectural design principles for very densely populated and ecologically low-impact human habitats; a portmanteau of "architecture" and "ecology" + + + a city intended to be contained in a single structure + + + + + + + a treatise on numbers, or statement bearing upon them + + + + + + + branch of medicine that specializes in the diagnosis and treatment of cancer + + + branch of zoology that deals with the crustaceans + + + + + + + + + + annual total value of only the goods produced and the services provided within a particular country + + + + + + + mineralogy + + + + + + + (in alternative medicine) diagnosis by examination of the iris of the eye + + + + + + + the branch of history or literature that deals with the lives of martyrs + + + histories of martyrs collectively + + + a catalog of Roman Catholic martyrs and saints arranged by the dates of their feasts + + + a list of martyrs + + + + + + + the branch of anthropology that deals with the belief in manitous + + + + + + + the study of gestures as a means of communication + + + + + + the scientific study of thermal springs + + + + + + addicted to drugs, especially heroin + + + + + + + brightening or iridescence appearing on silver or gold at the end of the cupelling or refining process + + + + + + + branch of dentistry that consists not only of treating tooth decay, but also of interrupting and preventing this type of damage to the tissues of the teeth + + + + + + + the part of medical science dealing with hernias + + + + + + + the science of the brain + + + + + + + the study of dogs + + + + + + + the study of dosages of drugs + + + + + + + the study of or knowledge concerning the exanthemata (widespread rashes that are usually accompanied by systemic symptoms such as fever, malaise and headache) + + + + + + + writing about fairies; the study of fairies or fairy lore + + + + + + + a form of martyrology that lists the feast days + + + + + + + neoorthodoxy especially as holding against rationalism that one's attempts to know God by one's own reasoning reach contradictory conclusions and must give way to a faith that awaits God's word + + + + + + + the art or science of caring for the stomach either medically or gastronomically + + + + + + + the science dealing with the life of past geologic periods as known from fossil remains + + + + + + + the mental and emotional states and processes characteristic of individuals when aggregated in such groups as audiences, crowds, mobs, and social movements + + + the scientific study of these phenomena + + + + + + + a reference to the provisions in many state constitutions which prevented state governors from running for a second consecutive term in office + + + + + + + refers to a controversial incident that emerged during the aftermath of the 2020 presidential election, a hotly contested election in which allies of President Donald Trump attempted an elaborate scheme to illegally overturn his election loss to Joe Biden + + + + + + + the study or investigation of miasmas + + + + + + + + the study of the nature and methodology of sociology + + + a sociological model, framework, or study which is universal in scope + + + + + + + the philosophical study of the nature and methods of theology, especially the analysis of religious language + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + representation by curiologic symbols + + + + + + + the field of study that deals with the geological interpretation of aerial or satellite photographs + + + + + + + a branch of geology that deals with the causes and processes of geological change + + + + + + + study of the ecology of plants + + + + + + + + + the branch of biology, especially of zoology, concerned with extant or recently living organisms, as opposed to fossil or extinct ones + + + + + + nervous system physiology + + + + + + + a conceptual framework for the science of psychology + + + + + + + the study of the human nose, especially as a means of judging character, intellectual capacity, etc. + + + a treatise on the human nose, especially as a means of judging character, intellectual capacity, etc. + + + + + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + + + + + + technology relating to manufacturing + + + + + + + the study of the methods, purpose, etc., of religious missions + + + + + + + the study of the interactions between members of a social group, or of interactions between social groups + + + + + + + the study of proverbs + + + proverbs collectively + + + + + + + the branch of theology that deals with ethics, the resolution of cases of conscience, etc. + + + theology or theological doctrines developed as inferences from moral grounds or reasons + + + + + + + a treatise on disorders of the sense of smell + + + + + + + the science of nothing, or of things having no real existence + + + + + + + the study and use of psychology as it applies to the legal system and people who come into contact with the legal system + + + + + + + the study of specters (ghosts, phantoms, or apparitions) + + + + + + + + + the study of the pulse + + + + + + + the dating of volcanic eruptions and other events by studying layers of tephra + + + + + + + the branch of entomology concerned with insects and other arthropods that are parasites or disease vectors affecting animals + + + + + + + trilogy + + + + + + + the doctrine, discussion, or study of the performing of miracles + + + + + + + the scientific study of smells or of the sense of smell + + + + + + + the study of fish diseases + + + + + + + a branch of plant pathology dealing with tree diseases + + + + + + + excision of the liver or of part of the liver + + + + + + + in the theology of John Hick: the theory or study of the status of human life between physical death and the final state + + + + + + + the application of the data and techniques of climatology to aviation meteorological problems + + + + + + + + the branch of science that deals with the hypothetical force called Od + + + + + + + dentistry + + + + + + + (obsolete) a treatise on the sense of smell and odors + + + the study of odors and the sense of smell + + + + + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + + + + + of intermediate size + + + + + + + in Jeremy Bentham's terminology: the branch of philosophy which deals with matter in respect of quality rather than quantity + + + + + + + the study of war, especially as an academic discipline + + + + + + + a treatise on sperm + + + the scientific study of sperm + + + + + + + the science of thermochrosy + + + + + + + the study and applications of weather and climate data to the reproduction, growth, and harvesting of forests + + + + + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + + + + + + the study of the atmosphere and weather using radar as the means of observation and measurement + + + + + + + psychology based on the study of individuals, as opposed to that of groups or societies + + + a modification of psychoanalysis developed by the Austrian psychologist Alfred Adler emphasizing feelings of inferiority and a desire for power as the primary motivating forces in human behavior + + + + + + + + rubbishy, second-rate, inferior + + + pertaining to heroin or the hard drug culture + + + + + + + the branch of medical science concerned with the lungs and respiratory system and their diseases + + + + + + + + the art or practice of calculation by means of the method of rods invented by John Napier + + + + + + + hagiology + + + + + + + the study of pterylosis, the arrangement of feathers in definite areas of growth + + + + + + + + + to give a name to something or someone + + + + + + + theology dealing with salvation especially as effected by Jesus Christ + + + + + + + a pair of related novels, plays, or movies + + + + + + + employees' initiative related to doing minimum amount of work on Mondays + + + + + + matumannga + + + + + + + + a style of clothing worn as athletic apparel but also suitable for casual, everyday wear + + + + + + + the branch of medical science concerned with diet and nutrition; dietetics + + + + + a treatise on diet and nutrition + + + + + + + a person who gives speeches or presentations intended to motivate or inspire an audience; a practitioner of or expert in motivational speaking + + + + + + + a person engaged in motivation research + + + + + + + + date on which someone or something was born + + + + + + + worship of heavenly bodies + + + + + + + the branch of medicine and science concerned with aging and its phenomena + + + the study of the diminution or decline of life, as in an individual animal or a species approaching extinction + + + + + + + (in a graphical user interface) an on-screen button or icon for navigating to a previous view + + + + + + + person who creates manga + + + + + + + children's dentistry + + + + + + + + + to participate in, include oneself + + + + + + + + speckled, spotty; full of particles of dust or extraneous matter + + + + + + + the integrated study of cells and tissues + + + + + + + a science or doctrine of the cross + + + + + + + equipment and programs that are used to process and communicate information + + + + + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + + + + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + + + + + being afraid + + + + + + + a treatise concerning seven languages + + + + + + + ריהוט רחוב + + + + + + + + + to eat breakfast + + + + + + + the scientific study of thermal waters + + + + + + + the science of trickery + + + + + + + that which is characterised by growth on waste ground + + + + + + + the technology of surfaces interacting in a relative motion, including friction, wear, lubrication and interfacial interactions between solids as well as between solids and liquids/gases + + + + + + + a type of network communication method where the communication is initiated by a server rather than a client + + + + + + + the study of the way speech can be analyzed into discrete units, or segments, that constitute the basis of the sound system + + + + + + + + + to liquate; smelt + + + to part by liquation + + + + + + be verifiable, actual, real; not false + + + + + + + back side, reverse side + + + + + + + + + + be correct, assess accurately + + + + + + to flatter, cajole + + + + + + of or relating to the present time + + + + + + + + + to increase mass by addition of fat and/or muscle + + + + + + + individual responsible for the supervision of the execution of plans and functional operation + + + + + + + tool consisting of a blade having a handle at each end; drawing knife + + + + + + + + + to be provided or filled with towns + + + + + + + + + to move or incline at an angle to that indicated by "zig" + + + + + + + + + to assign a postcode to + + + to mark with a postcode + + + + + + + + + to perform adrenalectomy on + + + + + + + + + of a woman, to continually criticize or nag one’s male partner + + + + + + + + + to perform hysterectomy on + + + + + + + + + to subject to nephrectomy + + + + + + to be troubled by desire to gain or keep something + + + + + + + + + to travel by jeep + + + + + + + + + to capacitate, make capable, endow with sufficient strength + + + + + + + + + to analyze a protein sample by subjecting it to particular reactions + + + + + + + the study of post-embryonic developmental changes + + + + + + + + + to deliver manually, by hand + + + + + + + + + to mark with a barcode + + + + + + + + + to tend to a bar, act as bartender + + + + + + + acyl radical or group derived from biotin + + + + + + + + + to boil an egg for a short amount of time so that the yolk is cooked but still soft + + + + + + + a plant (Brassica rapa subsp. pekinensis) of the mustard family, having an elongated head of overlapping, crinkled, broad-stalked leaves and eaten as a vegetable in eastern Asian cuisine + + + + + + that has received a particular upbringing + + + + + + + + + to travel or convey by trolley + + + + + + + + + to ride on a wakeboard + + + + + + + stereoisomer of amphetamine used to stimulate the central nervous system + + + + + + + + + to become exhausted; to tire + + + to put out of breath + + + defecate + + + + + + + collective of diverse businesses that supplies much of the world's food + + + + + + + the state or condition of being ominous + + + + + + + the state or condition of being egregious + + + + + + + a person who is mentally or morally sick + + + + + + coming into sight, coming forth + + + + + + pulverized with a grater + + + + + + deprived of air, prevented from breathing + + + + + + + something remembered, reminded of + + + + + + kept in reserve + + + + + + + act of rendering void, invalid, or ineffective + + + + + + + act of assurance + + + + + + + performance of work in exchange for wages + + + + + + + + + to transport or travel by helicopter + + + + + + + the quality of being dorky + + + + + + that gargles + + + + + + characterized by a lisp + + + + + + + + + to put a diaper on or change a diaper + + + to ornament with diaper designs + + + + + + + the branch of stratigraphy concerned with the age of strata on an absolute scale (i.e. in terms of years) + + + + + + + cinematographer + + + + + + + the study of the physical structure and components of metals, typically using microscopy + + + + + + + a list or bibliography (either printed or online) of electronic works or documents relating to a particular topic + + + + + + + radiological examination of the pharynx + + + + + + + the art or process of carving or engraving especially on gems + + + + + + on the day after tomorrow + + + + + + + sub-discipline of human geography and economic geography that deals with the spatial relationships and geographic trends within labor and political systems + + + + + + + the art of decorating wood or leather by burning a design with a heated metal point; pyrography + + + artefacts decorated using pokerwork + + + + + + + the description of the diseases of the ligaments + + + + + + + player occupying a central position in the middle of the half-back line + + + + + + supernatural + + + + + + + extinct elephant variety with ridged teeth + + + + + + + act to skip + + + + + + + determination of the direction from which radio waves are coming + + + + + + + instrument for measuring the plasticity of a substance + + + + + + + penpal; person with whom a long-distance friendship is maintained with letter-writing + + + + + + applicable to all of language’s varieties + + + + + + + agribusiness + + + + + + + apparatus for measuring the density of gases + + + + + + + bullock-carriage; buggy, cart + + + + + + of the nature of a dilemma + + + + + + producing or tending to distortion + + + + + + + condition in which there are only two suppliers of a commodity + + + + + + + cytokine that stimulates proliferation and differentiation of monocytes and macrophages + + + + + + + in cricket, player stationed behind the wicket + + + + + + + + mean-spirited + + + + + + + the preposterous, absurd, risible + + + + + + + + excessively hot, too hot + + + + + + containing a single cavity + + + + + + + + + to deceive or outmaneuver (a defending opponent) by a feint; fake + + + to deceive or outmaneuver a defender by a feint + + + + + + + + designating bottom part, section + + + + + + + a New Zealand evergreen tree, Metrosideros excelsa (family Myrtaceae) that produces a brilliant display of red (or occasionally orange, yellow or white) flowers + + + a New Zealand variety of the sweet potato + + + + + + + + + to declare or pronounce illegitimate + + + + + + + low-grade silver Turkish coins + + + + + + + (in Albania) king, monarch + + + + + + + + + to assign or give a code name to + + + + + + + riotous event, boisterous party + + + + + + + + + to move or travel at speed + + + + + + + church + + + + + + relating to the medical specialty of proctology + + + + + + + + + inner, inside + + + + + + + karpdiagramm + + + + + + + + + to dance the cancan + + + + + + + diamond of inferior water, yellowish in colour + + + + + + + + + to miscalculate a sum + + + + + + + + + to act the benefactor to + + + + + + + + + to refresh with food or drink + + + + + + designating a reliable or accurate firearm + + + bound to be successful or perform as expected + + + + + + + a brackish-water coastal swamp of tropical and subtropical areas that is usually dominated by shrubby halophytes and is partly inundated by tidal flow + + + + + + + + + to entertain a suspicion + + + + + + + + + to express disapproval by uttering the exclamation “tsk” + + + + + + + + + to infect (cell) with free viral nucleic acid + + + + to introduce foreign nucleic acids into a recipient eukaryotic cell, especially physically or chemically + + + + + + to lack certainty; to be unsure, dubious + + + + + + + + + to inflate insufficiently + + + + + + + + + to represent insufficiently + + + + + + + + + to free from binding or adhesive effect of glue + + + + + + + in arid environments, bands of angular gravel, grain-sorted and of a specific wavelength, running parallel to the contours + + + a pattern of alternate black and white stripes + + + + + + + + + to come forth + + + + + + designating examination of fundus of eye with optical instrument + + + + + + + + + to write graffiti on + + + + + + + + + to look after a house while the usual occupants are away + + + + + + + + + to reduce clotting power of blood by treating with heparin + + + + + + + + + to check for or remove lice + + + + + + + + + to cover again + + + + + + + + + to address in a stage-whisper + + + + + + + an approach developed by Clifford Geertz in the 1970s and 1980s that views anthropology as a hermeneutic practice whose method involves writing detailed (‘thick’) descriptions of how people interpret their experience of the world + + + + + + + + + to betray; to disparage behind someone’s back + + + + stab literally in the back, or betray + + + + + + + + + to confirm a boy in the Jewish faith at a bar mitzvah + + + + + + + + + to practice diplomacy + + + + + + the study of cultural symbols and how those symbols can be used to gain a better understanding of a particular society + + + + + + + a national policy of treating the whole world as a proper sphere for political influence + + + + + + + + + to visualize again + + + + + + + + + to polarize again + + + + + + + + + to restore national status to; to refill with national identity or character + + + to transfer (a privatized industry or property) back into state ownership or control + + + + + + a specialized focus in anthropology that studies the creation, use, and meaning of material culture for curation in a museum; studies of existing museum collections; and the study of museums as social institutions + + + + + + + an enclosure or building in which platypuses are kept, especially under conditions simulating those in which they live in the wild + + + + + + + + + to use or practise ventriloquism + + + to utter in the manner of a ventriloquist + + + + + + partially refined cane sugar that has been washed and dried, is off-white, yellowish, or grayish in color, and is used in industry and food processing + + + + + + + a representation of the bark of a dog + + + + + + + synthetic chemical element with symbol Mc and atomic number 115 + + + + + + composed of flocculi + + + + + + + + a circle of people, as in a communal gathering or dance + + + + + + of, relating to, or affecting the sacrum and ilium and their articulation or associated ligaments + + + + + + of, relating to, or resembling the mollusk family Solenidae + + + + + + + + the action or process of diminishing (transitive and intransitive); diminution, lessening, decrease, abatement + + + + + + + doctor + + + + + + representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + + + + + + a bump; a blow. Also: a brief resonant sound, such as might accompany this + + + + + an act of sexual intercourse + + + + + + + + artificial embankment; dam, dyke, causeway + + + embanked quay along the shore of British concession settlements in China + + + + + + + + initiation of employment + + + initiate employment + + + + + + + one who plays the kazoo + + + + + + + + + + + + + + a Levantine spice mixture made from oregano, basil, thyme, and savory, sesame seeds, and dried sumac + + + + + + + permanent or absolute location or position + + + + + + of or relating to the moth family Pyralidae + + + + + + + a member of the phylum Mollusca; a mollusk + + + + + + some indeterminate amount + + + + + + connected, affiliated + + + + + + + opening allowing the passage of air out of or into a confined space + + + + + + + + + to improvise with a kludge or kludges + + + + + + + a snake of the family Pythonidae; a python + + + + + + (expression of disapproval, dismay) + + + + + + second-rate, inferior + + + + + + + + a person who makes a nuisance call + + + + + + tolerate, put up with, the act of tolerating + + + + + + + make organized, orderly arrangment, having a systematic, efficient (maybe unified) structure + + + + + + + process or act of attaching, joining, linking, including (in a group) + + + + + + + act of looking for something + + + + + + + creation + + + comprise + + + + + + + a window-frame or lattice, often fitted with cloth or paper as a substitute for crystal or glass; a window + + + + + + + a part of a naval task force + + + task force: a temporary grouping for the purpose of accomplishing a definite objective + + + + + + sad, mournful, or wistful + + + + + + + a space within a winery, brewery, or distillery where visitors can sample the establishment's products + + + + + + that keeps time + + + + + + a strategy practised most commonly in primary education, but used also in secondary schools, in which learning takes place through dialogue between teacher and pupils and between pupils themselves + + + + + + of, relating to, or characterized by dialogue + + + + + + + + a miniature nocturne + + + + + + + bring with, have + + + + + + of or characteristic of a professional author + + + consciously literary + + + + + + + correspondence between form and meaning + + + + + + + varna prožnost + + + + + + telecommunication modality + + + + + + + + + to assign or attribute gender to + + + + + + + + + to deadlock, to form an impasse + + + + + + + + + to ride a mountain bike + + + + + + + act or process of obtaining, drawing (out) + + + act of killing + + + act or process of unfairly directing a negative emotion towards someone/something + + + + + + + edible leaves of dasheen or an amaranth variety + + + + + + + shared power and authority vested among colleagues + + + colleagueship; the relation between colleagues + + + the participation of bishops in the government of the Roman Catholic Church in collaboration with the pope + + + + + + + outside toilet; privy, outhouse + + + + + + + act or process of acquiring, hiring, undertaking + + + act or process of battling + + + + + + thin, lean, skinny + + + weak, feeble, sickly + + + + + + the other + + + + + + + the fear of snakes + + + + + + + foolish, simple person + + + + + + + young woman or girl + + + + + + + the processes and methods used to put together different components or parts to create a finished product or system + + + + + + + + a topology on a set that is derived from a bornology + + + + + + milk-drinking + + + drinking milk of another species + + + + + + + + sweet potato + + + + + + + + + climbing a route for the first time with no prior information + + + + + + sustain + + + keep up: maintain one's position, maintaining one's position (relatively) + + + + + + + the branch of dentistry focusing on gums and supporting structures + + + + + + + + branch of geology that deals with the succession and significance of past life + + + + + + + the use of biological systems, like microorganisms or enzymes, to convert organic materials into different products or energy sources + + + + + + biochemistry + + + biochemical + + + + + + + branch of ecology concerned especially with the structure, composition, and interrelationships of plant communities + + + + + + + + vacation, taking a vacation, break (from something) + + + + + + without excusing oneself or saying one is sorry + + + + + + + an electrophoretic strip (as of starch gel) or a representation of it exhibiting the pattern of separated enzymes and especially isoenzymes after electrophoresis + + + + + + + an instrument for measuring the degree of fermentation of a fermenting liquor + + + + + + + branch of astrology formerly concerned with the prediction of events in inanimate nature and being in part legitimate astronomical science + + + + + + to come down, lower oneself, or arrive, lowering + + + + + + to have (unpleasant) sex with, maybe metaphorically + + + + + + + quit + + + + + + sign up: enroll, enter + + + + + + + connect into a network, metaphorical or otherwise + + + + + + select a portion of a larger whole + + + + + + + a branch of bioclimatology that deals with effects of climate upon man + + + + + + + a cone whose section by a plane through the axis has an obtuse angle at the vertex + + + + + + + come even with, to catch up + + + cause something to become entangled + + + + + + + begin, start, initiate + + + + + + + the resemblance between different members of a single series of structures (such as vertebrae) in an organism + + + + + + + field of clinical and basic medical sciences that involves the study of the effects of radiation on living tissue (including ionizing and non-ionizing radiation), in particular health effects of radiation + + + + + + + + an approach to the study and explanation of psychological phenomena that emphasizes philosophy, logic, and deductive reason as sources of insight into the principles that underlie the mind and that make experience possible + + + + + + + + plant pathology + + + + + + + + + the transmission of data between two or more points without the use of physical wires or cables + + + + + + + cause to lose prestige + + + + + + + act/process of causing to go down the throat + + + + + + act/process of arriving on the scene in a particular state, entering ranking, functioning in a certain manner + + + + + + being overly concerned or excited by + + + + + + + the process of plying with wine + + + + + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + + + + + that learns or has the ability to learn + + + that is engaged in a course of study + + + having to do with learning + + + + + + unintentional discovery + + + + + + + lend aid, credence to + + + + + + + carry on flirtations, affairs insincerely, esp with male subject + + + + + + cause to be in motion, summon to arms, be in motion + + + + + + + cause to be humble + + + + + + + act of extending across space or time + + + + to extend across in space or time + + + + + + + reorganize + + + + + + + expect + + + + + + + technology (now especially computer technology) used to determine or verify the identity of a person or thing + + + + + + + a relationship where one geometric entity is embedded within another, meaning the point set of one entity is a subset of the point set of the other + + + + + + + the study and application of how to handle, process, and utilize materials in powder or particulate form + + + + + + + a person who studies or practices ethnomethodology + + + + + + + + + enter, contribute to discussion + + + + + + having or related to a yolk + + + + + + + the study of geological features at a microscopic scale + + + + + + + an apparatus in which fluidization is carried out + + + + + + a combustion technology used to burn solid fuels + + + + + + + systems involving two sets of drilling equipment working in tandem to create a borehole + + + systems that inspect boreholes using two cameras + + + + + + + + + introduce a phosphate group into an organic compound + + + + + + + technology that utilizes sensors to detect infrared radiation + + + + + + + a catalogue of saints, or a collection of saints' lives + + + + + + + + removing of data + + + + + + + + + medical trial, consumer trial, or similar + + + + + + + + + visit briefly + + + + + + + act or process of producing a new master recording to improve quality + + + + + + Being soaked for a long time + + + + + + + an organism dwelling in sandy environments + + + + + + + The act of shortened or condensed especially by the omission of words or passages or reduction in scope. + + + + + + + The act of linking together. + + + + + + + act or process of taking back + + + + + + + + + move towards + + + + + + somewhat or approximately oblong + + + + + + + the tools and systems designed to manage knowledge-intensive activities and the knowledge generated by them, focusing on the process of transforming data and information into actionable knowledge + + + + + + + the science, study, or theory of the sphere + + + + + + + the study of mycorrhizal fungi + + + + + + + the study of Basidiomycota (club fungi, mushrooms, rusts, smuts) + + + + + + + the study of airborne fungal spores + + + + + + + the study of plants that live in or near water, encompassing their ecology, physiology, and interactions with their aquatic environment + + + + + + + + + ship out commodities, again + + + + + + + the act of running very fast + + + + + + + similar to a chin-up + + + + + + + + + to talk repeatedly or continuously about something —usually used with about + + + + + + + + + make someone or something more attractive + + + + + + + any of a class of synthetic antibacterial drugs that are derivatives of hydroxylated quinolines and inhibit the replication of bacterial DNA + + + + + + + The act of renting or leasing + + + + + + + The act of reaching the bottom + + + + + + of or relating to zoogeography + + + + + + + + the branch of virology that deals with the arboviruses + + + + + + + obstruct, hinder with painful constriction, painfully constricting + + + + + + inflate, swelling + + + + + + + inflate, swelling + + + + + + + a sugar alcohol (polyol) derived from xylose by reduction of the carbonyl group + + + + + + remembered, kept in memory + + + + + + + a rock that is formed by the accumulation of fragments of volcanic rock scattered by a volcanic explosion + + + + + + being covered with water, overwhelmed, inundated + + + + + + + + + avoid + + + + + + + The act of obstructing a passage + + + + + + + do perfectly + + + + + + + + + become immobile + + + + + + + + + pour + + + + + + have no symptoms + + + + + + not showing signs of trauma + + + + + + + + + cross-correlation of something (a signal?) with itself + + + + + + + The act of stabbing literally in the back, or betraying + + + + + + + + + bring in runs by hitting a baseball + + + + + + the starting-point or control state of an entity, which is used for comparison + + + + + + + obligation + + + + + + + + + natural disaster: severe blowing snow storm + + + + + + + marsh fern: a shield fern (Dryopteris thelypteris) of the north temperate zone that has pinnatifid fronds with pinnae of uniform size + + + + + + + + + dance a breakdance + + + + + + + The act of dancing a breakdance + + + + + + broken, with 'ass' intensifier + + + not having any money, with 'ass' intensifier + + + + + + placed back to back + + + + + + + term designating a suburb or a small residential area on the outskirts of a city + + + + + + + act of providing help, adapting, or making adjustments to meet someone’s needs + + + + + + + act of enforcing more strictly + + + + + + + develop in conjuction with another developer or project + + + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + + + co-host (as a tv show) + + + + + + + + + shape by forcing through a die, press or thrust out with another + + + + + + + + + sudden change of government, takeover + + + + + + + develop into a new species + + + + + + internal: function as the corner part of a larger whole + + + + + + + eliminate + + + + + + like a flat layer of bone + + + + + + + process of modification of the molecular structure (of a protein or other biological macromolecule) + + + + + + + + + remove gut or substance + + + + + + + the ability to deny something especially on the basis of being officially uninformed + + + + + + + + + remove paraffin from + + + + + + + + to measure up; achieve the standard of performance necessary for success + + + + + + + + + to drain; to allow water to exit + + + + + + calculate percentages of blood cells + + + constituting or contributing to making a distinction between entities + + + + + + + framecel + + + + + + + + + decry, express low opinion of + + + + + + + + + contaminate the source and the destination simultaneously + + + + + + + + + scale down + + + + + + + + + transfer radio from the source to an alternate sight + + + + + + + dig up + + + + + + + + + remove + + + + + + + to become pale, weaken, especially with lack of light + + + + + + + cause to fall down + + + + + + + + + fine needle aspiration - suck out fluid with a fine needle + + + + + + + the process of stationing troops + + + + + + + + + to cover with or as if with a glove + + + + + + + + + become/cover with glacier + + + + + + + + + + + + + + + + + to enact revenge + + + + + + + act of tagging along for a ride with a stranger, or metaphorical extension + + + + + + + + + breed together with genetic kin + + + generate within, instill + + + + + + Being placed at intervals + + + + + + + a flavonoid, the disaccharide derivative of quercitin, containing glucose and rhamnose + + + + + + + + + rise + + + + + + act of installation or establishment + + + more explicit horizontal position + + + + + + + + + (try to) make learn + + + + + + + + + Fight primarily with one's feet, often as a form of exercise. + + + + + + + + + lose social status, be humiliated + + + + + + + + + sport in which one jumps as far as possible across a sand pit + + + + + + + reflect, mimic, cast an image back + + + + + + existing along the (vertical) center line of the body + + + + + + + + + post to an online journal + + + + + + + + + addition of a methyl group to an atom or group + + + + + + + The act of causing dissolution or destruction of cells by lysins + + + + + + begin, start + + + + + + crowd together too much + + + + + + + + + fly beyond or faster than another + + + + + + inhibited or decreased bone marrow activity, resulting in fewer red blood cells + + + + + + + + + depict as being more than is actual + + + + + + + (cause to) consume too much narcotic, consuming too much drugs + + + + + + + coat to protect from corrosion + + + + + + + The act of engaging in or spreading gossip + + + + + + + + + dream + + + + + + not giving a response + + + + + + not inclined toward feeling pain easily + + + + + + of an ethnicity not featuring 'white' skin + + + + + + + + stop bothering + + + + + + that envies + + + + + + + + + to go on a pilgrimage + + + + + + + + + reach a state of little or no change + + + + + + + surgical removal of one or more parathyroid glands + + + + + + absorb or draw off liquid + + + + + + remove + + + + + + to lead with the help of a pony or another vehicle + + + + + + orientation: the intrinsic top of the object points downward in some framework + + + + + + Use uppercase lettering + + + + + + not obscured, allowing a clear view + + + + + + remove electrical ground connection (or metaphorical extension) + + + + + + unsecure/release a boat from the dock + + + + + + provide money + + + + + + fail to provide enough staff support + + + + + + to cause to become quiet + + + + + + + + of the nature of or resembling slag + + + + + + register officially in advance + + + + + + act of declaration or prediction under or as under divine or paranormal guidance + + + + + + surgical removal of the rectum and part or all of the colon + + + + + + act or process of sequencing DNA using chemiluminescent enzymatic reactions + + + + + + constituted again or anew + + + + + + the act or process of reassigning a role or classification + + + + + + the act or result of restoring a connection + + + + + + implant again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + + + + + use of data from motion sensors, especially wheel rotations, to estimate a vehicle’s change in position over time + + + + + + able to be released + + + + + + to take place or occur again + + + + + + supported above and not below; suspended + + + + + + occur, take place again, occur again + + + + + + unfading (exempt from fading/decay) + + + + + + stalinize again + + + + + + move backwards, rollingly + + + + + + evasive or avoiding behavior + + + + + + generally garbage (bad) + + + unskilled at + + + very unbeneficial, unhealthy + + + + + + schmooze, + + + + + + act of cutting with scissors + + + act of moving back and forth, like scissors + + + + + + render into pieces + + + + + + search for, to completion + + + + + + + act of defeating soundly + + + + + + sleep away: consume a time period while asleep + + + + + + act or process of inserting without interruption + + + + + + describe roughly + + + + + + act of spreading out or apart + + + + + + The act of scattering seed for growing + + + + + + to reclone part of a previously-cloned DNA segment into a new vector + + + + + + act or process of fully defrosting + + + + + + to strike or slap against (something) with a loud, heavy impact + + + + + + act or process of using the toilet + + + + + + to lie or turn across, contradict, or run counter to + + + + + + act or process of rising above or going beyond the limits of + + + + + + having no page numbers + + + + + + + number between 41 and 43 + + + + + + wonderful + + + something to say when you have nothing to say + + + song + + + longest word + + + + + + the number 9 + + + + + + + + + to evaluate again + + + + + + person spoken to or written to + You, in the red shirt: what's your name? + + + people spoken or written to + All 20 of you forgot to do your homework. + + + anyone, one; unspecified individual or group of individuals + + + + + + + + female person or animal previously mentioned or implied + + + person whose gender is unknown or irrelevant + + + + + + + + indicates the composition of a given collective or quantitative noun + a group of students + + + indicates an ancestral source or origin of descent + + + links entities which are related by a form of belonging or pertinence from one to the other + + + denotes quantity + + + + + + located within + + + moving into + + + expressed using a particular language (natural or artificial), or some other formal representation + + + + + + enabling + + + + + + in a relative position on the other side of a boundary + + + + + + Any person; anybody. + Almost anyone can change a light bulb. + + + + + + during the same time as + + + + + + Each of the two; one and the other; referring to two individuals or items. + Both (the/my) children are such dolls. + Which one do you need? ―I need both of them. + + + + + + Not one of two; not either; not one or the other. + Neither definition seems correct. + + + + + + sufficient + + + + + + an uncertain or unspecified thing; one thing + + + + + + moving to the top of + + + + + + in a contrary direction to + + + in physical contact with + + + in physical opposition to, or in collision with + + + in opposition to + + + + + + unknown or unspecified person + + + + + + + denoting approval + + + + + + + + meal consumed at start of day + + + + + + + + + add force to the ends of a long structure in a way that would stretch it + + + + + + On board of; onto or into a ship, boat, train, plane. + We all went aboard the ship. + + + + + + In addition, in addition to + + + + + + with a feeling of adventure + + + + + + get rid of, eliminate, eliminating/eliminated + + + + + + + + + look at, investigate + + + + to examine using some kind of scoping tool + + + + + + expression of surprise + + + + + + expressing unbelief + + + + + + express mild disapproval + + + + + + No. + + + + + + in a darkly consequential manner + + + + + + deep purple color + + + desirable or preferred + + + + + + + + + face, pave with brick + + + + + + + + + to take on the role of a guest + + + + to host someone + + + + + + + trousers often made from denim or dungaree cloth + + + + + + + + + prepare, fix again + + + + + + + study of ecological processes in agriculture + + + + + + + viral disease + + + + + + branch of medicine that deals with the causes, prevention, and treatment of obesity + + + + + + + gas produced in landfills or by anaerobic digestion + + + + + + study of biological data and sequences + + + + + + + establishment serving coffee + + + + + + + + + to treat as property which can be traded + + + + + + + medical device + + + + + + + vehicle subsystem + + + + + + + other item of a pair + + + + + + relating to electrodynamics + + + + + + related to the epicardium + + + + + + + planet not in the solar system + + + + + + + + currency area within the European Union + + + + + + + currency area within the European Union + + + + + + + + someone who works with fish + + + + + + + type of circuit board + + + + + + fundamental + + + + + + living in lakes or rivers + + + + + + + + + determine genotype + + + + + + + person working in geoscience + + + + + + described using Earth coordinates + + + + + + branch of civil engineering + + + + + + + previously agricultural region under development + + + + + + + arm-powered land vehicle + + + + + + + deeply emotional song + + + + + + pertaining to liver or related organs + + + + + + + chemical compound active in immune response + + + + + + inflexible + + + + + + + + + collection of biological life stages + + + + + + + academic degree + + + + + + relating to a magnetosphere + + + + + + + study of malaria + + + + + + + person who does mariculture + + + + + + electronic-mechanical + + + + + + + person who works in metrology + + + + + + relating to microbiology + + + + + + chemistry with tiny samples + + + + + + pertaining to mitochondria + + + + + + + a panel discussion with only men on stage + I have a question for the manel. + + + + + + + + + speak at length + + + + + + + vertical hole in a glacier + + + + + + multi-chained (for proteins) + + + + + + + person who studies museums + + + + + + caused by or related to mycobacteria + + + + + + + type of blood disease + + + + + + + optical device for nano-scale imaging + + + fictional device + + + + + + relating to neurosurgery + + + + + + + + + apply nuance to + + + + + + + type of mineral + + + + + + pertaining to an oilfield + + + + + + part of a vehicle + + + + on a vessel/vehicle + + + in support of, going along with + + + + + + application of orthopedic appliances + + + + + + pertaining to otology + + + + + + pertaining to care for outpatients + + + + + + + + + serve the underserved + + + + + + + lightweight nonrigid aircraft + + + one who rides a paraglider + + + + + + + scientist practicing parasitology + + + scientist who studies parasites and their biology and pathology + + + + + + pertaining to parasitology + + + + + + participates or willing to do so + + + + + + relating to the oil industry + + + + + + + scientific description of rocks + + + + + + + vibrational quasiparticle + + + + + + involving photons + + + + + + + state of being printable + + + + + + in base 5 + + + + + + + + + connect again + + + + + + + one who studies sediments + + + + + + pertaining to social and economic issues + + + + + + + process of spatializing + + + + + + + branch of medical science dealing with the mouth and its disorders + + + + + + + process of presenting a story + + + social and cultural activity of sharing stories, often with improvisation, theatrics, or embellishment + + + + + + building and using supercomputers + + + + + + + televised fund-raising event + + + + + + + software package which automatically renders advertisements in order to generate revenue for its author + + + + + + + + + twenty-four hours a day and seven days a week; continuously + + + + + + + three-hundredth anniversary; tercentenary + + + + + + study of ultrasound + + + + + + in genetics and biochemistry, determining the structure of an unbranched biopolymer + + + cause to be in a specific order + + + discover the order of constituents + + + + + + the whole quantity or amount + + + everything + + + everyone + + + the only thing (used for emphasis) + + + + + + + mark with a barcode + + + + + + + study of oscillations in stars + + + + + + + + of noble lineage + + + + + + + device used to widen something + + + + + + + snapshot of the screen of a computer or other electronic device + + + + + + + + + grill + + + + + + craft of making corsets + + + + + + + type of wooden boat + + + + + + + type of aphasia + + + + + + + application for mobile devices + + + + + + study of chemical elements and molecules in outer space + + + + + + + person who studies books or writings + + + + + + + the history and science of books as physical objects : bibliography + + + study of the Bible and related literature + + + + + + + + canopy over a church altar + + + liturgical container + + + + + + + grilled sandwich + + + + + + action to deny access to an outlet for opinions + + + + + + + organism that consumes detritus + + + + + + + ecological approach to feminism + + + + + + + region near a rotating black hole + + + + + + + influential person who uses their strong presence and activity in social media and networks to influence particular audiences in their buying decisions (influencer marketing) + + + + + + + profession + + + + + + reddish-brown color + + + + + + + science of interactions between geography and plant life + + + + + + + + + type of enzyme + + + + + + + type of house + + + + + + + former term for ecology + + + + + + + French pastry + + + + + + + + early + + + + + + way to cook pasta + + + + + + competition type in artistic and rhythmic gymnastics + + + + + + in a way that provides no answer + + + + + + amazingly (in an astounding manner) + + + + + + in a blushless manner + + + + + + aggressively/painfully (so as to cause bruising) + + + + + + in a changeless manner + + + + + + without color (in a colorless manner) + + + + + + in a consuming manner + + + + + + Indicates enthusiastic agreement + + + + + + clamantly/markedly (in the manner of a crying evil) + + + + + + hurtfully + + + + + + with argumentation + + + + + + sex position + + + + + + in a dreamless manner + + + + + + without conveying any feelings/thoughts (in an unemotional manner) + + + + + + in a fadeless manner + + + + + + in a gormless manner + + + + + + In a Gothic way. + + + + + + artfully/deceitfully/treacherously (in a guileful manner) + + + + + + in a way that makes a thing able to catch on fire + + + + + + so as to inspire/animate + + + + + + without causing breakage + + + + + + In a irreprovable manner; irreproachably. + + + + + + relative direction + + + + + + in a luckless manner + + + + + + anonymously, without a name + + + + + + every so often + + + + + + In an oracular manner. + + + + + + this way + + + + + + in an excessively loud manner + + + + + + done in a fragmented fashion + + + + + + professional work undertaken voluntarily and without payment + + + + + + legal term + + + + + + In a pronominal manner; as a pronoun. + nouns used pronominally + + + + + + In a proportionable manner; proportionately. + + + + + + arrangement of items front to back; order that allows only one entity to pass through a point at a time + + + + + + in a sinless manner + + + + + + through slats + + + + + + with slowness and low energy + + + + + + a version of "so fucking" that is used to avoid cursing + + + + + + in a spiffy manner + + + + + + in a stainless manner + + + + + + in a way that causes extreme fear + + + + + + at the present time + + + + + + in an unconstrained manner; without constraint + + + + + + + a fire in a garbage dumpster + + + a generally messed up situation + + + slang referring to something so bad it resembles burning garbage + + + + + + counterclockwise + + + + + + without using wires, such as by means of radio waves + + + + + + + type of inexpensive laptop computer + + + + + + + organism capable of growing and reproducing in the cold + + + + + + + collection of galaxy groups and clusters + + + + + + + + + to provide a pattern for + + + + + + + times a web page is accessed + + + + + + + chemical compound + + + + + + + protein + + + + + + + RNA molecule that is capable of performing specific biochemical reactions + + + + + + + modified and decorated jacket worn in biker, metal and punk subcultures + + + + + + + activity that arranges items or activities in order of importance or time-sensitivity relative to each other + + + + + + + set of arrengements around academic tenure + + + + + + firecracker and similar itself + + + + + + quaternary ammonium cation + + + + + + + weaken, not quantifiable, weaken from below + + + surgically seperate from underlying structure + + + + + + study of seasonal change + + + + + + + transition from full glacial conditions during ice ages, to warm interglacials + + + + + + + stream that runs dry in summer + + + + + + + + + to devest of deific condition; to ungod + + + + + + + + + to make lady-like + + + + + + + + + to render impure + + + + + + + + + (of toxic chemical) to become more concentrate in organisms higher up in food chain + + + + + + + + + to accept again + + + + + + + + + to turn into trash, render trashy + + + + + + + + + to make compact + + + + + + + + + to clothe + + + + + + + The act of bringing back into existence or use + + + + + + + horse breed + + + + + + + any parasitic worm which lives in lungs + + + + + + Research strategy that crosses many disciplinary boundaries + + + + + + + type of absorption + + + + + + quality of preferring concepts or facts one wishes to be true, rather than concepts or facts known to be true + + + + + + + Any process that results in a change in state or activity of an organism (in terms of movement, secretion, enzyme production, gene expression, etc.) as a result of detection of, or exposure to, a period of light or dark of a given length, measured re + + + + + + + chemical reaction + + + + + + + incorrect attribution; when a quotation or work is accidentally, traditionally, or based on bad information attributed to the wrong person or group + + + + + + + + tumor that produces too much insulin + + + + + + study of the biochemical and physiologic effects of drugs + + + + + + + class of enzymes + + + + + + + biophysicogeochemical process + + + + + + + area controlled by a single winery + + + + + + + salt or ester of methacrylic acid + + + + + + + particle between 0.1 and 100 µm in size + + + + + + branch of chemistry + + + + + + + type of kidney cell + + + + + + + chemical compound belonging to a series of compounds differing from each other by a repeating unit + + + + + + study of cells and tissues using chemical staining techniques + + + + + + + dimer with two different components + + + + + + + any loss of nerve supply regardless of the cause + + + + to deprive an organ of attached nerves + + + + + + + A double-membrane-bounded compartment that engulfs endogenous cellular material as well as invading microorganisms to target them to the lytic vacuole/lysosome for degradation as part of macroautophagy. + + + + + + + program that simulates conversation + + + + + + + person elected president who has yet to take office + + + + + + + coastal wetlands + + + + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + + + + + + marked by expansion or widening + + + + + + reduction of human social interaction in an effort to prevent the spread of infectious disease + + + + + + + name for a person from or resident in a place + + + + + + + + + + neopronoun + + + + + + + + neopronoun + + + + + + + colloquial term for giving financial support to a company or country which faces serious financial difficulty + + + + + + + + + mislead someone into doubting reality + + + + + + + residual water from cooking legumes, used in recipes to substitute egg whites + + + + + + + traditional outdoor game + + + + + + + vehicle typically styled after pickup truck bodies, modified or purposely built with extremely large wheels and suspension + + + + + + + + + + to commit oneself; to have recourse to any sort of action + + + + + + transgender + + + transsexual + + + + + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + + + + + an ancient Spanish coint + + + + + + theory of multidimensional oppression + + + + + + + + + to compress in a zigzagged series of folds, like an accordion + + + + + + a state of not engaging in relationships or marriages + + + + + + involving or relating to a connection between a person and someone they do not know personally, for example a famous person or a character in a book + + + + + + + gender identity where a person identifies as only partly female + + + + + + + + golf + + + act of removal, an end + + + act of mentioning, often in an offhand manner + + + spend money + + + + + + + + + new election, when regular election failed + + + process where an incumbent wins election again + + + + + + Across or over in a slanting or diagonal direction. + + + + + + On the side of; nearest or adjacent to; next to. + + + + + + Regarding; concerning. + + + + + + out of, from + + + + + + until + + + + + + Although; despite the fact that; even though. + Notwithstanding I was provoked, I ought not to have reacted so violently. + + + + + + Only if (the stipulation that follows is true). + You can go to the party provided you finish all your homework first. + + + + + + + Whatever person or persons: emphasised or elaborated form of whoever. + Whosoever partakes of this elixir shall have eternal life. + + + + + + Used for introducing the result of a fact that has just been stated; thence + The work is slow and dangerous, whence the high costs. + I scored more than you in the exam, whence we can conclude that I am better at the subject than you are. + + + + + + Various people or things; several. + + + + + + Used to indicate that a magic trick or other illusion has been performed. + + + + + + Used as a command to bring soldiers to the attention position. + + + + + + interjection used to express contempt or disapproval + + + + + + expression of regret/sorrow + + + + + + Goodbye, an interjection said upon parting. + + + + + + An exclamation used to express pleasant or unpleasant mild surprise, indignation, or impatience. + Why, that’s ridiculous! + Why, how kind of you! + Why yes, that’s true. + + + + + + A traditional Jewish greeting or farewell. + + + + + + having the maiden name + + + + + + + moral snob + + + + + + compulsive consumption of large quantity of negative online news + + + + + + + form of spin in which green PR or green marketing is deceptively used to promote the perception that an organization's products, aims or policies are environmentally friendly + + + + + + branch of machine learning + + + + + + + biochemical technique + + + act or process of staining with an antibody + + + + + + + immunoassay method used for immunoreactive substances of tagging with labeled antibodies + + + + + + + type of tectonic plate + + + + + + + device used to keep a bed warm + + + + + + before + + + + + + + name considered fitting to a person + + + + + + + + + + to not forget, or to remember again + + + + + + + policy constraining travel + + + + + + + study of past climate based on tree ring data + + + particular climate reconstruction from tree rings + + + + + + theory, especially during the 1970s, of imminent cooling of the Earth + + + + + + assets that have suffered from unanticipated or premature write-downs, devaluations, or conversion to liabilities + + + + + + + Graph showing a large spike in recent centuries' temperatures resembling a hockey stick to demonstrate anthropogenic climate change + + + + + + + legal proceedings meant to address climate change through judicial proceedings + + + + + + type of geoengineering + + + medical procedure + + + + + + core sample of ice, typically removed from a glacier or ice sheet + + + + + + + communications field focused on bringing climate change information to a public + + + + + + + folk music from around the world + + + + + + + game in a tournament just before the final game + + + + + + + social annotation of an action as being in line with ethical norms + + + + + + + pathology + + + + + + + forest dominated by plants that shed their leaves in autumn + + + + + + + a song that has the same name as the album it is released on + + + a promoted song on a music release. common in KPOP + + + + + + combining agriculture with photovoltaics + + + + + + + Fictional device + Landing party members always carried an equipment pack containing a tricorder and other sensor equipment, enabling them to monitor atmospheric conditions on alien worlds. + As with later tricorders, this device’s standard scan set covered meteorological, geographical, and biological data, which was recorded on a pair of memory modules situated in its upper section, which also incorporated a touch display screen. + + + + + + an incorrect combination of a substituted word (with a similar sound to another word) with another recently coined word + + + + + + + practice of publicly shaming, rejecting, and ceasing to provide support to people perceived as problematic + + + + + + vocative particle + + + + + + nazari + + + + + + the practice of abstaining from the use of animal products + + + + + + someone with whom the speaker has a measure of emotional closeness and respect + + + + + + + symbiosis between vascular plant and fungus + + + + + + + alteration of previously established facts in the continuity of a fictional work + + + + + + + convention to represent a specific type of digital information in a specific type of file + + + + + + + A type of South American rodent + + + + + + + type of arterial thoroughfare between classification of road and street + + + + + + a part of a rock or group of rocks that differs from the whole formation (as in composition, age, or fossil content) + + + general appearance + + + an appearance and expression of the face characteristic of a particular condition especially when abnormal + + + + + + + first meeting of two cultures previously unaware of one another + + + + + + + person who makes species-based discriminations + It wasn't as if he was speciesist, he told himself. But the Watch was a job for men. + + + + + + + any geologic material which is not native to the immediate locale but has been transported from elsewhere + + + geologic material transported from one locale to another by glacial-ice specifically, unqualified as the most common type of erratic + + + + + + + + geologic material transported from one locale to another by glacial-ice + + + + + + + + optical machine-readable representation of data + + + + + + + automated cooking appliance + + + + + + + + having features of a human + + + + + + + fictional space combat weapon + + + + + + + two simultaneous pandemics, such as flu and COVID-19 + + + + + + cisgender and heterosexual + + + + + + vaccine + + + vaccination + + + + + + + + to be aware of some information + + + + + + of or relating to intersexuality + + + exhibiting intersexuality + + + + + + a white crystalline irritant compound C₈H₆Cl₂O₃ used especially as a weed killer + + + + + + + feces + + + act of defecating + + + + + + + able to find in a Google search + + + + + + + + + + to mention or reply to someone on social media + + + + + + of or pertaining to detectives + + + of or pertaining to detection + + + + + + interjection of happiness + + + + + + + any longhorn beetle of the family Cerambycidae + + + + + + + + + to move to an earlier date + + + to place in front of + + + + + + I swear! + + + + + + pertaining to act of eating a meal + + + + + + + a tall tree (Anisoptera thurifera) of the family Dipterocarpaceae + + + + + + + a European freshwater fish in the family Percidae, closely related to the perch, Sander lucioperca + + + + + + + + + indicating a non-occurring action or state that was conditional on another non-occurring event in the past + + + + + + + person who "bends" expected gender roles + + + + + + + video game that is played in professional competitions + + + + + + + + + + + + + + which person is + + + + + + + any plant in the genus Hedeoma + + + + + + + any virus of the family Baculoviridae + + + + + + + + any virus of the family Baculoviridae + + + + + + + + fictional character with supernatural or superhuman powers dedicated to helping the public + + + + + + + + (Internet slang) very cool + + + + + + + any beetle of the clade Lamiinae + + + + + + + any bacteria of the clade Alphaproteobacteria + + + + + + + any frog in the family Pipidae + + + + + + + small, benign skin growth that may have a stalk (peduncle); also called skin tag + + + + + + + basted with soy sauce and rice wine and grilled over an open fire + Home Chef provides classic dinner recipes like pork tenderloin, baked chicken, pasta dishes, and teriyaki steak. + Buffalo wings, said to have been invented in a bar in Buffalo, New York, in 1964, are among the spiciest preparations (other popular variations include teriyaki wings and honey garlic wings). + + + + + + + type of fine Kashmiri wool of a Himalayan ibex + + + + + + + + + machine to mow lawns + + + + + + + + mellow, agreeable + + + + + + incest + + + + + + + hall (building owned by a college or university where students live) where there are communal kitchens and fridges and so on intended to be used by students + + + + + + + a clumsy, stupid person + + + + + + + + + + + + + + + be healthy, be well + + + farewell + + + recommendation for greater sophistication or awareness: "get real" + + + + + + ammonic + + + + + + + the plover Vanellus coronatus + + + + + + + the police (collectively) + I just blew a chase on the maameh + + + + + + + + + to make evident or public + + + + + + + urban slang for a half-jack + + + + + + + + sorting room in a paper mill + + + + + + in or by the fact + + + + + + + music that blends punk rock and rockabilly + + + + + + + of, resembling, or characteristic of a zebra + + + + + + + + style in art and especially architecture + + + + + + + An obsolete currency of India + + + + + + + tendency in a language to treat the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + + + + modified by humans + + + + + + + all the roots of any singular plant + + + + + + land revenue system in British India + + + + + + + someone who one shares their bed with + + + sex partner + + + person one has a platonic friendship with, that includs sex + + + + + + + + transfer of food or other fluids among members of a community through mouth-to-mouth or anus-to-mouth feeding + + + + + + + + something whose slightly damaged appearance shows that it has been used many times + + + + + + + + + + to end a phone conversation intentionally + + + + + + a capital town for Nanumba North municipal in Ghana + + + + + + + The one that follows after this one. + Next, please, don't hold up the queue! + + + + + + + any individual living being or physical living system + + + + + + + + + superficial or meaningless communication lacking substantial content or significance + + + + + + + massage of the back + + + + + + a lot + + + + + + addiction to tobacco + + + + + + + a mammal in the family Eupleridae + + + + + + of or pertaining to the Trochilidae (hummingbirds) + + + + + + + a member of the mammal family Elephantidae + + + + + + promise to keep silent + + + + + + + any fish of the family Blenniidae + + + + + + + any salamander in the family Plethodontidae + + + + + + + any owl in the family Tytonidae + + + + + + + a mammal in the family Dugongidae + + + + + + + a bat in the family Molossidae + + + + + + of or relating to the moth family Crambidae + + + + + + + officer under the Lord Chancellor whose duty it was to prepare the wax for sealing documents + + + + + + + any of several pivoted pieces forming the throat of an adjustable die used in drawing wire or lead pipe + + + + + + + any mole of the family Talpidae + + + + + + + woman, lady + + + + + + + a machine that dispenses bubblegum + + + + + + + any bird in the family Odontophoridae + + + + + + + any fish in the family Apogonidae + + + a fish in the genus Apogon + + + + + + + any salamander belonging to the family Cryptobranchidae + + + + + + + a cetacean in the mammal family Delphinidae + + + + + + + person of mixed white and Asian or PIslander ancestry + + + + + + Of or related to fruit bats in the family Pteropodidae + + + + + + (expressing assent, understanding) + + + (expressing surprise, doubt, joy, anger) + + + + + + + fighting, conflict + + + + + + + childlike aspect of one’s emotional experience + + + + + + سو گھٹ سولاں + + + + + + malillugu + + + + + + pertaining to the journey from childhood or adolescence to adulthood + + + + + + + + + + to look after + + + to nurse + + + + + + + the intentional performance to do a wrongful act + + + + + + + concert of classical music at which a part of the audience stands unseated for a reduced price of attendance + + + + + + + walking for show, amusement + + + + + + a disorderly, confusing situation; a mess + + + + + + + + + more in addition to someone or something + + + something different to an aforementioned someone or something + + + + + + + + + to treat something or someone as different + + + + + + + + + to try to effect or influence certain people + + + + + + + an album for mounting pictures and other memorabilia of a baby and for keeping a record of their growth from infancy + + + a book intended for babies or young children + + + a book containing advice for new or prospective parents + + + + + + + hill, mound + + + + + + + type of wooden vessel + + + + + + + generally, an Australian Aboriginal ceremoial meeting + + + + + + study of marine organisms + + + + + + + branch of biology concerned with protists + + + + + + + soil science + + + study of the influence of soils on living things, particularly plants + + + + + + branch of tribology which studies friction phenomena on the molecular and atomic scale + + + + + + + branch of herpetology dealing with amphibians + + + + + + + branch of herpetology and paleontology dealing with fossil amphibians and reptiles + + + + + + branch of ichthyology and paleontology dealing with fossil fish + + + + + + + + a sports match that holds no significance in terms of affecting the outcome or standings of a tournament + + + + + + + branch of entomology dealing with the Odonata (dragonflies and damselflies) + + + + + + + branch of ecology concerned primarily with the species and its genetically variant subdivisions, with their position in nature and, with the controlling and ecological factors + + + + + + the study of victims of crime + + + usually disparaging : the claim that the problems of a person or group are the result of that person or group having been victimized + + + + + + + onomastics + + + + + + the study of heat + + + a medical science that uses infrared images of the body to diagnose problems + + + + + + the study of games and play + + + + + + + washerman occupational class in South Asia + + + + + + the study of the anatomy and physiology of vomiting + + + + + + + branch of biology concerned with the processes and patterns of biological evolution especially in relation to the diversity of organisms and how they change over time + + + + + + swimming or floating in water + + + floating entirely under water + + + + + + the study of sleep and hypnotic phenomena + + + + + + + + inner bark of exogens; bast + + + + + + neither of two persons or things + + + + + + unaffected by or free from taboo + + + not set apart for a special use + + + + + + + an old Polish immigrant + + + + + + + the study of meteorites + + + + + + the study of how exercise alters the function and structure of the body + + + + + + + + criminology + + + + + + branch of psychology concerned with the behavior of animals other than humans + + + + + + folk psychology + + + comparative psychology + + + + + + feeding on or in wood + + + + + + dispersal of spores or seeds by animals + + + + + + + a plant distributed by living animals + + + + + + + a member of the mammal family Erinaceidae (the gymnures and hedgehogs) + + + + + + + a plant adapted to withstand or to achieve a competitive advantage from fire + + + + + + swear to God + + + + + + + branch of biology concerned with the study of plankton + + + + + + + altering one’s course in life + + + + + + + a science that deals with actinism and photochemical effects + + + + + + + the science of remedies or therapeutics + + + + + + + + the study of geological features by aerial observation and aerophotography + + + + + + branch of medical science that studies fractures + + + + + + + the study of the language, costume, literature, art, culture and history of Albanians + + + + + + + branch of botany that deals with character, ecology, and causes of outbreak of plant diseases especially of epiphytotic nature + + + the sum of the factors controlling the presence or absence of a disease or pathogen of plants + + + + + + + pleonasm: the use of more words than those necessary to denote mere sense (as in the man he said) : redundancy + + + + + + + ecology of microorganisms + + + + + + + + an ecclesiastical calendar of festivals celebrated in honor of particular saints and martyrs + + + a register of saints or outstanding religious personages + + + menologion: an ecclesiastical calendar and short martyrology of the Eastern Orthodox Church : an abbreviated version of the complete Menaion + + + + + + + the collection and study of proverbs + + + + + + + apparent or imitative homology especially between metameres + + + + + + + the scientific consideration of the remedial use of friction + + + + + + + the study of winds + + + + + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + + + + + + the branch of ornithology which is concerned with birds' nests + + + + + + + the scientific study of weight + + + + + + + investigation of the supposed relation between the celestial bodies and the weather + + + + + + + + the science of breeding animals and plants under domestication + + + + + + + branch of mathematics which studies topological spaces using the tools of abstract algebra + + + + + + + + + products, equipment, and systems that enhance learning, working, and daily living for persons with disabilities + + + + + + + theological doctrine that describes the divine nature according to positive categories + + + + + + + + branch of mycology dealing with the rusts + + + + + + + + + crouch-backed + + + crowded, populated with people + + + + + + + the ecology of organisms and their interactions with each other; the branch of science concerned with this + + + + + + + branch of medicine dealing with the skin, its structure, functions, and diseases + + + + + + + study of structural geology + + + + + + + computer science + + + + + + + branch of pathology that deals with manifestations of disease at the cellular level + + + + + + + the study of animals in a germ-free environment + + + + + + + the raising and study of animals under gnotobiotic conditions + + + + + + + + the science or study of the origin, meaning, growth, and history of the religious feasts and seasons of the Christian year + + + + + + + the study of marine animals + + + + + + + the scientific study of microclimates + + + the microclimatic character of an area + + + + + + + + + + to drop, issue from + + + + + + + the branch of zoology which deals with slugs + + + + + + + the study of how populations change over time + + + + + + + the study of the astronomy of ancient cultures + + + + + + + + the doctrine of the use of the cane in corporal punishment + + + + + + + + + to send a copy of a communication, especially via email + + + + + + + (among the Algonquian people) a supernatural being that controls nature; a spirit, deity, or object that possesses supernatural power + + + + + + + recent zoology: the zoology of existing animals disregarding those extinct + + + + + + + the study of the process by which animals and plants grow and develop + + + + + + + any approach to psychological issues based on the idea that mental processes can be divided into separate specialized abilities or powers, which can be developed by mental exercises in the same way that muscles can be strengthened by physical exercises + + + + + + + the branch of Roman Catholic theology that deals with the practice of virtue and the means of attaining holiness and perfection + + + + + + + contraction of a word by omission of one or more similar sounds or syllables + + + + + + + the medical science concerned with diseases of the blood and related tissues + + + + + + + + the study of gramophone records + + + + + + + (informal) the art or practice of bluffing or deception + + + + nonsense, rubbish; fooling, hoaxing, humbugging + + + + + + + the branch of political economy relating to the production of wealth + + + + + + + the study of the causal relations between geographical phenomena occurring within a particular region + + + the study of the spatial distribution of organisms + + + + + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + + + + + + a hostile or harmful action (such as an attack) that is designed to look like it was perpetrated by someone other than the person or group responsible for it + + + + + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + + + + + + the scientific study of noses + + + + + + + study of the microscopic anatomy of cells and tissues of plants and animals + + + tissue structure or organization + + + + + + + the study of hormones: endocrinology + + + + + + + the science of health; hygiene + + + + + + + a treatise on the poppy or on opium + + + + + + + a target-driven process designed to ensure the successful implementation of reforms or achievement of policy goals within government or the public sector + + + + + + + absence of purpose in nature especially as manifested in rudimentary or nonfunctional structures + + + the doctrine of purposelessness in nature + + + frustration or evasion of a normal functional end + + + a vestigial organ + + + + + + + the study of the impact an injury or incident had on a person's lifestyle + + + hedonics + + + + + + + + + the study of the phonology of morphemes + + + + + + + + recitation of mimes + + + + + + + a collection of idioms + + + + + + + the study of the relationship between the endocrine system and various symptoms or types of mental illness + + + + + + + a branch of medicine that deals with the influence of emotional states (such as stress) and nervous system activities on immune function especially in relation to the onset and progression of disease + + + + + + + the theory and practice of utilizing new technology to develop and implement innovative educational approaches + + + + + + + + sensitive to light of all colors in the visible spectrum + + + + + + + the study and treatment of speech and language problems + + + + + + + + the branch of anatomy which deals with the ligaments + + + + + + + the study of the structure and operation of synapses + + + + + + + a scientific dissertation on tea + + + + + + + the study of archaeological remains by examining them from a higher altitude + + + + + + + the study of climatological conditions in the free atmosphere--that is, in atmospheric layers located at various levels above the earth's surface + + + + + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + + + + + + te branch of anthropology that deals with the origins, forms, and practice of politics or political authority + + + + + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + + + + + + the study of the masticatory system, including its physiology, functional disturbances, and treatment + + + + + + + the branch of biology concerned with congenital defects and abnormal formations of plants; plant teratology + + + + + + + + a speech in which someone admits to the charges or problems they are accused of, while simultaneously justifying or attempting to provide excuses for them + + + + + + + the study of the physiology of the ear and hearing + + + + + + + an expert or specialist in physiological psychology + + + + + + + counter-espionage + + + + + + + the science of the production and distribution of wealth + + + + + + + + + to perform music using a musical instrument or instruments + + + + + + + the explicit concern with foundational, metapsychological, and philosophical questions in psychology + + + + + + + a range of philosophical and theological explorations of the idea that God may be dead + + + + + + + + those aspects of meteorology that occur over, or are influenced by, ocean areas and which serve the practical needs of surface and air navigation over the oceans + + + + + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + + + + + + the methods and the process used for catching or capturing the fishes for various purposes + + + + + + + + characterized by whirling or rotatory movement + + + + + + + the branch of virology concerned with the study of retroviruses + + + + + + + the science or study of revolution + + + + + + + a treatise on pyrites + + + + + + + the study of crystals and crystallization; crystallography + + + + + + + + + that has been through the process of fermentation + + + leavened (of bread) + + + + + + + the application of technology in the agricultural and food sector + + + + + + + contraption used to catch fish alive + + + + + + + (first-person plural possessive) belonging to us + + + + + + (third-person singular impersonal possessive) belonging to it + + + + + + impervious to moisture or damp + + + + + + + tsirkulatsioonimudel + + + + + + + a small bedside table or stand + + + + + + + + the medical specialty that studies the morphology of the macroscopic and microscopic abnormalities in biological tissues and normal or pathological cells + + + + + + + the study of the meteorological processes occurring close to the Earth's surface, including the effects of meteorology on air pollutants and the effects of pollutants on meteorology + + + + + + + the science of weapons or armor + + + + + + the study of the complex processes of climate and glacial interaction + + + + + + + the study of mesoclimates; the climatology of relatively small areas that may not be climatically representative of the general region + + + + + + to an extent + + + aware of, knowledgeable about + + + opposed to + + + + + + to the greatest extent + + + + + + aggravated; angry, annoyed, irritated + + + crazy, fun + + + + + + + surely have, should have + + + + + + + the study of historical weather patterns using radar data to understand how surface properties affect precipitation + + + + + + + a use of many languages + + + + + + + the branch of sociology that deals with political groups and leadership + + + + + + + a certain set of ethical ideals, principles, doctrines, myths or symbols of a social movement, institution, class or large group that explains how society should work and offers some political and cultural blueprint for a certain social order + + + + + + + chemical reaction used to remove color, whiten, or disinfect, often via oxidation + + + + + + + the macroscopic assessment of pathology specimens + + + + + + + + a calendar or book declaring what is done every day, a day-book + + + + + + + + + to receive pardon + + + + + + + article structured as a list + + + + + + + rare. Apparently only attested in dictionaries or glossaries: the doctrine of, or a treatise on, the nutrition of organized bodies + + + + + + + the study or science of nutrition + + + + + + + qasoqqavoq + + + + + + interring; enclosing, whelming + + + + + + that catches fish + + + + + + + + + + + + + to release again; to reissue (especially of a film or recording) + + + + release again + + + + + + + + + to produce together (with a partner) + + + + + + + + + to engage in role-playing, taking on of fictional parts + + + + + + + + + to eat dinner, dine + + + + + + + + + to put before a committee + + + + + + + + + to become inattentive, oblivious + + + + + + + + + to chatter continuously in an annoying manner + + + + + + + + to shine, gleam, glitter with reddish or golden light + + + + + + + + + to put out of date; to make obsolete + + + + + + + + + to control and direct in a detailed, meddlesome manner + + + + + + + + + to mention name of famous or prominent person in conversation to impress others + + + + + + + the study of how people behave in groups and how their behavior differs from when they are individuals + + + + + + + + + the use of solar energy to generate electricity or heat + + + + + + + + + to inhibit or decrease normal activity of bone marrow, resulting in fewer red blood cells + + + + + + + + + to bring about lysis + + + + + + + + + to urinate involuntarily while asleep + + + + + + + + + to remove a sample of tissue for medical analysis + + + + + + to occur at time later than expected + + + + + + to not be present + + + + + + to not be present among, at + + + + + + to be experiencing fear + + + + + + + substance that quells or blunts the libido + + + + + + having normal visual acuity + + + marked by facilely accurate discernment, judgment, or assessment + + + + + + + a treatise on the head + + + + + + + branch of botany that deals with desmids + + + + + + + the study of diseases of ligaments + + + + + + + short trousers, shorts + + + + + + + + + to fossick + + + + + + + + + + to score with ravines + + + to hollow a ravine or cleft out of + + + + + + + + + to reduce to base level by erosion + + + + + + + + + to send an SMS message from a mobile phone + + + + + + + + + to subsidize something or someone + + + + + + + essential oil distilled from the flowers of the Seville orange + + + + + + + + + to adduce arguments, argue + + + + + + + + + to provide, secure, or raise with a quoin or quoins + + + + + + mentally or morally sick + + + + + + + the branch of biology that uses computational techniques to analyze and model how the components of a biological system such as a cell or organism interact with each other to produce the characteristics and behavior of that system + + + + + + + the broomrape Orobanche purpurea of Eurasia and North Africa, which has bluish-purple flowers and is parasitic on yarrow + + + + + + forward, at the fore + + + + + + at the fore of, ahead of + + + + + + deep in past time; long ago + + + + + + that alights, descends + + + + + + that blames + + + + + + constrained, forced, necessitated + + + + + + that abstains from or is deprived of food or drink + + + + + + departing, going + + + + + + out of each hundred + + + + + + outdoor; out of doors + + + + + + + + of, within, or for a group of related people + + + + + + + act to forget + + + state of being unconscious, oblivion + + + + + + + whiner, complainer + + + + + + reduced to fine particles by grinding + + + + + + + professional who applies engineering principles to the study of cells and tissues, and uses these principles to control and understand cell behavior + + + + + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + + + + + + a home that combines a living space with a large workshop or storage area + + + + + + + a gold ring + + + + + + + the radiographic visualization of the gallbladder after ingestion or injection of a radiopaque substance + + + + + + + + + dyer + + + + + + + a chemical compound (such as a drug, pesticide, or carcinogen) that is foreign to a living organism + + + + + + + photography involving the use of a camera attachment or integrated feature that produces a brief flash of intense light + + + + + + + the study of the individual, or of single events or facts + + + + + + + the practice or art of recording images with a video camera + + + a list or catalogue of video recordings + + + + + + + the use of oscillographs for recording alternating current wave forms or other electrical oscillations + + + + + + + the science of plant description; descriptive botany + + + + + + + the science or practice of transcribing speech by means of symbols representing elements of sound; phonetic transcription + + + a system of shorthand based on phonetic transcription + + + + + + + the art of representing objects in perspective, especially as applied in the design and painting of theatrical scenery + + + visual design for theatrical productions, including such elements as sets, costumes, and lighting + + + + + + + visualization of the kidney using a radiological contrast medium or radioisotope + + + + + + + the description or study of ceramics + + + + + + of or relating to engraving or carving, especially on precious stones + + + + + + + combining form meaning "salpinx" + + + combining form meaning "fallopian tube" + + + combining form meaning "fallopian tube and" + + + combining form meaning "eustachian and" + + + + + + + the art of taking an impression of a coin or medal using sealing wax + + + + + + + writing held to be that of spirits and produced directly without a medium or material device + + + descriptive pneumatology + + + + + + + tuft or bunch of ribbon, feathers, flowers, threads of silk + + + + + + + million-millionth of a gram + + + + + + pertaining to a plexus of veins located in the spermatic cord of the male or the broad ligament of the female + + + + + + that bumps + + + + + + designation of a particular kind of concrete + + + + + + + glycoproteins that stimulate the production of blood cells in bone marrow + + + + + + of fresh water habitat; situated in still water + + + + + + + floor- or ankle-length dress + + + + + + + rocket, arugula + + + + + + like or resembling a dragon + + + + + + on account + + + + + + a mess-up; a disaster + + + testicles + + + + + + + the study of animals as geomorphic agents—as in the creation and collapse of gopher tunnels + + + + + + + lady of the Sultan’s harem + + + + + + + any cross between a mandarin and a kumquat + + + + + + + a sign, such as an accent or cedilla, which when written above or below a letter indicates a difference in pronunciation from the same letter when unmarked or differently marked + + + + + + + a large Hungarian dulcimer + + + + + + + a tiler or slater of roofs + + + + + + + going on a trek + + + + + + + a market + + + + + + + torch + + + + + + + a person who is present when something is happening but is not involved; a bystander + + + (nautical) a gunner's assistant (obsolete) + + + + + + relating to the medical specialty of proctology + + + + + + + + (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + + + + + + surgical construction of an artificial opening from urinary tract + + + + + + + + + to turn upwards + + + + + + + + + to remove stitches from + + + + + + + + + to brace again + + + + + + + state of semi-dormancy exhibited by reptiles and amphibians in response to cold weather + + + + + + + + + to form or express the opposite or contrary of + + + + + + + + + to make over again or restore (property) to former owner + + + + + + + + + to supply preliminary amplification + + + + + + + + + to saturate to excess + + + + + + + white barley sugar or sugar candy + + + + + + + + + to adjoin two objects + + + + + + + transfer of a phosphate group between molecules in different compounds; act or process of exchanging phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + + + + branch of geomorphology that studies how landforms are formed or affected by tectonic activity + + + + + + + + + to remove or unfasten clamp(s) from + + + + + + + + + to make insufficient use of + + + + + + the condition in which people in a labor force are employed at less than full-time or regular jobs or at jobs inadequate with respect to their training or economic needs + + + the condition of being underemployed + + + + + + + + + to transfer genetic material into another individual + + + + to transfer genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + to transfer genetic material non-reproductively, usually by horizontal gene transfer + + + + + + + + + + to march with legs swinging sharply from the hips and knees locked (like how geese walk) + + + + + + + + + to accelerate the progress of; to expedite + + + + + + + + + to provide an active link to a website + + + + + + + + + to destroy by burning + + + + to subject to genocide + + + + + + + + + to flash lightning + + + + + + + + + to calculate on a yearly basis + + + + + + + + + light a controlled fire in the path of a wildfire to gain control + + + + + + + + + to fail spectacularly + + + + + + + + developed in a full and thorough way + + + + + + seasonal movement of livestock (such as sheep) between mountain and lowland pastures either under the care of herders or in company with the owners + + + + + + the branch of anthropology focused on the interactions between humans and biophysical systems + + + + + + + + a small carnivorous aquatic monotreme mammal (Ornithorhynchus anatinus) of eastern Australia and Tasmania that has a fleshy bill resembling that of a duck, dense fur, webbed feet, and a broad flattened tail + + + + + + + mother tongue; first language a person adopts from their family of origin + + + + + + heaped up, accumulated; increased by accumulation + + + + + + + in South Asia: a member of a Scheduled Caste of leather-workers; a shoemaker, a cobbler, (formerly) a saddler + + + + + + anal sex + + + + + + + questioning, interrogation; the action of making or suggesting a queryaking of queries + + + + + + of the nature of, or characteristic of, croup + + + + + + + a person who introduces a parenthesis; a person given to the use of parenthesis + + + + + + happening or occurring every four years + + + consisting of or lasting for four years + + + + + + nothing, not anything + + + + + + + + + + to weigh in ounces + + + + + + + + + to despoil + + + + + + + + + to pour forth like a conduit or fountain + + + + + + + name of a fishing tender + + + + + + where above mentioned + + + + + + of or relating to the moth family Pyralidae + + + + + + + education conducted after secondary education and before postgraduate education, usually in a college or university + + + + + + + an animal that feeds on feces or fecal matter + + + + + + + a plant that captures and digests insects either passively (as the common pitcher plant or the sundew) or by the movement of certain organs (as the Venus's-flytrap) + + + + + + + a virus that attacks actinomycetes + + + + + + + the deliberate, often habitual, eating of small quantities of arsenic compounds + + + + + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + + a dance routine performed by ice skaters, especially as part of competitive figure skating + + + + + + + + indeterminately small in number + + + + + + that cleans + + + + + + anyone + + + whichever + + + however much + + + + + + + a jump in figure skating in which the skater takes off from the back outer edge of one skate and makes at least one full rotation before landing on the back outer edge of the other skate + + + + + + + ball-and-socket joint + + + + + + that can be manured + + + + + + + mendacity: the quality of being mendacious; the tendency or disposition to lie or deceive; habitual lying or deceiving + + + + + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + + + + + + + + to take a stereograph or stereoscopic photograph of + + + + + + + a petulant person, especially a childishly sulky or bad-tempered one + + + + + + + acknowledgement of truth + + + allowance of entry + + + + + + natural geological depression + + + + + + + + + to question about matters brought out during foregoing direct examination + + + + + + + + + send, transport, or disseminate by courier + + + + + + + a person who causes a nuisance + + + + + + give back + + + + + + + + + to remove all or most of the substance of (a tumor or lesion) + + + + + + being in large quantities or not divided into separate units : being in bulk + + + of or relating to materials in bulk + + + + + + French-speaking + + + + + + + the act of suggesting someone for a role + + + + + + + becoming aware + + + + + + + surveyence of opinion + + + + + + + process of establishing something + + + + + + + an abdominal pain + + + + + + + the scientific name of a nerve + + + + + + + a traveler who stays at hostels + + + (archaic) an innkeeper + + + one that lodges guests or strangers + + + + + + the condition of having three copies of chromosome 13 that results in a syndrome characterized by severe congenital malformations including craniofacial and cardiac defects, structural brain abnormalities, and polydactyly + + + + + + + sadness, grief, melancholy, sorrow + + + + + + + systematic decline in quality of online platforms over time driven by greed + + + + + + + say for all to hear + + + + + + + a lack of skills in spoken and written language which may have a detrimental effect on a pupil's ability to learn + + + + + + + coming to a stand, waiting, continuing + + + hesitating, delaying + + + + + + + a short scherzo + + + + + + + + the utilization of theories and methods from phenomenology in media research, especially those of Husserl and Heidegger + + + the study of the media as technologies which are not neutral but which transform both the world and human experience of it by amplifying or reducing phenomena through various transformational structures, as theorized by Ihde and others + + + + + + + the state of being hyperreal + + + a hyperreal quality + + + in a mediated context, an artificially created copy that is perceived as somehow more real than the real thing, or too real to be real + + + + + + of, relating to, being, or characterized by manufacturing and especially heavy industry + + + + + + + long for, be lacking, absence noted with sadness, be unable to locate + + + + + + + an orally bioavailable, second-generation hydroxamic acid-based inhibitor of histone deacetylase (HDAC), with potential antineoplastic activity + + + + + + + standing watch over something + + + + + + + utterance or exclamation of ‘ooh—ah!’ + + + + + + + a woman, usually over 30 + + + male bird, especially a domestic chicken, having plumage resembling that of a female + + + + + + + + + to grow or become dark + + + to make dark, darken + + + + + + + make legal + + + + + + + convince to join + + + + + + + + + angry, phrasal variant: angry + + + + + + full complement of sailors belonging to crew + + + + + + + any method of searching for oil based on a limited knowledge of geology and practiced especially by wildcat prospectors + + + + + + pre-1900 Swedish + + + + + + + length of cotton cloth wrapped about the body + + + + + + + the study of glyptic + + + + + + + the branch of botany that deals with the Hepaticae + + + + + + + the study of pathologic conditions related to pregnancy, childbirth, and the postpartum period + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route beforehand + + + + + + + the branch of veterinary medicine that focuses on the study of parasites that infect animals, their life cycles, and their impact on animal health + + + + + + pertaining to paleontology + + + + + + + the topology on a set where only the empty set and the entire set are considered open + + + + + + + a treatise dealing with the uterus + + + + + + + branch of biology concerned with the construction of mathematical models to describe and solve biological problems + + + + + + + branch of physiology concerned with the basic functional activities of living matter : protoplasmic physiology + + + + + + + theology that conceives of ultimate reality as so transcending human thought that it can be described only negatively + + + + + + + to work together + + + + + + + to prevail over or declare void + + + + + + + the bisectrix of the obtuse angle formed by the axes of a biaxial crystal + + + + + + + process of breaking (up), terminating + + + + + + + the study of how climate, particularly temperature and moisture, influences soil properties and processes over the long term + + + + + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + + + + + + + + provide money for + + + + + + + the microscopic examination of tissue in order to study and diagnose disease + + + + + + + normal, standard, or consistent + + + + + + + talk idly + + + + + + + bring to an end + + + + + + act of hitting or pressing (a key or a button) + + + striking a blow with a closed fist + + + + + + deconstruct, destroy, bring an end to, defeat + + + + + + move randomly across some scale, fluctuating + + + + + + + + + to make a scapegoat of, unjustly blame (and punish) someone + + + + + + act or process of starting a habitual activity + + + act or process of occupying (space) + + + act or process of raising an issue or grievance + + + act or process of beginning an action, state, or position (non-habitual) + + + + + + + become/make clear, clean, becoming, making clean or clear + + + + + + + to take possession of + + + + + + + + + examine + + + + + + + act or process of being close or similar, causing to come near to or approach again + + + + + + + + + to place into a package again + + + + + + + a student or practitioner of methodology + + + + + + + the study of how cities modify the local climate, creating distinct conditions compared to surrounding rural areas + + + + + + having the yolk in the centre of the egg or egg cell + + + + + + + (especially in Greece or among Greek-speaking people) an extempore lament or funeral song, usually sung by a woman; a myriologue + + + the action or occupation of performing such laments + + + + + + + act or process of providing materials or supplies (provisions) + + + + + + + an advocate or practitioner of a processual approach to a problem or discipline; an advocate of processualism + + + + + + with confidential or sensitive information included or visible + + + + + + in my opinion + + + + + + + the finest topology that makes a given collection of functions continuous + + + + + + + a topology defined on the set of continuous maps between two topological spaces + + + + + + + the study of somatotypes + + + + + + + a method used in cervical cancer screening and other diagnostic procedures to improve the accuracy and efficiency of cell sample analysis + + + + + + comprehensive + + + + + + + the condition or fact of being between + + + + + + + the software and tools, including digital platforms and intelligent process automation, used to efficiently and intelligently create and deliver products and services, as well as improve speed and agility of processes across the enterprise + + + + + + + the psychology of the reader + + + + + + + Haeckel's name for: the comparison of the physiology of a mature organism to that of the (presumably) most perfectly developed organisms of its phylogenetic group + + + + + + + the theory, popularized by C. H. Dodd (1884-1973) that the eschatological passages in the New Testament refer not to a future apocalypse, but to an era which was inaugurated by Christ's presence and ministry on earth + + + + + + + the act of drooling + + + + + + + transporting an item or items that are coupled to a vehicle or pack animal(s) by means of tension elements + + + + + + anxiety causing, distressing, disturbing + + + + + + + + + + freeze completely + + + + + + having been split apart + + + + + + taking place in the middle of one's life + + + + + + + a belief system or ideology that mimics religious or theological structures but lacks the core elements of genuine theology, often serving as a substitute for or distortion of true faith; can also describe a system that adopts religious language and practices but ultimately serves a non-religious purpose or agenda + + + + + + for your information + + + + + + + the study of Ascomycota (sac fungi) + + + + + + + + + to be or become equal or even + + + + + + + act of taking + + + + + + + place where people live and interact, ranging from small villages to large cities + + + + + + + + + to shoot with bullets + + + + + + + + + to make available for other use + + + + + + + to illuminate + + + + + + of or relating to zoogeography + + + + + + + + search, seek like a scavenger + + + + + + + + + to form (vehicles) into a laager + + + to make camp + + + + + + + the formation of mountain ranges by tectonic processes, particularly large‐scale compression and intense upward displacement + + + + + + Being abducted + + + + + + + + + fan into flame + + + + + + + to make small adjustments + + + + + + + + + become too old for + + + + + + + act or process of combatting corruption + + + + + + + automatically measure refraction + + + + + + + + + put money into an investment, again, automatically + + + + + + unabashed, blunt + + + + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + + + + + + automobile decorated as a work of art + + + + + + + draw/test blood components + + + + + + + The act of to temporarily substituting one medicine with another + + + + + + + + + escape + + + + + + + The act of softening up by flattery, with an aim of getting something + + + + + + + the process of starting a computer + + + + + + + + + move a body part in a conical motion (e.g. windmilling the arms, rolling the eyes) + + + + + + + + + supervise, control, with a partner + + + + + + + + + change form together + + + + + + + change form together + + + + + + co-occurrence of medical conditions + + + + + + + + + pour concrete over + + + + + + not recommended or advised as a course of action + + + + + + + act or process of paying a pre-determined portion of a bill that is otherwise covered (usually by insurance) + + + + + + + development of ropelike structure in tissue often after surgery + + + + + + + + + fissure within a crevasse + + + + + + + + + formation of abnormal notching around the edge (of a cell, etc) due to water loss + + + + + + + to catch crabs (the crustacean) + + + + + + + quantity, object, or property intended to be measured + + + + + + + + + remove foam + + + + + + + + + decreasing oxygen saturation in hemoglobin + + + + + + + + + to remove wax + + + + + + + gummy candy in the shape of a worm + + + + + + clear to auscultation + + + + + + + The act of marking with dimples, creating dimples in or becoming dimpled + + + + + + + forming or becoming covered by a crust, forming a crust + + + + + + + + + cause a harmful action + + + + + + + + + to open using a crowbar + + + + + + + compare one set of data against another + + + + + + + reduction, depletion + + + + + + + (cause to) become dried out via an electric current + + + + + + + The act of putting in a chain + + + + + + spatial end portion of + + + + + + + remove + + + + + + ooze + + + + + + + cleaning with string for healthy gums, cleaning between with string + + + + + + + emit light randomly + + + + + + + artilliary/gun battle + + + + + + to form/consist of fibrous tissue + + + + + + + + + cause to become visible, find + + + + + + + to loosen, wear away + + + + + + become like a fungus + + + + + + + + + to brief or inform fully + + + + + + + The act of becoming/covering with glacier + + + + + + + act or process of putting deep grooves or scratches into a surface + + + + + + + surf move + + + + + + + + + enumerate by hand + + + + + + + + + be a ham, overact + + + + + + + + + phrasal chop sloppily + + + + + + + + + cause to appear + + + + + + + surgical repair of hernia + + + + + + + + + move more quickly + + + + + + + surgery that creates a connection between two different parts of the ileum + + + + + + + surgery that creates a connection between the ileum and the rectum + + + + + + + The act of recording an image of (using mri, x-ray, cat scan, ultrasound, etc.) + + + + + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + mutation of cells resulting in a cell line that can keep undergoing division indefinitely + + + + + + + act or process of detecting the presence of a specific antigen by the use of antibodies + + + + + + pain in the head + + + + + + Being mixed together + + + + + + + diminished sense of taste + + + + + + within the abdomen + + + + + + + produce a landslide + + + + + + + + good or cool + + + + + + having knees that + + + + + + + + + enter on a keyboard + + + + + + + + + + + + + regard with contempt + + + + + + + live to the end/completion + + + + + + + pulverization of kidney stones, gallstones, or similar + + + + + + + + + incorrectly assign a label or attribute + + + + + + + inaccurately assign a label or attribute + + + + + + + convert into or enrich with minerals + + + + + + + + + fire, lay off + + + + + + + make the characteristic noise of a cat, communicating like a cat + + + + + + + The act of typing incorrectly (on a keyboard/typewriter) + + + + + + make or become opaque, becoming opaque + + + + + + + act or process of diminishing loudness (of a sound) + + + + + + + + + control to too great a degree + + + + + + having multiple foci + + + + + + + forming into an outward pouch + + + + + + outnumber, or exceed in manpower + + + + + + + act or process of inhibiting or decreasing normal activity of bone marrow, resulting in fewer red blood cells + + + + + + inhibitive of normal bone marrow activity, resulting in fewer red blood cells + + + + + + + + poorly thought out, unworkable, inept, worthless, faulty, uncool + + + + + + + + + to stay overnight + + + to send by overnight mail + + + + + + greatly over-acted + + + + + + + + + + + + + affected by magic + + + + + + + + + incorporate a nitrosyl group into another molecule + + + + + + + + + split into periods, assign to a period + + + + + + in the vicinity of the rectum (may or may not include the rectum) + + + + + + having a normal head + + + + + + + + slangily hip, fly, rad, dope + + + + + + related to comedy + + + + + + two out of a division of three + + + + + + + + angry, irritable + + + + + + having abnormally low blood cell count + + + + + + + + removal of several organs, including: the head of the pancreas, the duodenum or part of the duodenum, the bile duct, the gallbladder, and sometimes other tissue + + + + + + + attach fatty acids to a membrane protein + + + + + + + The act of turning, rotating + + + + + + weasel out + + + + + + + arrive on unknown shore, reach land from water + + + + + + stick out, protrude + + + + + + unload, remove stuff + + + + + + to undo a ban + + + + + + acquire a tubular shape + + + + + + act or process of gathering into folds + + + + + + to vomit + + + + + + fiddle around with (phrasal) + + + + + + to teach again + + + + + + attach living tissue onto other living tissue, again + + + + + + act or process of putting forth again + + + + + + to apply a label again + + + + + + act or process of working out terms of agreement again + + + + + + act or process of performing surgery or operating again + + + + + + + + + to pretend not to know something + + + + + + of measureless depth (i.e. cannot be measured with a fathom line) + + + + + + to inch up, such as clothing that moves up the body as one moves + + + + + + the act of vaccinating again + + + + + + cook + + + + + + build or repair a road + + + + + + move on, or as if on, skates + + + + + + encounter + + + + + + causing growth of dense, fibrous tissue + + + + + + alternate expression of sell; put on sale, put up for sale + + + + + + board on sand, like snowboarding but on a sand dune + + + + + + weighing scales + + + + + + act or process of sowing, planting, inoculating, or funding (as with seeds) + + + + + + develop specific antibodies as a result of infection or immunization + + + + + + be very apparent + + + + + + act of moving or diverting + + + + + + spritz, spray, squirt + + + + + + (cause to) be more intelligent, quick, and/or stylish + + + + + + act of supporting with or as if with a splint + + + + + + spraypaint on a surface + + + + + + act of looking with eyes partly closed + + + + + + act or process of recloning part of a previously-cloned DNA segment into a new vector + + + + + + act or process of taking a smaller sample from a larger sample + + + + + + + + + to kill, cause death (used to evade online content filters) + + + + + + + + + to find again + + + + + + act or process of cutting or dividing across (often transversely); using a transect or moving along a straight path that runs across + + + + + + trade off, exchange + + + + + + the number 8 + + + + + + + speakers/writers, or the speaker/writer and at least one other person + so we believe there should be a highway leading directly from this Department to every school house in Michigan + + + speaker(s)/writer(s) and the person(s) being addressed + + + speaker/writer alone + + + + + + + dish of seasoned, skewered and grilled meat, served with a sauce + + + + + + + + able to do something + + + have the permit to do something + + + put into tins + + + fire (metphorical extension of 'throw away') + + + + + + intended to belong to, or be used by, or be used in connection with + + + with the object or purpose of + + + to the benefit of + + + to a duration of + + + in favour of + + + + + + away from the inside + + + + + + unspecified group + + + + + + color + + + + + + under; closer to the ground than + + + + + + + relation of spatial context + She found it was tucked under the desk + + + relation of heirarchy, authority, or importance + While under the supervision of his mentor + + + + + + Every person + + + + + + metaphysics term designating all that exists + + + + + + clothing for the legs and lower body + + + + + + if + + + + + + in the inner part, spatially; physically inside + + + + + + only under the following condition + + + + + + no person + + + + + + + infratentorial cancer located in the lower part of the brain, a type of primitive neuroectodermal tumor + + + + + + up to a point in time + + + + + + + artificial word for a lung disease, longest English word published in a dictionary + + + + + + clothing item worn when a human is swimming or near water + + + + + + + object used for cooking food + + + + + + Regardless of the place in, at or to which. + Wherever you go, I’ll find you. + + + + + + done without thinking, in a rigid manner + + + + + + (exclamation intended to scare) + + + (utterance expressing disdain, dissatisfaction) + + + + + + + + + delete + + + + + + + part of RDF; used with RDF literals to represent values such as strings, numbers and dates. The datatype abstraction used in RDF is compatible with XML Schema + + + + + + interrupting another + + + + + + sadly + + + + + + can not; am/is/are unable to + + + + + + + + + make pretty + + + + dress + + + + + + + + + blow wind + + + + + + + + + absorb or draw off liquid + + + + + + expressing relief + + + + + + expressing glee, excitement + + + + + + + type of spring + + + + + + indicating strong approval + + + + + + approximately + + + + + + expressing surprise + + + + + + Used to indicate pleasure or delight. + Oh goody, ice cream! + + + + + + + geological formation + + + + + + + + + dwindle. (no particle) + + + + + + pattern of bars or stripes intersecting at right angles against a background color, whether symmetric or not, whether woven or printed + + + + + + in a quirky manner + + + + + + indicates acknowledgment + + + + + + expression of gratitude + + + + + + + + + to apply teeth to something + + + to interlock + + + + + + with little drag from pushing through air + + + + + + + chemical used in agriculture, including pesticides, fungicides, herbicides, fertilizers, etc + + + + + + + a fuel that is produced through contemporary biological processes, as opposed to fossil fuel that was produced by prehistoric bio-geological processes + + + + + + + class of chemical compound + + + indicator of a biological state or condition + + + + + + + illegal bowling technique used to get a gritty batsman out by bowling at his body + + + + + + + motion picture film camera which also serves as a projector and printer + + + + + + study of the chemical composition of matter in the universe and the processes that led to those compositions + + + + + + + the study of snow and ice + + + glaciology + + + the science of refrigeration + + + + + + + + a non-binary person: someone who is outside or beyond the gender binary, not exclusively male or female + + + + + + dating using tree rings + + + + + + + study of woody plants + + + + + + + organism-ecology relation + + + study of adaptation of an organism's physiology to environmental conditions + + + + + + branch of physics + + + + + + traditionally associated with a discovery + + + + + + + organized energy + + + + + + + type of organism + + + + + + + agricultural worker + + + + + + + conversion or trending towards packing into, or transport by means of, containers + + + + + + relating to fluids + + + + + + + charity distributing food + + + + + + + form of ice cream + + + + + + relating to internal motion of a planetary body + + + + + + information about geography + + + + + + + underground water + + + + + + + + + person with excellent eyesight + + + + + + + contact for emergency assistance + + + + + + process of growing tissue or organ in the wrong place + + + + + + + medical condition + + + + + + having high body temperature + + + + + + causing immersion + + + + + + medical diagnostic technique + + + + + + creation of immune response + + + + + + + + + to make a mistake while typing on a keyboard + + + + link something to an incorrect category + + + + + + between communities + + + + + + between cultures + + + + + + connecting regions + + + + + + + one that cannot be defeated + + + + + + microscopic mechanical and chemical behavior + + + + + + + material with properties determined by structure rather than composition + + + + + + + very small mold to make microparticles + + + + + + + microscopic motor + + + + + + relating to microsurgery + + + + + + + + + apply a monogram + + + + + + + material with nanoscale features + + + + + + + nervous system disease + + + + + + study of genetics related to neurological disease + + + + + + imaging of brain function + + + + + + + ocean region near shore + + + + + + relating to an organic compound with a metal element + + + + + + + any person + + + + + + + the scientific study of bones, esp. human skeletal remains, found in archaeological sites; the branch of archaeology concerned with this + + + + + + + + bone formation + + + + + + study of parasites + + + + + + support for a parliamentary system of government + + + + + + relating to phonons + + + + + + study of light on living organisms + + + + + + medical branch dealing with tuberculosis + + + + + + + medical specialty + + + + + + + + + work with a prototype + + + + + + + a science concerned with the integration of psychological observations on behavior and the mind with neurological observations on the brain and nervous system + + + + + + medical specialty dealing with mentally-caused illness + + + + + + pertaining to quantum mechanics + + + + + + recovering from loss in some fashion + + + + + + + space vehicle + + + + + + + team of salespeople + + + + + + + state of having survived (continued to live) + + + + + + + + + + + use the telnet protocol to access another computer + + + + + + + anonymous web surfing tool that attempts to make activity on the Internet untraceable + + + + + + in an abbreviated manner + + + + + + + type of building + + + + + + similar to, reminiscent of + + + + + + + branch of medicine concerned with venereal diseases + + + + + + + in terms of, or by means of, reproduction + + + + + + absence of a gender identity + + + + + + + wire and pulley-based transportation system + + + + + + + adaptation again + + + + + + + event in which groups of software developers work at an accelerated pace + + + + + + branch of anarchism + + + + + + + the study of aphasia including its linguistic, psychological, and neurological aspects + + + + + + application of cybernetics in biology + + + + + + imitation of biological structures by artificial means + + + + + + + type of berry + + + + + + + government by corporations or corporate interests + + + + + + + art + + + + + + + craftsman fashioning tools or works of art out of various metals + + + + + + + book or electronic device for visitors to leave a note + + + + + + + type of protein + + + + + + + bonding enzymes + + + protein + + + + + + + type of guitar shaped like a lyre + + + + + + (of speech/tone) in a bitter/sharp manner + + + + + + in an acquiescing manner + + + + + + in an ambisexual manner + + + + + + third to lastly, lastly but two + + + + + + with upward/ascending motion + + + + + + so as to be obligatory (in a binding manner) + + + + + + so as to convey a challenge + + + + + + in a manner pertaining to chalk or chalkiness + + + + + + two days after today (2nd) + + + + + + in a deathless manner + + + + + + without fear/reverence, boldly/presumptuously + + + + + + By filching; thievingly. + + + + + + done in a manner that expresses clear and visual details + + + + + + increasingly + + + + + + in a welcoming manner + + + + + + vitally/intensely/vividly (in a living manner, as if living) + + + + + + incomparably/to an unequalled degree + + + + + + immeasurably/infinitely + + + + + + In an operose manner. + + + + + + in a pansexual manner + + + + + + fenologicznie + + + + + + in the beginning + + + + + + So as to prolong or lengthen. + + + + + + in a manner that can be quoted + + + + + + no matter what happens + + + + + + unrefined, not overly processed or complicated + + + + + + in a smokeless manner + + + + + + in a way relating to being spiritual + + + duchowo + + + + + + extremely hungrily (in a starving manner) + + + + + + in a straining manner + + + + + + appealingly/engagingly/pleasingly + + + + + + imprecatively, in damnation + + + + + + the aforementioned person or thing + + + + + + in a thrilling manner + + + + + + annoyingly/oppressively/tiresomely + + + + + + in a virological manner + + + + + + in a westward direction + + + + + + not exposed to/affected by wind (in a windless manner) + + + + + + + person with no cognitive disabilities or mental illness + + + + + + study of orchids + + + + + + + person who advocates pseudoscience + + + + + + + one who sanitizes + + + preparation designed to remove or kill micro-organisms + + + + + + + military use of cargo ships + + + + + + + type of enzyme + + + + + + + + + genus of viruses + + + + + + + class of enzymes + + + + + + + a partially divergent genome, particularly in viruses + + + + + + + natural polymers of high molecular weight secreted by microorganisms into their environment + + + + + + + use of sounds other than speech to convey information + + + + + + + + + route again + + + + + + + + + to imagine again or anew + + + + + + + + of, relating to, characterized by, or concerned with transformation and especially linguistic transformation + + + + + + + tree diagram used to illustrate the arrangement of the clusters produced by hierarchical clustering + + + + + + + sequence of binary digits, such as 00110010 + + + + + + + + + cause to become dense + + + + + + total of arrangements, activities, and inputs that people undertake in a certain land cover type + + + + + + + science that deals with the character, source, and mode of occurrence of underground water + + + + + + + + against + + + + + + + class of short biopolymers + + + + + + + + + to make clean or neat; to put in good order + + + + + + + + + to make a person appear more youthful + + + + + + + + + resend + + + + + + + + + to render brute-like + + + + + + + + + vengeance, payback + + + + + + + + + To delete or forget the address of some entity. + + + + + + + + + to make fine + + + to adorn, deck + + + + + + + + + to fix or restore something that was previously destroyed + + + + + + + layer of plant life growing above the shrub layer and below the canopy + + + + + + + disease causing abnormally positioned eyelashes + + + + + + + science of the study of plants in relation to their use by humans + + + + + + + Human disease + + + + + + + presence of more than one medical condition in a patient that may contribute to clinical progression of the primary disorder + + + + + + + point at which a system rapidly changes its behavior + + + + + + + tool used in systems development + + + + + + + the process of inserting a stent to prevent closure + + + + + + + restoration of blood flow in an ischemic organ + + + + + + + responsiveness or reactivity that largely surpasses the normal magnitude + + + + + + + medical treatment + + + + + + + sword made from diamond + + + + + + + Who ever: an emphatic form of who. + Whoever thought up that stupid idea? + + + + + + + + not presenting signs, indicating of + + + + + + + traditional Scottish dish + + + + + + + Idiosyncratic substitution of a word or phrase for a word or phrase that sounds similar + + + + + + rice used to make rice pudding + + + + + + having the same gender identity as assigned at birth + + + + + + propensity for further evolution + + + + + + is the clinical study of hormone fluctuations and their relationship to human behavior + + + + + + + condition in which an arterial spasm leads to vasoconstriction + + + + + + + any chemical compound having a ring composed of at least several atoms (usually minimum of 9–14 atoms) + + + + + + + the cellular lineage of a sexually-reproducing organism from which eggs and sperm are derived + + + the genetic material contained in this cellular lineage which can be passed to the next generation + + + + + + + increase a cellular response to a molecular stimulus + + + + + + + + unchanging + + + + + + + substance composed of oligomer molecules + + + + + + + any projection from the cell body of a neuron + + + + + + + protein in influenza A virus + + + + + + + vacuole to which materials ingested by endocytosis are delivered. + + + + + + + process of converting a polymer into a monomer or a mixture of monomers + + + + + + + class of chemical compounds + + + + + + the study of vaccines + + + + + + + graphic visual representations of information, data or knowledge intended to present information quickly and clearly + + + + + + + molecule or a portion of a molecule composed of amino-modified sugars + + + + + + + virtual perimeter for a real-world geographic area + + + + + + type of biofeedback + + + + + + + superpartner of the gluon + + + + + + + brother + + + friend + + + + + + fun; amusement + + + + + + مربوط به درمیان‌یاخته + + + + + + + specific way in which players interact with a game + + + + + + + The act of cross-correlation of something (a signal?) with itself + + + + + + + gender-neutral term to refer to kids + + + + + + numeral system + + + + + + + the appearance of being lightweight and light-footed while jumping + + + + + + + an explosive device planted just below the surface of the ground and designed to detonate when trigger by the weight of one walking on or driving over the device + + + + + + salutation of Italian origin + + + + + + sex or reproduction between two beings that share at least one genitor + + + + + + + concept that elevates heterosexuality over non-heterosexuality + + + + + + + container for making and serving coffee + + + + + + + writer + + + + + + + faithful and genuine love + + + + + + + + + kill by means of mounting on cross + + + + + + If what follows is not possible; without. + A large proportion of the females employed in other firms are said to have signified their intention of going on strike, failing a settlement. + + + + + + Facing, or across from. + There’s a bus stop opposite the faculty entrance, right on the other side of the road. + + + + + + Behind; toward the stern relative to some other object or position; aft of. + The captain stood abaft the wheelhouse. + + + + + + with the exception of + Nothing was to be sacrosanct or sacred, excepting reason itself. + We've all done it, not excepting Borja. + + + + + + away from + + + + + + Against; contrary or opposed to; in opposition or contrast to. + + + + + + Under, below, beneath. + Underneath the water, all was calm. + We flew underneath the bridge. + We looked underneath the table. + + + + + + In a straddling position on. + + + + + + Including both of (used with and). + I (can) both sing and dance. + Both you and I are students. + + + + + + Inasmuch as; in view of the fact that. + Seeing the boss wasn't around, we took it easy. + + + + + + Despite the fact that; although. + Though it is risky, it is worth taking the chance. + Astute businessman though he was, my brother was capable of extreme recklessness. + Actual perpetrators though they were, the criminals never admitted it in court. + + + + + + the same + + + + + + An expression of sorrow or mourning. + + + + + + Exclamation of surprise, pleasure or longing. + Boy, that was close! + Boy, that tastes good! + Boy, I wish I could go to Canada! + + + + + + Non-vulgar interjection expressing annoyance, anxiety, etc.; sugar, darn. + Oh, crud! I'm gonna be late for work! + Aw, crud! I have to start all over again! + + + + + + Indicating surprise at, or requesting confirmation of, some new information; to express skepticism. + A: He won the Nobel Prize yesterday. + B: Really? + A: You know, I saw Oliver the other day. + B: Really? What's he been up to? + + + + + + Thanks. + Ta for the cup of tea. + + + + + + intended to defend against air warfare + + + + + + give honor to, having received honor + + + + + + + work song of sailors + + + + + + + upper limit of what a biological system can produce in terms of natural resources or absorb in terms of waste + + + + + + + Criminalized activity that violates the principles of environmental justice + + + + + + + word with the same root and a related meaning + + + + + + augmentation of intelligence through the use of information technology + + + + + + + periodic change in the Sun's activity + + + + + + + preserved physical characteristics allowing reconstruction of past climatic conditions + + + + + + Power produced with lower carbon dioxide emissions + + + + + + removal of investment in companies involved in extracting fossil fuels to reduce climate change + + + + + + + current long-term trend for global sea levels to rise mainly in response to climate change + + + + + + + debt owed by developed countries to developing countries for the damage caused by their disproportionately large contributions to climate change + + + + + + + social movement for climate action + + + + + + + stratospheric phenomena of Earth + + + + + + for a time-span of three years in a row + + + + + + completely from the United States + + + exemplar of US values + + + + + + + interval immediately after a war + + + + + + + Chloropseidae, family of small passerine birds in South Asia and Southeast Asia + + + + + + + + + Lulus pemeriksaan. Memenuhi standar yang berlaku. + + + + + + condition of lacking consent + + + + + + + shortening of 'nanoscale robot' + + + + + + God willing (used mainly by Muslims or in Islamic contexts) + + + + + + + the theory or study of moral obligation + + + the doctrine that ethical status of an action lies in its adherence to a set of rules + + + + + + the branch of physics that deals with objects on molecular or smaller scale + + + + + + + fan of the television series Star Trek and/or derivative Works + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + availability of ecological resources + + + availability of economic resources + + + + + + + measure of the number of individuals of a non-native species introduced into a given habitat + + + + + + + structural unit of an organism that assists it in reaching the next stage in its life cycle + + + + + + + literary technique + + + + + + relating to prison + + + + + + of or pertaining to ornithology + + + + + + + class of vertebrates + + + + + + + + + person who rejects COVID-19 sanitary measures + + + + + + + + + to mark and save a place (especially by using a bookmark) + + + + + + fixing to + + + going to (do something) + + + + + + + + + to film a vlog (video blog) + + + + + + + + + an antisemitic person + + + + + + + substance used to accelerate a process or chemical reaction + + + + + + competitive team shooting sport + + + + + + + a man's anus + + + + + + attracted to females + + + + + + reflecting or involving gender differences or stereotypical gender roles + + + having a gender identity + + + + + + + one who is not limited to a single gender identity + + + + + + + + + to revert a previous ban + + + + + + of or relating to viverrids + + + + + + + one septillionth of a second + + + + + + practice of pretending to fall for online scams for the purpose of wasting the time of the perpetrators + + + + + + + symbol that represents disagreement or dislike + + + + + + + number that cannot be reasonably predicted + + + + + + + Any longhorn beetle of the subfamily Cerambycinae + + + + + + drunk + + + + + + + swimming at night + + + + + + that is at a reduced cost but lower quality + + + + + + utilizing the 5th generation standard of cellular mobile communications + + + + + + + parent of one's spouse + + + + + + collective term for learning opportunities and learning methods which function on the Internet + + + + + + + a symbol used in Ancient Egyptian hieroglyphy + + + + + + + + + كَان + + + + + + + Any beetle of the superorder Coleopterida + + + + + + + + + to make steady + + + + + + + any beetle of the Pyrochroidae + + + + + + + Varanus flavescens + + + + + + noval coronavirus + + + + + + + any of a variety of transportation systems relying on cables to pull vehicles along or lower them at a steady rate, or a vehicle on these systems + + + means of cable transport in which cabins, cars, gondolas or open chairs are hauled above the ground by means of one or more cables + + + + + + + any beetle in the family Lucanidae + + + + + + + any bacterium in the clade Terrabacteria + + + + + + + Anolis carolinensis + + + + + + + + Spinus psaltria + + + Carduelis psaltria + + + + + + erotic stimulation via contact between mouth and anus + + + + + + + دوا ساز + + + + + + incest between twins + + + + + + coal tar + + + + + + + a set of six numbers found on a cheque book, bank card, or bank letter showing which branch or office of a bank it relates to + + + + + + + office of a university that administers the accommodation buildings that are located within an uinversity and are intended to be used by students living on campus + + + + + + + show for the public where models wear new styles of clothes, usually organized by fashion designers to showcase their clothing + Carmelita had arranged to inspect her purchases by means of a private fashion show of carefully selected ​mannikins. + + + + + + against conservative + + + + + + + clumsy, oafish, or socially awkward person + + + + + + + + + of a nature relating to things + + + concerned with actual things + + + + + + interjection meaning "rubbish," "nonsense" + + + + + + unexpectedly sharing an unsolicited personal trauma story + + + + + + + + + to want something very much + + + + + + + icon associated with a particular website + + + + + + + act of having become numb + + + + + + + elastic band + + + + + + + music that blends punk rock and rockabilly + + + + + + + + group of eight children delivered together at the same birth + + + a group, series, or combination of eight related items + + + in music, a group of eight notes that are to be played or sung in the same time as six notes of equal value + + + + + + + a proponent or practitioner of brutalism + + + + + + shitty, bad, very poor quality, worthless + + + + + + + any scarab beetle of the genus Glycosia + + + + + + + any beetle in the superfamily Scarabaeoidea + + + + + + + Japanese art of flower arrangement + + + + + + + mucilage secreting hair found on some plants, specifically winter buds + + + + + + + study of ants + + + + + + + relating to iron + + + containing iron + + + iron coloured + + + + + + + + made up of blobs + + + covered with blobs + + + blob-like + + + + + + + job position that supervises the production of ad campaigns, and develop plans to increase sales for their clients' + + + + + + + sedimentary rock made up of fragments of preexisting rocks + + + + + + + person who actively promotes the idea that the Earth is flat + + + + + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + + + + + + resembling a bun + + + + + + + + a mammal in the family Hyaenidae + + + + + + + a member of the bird family Trochilidae + + + + + + + a bird in the family Anatidae + + + + + + + any owl in the family Strigidae + + + + + + + ruler, especially one of Iran, Turkey, or India + + + + + + + Notolabrus inscriptus, even when not green in color + + + + + + + + + to keep someone as a platonic friend, as opposed to a romantic relationship + + + + + + having multiple flowers of different appearances + + + + + + wearing a pigtail; always used before a noun + + + + + + + application of an electric shock in order to restore normal heartbeat + + + + + + + a tile used in mosaic + + + a small abacus or abaculus + + + border enclosing part or the entire pattern of a mosaic + + + a small tile + + + + + + + + + to estrange/alienate + + + to transfer ownership of property to someone else + + + + + + + court appeal + + + + + + + female baronet + + + + + + of or related to the bird family Phasianidae + + + + + + + silent breaking of wind + + + + + + of or relating to sideneck turtles in the family Chelidae + + + + + + + text produced for press + + + + + + unnecessary interruption of a woman by a man + + + + + + + walking about for amusement, entertainment; promenading + + + entertainment, spectacle, public amusement + + + + + + + + wealthy + + + + + + + peak protruding from surface ice sheet + + + + + + + + + + + + + to exercise caution + + + + + + having an additional economic value + + + + + + + repetition of short phrases or prayers in Islam + + + + + + equal in value to + + + deserving of + + + + + + + + + to commit suicide + + + + + + (call to someone at a distance) + + + + + + + belly + + + + + + (expression of excitement) + + + (expression of pride) + + + (expression of surprise) + + + (expression of irritation) + + + (expression of anger) + + + (expression of regret) + + + (expression of worry) + + + (expression of shock) + + + + + + + one subjected to a beating + + + + + + + branch of botany which deals with mosses; moss biology + + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + + + + + + branch of zoology that is concerned with the study of mites and ticks + + + + + + + the science of the therapeutic use of baths + + + + + + + + branch of entomology dealing with bees + + + + + + + branch of entomology and paleontology that deals with fossil insects + + + + + + branch of ichthyology and paleontology dealing with fossil fish + + + + + + + the study of mills and milling + + + + + + + branch of gerontology concerned with the biological processes involved in ageing + + + + + + + the study or practice of herbal medicine + + + + the science of herbs or plants; botany. Obsolete. rare + + + + + + material constituting textile fabrics + + + the type of something soft, rich, luxurious + + + + + + + children’s slide + + + + + + that’s mine! I want a share! + + + + + + illegal drugs + + + + + + + the study of musical instruments + + + the study of anatomical organs + + + the study of organs (the musical instrument) + + + + + + the study of the ecology of plant communities + + + + + + + + process of bringing something up to date + + + + + + + branch of anthropology primarily concerned with the comparative study of human evolution, variation, and classification especially through measurement and observation + + + + + + directed towards, approaching, reaching + + + + + + + a round, low neckline on a woman's shirt or dress + + + + + + + + person, human being + + + + + + + + Māori woman or wife + + + + + + + male monarch who takes throne during childhood + + + + + + + a person who specializes in hair and scalp care and treatment of associated conditions (such as hair loss and thinning) + + + + + + + specialization within professional psychology concerned with using psychological principles to enhance and promote the positive growth, well-being, and mental health of individuals, families, groups, and the broader community + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + the study of bats + + + + + + branch of mammalogy dealing with the rodents + + + + + + the study of marine mammals + + + + + + + the study of parts and the wholes they form + + + + + + + alleq + + + + + + psychology conceived as the study of the individual act especially for meaning and intent + + + + + + + psychology concerned with the purposive factor or force in behavior + + + + + + + branch of psychology that deals with the effects of normal and pathological physiological processes on mental functioning + + + + + + the psychology of races and peoples : folk psychology + + + + + + + any of a genus (Dasyurus) of small spotted carnivorous marsupials of Australia and New Guinea + + + + + + + deficiency in ability to pay attention or concentrate + + + + + + + branch of zoology that deals with spiders + + + + + + + a specialist in acridology + + + + + + + the science or theory of the good or goodness + + + + + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + + + + + + branch of climatology concerned with the impact of climate on agriculture + + + + + + + + the study of menstruation + + + + + + + the branch of neurology that studies epilepsy + + + + + + + the science of beer production + + + + + + + the study and collection of vehicle tax discs + + + + + + + the comparative study of the customs of nonliterate peoples + + + + + + + the study of the structure or function of the sensory organs + + + + + + + + the branch of zoology dealing with arthropods + + + + + + + the branch of science that deals with the composition of meteorites + + + + + + + the science of geology as applied to extraterrestrial objects and other planets + + + + + + + little + + + + + + + (gender-neutral singular pronoun in all grammatical persons) + + + + + + + the scientific study of language change over time; historical linguistics + + + (archaic): linguistics + + + (archaic): nomenclature + + + the definition and explanation of terms in constructing a glossary + + + the study of the tongue and its diseases + + + + + + + the rheological properties of a biological substance + + + the branch of rheology that deals with biological substances + + + + + + + subfield of ethnobotany that studies historical uses and social impacts of fungi + + + + + + + the science that focuses on how to protect and restore biodiversity + + + + + + + the tissue structure of an organism or part, as revealed by microscopic study + + + + + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + + + + + + sub-field within archaeology that uses sociocultural and archaeological research methods to understand how archaeological sites are created by living people + + + + + + + the scientific study of the bones of the horse; osteology of the horse + + + + + + + the study or science of humor + + + humorous speech, writing, or performance + + + + + + + the branch of botany which deals with aquatic plants + + + + + + + branch of zoology dealing with the mollusks + + + + + + + the art or practice of divination + + + + + + + intense fear or dislike of bees + + + + + + + + intense fear or dislike of bees + + + + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + + + + + + + + perspirating, covered in sweat + + + + + + + the study of mites + + + + + + + that area of knowledge that deals with the structure, development, and function of the oral tissues, their interrelationships, and their relation to other organ systems in both health and disease + + + + + + annoyed, unhappy + + + acting or thinking wildly, aggressively + + + in a difficult situation, under severe stress + + + drunk + + + unattractive, old-fashioned + + + performing superbly + + + craving an addictive drug + + + + + + + branch of psychology that deals with the psychology of language + + + + + + + a reductionist school of psychology that holds that the content of consciousness can be explained by the association and reassociation of irreducible sensory and perceptual elements + + + + + + + the science of mineral drugs + + + + + + + a form of technology that is less harmful to the environment than the usual or current form of technology + + + + + + + the branch of zoology that deals with malacostracans or (more generally) with crustaceans in general + + + + + + + the scientific study of the viscera + + + + + + + the study of the origins of things + + + government; the science of government + + + + + + + idle or vain speaking + + + + + + + the part of moral philosophy that deals with virtue, its nature, and how to attain it + + + + + + + general physiology + + + + + + + the study of oneself + + + + + + + the pseudoscientific study of bumps on the skull; phrenology + + + + + + + similarity, likeness + + + + + + + the science of diplomacy + + + + + + + the branch of herpetology dealing with lizards + + + + + + + the branch of zoology dealing with reptiles + + + + + + + the medical science concerned with diseases of the blood and related tissues + + + + + + + + cartography + + + + + + + the study of manuscripts as cultural artifacts for historical purposes + + + + + + + one who is allegedly "owned" by special interests or political groups + + + + + + + refers to any kind of deliberate plan of action + + + + + + + when lawmakers send letters to government agencies in an attempt to direct money to projects in their home districts + + + + + + + the branch of physics which studies motion; kinematics + + + + + + + natural theology as illustrated by the study of stones + + + + + + representing things by their pictures instead of by symbols + + + + + + + the study of the human mind by means of observation and experiment, rather than by deduction from general principles + + + + + + + + branch of biology which treats of the development and behaviour of a living creature as affected by its environment + + + + + + + the branch of physics that deals with the properties and phenomena of light; optics + + + + + + + lore or learning relating to the dead or to the spirits of the dead + + + + + + + a system of mythology concerned with the creation of the world + + + + + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + + + + + + an anthology of gnomes (collection of general maxims or precepts) + + + gnomic writing + + + + + + + technology whose use is intended to mitigate or reverse the effects of human activity on the environment + + + + + + a theory of ethics dealing with or based on the relation of duty to pleasure + + + + a branch of psychology that deals with pleasant and unpleasant states of consciousness and their relation to organic life + + + + + + + + + + to use weasel words : equivocate + + + to escape from or evade a situation or obligation — often used with out + + + + + + + the branch of linguistics that deals with the phonemic constitution and the phonological representation of morphemes + + + + + + + + theology based on myth; theology mixed with elements of popular myth + + + + + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + + + + + + the study of the minute structure of organisms + + + + + + not aroused + + + + + + + manufacturing technique in which parts having similarities in geometry, manufacturing process and/or functions are manufactured in one location using a small number of machines or processes + + + + + + + the study of idiom + + + + + + + the study or treatment of stammering + + + + + + + a branch of seismology that deals with the records of earthquake shocks registered in or near the region of disturbance + + + + + + + the branch of pathology concerned with diseases which are attributable to the effects of climate + + + + + + + a treatise on the art of assaying metallic substances, or on certain questions in obstetrics + + + the study of tests + + + + + + + the study of galvanism + + + + + + + study of fossil footprints and traces + + + + + + + + the science or study of the interactions among the members of a species, and between them and their environment + + + + + + + the study and treatment of speech and language problems + + + + + + + + the study or application of psychological methods and techniques useful in learning to speak a language + + + + + + + the study of the physiological systems involved in the production of speech + + + + + + + the branch of zoology which deals with zoophytes (any animal belonging to the (former) group Zoophyta, comprising certain sessile invertebrate animals, typically with a branching or radiating structure, such as crinoids, hydrozoans, sponges, and bryozoans) + + + + + + + the study of suggestion, a branch of parapsychology originated by a Bulgarian, Dr. Georgi Lozanov + + + + + + + branch of climatology + + + + + + + the observed geographic or temporal distribution of meteorological observations over a specified period of time + + + + + + + the ecology of freshwater ecosystems + + + + + + + the study of past human cultures with an emphasis on how humans interacted with the world's oceans, lakes and river systems + + + + + + + a form of performance poetry that combines elements of performance, writing, competition, and audience participation + + + + + + + the study of birds' nests + + + + + + + the scientific study of the structure and function of the placenta + + + + + + + physiology of the digestive system + + + + + + + a branch or system of theology in which God is regarded as a being, especially the supreme being + + + metaphysics; ontology + + + + + + + a study of social problems (such as crime or alcoholism) that views them as diseased conditions of the social organism + + + + + + + study of the physiology of lactation + + + + + + + the prime approach for explanation of world climates as integrations of atmospheric circulation and disturbances + + + + + + + branch of meteorology that deals with the description of the atmosphere as a whole and its various phenomena, without going into theory + + + + + + + the application of meteorological data and techniques to industrial, business, or commercial problems + + + + + + + the branch of learning that deals with the mind or thinking + + + the study of the spiritual or distinctively human aspects of humanity + + + (occasionally) a work on the mind or thinking (now historical) + + + + + + + the physics of the climate of Earth + + + + + + designed or planned so that people with disabilities are not prevented from using something + + + without anything such as a tax or limit that prevents trade between countries or companies + + + + + + that which is to come; in the future + + + + + + + technology applied to the modification of reproduction in humans and various other animals + + + + + + + the scientific study of marine-life habitats, populations, and interactions among organisms and the surrounding environment + + + + + + + prose, especially of a prolix, turgid, or impenetrable nature + + + + + + + the branch of zoology that deals with crustaceans + + + + + + + + + such that the natural homomorphism is an isomorphism + + + + + + + hypothetical iteration of the Internet as a single, universal, and immersive virtual world that is facilitated by the use of virtual reality and augmented reality headsets + + + + + + + fermented alcoholic beverage + + + + + + + + + subjective feeling of a decreased body temperature + + + + + + + technology designed with the needs of the largest amount of users in mind, in other words universal design + + + + + + + ideas and images which ascribe attributes to particular ethnic groups + + + + + + what amount? + + + + + + + plant of which the root is used to kill, paralyse, or stupefy fish + + + + + + + small building in a garden + + + + + + + a small bedside table or stand + + + + + + + a certain amount of time + + + + + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + + + + + + the aspect of pathology that deals with the geographical distribution of specific pathological conditions + + + + + + + the study of artifacts, features, sites, and site complexes within the broader spatial realms--both physical and meaningful--of past human experience + + + + + + + branch of sociology that studies institutions and social relationships within and largely controlled or affected by industry + + + + + + + the study of how weather impacts health + + + + + + + false Christology; an erroneous interpretation of the life and teachings of Christ + + + + + + + the study of spatial aspects of the archaeological record as a consequence of the activities of hominins at sites and in the landscape to understand, prioritize and integrate archaeological units into social and paleoenvironmental contexts and try to establish predictive models of territorial occupation + + + + + + + the branch of science dealing with statistics; the study or use of statistics + + + + + + + the science of elements + + + logic + + + the study of the principles of animal tissues + + + a system of therapeutics based on the study of the principles of animal tissues + + + + + + + a branch of biology that deals with the origin and development of acquired characters + + + + + + + + + possibly have, could have + + + + + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + + + + + + the study of the relationships between political, economic and social factors with environmental issues and changes + + + + + + + a discipline that combines microbiology, mathematics and statistics with the objective of creating models to describe and predict the growth or inactivation of microorganisms under a series of environmental conditions + + + + + + + + that cannot be described + + + + + + + the macroscopic assessment of pathology specimens + + + + + + + + part of science that deals with climate study based on the growth rings of trees + + + + + + + the science of tiroes + + + in quotations, used for Elementary knowledge + + + + + + + the branch of medical science concerned with venereal diseases + + + + + + + + a type of communication that takes place over the Internet when a client initiates a transaction by requesting information from a server + + + + + + + the study of social dialects; the study of linguistic variation between social groups or classes + + + + + + + a system of interactions and actors that, together, create a sustainable and successful service or experience + + + + + + + + + to put a blast furnace in operation + + + + + + be girthy, wide, dense + + + + + + be capable of producing great force + + + + + + that makes glad + + + + + + + + + to meet, assemble by prior arrangement + + + + + + + + + to plaster over with a cement made from shell-lime and sea sand + + + + + + + ski or pair of skis designed to skim water while wearer is towed by a motorboat + + + + + + + + + to make a eunuch of, castrate + + + + + + + + + to administer the rite of confirmation to + + + + + + + + + to act as a missionary, do missionary work + + + + + + + + + to put under oath + + + + + + moving or inclining at an angle to that indicated by "zig" + + + + + + marked with zones, rings, or bands of colour + + + + + + + + + to spray particulate matter with release of gas + + + + + + + + + to convert into albite feldspar + + + + + + + + + to impair perfection; to render imperfect + + + + + + + + + to weigh down too heavily, overload + + + + + + + + + to impair the regulation of a bodily process + + + + + + to be in a state of suspension + + + to be on punitive leave + + + + + + of or relating to aerobic exercise + + + of or relating to the heart; cardiovascular + + + + + + cardiovascular exercise + + + + + + + scientific consideration of diseases arising from debility + + + + + + + the anatomy of the cormus + + + + + + + newsagent’s shop + + + + + + + + + to convert to a binary form by reference to a threshold value + + + + + + + method of tying fabric to dye colourful patterns into it + + + + + + + + + to show verbal disrespect + + + + + + + bean cake made of fried black-eyed pea flour + + + + + + + (in compounds, denoting liquid used in fragrances) + + + + + + + type of evergreen tree known for its fragrant flowers + + + + + + + a fruit juice made from rehydrated dried plums + + + + + + + + + to convert into rock, lithic material + + + + + + + + a white glutinous edible mushroom (Armillaria mucida) that is a wound parasite on the beech + + + + + + (of a mineral) having a small portion of a constituent element replaced by ferrous iron + + + + + + + sexual intercourse with a woman + + + a woman, or women, viewed as a source of sexual gratification + + + the human vulva + + + + + + + a brood or litter, especially of kittens + + + + + + + + + to order again; to purchase in advance + + + request before needed + + + + + + clumsy, awkward + + + unwieldy; bulky or awkward + + + inept or thoughtless; boneheaded + + + + + + + organic compounds that readily evalorate + + + + + + shaped like a sword + + + of or relating to the xiphoid process + + + + + + + the xiphoid process + + + + + + + lacking zest + + + + + + + alcheringa; dreamtime, everywhen + + + archetypal supernatural beings of the alcheringa + + + + + + + the practice of gesturing with one's cane or walking stick in order to convey a meaning + + + + + + + dish + + + + + + taken apart, dismantled + + + + + + + someone who competes in the high jump + + + + + + upward + + + + + + + instance of examination + + + + + + + act to grab + + + + to capture, obtain, taking hold of + + + + + + + act to hint + + + + + + that wilts + + + + + + + whinging, complaining + + + + + + + + + to look, feel, or act sullen or despondent + + + to be or become overcast + + + to loom up dimly + + + to make dark, murky, or somber : make gloomy + + + + + + + a toxic, yellow, water-insoluble powder, ZnCrO₄, used as a pigment + + + + + + contriving, scheming + + + + + + that has been estimated + + + + + + + act to laugh; instance of laughter + + + manner of speaking + + + + + + + engineering that deals with the application of design, construction, and maintenance principles and techniques to the ocean environment + + + + + + + gallbladder + + + + + + + description of skulls + + + + + + + a branch of knowledge the name of which ends in -ography + + + + + + pertaining to a plant disease that causes a relatively constant amount of damage each year + + + + + + + emissivity + + + + + + each of two or more populations of a species that can interbreed without a decline in fertility + + + + + + + superfix + + + + + + + variety of speech, language + + + + + + + mode of thought which considers things from a scientific viewpoint + + + + + + + city that is overdeveloped and economically non-productive + + + + + + + ester or salt of palmitic acid + + + + + + + rod of organic substance forming a supporting axis for the body of many flagellates + + + + + + serving to warn or alarm (of colours, markings) + + + + + + + process of performing an amperometric titration + + + + + + + rope by which the buoy is fastened to anchor + + + a woman’s pigtail + + + + + + relating to, or involving biorhythms + + + + + + + recurring cyclic variation as part of a biological system + + + + + + trousers made of blue denim + + + + + + + collection of related media packaged and sold together in a box + + + + + + + one who writes an order for goods + + + + + + + type of passenger-carrying hydrofoil propelled by a jet engine + + + + + + + amount of money held in a bank account + + + + + + vertically upward : in an upright position + + + + + + + the act of giving a racial character to someone or something : the process of categorizing, marginalizing, or regarding according to race : an act or instance of racializing + + + + + + by violent means + + + under compulsion + + + + + + + change of place, position, or state + + + action of changing residence + + + + putting forth strategic effort for a goal + + + impelled action + + + act or process of affecting emotionally + + + act or process of attacking + + + + + + resembling an ogre + + + + + + + a work number assigned to a musical composition or set of compositions to indicate the order in which the composer published them + + + + + + + + + to give a pittance to; to provide with a (small) allowance. Chiefly in passive + + + + + + + two species of forest bird in the genus Callaeas which are endemic to New Zealand + + + + + + + + + + + a person who persistently pesters, annoys, or complains + + + + + + + small Andean stringed instrument of the lute family + + + + + + + an area which has been reseeded + + + + + + + coat worn for horseback riding + + + + + + + animal that yelps or gives a sharp shrill cry + + + + + + within, towards the inner part + + + + + + + + + to go, march, step + + + to hang + + + + + + to be truthful + + + + + + + repositioning of ureter to different location on bladder + + + + + + + cohesion of particles of solid material to form a compact mass or crust + + + process of fat infiltration + + + + + + + + + to furnish with timber + + + + + + + + + to set apart + + + + + + + + + + to put out of existence + + + + + + + unusually comprehensive or wide-ranging legal injunction + + + + + + + + + to act coorperatively or in cooperation + + + + + + + + + to furnish or adorn with tassel(s) + + + + + + + + + to assist or supervise in using a toilet + + + use the toilet + + + + + + + + + to travel often and widely + + + + + + + + + to protrude through an abnormal body opening + + + + + + + + + to take luncheon; to eat lunch + + + + + + + + + to engage in log-rolling + + + + + + + + poor, pathetic, innocent + + + + + + + + to get in touch with me; to contact me + + + + + + + + + to perform a lobotomy on + + + + perform a lobotomy on + + + + + + + + + to victimize again + + + + + + fair and just relations between the individual and society + + + + + + + + + to make sensitive to ionizing radiation + + + + + + + + + to impose racial interpretation on + + + + + + + the egg of the ostrich + + + + + + + one-sided relationships, where one person extends emotional energy, interest and time, and the other party, the persona, is completely unaware of the other's existence + + + + + + + + dark + + + + + + + decking or tricking out, personal adornment + + + + + + + chilled glass or can of beer + + + + + + + + + to make someone appear stupid; to make a fool out of + + + + + + + a garden (especially in an urban area) maintained by the members of a community + + + + + + + + resembling a ghost + + + + + + + one who plays the kazoo + + + + + + + + the action of spoiling; the stripping (a person) of his or her clothes or of his or her spoil; a stripping off or removal + + + + + + a computing environment where technology is seamlessly integrated into everyday objects and environments, becoming virtually invisible yet omnipresent, enabling seamless interaction and communication + + + + + + + a firearm made by a private individual, in contrast to one produced by a corporate or government entity + + + + + + + + a complex and utterly disordered and mismanaged situation : a muddled mess + + + + + + figure skating especially in competition in which the skater executes skating figures or steps in an arrangement of his own devising to music of his own choice + + + + + + + an instance of recording information mechanically or electronically + + + + + + + act towards an entity in a certain manner, assumption that something has a particular attribute + + + act or process of treating medically + + + act or process of affecting a change in something by applying a substance + + + act or process of buying for someone + + + act or process of handling (especially scholarly) + + + + + + under obligation to pay + + + + + + + + + to fix, tidy; to smarten up + + + + + + relating to or resembling vampires; vampiric + + + + + + + + + + + + + a large South African sciaenid food fish + + + + + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + + + + + characteristic of or resembling a nincompoop; foolish, simple-minded + + + + + + + a pair of stereoscopic pictures or a picture composed of two superposed stereoscopic images that gives a three-dimensional effect when viewed with a stereoscope or special spectacles + + + + + + annoying, troublesome, disruptive + + + + + + help, ease, get rid of, make feel better + + + + + + + pain in a phantom limb (or other phantom body part) + + + + + + + + + to classify again + + + + + + Portuguese-speaking + + + + + + + act of serving as a host + + + + + + + work out terms of agreement + + + + + + + driving around in a vehicle + + + + + + substitute + + + + + + + giving + + + to emerge during birth + + + to appear in a clinical setting + + + + + + + unsuccessful finish in a struggle + + + + + + + + + to recruit by headhunting + + + + + + + the quality of being noteworthy + + + + + + + where alleles (DNA markers) occur together more often than can be accounted for by chance because of their physical proximity on a chromosome + + + + + + + a rhombic vestment usually of stiff material worn by a bishop or certain other ecclesiastical dignitaries on the right hip as a sign of authority and rank + + + + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + + + + + + the presence of a pathogenic variant that is confined to the ovaries or testes, occurring when some of the sperm cells in the testes or some of the egg cells in the ovaries carry a pathogenic variant that is not found in other cells of the body + + + + + + + + + to suspect + + + + + + + teaching + + + + + + take aim at + + + + + + + a topic-defined field largely pursued by psychologists studying the mass media in academic departments other than psychology; draws on cognitive psychology, social psychology, and developmental psychology + + + + + + + the process or result of an image appearing blocky or blurry, often because individual pixels become visible + + + + + + nearly, almost + + + + + + (archaeology) not producing, having, or including pottery + + + + + + + implementation + + + + + + + + + to cheat; to refuse to pay + + + + + + + a drug that lowers blood calcium + + + + + + containing ice + + + + + + + one who determines sex, especially of animals + + + + + + + act of separation + + + + + + + + + to speak indiscretely; to blab + + + + + + + + + to systematically decrease the quality of an online platform driven by greed + + + + + + fractional currency + + + money, funds + + + + + + + the state of being triploid + + + + + + + build up: cause to be bigger + + + + + + + leak, let forth water sparingly, letting water through accidentally or because of damage, let forth + + + + + + + begin, cause to begin + + + + + + + journal publically and electronically, online journaling + + + + + + + use, overuse + + + + + + + woman’s breast; booby + + + + + + + the application in the evolution of an alphabet of a pictorial symbol or hieroglyph for the name of an object to the initial sound alone of that name + + + the naming of a letter by a word whose initial sound is the same as that which the letter represents + + + + + + + arachnology, the branch of zoology that studies arachnids + + + + + + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + + + + + + to telephone + + + + + + provide a basis for + + + + + + + a type of topology that is defined on a fiberwise space, which is a pair (X, f), where X is a topological space and f is a map from X to a base space B + + + + + + + stereotypically masculine individual working in technology + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route beforehand and pre-placed protection + + + + + + + the science of fire or heat; specifically the branch of chemistry concerned with the properties and (especially analytical) use of fire + + + + + + + the study of sphagnum mosses + + + + + + + the study of the relationship between the chemical structure of a compound and its biological action + + + + + + + a collection of subsets of a set ( X ) that includes the empty set, and is closed under any unions (even infinite ones) + + + + + + + person who shares accomodations; chambermate + + + + + + + any large lizard of the Old World + + + monitor lizard + + + + + + + + one versed in zymology + + + + + + + a type of topology on a directed set where a subset is open if it contains all elements greater than some point — that is, it includes a "tail" of the set + + + + + + + a field of biology that combines the disciplines of evolutionary biology and developmental biology to study the relationship between evolution and developmental processes and mechanisms + + + + + + + the study of islands + + + a study of islands + + + + + + + a disingenuous or insufficient apology : a statement that is offered as an apology but that fails to express true regret or to take responsibility for having done or said something wrong + + + + + + appertaining, accompanying, concomitant + + + + + + + to be or place in a resting position + + + + + + recommend, send + + + + + + + + + state guilt or innocence, give a plea in court, misspelling of plead?, give an answer, reply to charges, usually in court + + + + + + broken off suddenly/cut off/curtailed + + + undergone abruption (e.g. of a placenta) + + + + + + + a branch of clinical medicine concerned with human teratology + + + + + + + given a quotient map between two spaces, the quotient topology is the topology induced by this map on the codomain + + + + + + + a quasitopology on a set X is a function that associates to every compact Hausdorff space C a collection of mappings from C to X satisfying certain natural conditions + + + + + + exclude + + + + + + + the part of anatomy which relates to the tendons + + + + + + + technical histology concerned especially with preparing and processing (as by sectioning, fixing, and staining) histological specimens + + + + + + + the influence of word structure (morphology) on the process of translating text from one language to another + + + + + + + act/process of disposing, tearing apart + + + + + + + act of making aware + + + + + + + the study of microscopic animals + + + + + + act of throwing randomly perhaps underhand or casually + + + + + + + the study of literacy, reading, and related psychology disciplines + + + + + + + act/process of collecting together, often to merge resources (e.g. money) + + + + + + + + + to make people do what one wants by using (their emotions, fears, concerns, etc.) in an unfair way + + + + + + + + in unfortunate circumstances/condition + + + + + + + the application of psychological methods and results to the solution of practical problems especially in industry + + + an application of technology for psychological purposes (as personal growth or behavior change) + + + + + + + systematic arrangement of synchronous events + + + + + + + the general principles, strategies, and practices used by teachers to facilitate learning in students + + + + + + + vocalize like a dog + + + + + + + act or process of appealing, attracting, indulging, placating + + + + + + + cause to reject + + + + + + + matching a speaker's lips to an audio recording + + + + + + + a branch of medical technology that is concerned with the design, preparation, and fitting of usually non-weight bearing, highly realistic prosthetic devices (as an artificial eye or finger) to individual specifications and with the study of the materials from which they are fabricated + + + + + + + the branch of pathology dealing with the microscopic study of changes that occur in tissues and cells during disease + + + + + + of or pertaining to autosegments + + + of or pertaining to autosegmental phonology + + + + + + + movement within the museum field that emerged in the late 20th century, emphasizing community engagement, social responsibility, and a more inclusive approach to museum practice + + + + + + + technology that transmits radio frequency signals over electrical conductors like power lines; a method of sending audio or data using the existing electrical infrastructure of a building or area + + + + + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + + + + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + + + + + + Sophianism, a theology or system of thought based on divine wisdom + + + + + + + phrenology of dogs + + + + + + + the science of jawbones + + + + + + + the act of changing or altering the structure, style, or form of something + + + + + + + + + consider fully + + + + + + + crack up: cause hilarity, causing hilarity + + + crack up: go crazy, go crazy + + + + + + + act of becoming associated with + + + + + + + fill in, to complete + + + + + + (cause to) become dizzy + + + + + + + act or process of collecting, accruing (phrasal variant) + + + + + + + misunderstanding + + + + + + a style in art reflecting Japanese qualities or motifs + + + an object or decoration in japonaiserie style + + + + + + + head-covering worn to protect hairstyle + + + + + + suppressing coughs + + + + + + + a period of emotional turmoil in middle age characterized especially by a strong desire for change + + + + + + + The act of making a 'whoop' sound. + + + beating + + + + + + earn profits + + + + + + + act of firing, the termination of employment + + + + + + bruise, causing to become or becoming bruised + + + + + + + + + select only the best + + + + + + to be full of or afflicted by + + + + + + + + + grab quickly away from someone + + + + + + + activity of shining boots and shoes + + + + + + + + + + to initiate a conversation + + + + + + bring your own bottle + + + bring your own beer + + + bring your own booze + + + bring your own bud + + + + + + + shorthand for the hull-kernel topology; a standard topology used in commutative algebra and functional analysis, especially in the study of rings and operator algebras; the topology placed on the set of ideals of a ring (often prime ideals or primitive ideals) by relating two dual notions: the hull of a set of ideals = the set of elements common to all those ideals (an intersection), the kernel of a set of ring elements = the set of ideals containing those elements + + + + + + + physician specializing in urological problems affecting women + + + + + + + the act of divulging or publishing abroad + + + + + + + (as a term of endearment) a cute person; a cutie + + + + + + + act of causing motion, act of attempting to cause motion + + + + + + + a foodstuff (such as a fortified food or dietary supplement) that provides health benefits in addition to its basic nutritional value + + + + + + + any one of a group of alcohol-soluble proteins that function as storage proteins in maize kernels + + + + + + + a zebroid that is the offspring of a zebra stallion and a horse mare + + + + + + + one billion years + + + + + + of, relating to, or capable of speed equal to or exceeding five times the speed of sound + + + + + + + a mass of ash or other loose, solid material which travels down the flanks of a volcano and along the ground during an eruption + + + + + + marry again + + + + + + + fight + + + + + + + The process of joining in a subordinate manner, acting as a subordinate associate + + + + + + + act of moving people, troops, or goods by air (as in a war) + + + + + + lacking kidneys; without functioning kidneys + + + + + + to form or be formed of angles + + + + + + seismically inactive + + + + + + movement, interstellar + + + + + + + tendency to avoid + + + + + + + thoroughly punish, put in place + + + + + + + + + to hit, completive + + + + + + + + + to emit, spew + + + + + + relating to or bringing about the settlement of an issue or the disposition of property + + + + + + emotionally detached + + + not feeling interested or involved in something + + + + + + + the quality of being disengaged; freedom from ties, engagement, obligation, or prepossession + + + + + + + a generative linguistic theory that posits that word formation is a syntactic process, not a separate lexical one + + + + + + + a refinement of the standard cohomology groups of a manifold, particularly a compact Kähler manifold, defined as a specific subspace of the total cohomology and is central to Hodge theory and the Hard Lefschetz theorem + + + + + + + process of making cancerous + + + + + + + surgical incision into the abdomen + + + + + + + parenting + + + + + + + The act of making stone like through calcification literally or figuratively + + + + + + to be cheated, get the short end of the stick + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + imaging exam of the colon + + + + + + + growing of a blood vessel that serves the same end as another vessel that cannot adequately supply that organ + + + + + + To be structural configured, esp. of atoms, animals + + + + + + + simultaneously transfect with two, unrelated nucleic acids, one of which carries a marker gene + + + + + + + + + scare + + + + + + scare + + + + + + + meeting place of Buddhist monks + + + Buddhist monastery + + + + + + Being decoded, deciphered + + + + + + + + + remove covering of a seed + + + + + + + process of removal from a locality + + + + + + + + + remove feather + + + + + + + act of living in or retiring to a den + + + + + + + + + remove gum + + + + + + spicy sausage made of beef and lamb, and coloured with red peppers, originally made in the French colonies of North Africa + + + + + + + + + (cause to) lose color + + + + + + + + + remove tassel + + + + + + + currycel + + + + + + + mentalcel + + + + + + + decry, express low opinion of + + + + + + + + + introduce american currency + + + + + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + + + + + + + + continue dreaming + + + + + + + + inclined to brawl + + + characterized by brawls or brawling + + + + + + for use in grading/digging/ground-shaping operations + + + of great significance + + + + + + + The act of listening surreptitiously + + + + + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + + + + Being able to induce vomiting + + + + + + characteristic of a paticularly whiny form of punk rock + + + + + + + The act of dispersing in an emulsion + + + + + + + remove a tube from + + + + + + + + + cause to create an abnormal passageway + + + + + + + + + intentionally touch, phrasal + + + + + + in favor of, supporting + + + + + + + work independently on temporary contracts, working independently + + + + + + + + + pick by hand + + + + + + + insertion of a hand (or fist) into an orifice (for example, the vagina or anus) as part of sexual behavior + + + + + + relating to or involving the sexual practice of inserting a hand into a partner's body + + + + + + personal pronoun + + + + + + + inaccessible place + + + building containing trophies erected by Artemisia (fl. C4 BC) in Rhodes, closed to all but a select few + + + + + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + + + + + heavy timbers forming the frame (typically left exposed, especially for decorative effect) of a house, wall, or storey, the gaps in between the timbers being filled with any of various materials such as bricks, wattle and daub, etc. + + + boarding added to a house to give a similar decorative effect + + + + + + + Shipbuilding. Each of a number of timbers in a ship's frame which do not cross the keel, but have their lower ends butted against the centreline timbers, typically used at the ends of the ship, and able to be arranged at angles other than a right angle to the keel. + + + Architecture. Each of the timbers used in constructing a half-timber building; (also) a timber used decoratively on a building to give the appearance of half-timber construction. Usually in plural + + + + + + + lose (blood) quickly + + + + + + + treat with heparin anticoagulant + + + + + + Being linked to another thing or more things together + + + + + + within the thorax + + + + + + + free; release from captivity, particularly with intent to harm another + + + + + + + + + communicate poorly, or failingly + + + + + + + communicate poorly, or failingly + + + + + + + + + to route incorrectly + + + + + + + printing text too small to be seen by the naked eye + + + + + + + small scale agglutination of red blood cells + + + + + + + + + match people together, usual romantically + + + + + + + + + bringing to market or open-market-style managment + + + + + + of or relating to lysis or a lysin + + + + + + + + + stir up, confuse, completive + + + + + + having only one form + + + + + + + act or process of mud, or mud-like material, and water flowing as a stream or river down a slope; mudspate; lahar + + + + + + not tested + + + + + + + + + flood with too much + + + + + + + + + CAUSE a fit, such as in a complex model + + + + + + + + + coat to protect from corrosion + + + + + + + + + attacking with napalm + + + + + + + + + to oppose or deny + + + + + + + + + + spray with mace (or similar) + + + + + + in the vicinity of or relating to the portal vein + + + + + + + player of game in midfield position + + + + + + + organization + + + + + + + composition or writing of songs + + + + + + experiencing partial paralysis + + + + + + + become a parasite to a host + + + + + + + + + to plug or cause blockage + + + + + + + + + zipcode + + + + + + use the Yahoo search engine or website + + + + + + spend the winter + + + + + + beat + + + + + + skype, video chat + + + + + + not accomplished with difficulty + + + + + + predict to be less than is true + + + + + + set into type + + + + + + ignore, pay no heed to + + + + + + act of drinking or celebrating before an event or outing + + + + + + make beforehand + + + + + + state before another occurrence + + + + + + to drain + + + + + + the act or process of concentration into one location + + + + + + inform again + + + + + + ingest again + + + + + + to enhance appearance (by landscaping) again + + + + + + act or process of binding again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + + + + hit with radiation again + + + emit or project, again + + + + + + reassess the progression of a disease + + + + + + check (for), examine (again), check for or examine, again + + + + + + the act of resending again + + + + + + splitting, developing a fissure + + + + + + render into pieces + + + + + + to defame, bring shame, or publicly disgrace + + + + + + at a pace of about 120 steps per minute + + + + + + to hold as one's own identity, regard oneself as belonging to a particular group + + + + + + eccentric, idiosyncratic; erratic, random + + + + + + + cover with a shawl + + + + + + act or process of ascension or descension + + + + + + to leave quickly + + + + + + to impale, as if on a spike or spindle + + + + + + make a spoon-like formation (cuddle?) + + + + + + begin to harangue + + + + + + deflect an opponent using straight, stiff arms (maybe metaphorical) + + + + + + to remove + + + + + + to examine closely + + + + + + to work remotely usually via computer + + + + + + act or process of converting a greyscale image to a binary image + + + + + + trail off: come to an end + + + + + + deviating, diverting from a straight/right path (that swerves) + + + + + + + dance hall; venue for dancing + + + + + + + a person, referenced derisively; buffoon + + + + + + + a little, a small amount + + + + + + cardinal number between 19 and 21 + + + + + + + what person + + + person or people that + It was a nice man who helped us. + + + + + + which mode + + + + + + the number 3 between two and four + + + + + + + single person, previously mentioned, of unknown or non-binary gender + + + group of people, animals, plants or objects previously mentioned + + + some people; someone + + + + + + + (first-person singular personal pronoun) speaker or writer of a sentence + That belongs to me, not you. + I am Ozymandias, King of Kings! + + + + + + inanimate object or animal + + + child of unknown gender + + + referring to the situation in general + + + single, specific person + + + + + + to be obligated + + + + + + (word used with the present form of a verb to mark it as being an infinitive) + + + + + + referring to a thing or things that exist + + + + + + above, higher in altitude + + + + + + + + more than a few + + + + + + One more further, in addition to the quantity by then; a second or additional one, similar in likeness or in effect. + Yes, I'd like another slice of cake, thanks. + + + + + + A word used to show agreement or acceptance. + + + + affirmative option provided in a binary vote + + + + + + Earlier than (in time). + I want this done before Monday. + + + + + + spatial position in relation to two objects, on each side of the subject + + + + + + Having been determined but not specified. + Certain people are good at running. + + + + + + other, different + + + + + + within the interior of something, closest to the center or to a specific point of reference + + + + + + because + + + + + + not including + + + + + + + person who is unrefined or unsophisticated + + + + + + + initiative to increase goat inclusion and awareness + + + + + + + device for cutting wood into small pieces + + + + + + + one of the longest single-word palindromes in the English language + + + + + + Used in scholarly works to cite a reference at second hand + Jones apud Smith means that the original source is Jones, but that the author is relying on Smith for that reference. + + + + + + according to the type and power of units + + + + + + + + + design something structural + + + + + + + + + to confine (usually in a small space) + + + + + + using instruments + + + + + + + + + dig a hole + + + + + + request for confirmation + + + + + + + + + offset of local time from UTC + + + earth region with a particular time standard + + + + + + denoting thoughtfulness + + + + + + Expression of awe, terror, surprise or astonishment + + + + + + something belonging to + + + + + + + + + remain unsettled; wait + + + + + + + + + to send an SMS message from a mobile phone + + + + + + to + + + + + + relating to sound waves that have been electronically recorded, transmitted, or reproduced + + + + + + + dance + + + + + + difference + + + + + + + genomic repeat analysis + + + + + + + + + to rouse or disturb someone + + + + + + + + + unpeg + + + + + + + the application of modern technology to agriculture + + + + + + + + vegetable oil- or animal fat-based diesel fuel + + + + + + study of chemical cycles of the earth that are either driven by or influence biological activity + + + + + + one thousand million + + + + + + + + type of government department in Imperial Russia, established in 1717 by Peter the Great + + + + + + + situation when futures prices are above the expected spot price at maturity + + + + + + + any bird in the family Corvidae + + + + + + + + + select art, food or other items for display + + + + + + + wind storm + + + + + + + + + burn from compression rather than a spark + + + + + + + northern region of US state + + + + + + natural number + + + + + + field of engineering + + + + + + + term in cell biology + + + + + + relating to federalism + + + + + + + + + undergo fibrosis + + + + + + + The covalent attachment and further modification of carbohydrate residues to a substrate molecule. + + + + + + chemical or geological term + + + + + + study of gems + + + + + + pertaining to geochemistry + + + + + + branch of geology + + + + + + interdisciplinary field + + + + + + geographic information processing + + + + + + + + + swivel about a gimbal support + + + + + + related to sugar in food + + + + + + + study of life in water + + + + + + fluid mechanics of water + + + + + + relating to high pressure + + + + + + + device that can be implanted + + + + + + exchanging between different transportation modes + + + + + + flat and thin + + + + + + involving use of a laparoscope + + + + + + + brain disorder + + + + + + saving lives + + + act involving rescue, resuscitation and first aid + + + + + + symbiotic arrangement + + + + + + study of metabolites + + + + + + pertaining to microchemistry + + + + + + miniaturized devices + + + + + + having nanoscale structure + + + + + + relating to naturopathy + + + + + + relating to neurodegeneration + + + + + + able to function without damaging anything + + + + + + pertaining to oceanology + + + + + + incorporating optical and electronic elements + + + + + + + + + initialism for "Laughing Out Loud" + + + + + + + + + + travel excessively fast + + + + + + + physiology of disease causation + + + + + + + + biochemical process + + + + + + pertaining to the kinetic effects of light + + + + + + study of creation and manipulation of photons + + + + + + + medical specialist + + + + + + relating to a presbyter + + + + + + + medical specialty involving lungs + + + + + + + + medical specialist in pulmonology + + + + + + + surgery using radiation + + + + + + application of spectroscopy in chemistry + + + + + + + specialist in stomatology + + + + + + + line of fluid flow + + + + + + under the sea + + + + + + + study of causes and other aspects of suicide + + + + + + study of certain nonequilibrium systems + + + + + + + type of molecule + + + + + + appealing to or stimulating the appetite + + + + + + from within/the inside + + + + + + in a manner that lasts (over a long period of time) + + + + + + railroad track construction + + + + + + transcending the personal + + + + + + extremely low weight + + + + + + receiving insufficient service + + + + + + + + + disconnect a latch + + + + + + + + + make new + + + + + + + using an item again after it has been used, instead of recycling or disposing + + + + + + + catholicos, high-ranking bishop + + + + + + + digital medium of exchange + + + + + + + person, usually a coffeehouse employee, who prepares and serves espresso-based coffee drinks + + + + + + + heraldic memorial to a deceased person + + + + + + + type of scientist + + + + + + + type of rice + + + + + + + type of house in Provence + + + historic fortified town in France + + + + + + semiotics in a biological context + + + + + + + low quality diamond + + + + + + data-driven chemistry research + + + + + + + person who contributed to founding an organization + + + + + + + type of guitar + + + + + + + animal adapted for running + + + + + + + organism that lives on the surface of another organism + + + + + + + promotion of the esoteric + + + + + + + printed interactive story + + + + + + + type of sauce or edible glaze + + + + + + + type of food item + + + + + + + subgenre of techno + + + rubble or broken bricks or stone used as a foundation + + + + + + + first-level administrative division in several countries + + + + + + + bond-breaking enzyme + + + + + + + cell undergoing a type of transformation + + + + + + + process of adding a methyl group + + + + + + + smallest type of automobile + + + + + + + main circuit board of a computing device + + + + + + in an abrasive manner + + + + + + in an abridged manner (briefly/concisely) + + + + + + in an engrossing or riveting manner + + + in a manner of taking in/soaking up/etc. something + + + + + + usually; generally; ordinarily; used for saying what usually happens + + + + + + in accordance with expectations + + + + + + 彆扭 + + + + + + unsuccessfully/unprofitably/uselessly (without success/advantage) + + + + + + without cause or reason + + + + + + in a comfy way; comfortably + + + + + + without comfort (in a comfortless manner) + + + + + + in a conscienceless manner + + + + + + with a creamy tint or surface; in a creamy or smooth manner + + + + + + done in a manner that has loud and muffled sounds + + + + + + in a dancing/capering manner + + + + + + in a detailed way, in a way that goes through small aspects of a thing + + + + + + in a dorky manner + + + + + + in an envying manner + + + + + + in a homeless manner + + + + + + in an impolitic manner + + + + + + with small changes over time + + + + + + with secret machinations (in an intriguing manner) + + + + + + gloomily + + + + + + during the late hours of yesterday + + + + + + with a boring delivery + + + + + + in a lonesome manner + + + + + + in a mistakable manner + + + + + + with regard to a neuron or neurons + + + + + + continuously/without interruption + + + + + + having/expressing no passion/enthusiasm/excitement + + + + + + following hospitalization, after one has been released from a hospital + + + + + + in a pouring manner + + + + + + in the manner of a psychopath + + + + + + in a racist manner + + + + + + in a seamless manner + + + + + + arrangement of people or items to the side of one another, facing the same direction + + + + + + without the ability of sight + + + + + + extremely well + + + + + + in a spineless manner + + + + + + In a lively and vigorous way; sprightlily. + + + + + + done in an elegant manner + + + + + + with nothing on the upper body + + + + + + in a triennial manner + + + + + + mot pour mot + + + + + + infectiously + Whether this mass of filth [wet house-refuse] be, zymotically, the cause of cholera, or whether it be (as cannot be questioned) a means of agricultural fertility, and therefore of national wealth, it must be removed. + + + + + + + type of psycho-active chemical + + + + + + + type of enzyme + + + + + + + range of radio frequencies + + + embedded kink in the trough / ridge pattern + + + + + + + largely empty region in a galaxy + + + + + + + type of capacitor + + + + + + + + + to solicit assistance from public + + + + + + Latin phrase + + + + + + + + + create incentives for, motivate + + + + + + + professional who promotes, plan and writes new or existing policy regulations around politics + + + + + + use of electronic communication for bullying or harassment + + + + + + + the microscopic examination of tissue in order to study and diagnose disease + + + + + + + in the middle of + + + + + + + site of an earthquake or a nuclear explosion + + + + + + + + unable to see the big picture + + + + + + A field of study involving the use of computer systems to perform statistical operations. + + + + + + + geometric object + + + + + + + equal + + + + + + + Indian or Pakistani dish + + + + + + + physical quantity + + + + + + + (horticulture) the art of raising plants at an earlier season than is normal, especially by using a hotbed + + + + + + cardinal number + + + + + + cardinal number + + + + + + + + + + + + + breeding different varieties + + + + + + + + + think about too much + + + + + + + protein + + + + + + study of animal communication through signs + + + + + + + + + to make abnormal + + + to become abnormal + + + + + + + + + to turn into prose; to render unpoetic + + + + + + + + + examine closely or learn again + + + + + + + + + to make arid + + + + + + + + to cut again; to cut a subsequent time/number of times + + + + + + + + + become a parasite to a host + + + + + + + + less than ideal + + + + + + + a man explaining something to a woman unasked and in a condescending manner + + + + + + act of giving the rights and/or possession of something to the person or institution in charge of its conservation + + + + + + + collection of blood and connective tissue outside the wall of a blood vessel or the heart + + + + + + + act or process of attaching a biotinyl residue + + + + + + Protection mechanism used by plants under conditions of excess energy absorption as a consequence of the light reactions of photosynthesis. + + + + + + + person with enough information and competence to act as a source + + + + + + + recording and measuring variation in the volume of a part of the body + + + + + + + combination of the principles of supersymmetry and general relativity + + + + + + + single, closely packed layer of atoms, molecules, or cells. In some cases it is referred to as a self-assembled monolayer. Monolayers of layered crystals like graphene and molybdenum disulfide are generally called 2D materials + + + + + + + first step in the formation of either a new thermodynamic phase or a new structure via self-assembly or self-organization + + + + + + the quality of being tremendous + + + + + + + Very large city with a total population in excess of ten million people + + + + + + + arrangement in which a woman carries and delivers a child for another couple or person + + + + + + + piece of DNA or RNA obtained by amplification or chain reactions (PCR, LCR) + + + + + + + forms of a protein produced from different genes, or from the same gene by alternative splicing + + + + + + + wetland terrain without forest cover, dominated by living, peat-forming plants + + + + + + + micron-sized bubble + + + + + + + class of modified proteins + + + + + + + class of enzymes + + + + + + + formation of muscular tissue, particularly during embryonic development + + + + + + + inject into a tissue or living cell + + + + + + + cell type that makes up cartilage + + + + + + + person who studies or applies neonatology + + + + + + + system that prevents Internet users from accessing webpage content without a paid subscription + + + + + + + breathe with difficulty + + + + + + + class of broad-spectrum antibiotics + + + + + + + device that compares two voltages or currents + + + + + + + mechanical component for transmitting torque and rotation + + + + + + + structure that uses a water wheel or turbine to drive a mechanical process + + + + + + + The act of making, digging a burrow + + + + + + + + + + neopronoun + + + + + + + ancient coin of the Roman Republic and Empire + + + + + + interjection used as an expression of surprise, fear, or astonishment + + + + + + + surface for nonpermanent markings + + + + + + used to make a polite request + + + Used as an affirmative to an offer + + + + + + + an angry expression on a face + + + + + + + sequence in a video game that is not interactive, breaking up the gameplay + + + + + + helping to commit a crime or do wrong in some way + + + + + + Although, despite (it) being. + + + + + + combination of two or more academic disciplines into one activity + + + + + + + pejorative term for a person expressing or promoting socially progressive views, including advocacy of feminism and civil rights + + + + + + salutation used in the morning + + + + + + + + dress in costume as a pop culture character + + + + + + + + + try too hard to do what another person wants, especially in a romantic relationship + + + + + + + + + take away funding + + + + + + + + + to share or reveal too much information + + + + + + + the act of causing something to happen by taking action, performing, or doing something + + + serve time (usually a sentence but could be an appointment) + + + nominal version of light verb + + + + + + + a child's chair with long legs, a footrest, and usually a feeding tray + + + + + + + restrain, delay + + + + + + bubbling up under influence of heat; at boiling temperature + + + + + + About, regarding, with reference to; used especially in letters, documents, emails and case law. + Re A (conjoined twins) [2000] EWCA Civ 254 + + + + + + Without disrespect to. + + + + + + Taking into account. + Considering the extent of his crimes, he was given a surprisingly short sentence. + + + + + + Concerning, respecting. + + + + + + Forth from; out of. + + + + + + Different from; not in a like or similar manner. + The disgust I felt after watching last weekend's horror movie was unlike anything I had felt before. + + + + + + toward the top + + + + + + near + + + + + + Without, except, but. + + + + + + Among, in the middle of; amidst. + Mildred comes home from work early only to discover her husband, Robert, midst of a lewd affair with their neighbor, Gladys. + + + + + + As soon as; when; after. + We'll get a move on once we find the damn car keys! + Once you have obtained the elven bow, return to the troll bridge and trade it for the sleeping potion. + Once he is married, he will be able to claim the inheritance. + + + + + + When. + + + + + + While on the contrary; although; whereas. + Where Susy has trouble coloring inside the lines, Johnny has already mastered shading. + + + + + + Used to introduce a clause, phrase, verb infinitive, adverb or other non-noun complement forming an exception or qualification to something previously stated. + You look a bit like my sister, except (that) she has longer hair. + I never made fun of her except teasingly. + To survive, I did everything except steal. + Come any time except between ten and twelve. + + + + + + to which + + + + + + Relatively large but unspecified in number. + She's taking umpteen friends with her to the party. + + + + + + Word called out by the victor when making a move that wins the game. + + + + + + Used to express approval, joy or victory. + Lizzie has broken a world record, and she is now an Olympic medallist! – Hooray! + + + + + + An expression showing that a requirement has been satisfied. + Keys? Check. Batteries? Check. We are all ready to go! + + + + + + Used as a discourse marker. + “So, what have you been doing?” “Well, we went for a picnic; and then it started raining, so we came home early.” + “The car is broken.” “Well, we could walk to the movies instead.” + “I didn't like the music.” “Well, I thought it was good.” + I forgot to pack the tent! Well, I guess we’re sleeping under the stars tonight. + It was a bit... well, too loud. + + + + + + An exclamation of respectful or reverent salutation, or, occasionally, of familiar greeting. + + + + + + Indicates agreement with another speaker's previous statement. + "I am a great runner." "Indeed!" + + + + + + Indicating disapproval, scoffery, irritation, impatience or disbelief. + Pshaw! I can't believe it! + + + + + + An expression of disgust, rejection, or disappointment. + + + + + + A radio procedure word meaning that the station is finished with its transmission and does not expect a response. + Destruction. Two T-72s destroyed. Three foot mobiles down. Out. + Welp, I got nothing else to say. Mikey out. + + + + + + be quiet(er); stop talking or making noise, or make less noise + + + + + + general interjection of confirmation, affirmation, and often disapproval. + + + + + + Used to express surprise, shock or amazement. + My, what big teeth you have! + My, you’re a pretty one! + + + + + + + + of, like, or pertaining to a dictator + + + + + + field of machine learning + + + + + + + a faulty annotation + + + + + + economic philosophy questioning growth + + + + + + + word which is not originally an acronym which is turned into one by creating a suitable phrase for it + + + + + + + type of climate model + + + + + + digestive process in ruminants + + + + + + power per unit area received from the Sun in the form of electromagnetic radiation + + + + + + process of long-term carbon capture + + + + + + + assessment of relative vulnerability to climate change and its effects + + + + + + + term linking the climate crisis with environmental and social justice + + + + + + + salutation used at night + + + + + + Greeting given upon someone's arrival + + + ellipsis of you're welcome + + + + + + + for identification to police + + + sequence of musical performances + + + + + + pertaining to a period shortly after a war + + + + + + + previously undiagnosed medical or psychiatric conditions that are discovered unintentionally and during evaluation for a medical or psychiatric condition + + + + + + + "sub-region" or alternate superluminal travel depicted in science fiction + + + + + + + athletic event or race combining three sports, usually swimming, cycling, and running + + + + + + + A person adhering to one of several contemporary Pagan religious traditions + + + + + + + forum on Reddit + + + + + + + + + fail to ensure funding + + + + + + + quality of being out of place, inharmonious or not appropriate + + + + + + + an album produced in a studio + + + + + + + pastry + + + fart + + + + + + + + + when one is set to accept a challenge + + + when something is going ones way + + + + + + response to sneezing + + + + + + + + said about someone who controls a given area + + + + + + + ofay; usually derogatory term for a white person + + + + + + + sugared fried pastry + + + + + + + + relating to the animals of a particular region, habitat, or geological period + + + + + + + + + preserve by freezing + + + + + + a jar for holding water + + + + + + + document describing a nation's plan to mitigate climate change + + + + + + + ethological class; "escape traces," formed as a result of organisms' tunneling out during high sedimentation events + + + + + + + ethological class; traces of organisms left on the surface of soft sediment + + + + + + + A well in the form of a vertical hole constructed by boring + + + + + + + molecular allotrope of lithium known in the gas phase + + + fictional material in Star Trek + + + + + + to have been fortified or reinforced using corundum + + + + + + + wireless connection + + + + + + + + blue or green + + + + + + + horror-related legend or image that has been copy-and-pasted around the Internet + + + + + + cisgender + + + + + + + someone who is cisgender and heterosexual + + + + + + + laughing my ass off + + + + + + + member of a crew + + + + + + vaccinated + + + + + + + an actor who specializes in pornography + + + + + + resembling the influenza disease + + + + + + a colloquial or informal way to say goodbye or farewell + + + + + + romantically attracted to two or more genders + + + + + + attraction to women + + + + + + of a person not limited to a single gender identity + + + + + + + one whose attraction to others is not limited by gender + + + + + + mostly heterosexual but not completely + + + + + + + outdoor camping with amenities and comforts not typically had while camping + + + + + + of or relating to elites or elitism, such as: giving special treatment and advantages to wealthy and powerful people + + + of or relating to elites or elitism, such as: regarding other people as inferior because they lack power, wealth, or status + + + + + + at + + + + + + + + an account's username on social media + + + a mention on social media + + + the at symbol + + + + + + + Any of four species of frog, all of whom make sounds similar to banjos; which live in southeastern Australia + + + + + + drunk + + + + + + drunk + + + + + + drunk + + + + + + + a particular drug used to treat ADHD + + + + + + unable to be found in a Google search + + + + + + + + any beetle of the family Carabidae + + + + + + + a dish of rice, black-eyed peas, and bacon or pork + + + + + + + + Sikh place of worship + + + + + + act of sending sexually explicit messages between mobile phones + + + + + + having a haunched back + + + + + + process of raising a child + + + + + + + a hooded sweatshirt, jacket, or sweater + + + a European crow, Corvus corone cornix + + + + + + + the name of an insect + + + + + + + any fly of the family Phoridae + + + + + + + any lepidopteran of the family Hesperiidae + + + + + + + any insect of the clade Ditrysia + + + + + + + Cnemaspis karsticola + + + + + + + an Asian person, particularly one of a Pakistani and/or Punjabi background + + + male friend, accomplice, associate + + + + + + + a nut having an outer shell that becomes tough and dry and eventually splits open, as in the walnut and hickory + + + + + + knife + + + + + + + type of n-gram where n is 5 + + + + + + + + + provide again + + + replenish with supplies + + + + + + + music genre + + + + + + + crime against property, involving the unlawful conversion of the ownership of property to one's own personal use and benefit + + + + + + milk + + + + + + + + + to hit someone on the buttocks + + + + + + + children’s game + + + + + + zebra or similar (notably equine) animal + + + + + + + a person who enjoys rain and rainy days, and who is fascinated by the sights, sounds, etc., of rain + + + + + + + a beetle of the suborder Adephaga + + + + + + + a non-lethal explosive which emits a large amount of light when detonated, temporarily blinding opponents + + + + + + + any tardigrade of the order Arthrotardigrada + + + + + + + light snack of bread, cheese, and beer eaten between meals + + + + + + + fabric with yarns tie-dyed before weaving + + + + + + + + having a large penis + + + + + + + + bread-like + + + + + + + a poster + + + + + + relating to science fiction + + + + + + + + + + someone against imperialism + + + + + + + money earned from the sale of oil + + + + + + + hybrid mandarin citrus variety + + + + + + Correct, right + + + + + + + Japanese syllabary, mainly used for loan words and scientific terms + + + + + + device repurposed for sexual use that was originated for an unrelated use + + + + + + + moons of moons + + + + + + + + + be very careful about ones actions or words + + + + + + + a rodent in the Muridae family (rats and mice) + + + + + + + rodent in the family Geomyidae (pocket gophers) + + + + + + the number between 35 and 37 + + + + + + the number between 20 and 22 + + + + + + + any bird of the family Troglodytidae + + + + + + + any ant in the family Formicidae + + + + + + of, relating to, or resembling the ostrich + + + + + + + a member of the ostrich genus Struthio + + + + + + + any lizard of the family Gekkonidae + + + + + + of or relating to the moth family Saturniidae + + + + + + + any moth in the family Crambidae + + + + + + + Any beetle in the family Buprestidae + + + + + + + Eucalyptus doratoxylon, a species of eucalyptus + + + + + + abbreviation of 'chapter'/'church' + + + + + + + a member of the rodent family Castoridae + + + + + + + one who uses an abacus for calculation + + + + + + + type of fast moving cold weather front + + + + + + of or relating to the mammal family Castoridae + + + + + + implies affirmation + + + + + + + + + + + uninvite, rescind an invitation + + + + + + + any mammal in the family Tenrecidae + + + + + + destroyed by bombing + + + forced to leave a place because of bombs + + + destroyed or severely damaged as if by bombing + + + extremely dilapidated or run-down + + + homeless through bombing + + + + + + + courtesy clerk at a supermarket + + + + + + + any salamander in the family Hynobiidae + + + + + + of or relating to the marine mammal family Balaenopteridae + + + + + + + washing away of material by rain + + + + + + + type of briefcase + + + + + + + room in which bookings are arranged + + + + + + + wallet + + + + + + (expressing affirmation, agreement, or admiration) + + + + + + + + + unnecessary interruption of a woman by a man + + + + + + + Inuit shaman + + + + + + + (first person plural reflexive pronoun) + + + + + + impertinent; having chutzpah + + + + + + + one of two equal parts of + + + + + + + payment in kind + + + + + + + + + to request assistance + + + + + + prior to a sporting season + + + + + + + Islamic creed declaring belief in monotheism and Muhammad's prophethood + + + + + + + Lesser Hajj + + + + + + + one who or that appears + + + one who formally appears (in court, etc.) + + + + + + + + one who or that causes an event or occurence + + + + + + + branch of zoology that is concerned with the study of mites and ticks + + + + + + + + the study of demons or evil spirits + + + belief in demons : a doctrine of evil spirits + + + a catalog of enemies + + + + + + branch of entomology dealing with bees + + + + + + + + branch of entomology concerned with Hymenoptera + + + + + + + scatology + + + pornography + + + + + + branch of zoology dealing with copepods + + + + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + + + + + + branch of entomology that deals with Hemiptera (the true bugs) + + + + + + + study of the structure of cells + + + + + + the study of extraterrestrial life forms + + + the study of the creation, synthesis, and manipulation of life systems + + + + + + woven from flax + + + + + + + children’s game similar to hopscotch + + + flattened tin can used as a puck in children’s game of the same name + + + + + + concerned, attentive + + + + + + + + + to make silent: deaden + + + + + + + seed of the orange fruit + + + + + + + child + + + + + + the study of hair and scalp + + + + + + + animal pathology + + + + + + + + + science that deals with ferments and fermentation + + + + + + + branch of entomology that is concerned with the Neuroptera + + + + + + geology of the ocean floor + + + + + + + the study of marine insects + + + + + + branch of zoology concerned with worms + + + + + + branch of zoology dealing with earthworms + + + + + + + branch of psychology that emerged during the 1950s as a response to psychoanalysis and behaviorism, that takes the approach that all people are inherently good + + + + + + + branch of psychology devoted to studying similarities and differences in cultures worldwide + + + + + + field of psychology devoted to understanding the individual’s relationship with their community as well as how that community fits in with the larger society + + + + + + area of psychology that centers on using psychological principles to understand consumer behavior + + + + + + + vital energy as an urge to purposive activity + + + + + + psychoanalysis + + + + + + + + a horny band or ribbon in mollusks other than bivalves that bears minute chitinous teeth on its dorsal surface and scrapes or tears off food and draws it into the mouth + + + + + + that operates smoothly + + + + + + triangular, with the apex at the base or pointing downward + + + + + + + soils that have a mollic horizon more than 20 cm deep and also concentrations of calcium compounds within 100 cm of the surface + + + + + + + ring-shaped Turkish bread roll + + + + + + + study of the relationship between the nervous and digestive systems + + + + + + + part of theology treating the doctrine of sin + + + + + + + scientist who studies volcanic phenomena + + + + + + + branch of meteorology that deals with rain + + + + + + + the study of the relationship between human beings and the natural world through ecological and psychological principles + + + + + + + the investigation or analysis of enigmas + + + + + + + branch of biology that deals with electrical phenomena in living organisms + + + + + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + + + + + + + ecology of all or part of a small community (such as a microhabitat or a housing development) + + + microbial ecology + + + + + + + + the practice or study of predicting the participants in or outcomes of elimination tournaments or competitions especially in NCAA college basketball + + + + + + + the study of truth; that part of logic or philosophy which deals with the nature of truth + + + + + + + the study of algae + + + + + + + branch of zoology that deals with the amphibians + + + + + + + + the science of colors + + + + + + + a wind out through a fjord + + + + + + + an examination of the bodily functions and condition of an individual + + + + + + + + branch of zoology that deals with shells + + + + + + + honey (term of endearment) + + + + + + + the correlation in time of biological events using fossils + + + + + + + branch of sociology involved with comparison of the social processes between nation states, or across different types of society + + + + + + + branch of botany concerned with grasses + + + + + + + + the study of how education and society influence each other + + + + + + + the study of substances that stimulate or increase menstrual flow + + + a treat on emmenagogology + + + + + + + the study of, or a treatise on, the plague or pestilential diseases + + + + + + + the scientific study of microseismic activity + + + + + + + the scientific study of mycoplasmas + + + + + + + specialist + + + + + + + the study of the institutional activities of religion (such as preaching, church administration, pastoral care, and liturgics) + + + + + + + the branch of psychology that deals with perception and the interpretation of sensory stimuli + + + + + + + the systematic study of phantasms or other illusions + + + + + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + + + + + + a narrative of the miraculous deeds of a god or hero + + + + + + + the study of brambles + + + + + + + one who specializes in the study of brambles + + + + + + + a double reading or twofold interpretation (as of a biblical text) + + + + + + + the study of food + + + + + + + an interpretation of Christianity which promotes the liberation of black people from oppression, racism, and poverty + + + + + + + a psychology that emphasizes sensory experience as its object of study + + + + + + + the science or study of ferns + + + + + + + the science dealing with watercourses + + + + + + + + the distribution of diseases in a geographical sense + + + the study of subterranean organisms and ecosystems + + + + + + + the study of flowers as related to their environment + + + + + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + + + + + + theology illustrated or enforced by evidences of purpose in nature + + + + + + + + branch of sociology dealing with the study of rural communities and the rural way of life + + + + + + + small-scale sociological analysis that studies the behavior of people in face-to-face social interactions and small groups to understand what they do, say, and think + + + + + + + the study of large-scale social systems, populations, and the broad social processes that affect them + + + + + + + the study of pathways + + + in neuroscience, the study of the interconnections of brain cells + + + + + + + the division of historical events, literature, artefacts, etc., into chronological periods + + + + + + + the study of the nervous system at the cellular (neuronal) level + + + + + + + the study of the embryology of the nervous system + + + + + + + microscopy + + + + + + + a treatise on odours + + + the study of odors + + + + + + + the study of the relationship between human beings and the climate + + + + + + + a branch of physiology that deals with secretion and secretory organs + + + + + + + the study of diseases of fish + + + + + + + J. Braid's name for: hypnotism + + + + + + + the study of snakes + + + + + + + + + + the study of the living organisms, mainly microorganisms and microinvertebrates which live within the soil, and which are largely responsible for the decomposition processes vital to soil fertility + + + + + + + animal physiology + + + + + + + the field of study concerned with the relationship of extinct animals and animal fossils to geology + + + + + + + animal ecology + + + + + + + the art and science of healing + + + + + + + library support staff + + + + + + + the study of the physiology of blood + + + + + + + the study or use of omens; divination + + + + + + + plant physiology + + + + + + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + + + + + + + the branch of biology concerned with congenital defects and abnormal formations of plants + + + + + + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + + + + + + the comparative study of inland waters as ecological systems that interact with their drainage basins and the atmosphere + + + + + + + space weather; the study of the meteorology of near-Earth space + + + + + + + + the study of virginity + + + + + + + the study or practice of fishing + + + ichthyology + + + + + + + the serological study of the prevalence and distribution of a pathogen in a population + + + + + + + the science or study of toreutics + + + + + + + the application of legal requirements to measurements and measuring instruments + + + + + + + subfield of meteorology which deals with the weather and climate as well as the associated oceanographic conditions in marine, island, and coastal environments + + + + + + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + + + + + + the application of statistical correlation techniques to a series of meteorological observations + + + + + + + the study of the interaction between the sea and the atmosphere + + + + + + + + branch of psychology applied to aspects of religious belief and behavior + + + + + + + the use of technology to assist human reproduction in the treatment of infertility + + + + + + + the study of poverty, begging, or unemployment + + + + + + + the art or practice of calculating or casting horoscopes + + + + + + + in mathematics, the étale cohomology groups of an algebraic variety or scheme are algebraic analogues of the usual cohomology groups with finite coefficients of a topological space, introduced by Grothendieck in order to prove the Weil conjectures + + + + + + + technology that avoids environmental damage at the source through use of materials, processes, or practices to eliminate or reduce the creation of pollutants or wastes + + + + + + + technology that automatically identifies and verifies the identity of an individual from a digital image or video frame + + + + + + + + + to make impervious to water vapor + + + + + + + (reflexive third-person singular impersonal pronoun) of its own self + + + + + + would + + + + + + after a certain amount of time + + + + + + + the speech of two + + + + + + + the study of streamflow hydrology and fluvial processes + + + + + + sudden death from overwork + + + + + + + discipline within Christian theology that focuses on the study of the Holy Spirit + + + the study of spiritual beings or phenomena + + + + + + + state of being dysfunctional + + + + + + + the systematic study of folk tales, legends, and the like, esp. with regard to their origin and development + + + + + + + the branch of archaeology which deals with prehistory + + + + + + + the study of the bow in archery + + + + + + + hydrology of continental water masses + + + + + + + the sciences of oceanography, climatology, and biogeography regarded collectively (rare) + + + the geological, chemical, and other processes of the Earth regarded as interdependent and analogous to the physiological processes of a living organism + + + + + + + a holistic vision in which monetary reform, participative democracy, meaningful work, social justice, and equality are all of a piece with renewable energy, organic agriculture, protection of wildlife, recycling, and non-polluting technologies + + + + + + + list of woes; particularly long or tedious list of items + + + + + + + the branch of anatomy which treats of the fleshy parts of the body + + + a theory that a part of the animal body taken into the human system nourishes or affects a corresponding part + + + + + + + + + to litigate again + + + + + + + + + to have a difference in position regarding a decision + + + + + + + + + to be opposed or adverse to + + + to oppose the granting of a patent to a mining claim + + + + + + + inopportune circumstance + + + a woman’s period + + + + + + + day of a momentous event + + + + + + + + instrument of the Western lute family with stopped courses considerably longer than those of a lute and with a separate nut and pegbox for a set of longer, unstopped bass strings + + + + + + intersection of transphobia and misogyny + + + + + + plumose + + + + + + + + + to bind by an oath or solemn engagement + + + + + + + + + to reduce to zero; to eliminate, remove, omit + + + + + + + + + to move or incline at an angle to that indicated by "zag" + + + + + + to be the colour yellow, between orange and green on the visible light spectrum + + + + + + + + + of a geological structure or formation, to present the apparently younger side (in a specified direction) + + + + + + (exclamation of pleasurable anticipation for the taste of food) + + + + + + + + + to force to walk with hands behind the back; to frogmarch + + + + escort + + + + + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + + + + + + + + to produce one or more amine groups + + + + + + + + + to strike out, hit + + + + + + + + + to cause to undergo a change of form, nature, or character + + + + + + + type of heavy coconut-milk-based stew prepared in the Caribbean; boil-up (in Belize), metagee (in Guyana) + + + + + + to be experiencing shame + + + + + + + a discourse or treatise on cartilages + + + branch of anatomy concerned with cartilage + + + + + + + the entire body or colony of a compound animal + + + + + + + + + to flow in or into a canyon + + + + + + + + + to dig, grub about for something; to rumnage + + + + to work out the pillars of abandoned claims + + + in gold mining, to undermine another’s digging + + + + + + + + + (of a man) to have penetrative sexual intercourse with + + + + + + + + + to bend a part of the body towards its dorsal surface + + + + + + + houseleek + + + + + + of consitional allowance for the present + + + (used in borrowed French compounds) of + + + + + + + clumsiness, awkwardness, or gawkiness + + + + + + + a grumpy person who spoils the pleasure of others : killjoy, spoilsport + + + a mean-spirited, spiteful person + + + + + + + Australian aboriginal girl + + + + + + + traditional flooring of Japanese living rooms, but also temples, etc. + + + + + + + the study of the changes in flow properties that occur in certain fluids exposed to electric fields + + + + + + + person who is unwilling to settle for long in one place + + + + + + + a meal served to all guests at a stated hour and fixed price + + + a complete meal of several courses offered at a fixed price + + + a communal table for all the guests at a hotel or restaurant + + + + + + that does, acts, performs + + + + + + that intends; having intentions + + + + + + that strangles + + + + + + on account of; by reason of + + + + + + + + + to abandon a relationship + + + + + + + penis + + + + + + + act of giving thanks; expressing gratitude + + + + + + + inspecific name for various skin diseases + + + scab or the like formed from a skin disease + + + + + + + someone who soliloquizes + + + + + + + + process of adding, deleting, or modifying genetic sequences in living cells to achieve biological engineering goals + + + + + + + a tropical freshwater fish (Paracheirodon innesi) of northern South American streams + + + + + + + a volatile poisonous pale yellow solid, OsO₄, with a pungent smell, used as an oxidizing agent and in solution to stain and fix biological material, especially lipids + + + + + + + writing or painting on or in wax + + + + + + + a quantitative description of the climate in a particular region or country; the branch of physical science which deals with this + + + + + + + examination of objects with the unaided eye + + + abnormally large handwriting + + + + + + + a diagnostic imaging technique that detects and records magnetic fields produced by electrical activity in the brain + + + + + + + a biography which gives particular emphasis to the psychological make-up or development of its subject + + + + + + venography + + + the process of making a tracing made with a sphygmograph that records the pulse in a vein + + + anatomical description of the veins + + + + + + + the process or technique of obtaining salpingograms; visualization of a fallopian tube by radiography following injection of an opaque medium + + + + + + + description of symptoms + + + + + + + the description or study of the planet Jupiter + + + + + + + insecticide that is a stereo-isomer of dieldrin + + + + + + + a method of using pollinating insects to spread a substance that protects plants from pests and diseases + + + + + + + a pollinating insect that spreads a substance to control plant pests and diseases + + + + + + characterized by three poles + + + + + + + adherent of transformational theory + + + + + + + phonological feature of an utterance other than the consonantal and vocalic components + + + + + + + language variety used by a particular social group or class + + + + + + + sound-producing part of an instrument + + + + + + + commodity to be or that has been exported again + + + + + + articulated with the tongue raised towards the palate and its tip against the alveolar ridge + + + + + + pertaining to features and relative position of mountains + + + + + + + instrument used to measure the adaptation of the eye + + + + + + + linguistic macro-system treating variants between dialects as part of a continuum + + + + + + + penetrometer + + + + + + + natural bed for oysters + + + + + + + light, loose-fitting shirt worn by men in hot climates + + + + + + permitted, authorized; not forbidden + + + sanctified; religiously or morally permissible + + + + + + + a unit of computing information that is represented by a state of an atom or elementary particle (such as the spin) and can store multiple values at once due to the principles of quantum mechanics + + + + + + + + the smallest unit of information in a quantum computer, existing in a superposition of two states (1 and 0), and settling on one state or the other only when a measurement of the state is made in order to retrieve the output of the computation + + + + + + + + type of mineral + + + + + + + + + an ancient Greek and Roman stringed musical instrument similar to the lyre + + + + + + + + + a woodwind instrument of the 16th and 17th centuries, typically curved, with finger holes and a cup-shaped mouthpiece + + + + + + + + + belonging to, or relating to an inner-city neighbourhood + + + faithful or in tune with the culture of an inner-city neighbourhood + + + + + + + + + to travel or move by foot; to walk or run + + + + + + + small bowl or container + + + small pick-up truck or ute + + + + + + + formation of barm on a fermenting liquor + + + accruing of interest upon money + + + + + + + + fine, grand, smart or attractive + + + good, great, excellent + + + lovely, sweet + + + + + + + sportsperson taking part in judo competitions + + + + + + + + + to free from schackle or fetter + + + + + + + + + + to undo sewing of + + + + + + + + + to exclude (a person) with coldness and disregard + + + + + + + + + to make cancerous, affect with cancer + + + + + + fourteenth century + + + + + + + + + to make or render artificial + + + + + + + + + to add over and above + + + + + + + + + to convert by contraposition + + + + + + + + + beatify + + + + + + + + + to overlook; to have a view of + + + + + + + + + to give name based on + + + + + + to be distinct, clearly visible + + + + + + + + + to gain access to or acquire more detailed information + + + + + + + study of the ecology of mountains and alpine areas + + + + + + to experience discomfort + + + to be embarrassed, ashamed + + + + + + + shaping of flint by chipping away at it + + + + + + + a visual representation of kinship relations + + + + + + + + + to confirm a girl in the Jewish faith at a bat mitzvah + + + + + + + + + to feed baby milk from a bottle + + + + + + the eating habits and culinary practices of a people, region, or historical period + + + + + + + an economic system or activity that prioritizes gaining status and honor over the accumulation of money or material wealth + + + + + + + the destruction of a cultural or ethnic group through the subversion or eradication of its key social institutions, fabric of beliefs, and/or resource base + + + + + + the concentration within applied anthropology that focuses on the application of anthropological research and findings to projects in community and international development + + + + + + + a person who makes, or seeks to make, proselytes or converts; (in extended use) an advocate or proponent of something + + + + + + + a literary, dramatic or cinematic work whose story precedes that of a previous work, by focusing on events that occur before the original narrative + + + + + + + any of a family (Dicruridae) of insectivorous passerine birds native to Africa, Asia, and Australia that usually have glossy black plumage and long forked tails + + + + + + Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + + + + + (slang) wildly excited or intoxicated + + + + + + + + + to set or adorn with, or as with, ouches; to spangle; to set like a jewel. Usually in past participle + + + + + + + a maker of ouches, buckles, or brooches + + + + + + + + + to pack closely, as sardines in a tin; to crowd, cram, press tightly + + + + + + of or tending to procreation; procreative + + + + + + + churlish quality or state; rudeness, roughness, sullenness, harshness, miserliness + + + + + + + an event occurring every four years + + + + + + + nothing, not anything + + + + zero; nil + + + + + + coated or lined with porcelain or porcelain enamel + + + + + + + the quality or condition of being duplicitous; duplicity + + + + + + + + + to make a sound like that of a kazoo + + + + + + extremely intoxicated by a drug + + + + + + resembling a sponge in appearance or texture; spongy + + + + + + ubiquitous + + + + + + + + + to cut to a steep face, to slope; also to scarp away, down + + + + + + + + + the gateway of a temple in southern India; often : the massive tower resembling a pyramid above the gateway + + + + + + + a firearm that is not registered or trackable; especially one that has been assembled or manufactured by the owner, particularly using 3D printing + + + + + + + not sewn + + + + + + + the act or habit of reading voraciously + + + + + + to one another; one to the other + + + + + + pertaining to gorgonian corals + + + + + + that agrees; conceding or concurring + + + + + + indicted, alleged, charged, arraigned, imputed + + + + + + + a jump in figure skating in which the skater, moving backwards, takes off from the back outer edge of one skate, makes at least one full spin in the air, and lands on the back outer edge of the same skate + + + + + + despite, for, notwithstanding + + + + + + + Middle Eastern wheat and milk dessert dish + + + + + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + + + + + vegetarian + + + + + + + a glacial epoch or period + + + + + + + (with plural reference) your + + + + + + not constrainable + + + + + + base, filthy, worthless + + + + + + not politic, expedient, or judicious; unwise + + + + + + + a type of Italian dry-cured pork salami + + + + + + + one who exaggerates or talks nonsense, especially to bluff or impress + + + + + + + the wife of a dauphin + + + + + + + + act of creation + + + + + + + distortion or malformation of the fingernails and toenails + + + + + + paying close attention to + + + + + + + deal with something + + + answer, pay attention to + + + put an address on, or speak to + + + + + + challenge, nom/nomadj-challenging + + + + + + provide money for + + + + + + (architecture) having windows or windowlike openings + + + (biology) having fenestrae + + + + + + the practice of staying in youth hostels when traveling + + + + + + + + + to stay at hostels overnight in the course of traveling + + + + + + + person, thing, or group that has been isolated, as by geographic, ecologic, or social barriers + + + an individual, population, strain, or culture obtained by or resulting from selection or separation + + + a language isolate + + + + + + + a preparation (such as a lotion or cream) applied to the skin or hair to prevent or relieve dryness + + + + + + + a heritable change that does not affect the DNA sequence but results in a change in gene expression + + + + + + related to an exon + + + + + + + act or process of giving an answer, reply + + + + + + continuing in a place + + + + + + of or relating to agoge or agogics especially to variations in tempo within a piece or movement + + + + + + + the top half of a newspaper, visible when folded in a vendor's rack + + + + + + + throw, sending through the air, manually, projection of an object through space + + + + + + + a process in which a phenomenon is the result of multiple factors + + + + + + having a strong position on something + + + having particular leg-positioning, when standing + + + + + + the game of jacks; dibs, dabstones + + + + + + using a mass spectrometer to analyze substances + + + + + + + discrimination against non-binary gender persons + + + + + + + + resembling or typical of a punk + + + + + + + a synthetic mixed opioid agonist-antagonist with analgesic properties + + + + + + + have a tendency, drift + + + + + + + the position or relation of a colleague; companionship in office, etc. + + + + + + + a person who or (occasionally) thing which placates someone + + + + + + + a large edible mushroom (Boletus edulis) widely distributed in woodlands, having a thick rounded brown cap + + + + + + + + + + to verbally abuse and emotionally manipulate someone, to give a back-handed compliment + + + to give negative feedback + + + express unfavorable sentiment about + + + + + + + to (cause to) lose moisture, desiccate + + + + + + along + + + + + + + utterance of ‘ooh’ + + + + + + + an organism or cell having three complete sets of chromosomes + + + + + + + get together with + + + + + + + prognosticate + + + + + + + deceive, cause to believe a fabrication + + + + + + cause to be frozen, very cold weather condition + + + + + + you, all of you + + + you and people of your kind + + + + + + make seem greater + + + + + + + branch of archaeology that focuses on involving local communities in the process of archaeological research, from planning and excavation to interpretation and presentation + + + + + + + a homology theory that uses pairs of cells instead of single cells, as in classical homology + + + + + + + the science concerned with the desert and its phenomena + + + + + + + the study of the physiology of muscles + + + + + + + the scientific study of the interaction between meteorology and hydrology + + + + + + + + branch of theology dealing with faith + + + + + + + the science and study of the weather and its phenomena + + + + + + (expressing compliance with an order) + + + + + + act or process of using up; exhausting + + + + + + + the science of the physical properties of blood flow in the circulatory system + + + + + + + branch of theology that deals with the doctrinal differences of churches as found in creeds + + + + + + + the branch of psychology that studies the philosophical issues relevant to the discipline and the philosophical assumptions that underlie its theories and methods + + + + + + + to mark the skin with permanent colors and patterns + + + + + + + a branch of theology concerned with summarizing the doctrinal traditions of a religion (such as Christianity) especially with a view to relating the traditions convincingly to the religion's present-day setting + + + + + + humbled/humiliated/degraded + + + + + + + process of making a false duplicate + + + + + + act/process of intervening, acting as a replacement + + + + + + + needless bustle or excitement + + + + + + + + + fulfill + + + + + + + the science and engineering applied to meat production, processing, and preservation + + + + + + having or relating to increased loudness or greatness + + + + + + be in or send to (the) hospital, under care in the hospital + + + + + + + a medical doctor who specializes in diagnosing diseases by examining tissues and cells under a microscope + + + + + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + + + + + + act of sneaking, hanging around in dark places + + + + + + + + + to enter (something) again + + + + + + + + + [slang] to scapegoat, unjustly blame (and punish) someone + + + + + + + + + visit, make use of + + + + + + + + + phrasal aspectual + + + + + + + a gene editing technique used to insert a specific DNA sequence into a target organism's genome, often at a precise location + + + + + + + the study of crystals and crystallization; crystallography + + + + + + + + + + algology: the medical specialty concerned with the study and treatment of pain + + + + + + + a system of beliefs that explains natural phenomena through myths and stories involving supernatural beings or forces + + + + + + + act or process of damaging, destroying, or removing + + + + + + + a philosophical approach that shifts the focus of epistemology from a priori reasoning to empirical investigation, particularly by drawing on insights from the natural sciences + + + + + + relating to, or employing a single system + + + + + + + a theoretical framework in linguistics that proposes that phonological features, like tone or vowel harmony, are represented on separate tiers (or levels) and can be independently manipulated and associated with segments (like vowels and consonants) + + + + + + + to the political, social, and cultural beliefs and values that migrants hold, and how these beliefs intersect with the ideologies of their host societies + + + + + + + the process to become extinct + + + + + + + the study of or a discourse or treatise on spasms + + + + + + + the study of species of organisms + + + + + + (cause to) experience stress (phrasal) + + + + + + + the whirlpool effect of the media in relation to a particular major issue or event + + + + + + + remove, removing using water + + + turn red + + + + + + + act or process of eating small amounts of food between meals (snacks) + + + + + + + act or process of traveling by bicycle + + + + + + + + sticky; overly obsessive, needy + + + + + + + + + to produce a new master recording to improve quality + + + + + + die, expire, dead + + + + + + + + + a small traditional brightly painted wooden fishing boat used in the Ionian and Aegean seas + + + a light skiff used on the Bosporus + + + a Levantine sailing vessel + + + + + + + a diseased state : an abnormal condition + + + + + + + The act of placing in a group + + + + + + + bruise, causing to become or becoming bruised + + + + + + cause inconvenience or discomfort + + + + + + run_down: wear out, tire + + + + + + + + "read up (on):" to study thoroughly or become familiar with by reading + + + + + + fill with contaminants + + + + + + + fight constantly, fight!, long-standing fighting + + + + + + constipated + + + + + + tending to stifle enthusiasm, initiative, or freedom of action + + + + + + + class of bornology + + + + + + + the study of ghosts and related paranormal phenomena + + + + + + + + + the study of fungi producing cleistothecia (closed fruiting bodies) + + + + + + + the study of past human-plant interactions through the recovery and analysis of ancient plant remains + + + + + + + + + arm_up + + + + + + + act of using a vacuum + + + + + + + the principle of association by which people act in collective, self-organized ways in organizing their cultural life + + + + + + + the action or practice of performing a pole vault, especially as a competitor in an athletic event + + + + + + + to cut grass or grain + + + + + + + to leave stranded, left high and dry + + + + + + + remove the acetyl group from a compound + + + + + + disgraceful, infamous + + + + + + + + + up again + + + + + + process of becoming dead (as a group) bit by bit + + + + + + + an adjustable airplane seat that can be made fully reclining + + + + + + + take pleasure in + + + + + + relating to or affected with dropsy + + + + + + + + + give a job to one who has been furloughed + + + + + + + + + to claim (as territory) + + + + + + + + + to preside over as a chairperson with another + + + + + + + process of fusion or stiffening by ankylosis + + + + + + + + + To set the angle of the planets (used in astrology) + + + + + + + The act of automatically calculating the amount of a constituent in a solution + + + + + + being in a crossed position + + + + + + + involuntary urination while asleep + + + + + + + subject to the Bechdel test + + + + + + to hit, completive + + + + + + + + flexible + + + + + + + The process of formation of minerals via microorganisms + + + + + + + act or process of forging metal (especially iron) by hand + + + + + + + a lazy person + + + an uninformed, unsophisticated, immature person + + + a general term of abuse + + + + + + + the classification of names based on their characteristics, such as sound structure (phonology), form (morphology), grammatical function (syntax), and meaning (semantics) + + + + + + + the science and technology of handling and processing particles and powders + + + + + + + + + move in a small, fast increment + + + + + + adapted to, or thriving in, a very dry or desert-like environment; capable of growing and reproducing in conditions with a low availability of water + + + + + + referring to structures, organs, or parts related to the abdomen + + + + + + + natural disaster: wildfire in brush + + + + + + + The act of being filled + + + swelling outward; protruding + + + + + + + + + charge off: emit hastily(?) + + + + + + of or pertaining to the physiological rumbling or gurgling sound from the movement of gas and fluid in the intestines + + + + + + + + + an abnormal narrowing or stricture of a blood vessel or other organ + + + + + + + + + cover completely + + + + + + + + + emboider with worsted yarn + + + + + + + scare + + + + + + + + + to create quickly and sloppily + + + + + + + performing a cone biopsy + + + + + + restrained, lessened, (of vibrating) ceased + + + + + + + + + lose muscle tone or fitness, becoming less adapted to + + + + + + + The act of causing to become unclogged + + + + + + + + + un-install + + + + + + + + + remove lint + + + + + + + + + remove a methyl group from a chemical compound + + + + + + able to be reshaped + + + + + + + + to fart + + + + + + + + + to dance in an energetic manner + + + + + + + escortcel + + + + + + + gaycel + + + + + + + The act of releasing, releasing from a location (not stuff being released itself) + + + + + + + + + compare one set of data against another + + + + + + medical imaging procedure using X-rays to produce cross-sectional images + + + + + + + modulate to a lower level + + + + + + + + acting like a douche bag (jerk) + + + + + + fly, hip, rad + + + + + + + pulling of a sled by dogs + + + + + + + + + looking after a pet dog + + + + + + + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + + + + + bubbling, surging, or flowing of water + + + + gather, pool up (non-phrasal version of 'well_up'); upward motion of water, or as if of water, perhaps from a spring + + + + + + expression of consent + + + + expression of thoughtfulness + + + + + + expression of disagreement + + + no + + + + + + + expression of disgust + + + + + + + + + cause to have feminine qualities + + + + + + turning inside out + + + + + + + to make or become even + + + + + + + + + remove a tube from + + + + + + + + + masturbate + + + + + + seen using a funduscope (eye exam) + + + + + + + + + to keep an aircraft in a hangar + + + + + + + + + form a dimer from two different monomers + + + + + + becoming gray + + + + + + suffering the residual effects of too much alcohol + + + + + + + the act of attending school at home + + + + + + + The act of searching for a new home + + + + + + + book produced prior to 1501, at the dawn of printing in Europe + + + + + + involving the ileum and the cecum + + + + + + + + + cause to weaken or endanger the immune system + + + + + + + + + + + understand basic information regarding a subject + + + + + + make or become harder, hardened + + + + + + + act or process of transferring genetic material into another individual + + + + act or process of transferring genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + act or process of transferring genetic material non-reproductively, usually by horizontal gene transfer + + + + + + + + + connective tissue between myotomes in fish flesh + + + + + + + child of a person’s paternal uncle + + + child of a person’s brother + + + + + + + a procedure in which all or part of the rectum is removed via entry through the abdomen + + + + + + + + + use or employ + + + + + + + act or process of arranging in layers + + + + + + put firmly + + + + + + faint earth tremor, caused by water waves in oceans/lakes + + + + + + + become stone-like (but so small the naked eye cannot see) + + + + + + occurring at different times (contrasts with recurrence: a metachronous cancer is a new, different cancer, not a recurrence of the prior cancer) + + + + + + + bringing to market or open-market-style managment + + + + + + + surgical removal of lymph nodes + + + + + + having one stage + + + + + + + + + hunt a species or area to the point of damaging the herd + + + + + + marked by or containing untrue statements : false + + + of a person, his or her lips, etc.: That tells lies + + + + + + not belonging to a particular area + + + + + + benign, not causing alarm + + + + + + + + concert hall or theatre + + + + + + + + + Convert light energy into chemical energy + + + + + + + utterance of French word of negation + + + + + + + writing a play + + + + + + + make very very dry + + + + + + + + + use motorized transport to sail through the air via parachute or other airdrag/airgliding tool + + + + + + (cause to) move in \/\/\/ fashion + + + + + + torture by simulated drowning + + + + + + separate with walls + + + + + + wait out: endure, outlast, enduring, lasting + + + + + + adhering to a strick no meat/no animal byproduct diet + + + + + + not valued highly enough + + + + + + acquire a tubular shape + + + + + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + + + + act of official registration in advance + + + + + + to test in advance + + + + + + the act of reading (copy or printer's proofs) to detect and mark errors to be corrected + + + + + + + removal of all or part of the rectum + + + + + + to gather lips into folds (as if to kiss) + + + + + + to inflate, literally or figuratively (as with air, value, or excitement) + + + + + + the act or practice of recording important information for future reference + + + + + + to discuss or argue about again + + + + + + charge with a crime again + + + + + + the act or process of re-introducing or re-admitting + + + + + + engrave again + + + + + + to put into, between, or among again + + + + + + to break a law or rule again, often after punishment or treatment; to recidivise + + + + + + able to be removed surgically + + + + + + + the making of photocopies + + + + + + + + + not yet be determined or known + + + + + + vaccinating again + + + + + + act of causing to be in a coil + + + + + + to approve without giving it much thought + + + + + + cut with a saw + + + + + + the process of forming a protective crust or cover + + + + + + + the formation of lasting signs of damage + + + + + + to (idiomatically) die + + + + + + to inform or provide information; to help to understand + + + + + + act or process of removing in flaky chunks + + + + + + to cause a narrowing or constriction of the diameter of a bodily passage or orifice + + + + + + act or process of saturating partially or incompletely + + + + + + incompletely saturated, not saturated enough + + + + + + having four homologous sets of chromosomes + + + + + + fill up completely when only partially empty + + + + + + able to be treated (especially medically) + + + + + + + staff car + + + + + + the number between four and six + The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + + + + + the number 11 + + + + + + + + + + + perhaps, possibly + + + permitted to + + + + + + + Used before a verb to indicate the simple future tense in the first person singular or plural. + I shall sing in the choir tomorrow. + I hope that we shall win the game. + + + + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + A history of public transportation in Kansas City, from cable cars to buses and beyond + + + + + + + + + to bring palm of hand to one’s face in ostentatious expression of dismay + + + + + + the whole amount, quantity, or extent of + + + every member or individual component of + + + any (whatever) + + + nothing but; only + + + + + + conditional conjunction + + + + + + for the reason that; the fact that + + + + + + over; higher than; further away from the ground than + + + + + + + By the length of; in a line with the length of; lengthwise next to. + Water whished along the boat as we rowed upstream. + + + + + + on the other side of, further + + + + + + all, each + + + + + + not any of a group + + + + + + in the middle of + + + + + + + + in the near future + + + + + + various + + + + + + Yes. + —You wanna get pizza for dinner? —Yeah, all right. + + + + + + (informal) of quality that is pleasing to human senses + + + + + + + competence to make a personal and professional development largely independent of external influences + + + + + + greeting used when meeting someone + + + + + + on top of + + + + + + + semi-friendly term of address (for male person) + + + + + + + + + to add to, lengthen + + + to get/move/remove with great effort + + + + + + final, ultimate, coming after all others of its kind + + + + + + chemical element with atomic number 112 + + + + + + chemical element with the atomic number of 116 + + + + + + expressing a desire for something to depart + + + + + + goodbye, likely for a long time + + + + + + + cigar filled with cannabis + + + + + + + date according to fictional time measurement system in Star Trek + + + + + + + abnormal sound generated by turbulent flow of blood in an artery + + + + + + + + + inject liquid to force an opening for extraction of oil or gas. + + + + + + + irregular surface approximating the mean sea level + + + + + + + piece of media that has been edited and re-released + + + + + + connected, bridgeless cubic graph with chromatic index equal to 4 + + + + + + + expression of gratitude + + + + + + two + But the warm twilight round us twain will never rise again. + Bring me these twain cups of wine and water, and let us drink from the one we feel more befitting of this day. + + + + + + expression of great pleasure + + + + + + land use management system in which trees or shrubs are grown around or among crops or pastureland + + + + + + political movement that developed in 19th-century Britain in opposition to disestablishmentarianism + + + + + + discovery, interpretation, and communication of meaningful patterns in data + + + + + + + + + to connect by means of an interface + + + + + + the use of biological molecules, structures, or processes in computing or information processing applications + + + + + + + any substance that has been engineered to interact with biological systems for a medical purpose + + + + + + + those portions of Earth's surface where water is in solid form + + + + + + + study of skin diseases + + + + + + + neurological disorder + + + + + + the science that studies how water in all its forms links living organisms and their abiotic environment to define their function, interactions, structure, and distribution + + + + + + natural number + + + + + + natural number + + + + + + + science of innovation + + + state of being an entrepreneur + + + + + + engaged in extracting + + + + + + + structural feature of Earth's geography + Crustal methods for studying geostructure are most interesting, but their discussion, if adequate, would be too lengthy to be included in this paper. + + + + + + fast, speedily + + + + + + branch of medicine dealing with liver and related organs + + + + + + + biological development process + + + + + + + small woodland + + + + + + pertaining to horology + + + + + + study of wetlands + + + + + + pertaining to hydrometeorology + + + + + + capable of being implanted + + + + + + (to do with position or direction) in, on, at, by, towards, onto + + + (to do with separation) in, into + + + (to do with time) each, per, in, on, by + + + + + + + + + motorcycle part + + + strong start + + + + + + + + + start strongly + + + + + + medical specialty dealing with the larynx + + + + + + + scientist who studies malaria + + + + + + + sea farming + + + + + + study of electronic and mechanical systems + + + + + + serving to remember something + + + + + + + substance harmful to microorganisms + + + + + + relating to minerals + + + + + + + definition by periphrasis + + + + + + involving multiple political parties + + + communication among multiple participants + + + + + + giving rise to myths + + + + + + + building things at the scale of individual molecules + + + + + + + fiber with nanometer-scale diameter + + + + + + + particle at the nanometer scale + + + + + + + nanoscale sphere + + + + + + + study of chemistry of nervous system + + + + + + + forest with mostly oak trees + + + + + + + + + replace local with overseas workers + + + + + + preventative branch of psychiatry + + + + + + pertaining to orthopsychiatry + + + + + + + orthopedic appliance + + + + + + pertaining to osteopathy + + + + + + + process of making measurements from photographs + + + + + + pertaining to phycology + + + + + + pertaining to phytopathology + + + + + + + branch of astronomy that deals with the condensed matter of the solar system and especially with the planets and their moons + + + + + + + type of quasiparticle + + + + + + with many cysts + + + + + + + one who studies primates + + + + + + + one who profiles + + + + + + + one who proves + + + + + + relating to or suffering from quadriplegia + + + + + + + + + innervate again; particularly by restoring function by supplying with nerves + + + + + + in reference to earthquakes or other vibrations + + + + + + + study of sex + + + + + + + branch of science concerned with inferring the three-dimensional properties of objects or matter ordinarily observed two-dimensionally + + + + + + component of a cell + + + + + + + material able to conduct electricity with no losses + + + + + + + + + exhibit the phenomenon of superconductivity + + + + + + + physical phenomenon + + + + + + + liquid applied to the shaved area of the face after shaving + + + + + + + plane curve, 4-cusped hypocycloid + + + + + + + a transgender person’s name before transitioning + + + + + + + characteristic of city dwellers + + + + + + + a large flightless parrot species + In captivity the kakapo is said to show much intelligence, as well as an affectionate and playful disposition. + New Zealand possesses a surprisingly large number of birds capable of flight, but many of the ground-feeders, having no natural enemies from which to escape by flying, have lost this power, and hence such examples as the weka and the kakapo. + + + + + + + + + to tweak or weaken a component of a game + + + + to make something less effective + + + + + + + branch of biology that deals with the spread of alien species + + + + + + having non-normative or queer gender identity and gender expression + + + + + + + gesture + + + + + + + profession + + + + + + + type of circuit board that other components attach to + + + + + + type of politics + + + + + + + type of swamp + + + + + + + type of small boat + + + mexican dish + + + + + + + alcoholic drink typically served after a meal + + + + + + + verse with twelve syllables per line + + + + + + + house with low environmental impact + + + + + + + type of stuffed pastry + + + + + + + horse riding + + + + + + + craftsperson who creates decorative sculpted surfaces and sculptural detail for walls and ceilings in stucco + + + + + + branch of science dealing with geology and the biosphere + + + + + + study of geology and microbiology together + + + + + + study of sundial construction + + + + + + medical procedure performed outside the body + + + + + + + branch of paleontology that studies fossil footprints + + + + + + + + pre-16th century book or other printed item + + + + + + study of lichens + + + + + + + study of toxins produced by fungi + + + + + + in an engrossing manner; suggesting great interest/full attention + + + + + + throughout the day + + + for the length of an entire day + + + + + + orientation of two items with fronts facing away from each other + + + + + + emphasizes that what you are saying is true + + + + + + with warm friendship + + + + + + in a bisexual manner + + + + + + in a fashion suggesting the absence of clouds + + + + + + abrupt cessation of a substance dependence + + + + + + musical term + + + + + + as a possibility : in respect to a tendency or to a future eventuality + + + + + + In a dark or dusky manner. + + + + + + without firm basis/support/footing, aimlessly/without direction + + + + + + in a freezing manner + + + + + + relating to choosing, cooking, or eating good food + + + + + + in a glistening manner + + + + + + impiously/without God (in a godless manner) + + + + + + in an impolitic manner; not in accordance with good policy; inexpediently + + + + + + بِ إسم أللَه + + + + + + in a juridical manner + + + + + + done in manner that lacks limbs or resembles as much + (Their paintspeckled hats wag. Spattered with size and lime of their lodges they frisk limblessly about him.) + + + + + + joylessly/humorlessly/without mirth + + + + + + with a sense of loss + + + + + + done in a manner that favors free markets, deregulation and devolution + + + + + + In a prepositive position. + + + + + + bewilderingly/confusingly (in a puzzling manner) + + + + + + immediately + + + + + + done in an untidy or shabby fashion + + + + + + (manner of placement) under the tongue + + + + + + by means of/in terms of/according to typology + + + + + + In a vainglorious manner. + + + + + + without speech/utterance, silently (in a voiceless manner) + + + + + + in a weightless manner + + + + + + whenever; at any time at all + + + + + + In what way; how. + + + + + + over there + + + + + + + scientist studying nervous-system hormones + + + + + + + the study of human actions and conduct + + + + + + + early stage in formation of a planet + + + + + + + type of loudspeaker + + + + + + + heavy, smooth cardboard coated with a ground that has sufficient roughness for the application of oil paint + + + + + + + abstract description of molecular features that are necessary for molecular recognition of a ligand by a biological macromolecule + + + + + + + group of methylating enzymes + + + protein in Schistosoma mansoni + + + + + + + pathogen's ability to infect hosts + + + + + + + an enzyme that occurs chiefly in cholinergic nerve endings and promotes the hydrolysis of acetylcholine + + + + + + + The sequence of reactions within a cell required to convert absorbed photons into a molecular signal. + + + + + + + In physics, a dynamic variable that can be measured + + + + + + + a small-scale two-dimensional array of samples on a solid support + + + + + + + act or process of separating an antigen from a solution using an antibody that binds to the antigen + + + + + + + An organism that thrives in extremely hot environments from 60*C upwards + + + + + + + simultaneous infection of a host by more than one pathogen + + + + + + cellular catabolic process in which cells digest parts of their own cytoplasm + + + + + + + term + + + + + + + biome of microbes + + + + + + + + + to take a quantity away from or out of another + + + to move, sink, or push under + + + + + + + profession + + + + + + + process used to prevent someone's personal identity from being revealed, as a way to preserve privacy + + + + + + carrying genetic information or being involved in the transcription or translation of proteins + + + + + + study of biological toxins, especially animal venoms + + + + + + study of the transcriptome + + + + + + + celebration on a day other than the person's birthday + + + + + + + + + to convert a substance into resin + + + + + + + + + parenthetical discourse expression "quote unquote" + + + + + + + + + to reduce to carbon + + + to make to convert to carbon + + + + + + + + + to divide the heavens into twelve equal parts by means of great circles + + + + + + + + + to render balmy + + + + + + + + + to display again + + + + + + + + + to make peace to + + + + + + + + + re-examine + + + + + + + + + to treat as an indifferentiated mass + + + + + + Next to; beside. + The house adjacent to the school was demolished. + A notice was sent to the house adjacent the school. + + + + + + use of an electrically heated wire or scalpel to treat hemorrhage and to ablate tumors, mucosal lesions, and refractory arrhythmias + + + + + + + group of similar haplotypes that share a common ancestor having the same single nucleotide polymorphism (SNP) mutation in all haplotypes + + + + + + + + formed when a collection of nonlinear processes act together upon a pump beam in order to cause severe spectral broadening of the original pump beam + + + + + + + guidance relationship in which a more experienced or more knowledgeable person helps to guide a less experienced or less knowledgeable person + + + + + + + process that caused the matter in the universe to reionize early in the history of the universe + + + + + + + physical system that responds to a restoring force inversely proportional to displacement + + + + + + + act of quenching something + + + + + + + agents that emit light after excitation by light + + + + + + + one who provides care as an occupation + + + + + + + with respect to a given category, a more narrow category + + + in mathemaics, a category, whose objects and morphisms are inside a bigger catetgory + + + + + + + creation of copies + + + + + + + + + to experience orgasm + + + + + + + salt or other derivative of disulfane or organic compound having the structure RSSR (R ≠ H) + + + + + + + account of events in a particular year + + + + + + Burst of light triggered by soundwave + + + + + + + a structure formed in a cave by the deposition of minerals from water, e.g., a stalactite or stalagmite. + + + + + + + tendency of a material to change the value of its electrical resistance in an externally-applied magnetic field + + + + + + + cell type + + + + + + + state of a system or a process in which the variables which define the behavior of the system or the process are unchanging in time + + + + + + + Membrane associated dimeric protein (240 and 220 kDa) of erythrocytes. Forms a complex with ankyrin, actin and probably other components of the membrane cytoskeleton, so that there is a mesh of proteins underlying the plasma membrane, potentially res + + + + + + + group of tetraterpenes, with four terpene units joined head-to-tail + + + + + + + The covalent attachment of a prenyl group to a molecule; geranyl, farnesyl, or geranylgeranyl groups may be added. + + + + + + + protein in Schistosoma mansoni + + + + + + + A sensory receptor that responds to mechanical pressure or distortion + + + + + + property of a disease + + + + + + + enroachment of saline water into freshwater + + + + + + Ice formed from frozen seawater + + + + + + + human disease + + + + + + + study of the right use of words in language + + + + + + + perovskite, oxide mineral + + + + + + + + + third-person singular neopronoun + + + + + + emotionally helpless person + + + person with no limbs + + + + + + process of writing a compiler (or assembler) in the source programming language that it intends to compile + + + + + + production of an analysis that corresponds too closely or exactly to a particular set of data, and may therefore fail to fit additional data or predict future observations reliably + + + + + + ability of something, especially a piece of content or information, to be found + + + + + + + romantic attraction towards person(s) of two or more genders (biromanticism) + + + + + + + person who works at a post office + + + + + + + + + give sexual pleasure to + + + + + + form of interpersonal relationship + + + + + + + colleague in Swedish and Finish education systems + + + + + + + vigorous spirit or enthusiasm + + + distinctive style or flair + + + + + + + + + To agree with a proposition or statement after it has already been seconded. + + + + + + in the middle of + + + + + + in an unsuspected manner; without being suspected + + + + + + Except; with the exception of. + + + + + + Between. + + + + + + From one side to the other side of; across. + The stars moved slowly athwart the sky. + + + + + + as a result of which + + + on top of which + + + + + + nevertheless + + + + + + + individual person as the object of his or her own reflective consciousness + + + + + + + A term of asseveration: indeed!, in truth! + + + + + + Used to express anger, excitement, surprise, etc. + Blimey! I didn’t see that! + Blimey! Where did you come from? + + + + + + At the end of religious prayers: so be it. + + + + + + Form of hmm + + + + + + interjection used to express disdain or reproach + + + + + + An exclamation used in songs of praise or thanksgiving to God. + + + + + + Expressing anger, annoyance or frustration. + Drat! I forgot to post these letters. + + + + + + A common toast used when drinking in company. + + + + + + An informal greeting. + Howdy folks, and welcome to our ninth annual chili cookoff! + + + + + + Used after a pause for thought to introduce a new topic, question or story, or a new thought or question in continuation of an existing topic. + So, let's go home. + So, what'll you have? + So, there was this squirrel stuck in the chimney... + So, everyone wants to know – did you win the contest or not? + + + + + + (used to emphasize the truth of a statement) + + + + + + A mild curse or expression of surprise. + + + + + + an exclamation meaning "long live ..." + + + + + + long live! (battle cry) + + + + + + Onward; a rallying cry for progress. + + + + + + + + third person singular neopronoun + + + + + + + process of finding and resolving defects or problems within a computer program + + + + + + expresses hostility + + + + + + yes + + + + + + + word which occurs in a text more often than we would expect to occur by chance alone + + + + + + + acronym where the full form is not widely known + + + + + + + name used for a place which is not used by the people of that place + + + + + + + word with a broader meaning + + + + + + A diagram used to represent words, ideas, tasks or other items linked to and arranged radially around a central key word or idea. + + + + + + augmentation of intelligence through the use of information technology + + + + + + + measure to prevent an incident, disease, etc. + + + + + + political movement + + + + + + + + + + to pseudo-anonymize; to pseudonymize + + + + + + organism occurring in a new habitat + + + + + + Estimate of how an atmospheric gas affects global climate change + + + + + + emission rate of a given pollutant relative to the intensity of a specific activity, or an industrial production process; e.g. grams of CO₂ released per megajoule of energy produced, or the ratio of greenhouse gas emissions produced to GDP + + + + + + + thresholds that, when exceeded, can lead to large change in the earth system + + + + + + distinct layer in a large body of fluid in which temperature changes more rapidly with depth than it does in the layers above or below + + + + + + + main group of bicycle riders + + + + + + referring to a sports game or team featuring the best players + + + + + + heading toward an objective, forwards + + + + + + almost finished + + + pertaining to the penultimate round of a tournament + + + + + + + official position + + + + + + relating to oaks + + + + + + + type of household for statistical purposes + + + + + + + + ordinal number for 25 + + + + + + + member of a council + + + + + + + form used to document informed consent + + + + + + + anti-pattern in voluntary communities where someone takes responsability for a task, does nothing about it and then puts it back up for grabs + + + + + + + + + + write together + + + + + + expression of encouragement prior to a performance + + + + + + + + + slang vulgar term meaning to have anal intercourse with + Cut to Dylan on all fours screaming "Harder, Faster!" as David cornholes him doggy style in the sauna. + To her surprise she realized that unlike the previous two anal poundings she had received, this one barely hurt as he cornholed her. + + + + + + expression of gratitude + + + + + + having no gender + + + + + + مربوط به ربوخه + + + + + + + match, mate together, couple + + + + + + + grandchild + + + + + + + manual stimulation of a man's penis by another person + + + + + + + an attractive (cute) person + + + + + + + theoretical spacecraft propulsion system in many science fiction works, most notably Star Trek + + + hypothetical mode of transportation by warping space + + + + + + + mythical race of bulky humanoid creatures + + + + + + + attraction de parc de loisirs + + + + + + The state of being estranged or alienated + + + + + + + village road + + + + + + + a transphobic person + + + + + + + fossil preservation process + + + the study of fossil preservation + + + + + + + fictional space flight organization + The names of Starfleet vessels can tell us a lot about the cultural traditions that were foremost in the minds of the creators of the franchise. + + + + + + + ethological class; "gardening traces," systematic burrow networks created by an organism + + + + + + + ethological clas; trace fossils that show evidence of predatory behavior + + + + + + + Star Trek weapon + A modern bat'leth is typically 116 centimeters long, composed of baakonite metal, weighing 5.3 kilograms. + Koloth, Kor, and Dax raised their bat'leths seconds later, guttural cries coming from each of them. + + + + + + That congregate or flock together + + + + + + + type of rechargeable battery + + + + + + + act of documenting something before its official discovery + + + document providing evidence of something before its official discovery + + + + + + + overall facility for launching and/or receiving spacecraft + + + + + + + + + space based fascillity where spacecraft can dock + The large space hangars and space dock to­gether would enable the establishment of a standardized space maintenance process that integrates system design, in-space assembly, scheduled and unscheduled servicing, technician training, and spares management. + + + + + + + deep-fried strips of potato + + + + + + + + + to die + + + + + + + + + to add a geotag to digital content; to provide geographic information (especially locations, such as coordinates) via metadata + + + + + + + + + to excessively apply digital beauty filters to an image + + + + + + romantically attracted to members of the same sex or gender + + + + + + attraction to all genders + + + + + + transgender with a partially or fully feminine gender identity + + + + + + + attraction not limited by gender identity + + + + + + seriously + + + + + + + + having 2 phases + + + + + + + one who resurrects + + + + + + + + + defecate + + + + + + + one who harasses other players in a game + + + + + + + + an image macro of one or more cats + + + + + + + Any plant in the genus Chorizanthe + + + + + + + Any beetle of the subfamily Melolonthinae + + + + + + + any insect of the family Lepidopsocidae + + + + + + drunk + + + + + + + + drunk + + + + + + unable to be found in a Google search + + + + + + + + a dish of rice, black-eyed peas, and bacon or pork + + + + + + + + ideogram that conveys its meaning through its pictorial resemblance to a physical object + + + + + + + element of computer graphical interface + + + + + + + somewhat more censored form of “motherfucker”, a common insult and profanity + + + + + + + the study of beetles + + + + + + + any spider in the family Sparassidae + + + + + + + + Lepidochelys olivacea + + + + + + + person who works in the boiler construction or repair trade + + + whiskey with beer as a chaser + + + + + + + Sedum moranense + + + + + + + any moth of the family Tortricidae + + + + + + + any snake in the family Leptotyphlopidae + + + + + + + any reptile of the order Squamata + + + + + + + a black person + + + + + + relating to the Lepidoptera, the butterflies and moths + + + + + + interjection meaning "As long as you're healthy [you can be happy]." + + + + + + + creating, promoting and exploiting stars in Hollywood films + + + set of non-stellar objects in orbit around a star + + + + + + + type of n-gram consisting of one word + + + + + + + penis + + + + + + + + + to praise or flatter someone excessively in order to gain his or her favor; to curry favor with + + + + + + + title or position for a female inspector + + + + + + + + + gigantic tentacled sea monster of Scandinavian myth + + + + + + + twighlight at roosting time, light of the morning sunrise + + + + + + excrement, dung, usually used figuratively; equivalent to general English "shit" + + + + + + + ریشمی ڈورا + + + + + + + + + to incorporate apparently LGBTQ characters and relationships into media with the intent of drawing an LGBTQ audience + + + + + + + small plastic particle in the environment generally smaller than 1 mm + + + + + + + スーパーセンテナリアン、110歳以上の人 + + + + + + + a half-bottle (now 375 ml) of spirit, usually sold in a flattened pocket-size bottle + + + + + + + + insulting name for an Afrikaner + + + + + + + elastic band + + + + + + made for that particular day, as in a dish in a restaurant + The soup du jour is roasted red pepper and tomato. + + + very popular or fashionable at a particular time + Long hair was the style du jour. + + + + + + of the family Carabidae + + + + + + + the practice of tracking people online + + + + + + + (reflexive pronoun for the first person singular) + + + + + + + text messaging service component + + + + + + + person with red hair + + + + + + made of brass + + + + + + + settlement with little or no value + + + + + + + something that is small + + + + + + occurent three times + + + + + + + + + accept + + + + + + + garden or park which comprises mainly of roses + + + + + + + very conventional person who often has a lot of inhibitions + + + a person who spends as little money as possible + + + + + + without tea + + + + + + + an evergreen Australian tree (Cupaniopsis anacardioides) of the family Sapindaceae + + + + + + + last piece of cloth left from a bale + + + + + + + a mammal in the family Herpestidae + + + + + + + rodent in the family Bathyergidae (blesmols and mole rats) + + + + + + + a rodent of the family Sciuridae (squirrels) + + + + + + + a member of the mammal family Ornithorhynchidae + + + + + + the number between 22 and 24 + + + + + + + ritual of moving around a sacred object or idol + + + + + + + any fish of the family Acipenseridae + + + + + + + a fish of the family Percidae + + + + + + + a tree frog of the family Hylidae + + + + + + + any member of the bird family Turdidae + + + + + + + any member of the bird family Phylloscopidae + + + + + + + a mammal in the family Trichechidae + + + + + + (almost exclusively in combinations) having thighs (when in combination, of a certain nature of thighs) + + + + + + + Sundasciurus tenuis + + + + + + + a mythical or fictional organism which some presume to be real or is presumed to be real with little evidence of its existence + + + + + + + Remigration + + + + + + + stealing livestock through driving them away + + + + + + + one who steals livestock by driving them away + + + + + + imperfect or defective + + + + + + faith in Islam + + + + + + + unsorted wheat flour + + + + + + + (term of affection for a beloved person) + + + + + + Islamic expression of reverence + + + + + + + + + wrestle + + + + + + + + any member of the bird family Picidae (the woodpeckers) + + + + + + cyberattack intended to redirect a website's traffic to another + + + + + + + + + to condescend to a woman in a manner characteristic of male chauvinism + + + + + + + bundle of hay + + + + + + + literary genre + + + + + + + + + continue with one's activities + + + + + + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + + + + + person who walks for show, amusement + + + + + + + + good + + + + + + + feldspathoid mineral + + + + + + + post-larval stage in life cycle of Malacostraca + + + + + + + in heraldry, wings displayed and joined at the base + + + + + + + + + + + + + to be deemed valuable + + + + + + + + + to sign an additional time + + + + + + + branch of botany that deals with the grasses + + + + + + + branch of zoology concerned with the cetaceans + + + + + + any of the branches of science dealing with snow or ice accumulation, glaciation, or glacial epochs + + + + + + branch of zoology concerning the crayfishes + + + + + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + + + + + + branch of entomology concerning the Orthoptera (grasshoppers, crickets, etc.) + + + a treatise on the Orthoptera + + + + + + study of diseases of trees + + + + + + branch of geomorphology concerned with the study of ancient topographic features now either concealed beneath the surface or removed by erosion + + + + + + + cry of “ouch,” in expression of pain or discomfort + + + + + + study of the relations between humans and animals + + + the animal lore of a race or people + + + + + + + officer charged with the administration of the health laws + + + + + + + branch of linguistics or philosophy concerned with meaning in language + + + + + + + coffee taken at breakfast or mid-morning + + + + + + + the study of the devil or devils + + + + doctrine or beliefs concerning the devil; devil lore + + + + + + + study of the interactions between the Earth's biosphere and the lithosphere + + + + + + the study of the Sun + + + + + + + the study of heresies + + + a treatise on heresies + + + + + + + the study of horses + + + skill or expertise in horsemanship + + + + + + (a colloquial American plural form of the second person plural pronoun) + + + + + + aloud, audible + + + + + + the symptom complex of a disease + + + branch of medical science concerned with symptoms of diseases + + + + + + + + branch of science concerned with the study of wetlands (such as peat bogs or swamps) + + + + + + (imprecative) damn, damnation + + + + + + in positive contexts; different, the other of two alternatives, an additional + + + + + + nor (with another negative, expressed or implied) + + + + + + sharing attributes with another or with self at another time + + + + + + Japanese silk resist-dyeing technique + + + + + + + kanat; underground channel directing water from the interior of a hill to a village + + + + + + + animal pathology + + + + + + + + the study of the microorganisms (bacteria, archaea, viruses and microbial eukaryotes) in the marine environment + + + + + + branch of zoology concerned with helminths; especially: the study of parasitic worms + + + + + + + the study of how exercise alters the function and structure of the body + + + + + + + + the study of man as a psychosomatic unity + + + + + + + branch of psychology interested in personality development + + + + + + the study of the components and constituents of consciousness specifically by introspective methods + + + + + + + of or relating to horme; specifically: purposively directed toward a goal + + + + + + branch of psychology focusing on understanding all aspects and influences of criminal behavior, including the myriad factors that contribute to criminal actions + + + + + + the study of paleopsychic phenomena + + + + + + + profane oath + + + + + + connived at, tolerated + + + + + + + absolute form of a word; subject case in opposition to an ergative or relative case + + + + + + + the fusion of 2 (usually haploid) nuclei during sexual reproduction, resulting in the formation of a diploid zygote + + + + + + according to + + + + + + + zoogeography + + + + + + + half-transitive + + + + + + + high-ranking chief; firstborn child in a prominent family + + + + + + + study of fossil plants + + + + + + + + + person who studies fossil birds + + + + + + + cake made with carrots + + + + + + + the study of cactus spines or euphorbia thorns grown in time ordered sequence + + + + + + dogmas collectively; the science of dogma + + + + + + + the branch of knowledge concerned with signs, esp. in relation to thought and knowledge; the study of signs; semiotics + + + the study or description of meaning in language; semantics (Now rare) + + + the art of interpretation by signs (Obsolete. rare) + + + + + + the science of magnets and magnetism + + + + + + + study of ecological processes in agriculture + + + + + + + + the study of large-scale behavior of the atmosphere + + + + + + + + the gross structures or morphology of an organism, mineral, or soil component visible with the unaided eye or at very low levels of magnification + + + + + + + the study of zygotes + + + the science of joining and fastening things together + + + + + + + the use of paradoxes + + + + + + + the science of medical remedies + + + + + + + the study of inanimate nature; science other than biology or the life sciences + + + + + + + incorrect use of language + + + + + + + the scientific study of amber + + + + + + + human morphology + + + the use of anthropomorphic language especially in application to God or a god + + + + + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + + + + + + the study of humans as an agent of landscape change + + + + + + + street vendor of produce (arable goods) + + + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + + + + + + + the study of social interaction in terms of analogy with the vital processes of the living organism + + + + + + + branch of entomology that studies insects that benefit or harm humans, domestic animals, and crops + + + + + + the use of chemistry and chemical techniques to study biological systems + + + + + + + the study of the adaptation of human societies or populations to their environments + + + + + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + + + + + + branch of zoology dealing with the echinoderms + + + + + + + the practice of electrical hair removal to permanently remove human hair from the body + + + + + + + the study of reproduction + + + + + + + the scientific study of color + + + pseudoscientific alternative medicine method using colored light + + + + + + + the study of the relationship between the morphology of organisms and their ecology + + + + + + + the study of medicines derived from naturally occurring substances like plants and fungi that have been traditionally used by specific groups of people for medicinal purposes + + + + + + + the branch of physics which relates to the humidity of the atmosphere or other bodies + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + + + + + + + the study of the properties and effects of opium + + + + + + + the physiology of sensation and sense organs + + + + + + + a reply to an apology, especially to a written defence or justification of religious opinions + + + + + + + the branch of archaeology that deals with the apparent use by prehistoric civilizations of astronomical techniques to establish the seasons or the cycle of the year + + + + + + + + the study of the chronology and periodicity of celestial objects + + + dating of sedimentary units by calibration with astronomically tuned timescales + + + + + + + the classification of human beings by body type or other morphological, physiological, or psychological characteristics + + + + + + kind, helpful + + + + + + + the branch of theology which deals with religious truth in relation to spiritual needs. + + + + + + + the scientific study of personality; the study of the way behaviour is related to personality + + + + + + + branch of medical science dealing with the effects of drugs in populations + + + + + + + a systematic view of all knowledge + + + + + + + a philosophical theory about monads; specifically: Leibnizian monadism + + + + + + + the scientific study of sand + + + + + + + the study or science that treats of the tides + + + + + + + + + to overcome through subtlety and skill rather than brute force + + + to steal + + + to play a card in contract bridge + + + + + + + dialling tone, sound made after dialing on telephone + + + + + + + technology in computer systems that allows for direct access to stored items using partial contents of the item in question + + + + + + + the study of inanimate nature + + + + + + + bad choice of words, diction, or poor pronunciation + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + discussions or treatises about giants + + + + + + + positive integer equal to the sum of its positive proper divisors + + + + + + + form of medical practice based on two concepts: that a broad range of environmental chemicals and foods can be responsible for an illness in which an unlimited variety of symptoms occur in the absence of objective physical findings, pathologic abnormalities, or specific, abnormal results of laboratory tests; and that the immune system is functionally depressed by many environmental chemicals + + + + + + + toy made of rubber (often used in the bath) + + + + + + + + + title bestowed on a former Speaker of the House of Representatives in the United States who has left the position but continues to serve in the House as a backbencher + + + + + + + a person who is very interested in politics + + + + + + + + + to temporarily postpone consideration of a motion or bill + + + + + + + a strategic series of meetings, events, or visits conducted by a politician or candidate to gather input, concerns, and perspectives from constituents or specific groups + + + + + + the form in which something was actually constructed + + + + + + + a system of knowledge or belief built around biological principles + + + + + + + the science of medicine + + + a treatise on medicine + + + + + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + + + + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + + + + + + the biology of plants + + + plant ecology + + + + + + + + the theory and work based on the theory that trees were involved in the origin of man + + + + + + + the "science" of love + + + + + + + a branch of sociology that analyzes how individuals use everyday conversation and gestures to construct a common-sense view of the world + + + the study of how social order is produced in and through processes of social interaction + + + + + + + the scientific discipline that involves dating the events related to the formation and evolution of the Solar System and the nucleosynthesis of chemical elements using radiometric dating techniques + + + + + + + the science that considers the Earth in its relation to cosmic phenomena + + + + + + + unprofitable or fruitless enquiry; vain discourse + + + + + + + the science of machines and mechanisms + + + + + + able to align itself automatically + + + + + + + branch of paleontology that studies fossil footprints + + + + + + + + the study of mountains + + + + + + + the psychology of morality and human action, especially as a subject of philosophical study + + + + + + + common sense regarded as a science or religion + + + + + + + the anatomical study of the intestinal glands + + + + + + + (originally) the study of pathological effects induced by electricity + + + (later also) abnormal electrical activity, especially of the heart, associated with a disease or disorder + + + + + + + sacred literature or lore; the literature embodying the religious beliefs of a country or people + + + hagiology + + + + + + + Edward Hitchcock's name for the branch of paleontology concerned with "ornithichnites" or fossil footprints of birds + + + + + + + the branch of medicine that deals with the diseases of children; pediatrics + + + + + + + psychology concerned especially with resolution of the mind into structural elements + + + + + + + the study and analysis of the causes and effects of accidents + + + + + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + + + + + + + concept within topology + + + + + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + + + + + + relating to a person who has some training in a job such as teaching or law, but does not have all the qualifications to be a teacher, lawyer, etc., or to the work that they do + + + + + + + a leg segment of an arthropod + + + + + + + creator of slam poetry or participant in a poetry slam + + + + + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + + + + + + the study of the physiology of the eye and sight + + + + + + + medical specialization that involves undertaking a range of imaging procedures to obtain images of the inside of the body + + + + + + + a person engaged in or expert in marine science + + + + + + + the mathematical theory of Regge poles + + + + + + + the branch of mammalogy dealing with tigers + + + + + + + the study of friction and wear at a large scale, typically involving macroscopic systems and components + + + + + + + the study of the relationship of climate and weather to disease + + + + + + + the science that deals with the character, ecology, and causes of outbreaks of animal diseases + + + the sum of the factors controlling the occurrence of a disease or pathogen of animals + + + + + + + an interdisciplinary framework to understand the functioning of terrestrial landscapes in the climate system, combining aspects of physical climatology, micrometeorology, hydrology, soil science, plant physiology, biogeochemistry, ecosystem ecology, biogeography, and vegetation dynamics to understand the physical, chemical, and biological processes by which landscapes affect and are affected by climate + + + + + + + the branch of botanical and pharmacological science concerned with the production, properties, and use of quinine + + + + + + + the study of the physiology of the reproductive system + + + + + + + part forming the side of something, or attached at the side + + + + + + + the principle or practice of encouraging a behaviour by counter-intuitive means, such as advocating its opposite + + + + + + + the study of the venation of the wings of insects, especially as a basis for classification + + + + + + + the branch of pharmacology concerned with the development and study of radiopharmaceuticals + + + + + + + the science of metals + + + + + + + dermatology + + + + + + + the branch of zoology dealing with sponges + + + + + + + + (reflexive second-person singular) that which belongs to thee + + + + + + + The action or occupation of giving speeches or presentations intended to motivate or inspire an audience + + + + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + + + + + + a person engaged in motivational research + + + + + + + + philately or the study of postage stamps + + + + + + excessive tourism + + + + + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + + + + + + the science that deals with the geographical distribution of animals and plants + + + + + + + the branch of education concerned with the scientific study of instructional design and development + + + + + + + + + the branch of pathology that deals with physical conditions or symptoms associated with weather conditions + + + + + + + the branch of Christian theology relating to the person, nature, and role of Christ + + + + + + + the study of the plant family Compositae (or Asteraceae) + + + + + + + branch of archaeology which seeks to understand the nature of cultural change by a study of the variables which cause it, usually in a manner characteristic of "new archaeology" + + + + + + the etiology of fevers + + + + + + + the study of saprobic environments + + + + + + + taxonomy + + + + + + that breaks (something) + + + + + + + field that involves the study of explosives, their components, and their performance, safety, and reliability + + + + + + of, for, engaged in, or used while hunting + + + + + + + each of a number of concentric rings in the cross section of a tree trunk, representing a single year's growth + + + + + + + phrenology + + + + + + + the study of or a treatise on worms + + + + + + + + + + to treat with acid + + + to inject acid into a limestone or dolomitic structure order to enlarge pores in the surrounding rock + + + + + + + + + + to flood, swell + + + to rain heavily + + + to fine for disobedience of orders + + + + + + sukangavoq + + + + + + + + + to steal + + + to be a thief; to commit theft + + + + + + three halves, 1.5 + + + + + + be pleasant, sugar-like to the taste or smell + + + be endearing, cute + + + + + + + period of time at the end of the day + + + + + + having assumed a title for oneself + + + + + + + + + to skim the surface of water on a pair of skis while towed by a motorboat + + + + + + + + + to alter, change + + + + + + + + + for a lithospheric plate to move upwards over the margin of an adjacent plate + + + + + + + + + to supply with caffeine + + + + + + + + + to destroy tissue by means of electric current + + + + + + + lead oxide mineral recognized for its rarity and difficulty identifying it + + + + + + + + + to convert to adinole by contact metamorphism + + + + + + + + + to glide across ice on skates + + + + + + + + + to howl or yelp as a dog + + + + + + + + + to alter by metasomatic processes + + + + + + to have been executed with proper legal authority + + + + + + + + + to calcify organic tissue + + + + + + + + + to attach a biotinyl residue + + + + + + to have as subject matter + + + to consist of essentially; to have as point or purpose + + + to be principally concerned with + + + + + + + + + Originally: to design or construct using biological principles. Later chiefly: to produce or modify (a substance, organism, etc.) using the techniques of bioengineering, especially genetic engineering + + + + + + + the leaves or seeds of the dill plant, especially when used dried and as a food flavoring + + + + + + + a treatise on corns, warts, bunions, and their causes + + + + + + + + + to make untidy + + + + + + + + + to watch or guard over as a warden + + + + + + + + + + to invoke a memory + + + + + + + + + to back up; to reverse (a vehicle) + + + to back up; to reverse (a horse) + + + + + + + univalent radical derived by the removal of a hydroxyl group from an anomeric carbon atom in a sugar + + + + + + + broth obtained from clams + + + + + + + inferior whiskey or other strong liquor + + + a sweet, artificially colored, non-carbonated soft drink + + + an unusual or concocted drink + + + + + + + + + to call or summon + + + + + + + a member of a group of politically radical hippies, active especially during the late 1960s + + + + + + + a wrong start in a race + + + + + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + + + + + a tropical plant + + + + + + + the xiphoid process + + + + + + + + + of or resembling feces + + + repulsive + + + + + + + the branch of radiology that deals with the use of ionizing radiation to treat cancers + + + + + + + geographical knowledge as a whole; the study of this + + + + + + + any of a genus (Orobanche of the family Orobanchaceae, the broomrape family) of herbs that have leaves modified to scales and that grow as parasites on the roots of other plants + + + + + + + white, vitreous fluoride of lime, soda, and alumina; chiolite + + + + + + that carries + + + + + + allowed, not forbidden + + + + + + having a tendency to proofread + + + + + + for reason that + + + + + + + making of bets, wagering + + + + + + + (third person possessive singular; belonging to a female being) + + + + + + + administrative division of a polity headed by a governor + + + + + + + unpleasant, worthless, obnoxious + + + + + + + starchy meal ground from the dried roots of various orchids + + + + + + the process of changing data into another format (= arrangement) so that it can be used or processed + + + + + + + + + to behave like a dork; to behave foolishly, in a clumsy and awkward manner + + + + + + + granular dessert ice with a sugar-syrup base + + + + + + + a specialist in tool engineering + + + + + + of, relating to, or using neon + + + extremely bright : fluorescent + + + of or relating to a form of lighting used especially on advertising signs and consisting of glass tubes filled with neon or other gases that emit colored light when subjected to an electric current + + + + + + + a description of the ligaments of the body + + + + + + + radiographic examination of the uterine cavity and fetus following injection of a radiopaque substance into the amnion + + + + + + + astronomical photography + + + + + + not a natural component of a particular organism or biological system + + + + + + + chromatography in which the substance to be separated into its components is diffused along with a carrier gas through a liquid or solid adsorbent for differential adsorption + + + + + + + branch of science that deals with the distribution of extinct species + + + + + + + a new system or method of writing or spelling + + + study of early modern and modern handwriting + + + deviation from a prevailing method of writing or notation + + + + + + + the systematic description of diseases + + + + + + + a description of, or dissertation on, the Egyptian pyramids + + + + + + + a printing process in which the image is created in relief on a soft plate and printed with a rotary press, used especially for printing on impervious or uneven surfaces such as commercial packaging + + + + + + + the study of people, places, and landscapes in rural areas, and of the social and economic processes that shape these geographies + + + + + + + subdiscipline of geography that focuses on everyday life and the way social groups interact with each other and the spaces in which they live + + + + + + + piece of tissue removed from body or from a plant + + + + + + + type of generator made for fast rotation on a turbine engine + + + + + + + (the) supernatural + + + + + + + measurement of angles + + + + + + + principle that perspectives and epistemology are always linked + + + + + + + anion or a salt of periodic acid + + + + + + + person who practices or embodies paternalism + + + + + + + interaction between different species in which one is harmed and the other unaffected + + + + + + + substance which counteracts the effects of alkalis + + + + + + + white fibrous capsule, especially of the testis + + + + + + + use of a drug to improve athletic performance + + + + + + + small ship’s boat used for minor tasks. + + + + + + + five-gallon container for petrol or water + + + + + + + organization drawing membership from the bar + + + + + + back then + + + + + + + + + to play dance music, especially in a juke + + + to dance, especially in a juke or to the music of a jukebox + + + + + + + a branch of mathematical and physical theory that deals with the nature and consequences of chaos and chaotic systems + + + + + + + former monetary unit of Albania; one-hundredth of a gold franc + + + qindarka; one-hundredth of an Albanian lek + + + + + + + woodwind instrument; predecessor of modern clarinet + + + + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + + + + + of an orgiastic character or tendency + + + + + + + one of a surveyor's party who carries the chain; a chain-carrier + + + chokerman + + + one that arranges the pattern chain on a dobby loom + + + a worker who ties skeins of yarn into a continuous chain for processing + + + + + + + an instrument or substance which causes a liquid to form a froth + + + + + + taught by himself or herself without assistance + + + + + + + + + to render stolid + + + + + + seasoned with cayenne; figurative spiced, hot + + + + + + + + + + + + + + + + + to pester, nag + + + to act like a noodge + + + + + + + cornetto + + + + + + + going on a trek + + + + + + + act to laminate + + + + + + best/most able + + + + + + + double-breasted coat dress or coat + + + + + + + staple food made from barley-meal + + + + + + in or into the inner part + + + + + + + being evidence of something + + + + + + + (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + + + + + to be without sound + + + + + + + surgical removal of ureter + + + + + + + + + to spring up suddenly + + + + + + + + + to undo resolution (a previously resolved upon action) + + + + + + + removal of bunion(s) + + + + + + + + + + to engage in commercial transaction + + + + + + + + + to make up (of parts) + + + + + + + + + to put forward, set forth + + + + + + + + + anathematize, anathemize + + + + + + + + + to lay out or expend beyond availability; to superexpand + + + + + + + + + to exaggerate or overstate + + + + + + of or pertaining to tachycardia + + + subject to or afflicted with tachycardia + + + + + + + + + to feed swinishly or eat in a vulgar manner + + + + + + + xylose + + + + + + + in a desert landscape, a long ridge which has been isolated by the removal of rocks on either side + + + + + + + + + to underexpose in radiographic imaging + + + + + + + + + to make use of below optimum level + + + + + + + + + to engage in an artillery/gun battle + + + + + + + the fact, state, or experience of being Indigenous + + + + + + + + + to drop from an aircraft in flight + + + + + + + + + to introduce an alkyl radical to a compound + + + + + + + embodiment of individual creative spirit in Scientology + + + + + + + an analytical and ethnographic perspective on the cultural phenomena and social relationships that extend across nation-state boundaries + + + + + + branch of anthropology concerned with the human mind, cognition, emotional experience, ethnopsychology, ethnopsychiatry, and enculturation + + + + + + + + + to repair or fill with spackle + + + + + + a theoretical perspective in the mid-twentieth century that revived interest in evolutionism as a way to explain human social and cultural change + + + + + + + + + (obsolete) to follow + + + + + + + the quality or condition of being disastrous + + + + + + + + a disaster; ruin + + + + + + caproic + + + + + + + the sacroiliac region + + + the firm fibrous cartilage of the sacroiliac region + + + + + + + + + to fall ill with the common cold + + + + + + relating to or denoting plants of the nightshade family (Solanaceae) + + + of, relating to, or resembling the mollusk family Solenidae + + + + + + + + a mollusk in the family Solenidae + + + + + + + a nurse who specializes in providing care to infants, children, and adolescents + + + + + + + lunch bag, lunchbox + + + male genitals, especially as observed portrusing through clothing + + + + + + + (archaic) the action of despoiling; plundering, robbery + + + + + + arrived at or known by intuition + + + + + + + a fatal degenerative brain disease of cattle, caused by a prion that can be transmitted to humans who consume infected beef + + + + + + of, relating to, or characteristic of the phylum Mollusca + + + + + + feeding on excrement + + + + + + with, accompanied by; and with (associative) + + + + + + + the practice of eating insects + + + + + + professional, technical, skilled; expert + + + + + + + a figure-skating jump with a takeoff from the back inside edge of one skate followed by one or more full turns in the air and a landing on the back outside edge of the opposite skate + + + + + + mistakenly + + + + + + dilated, expanded + + + + + + peskily + + + + + + + a wave or period of unusual activity by desperadoes + + + + + + + the state or fact of being a nincompoop + + + + + + + an apparatus for pasteurizing foodstuffs + + + + + + + a contemptible or stupid person + + + + + + + vegetational formation dominated by shrubs + + + + + + + a person who is disobedient to authority + + + + + + unhealthy-looking, sick-looking + + + + + + + recommendatory letter; letter introducing someone as worthy or suitable + + + + + + + the quality or state of being blasphemous; (also) blasphemous speech, thought, or action + + + + + + + the needle-shaped leaf of a pine tree + + + + + + + + + to be perplexed, to be put into a quandary + + + + + + + + + + to write or copy out incorrectly or mistakenly + + + + + + + a gurgling sound that comes from the back of the throat of a dying person + + + + + + + surgical removal of as much of a tumor as possible + + + + + + + a French-speaking person, especially in a region where two or more languages are spoken + + + + + + + eat, use up, devouring + + + + + + + act of splitting, causing separation + + + The act of dividing a number or quantity to the operation of finding how many times it contains another number or quantity. + + + + + + + act of testing the limits of capability + + + + + + + examination + + + act or process of controlling, moderating, or curbing + + + make checkmarks + + + + + + of, relating to, or characterized by play : playful + + + + + + that is or has been locked + + + + + + that has been subjected to filtration + + + + + + + a moisturizer that is used to treat vaginal dryness + + + + + + + to feel hatred + + + + + + intend, plan, on purpose, intent + + + + + + + the act of continuing + + + + + + + harsh judgment + + + + + + + a short scherzo + + + + + + + light and airy in performance —used as a direction in music + + + high and thin in tone —used chiefly of a voice in the phrase soprano sfogato + + + + + + resembling a topaz in color or luster + + + + + + located above the fold on the front page of a broadsheet newspaper + + + suitable for prominent placement on the front page of a newspaper + + + located prominently near the top of the page in an electronic document (such as an e-mail or a Web page) + + + + + + characteristic or typical of an author, especially a professional one + + + markedly literary + + + + + + + opal variety found deposited at orifices of geysers + + + + + + + a technique used in audio recording in which audio tracks that have been pre-recorded are then played back and monitored, while simultaneously recording new, doubled, or augmented tracks onto one or more available tracks + + + + + + + how real something is perceived as being and the criteria used to evaluate this + + + + + + + a wardrobe or its contents + + + a private room : bedroom + + + privy: a room or small building having a bench with holes through which the user may defecate or urinate + + + + + + + large Greek pottery vessel for mixing wine + + + + + + + cutaneous disease in sheep + + + + + + + + boastful, arrogant; proud, conceited + + + + + + + carambola + + + + + + + type of bugle made from a cow horn + + + + + + + + doleful, miserable, gloomy, lonely + + + + + + + get together with + + + + + + + fire, let go from employement + + + + + + + tourist + + + + + + (expression of disappointment) + + + + + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + + + + + ship ahoy! (exclamation said when another ship is in view) + + + + + + + the science dealing with the microscopic phenomena of soils + + + + + + + the technology of radio + + + the application of X rays to industrial problems + + + the application of any form of radiation to industrial problems + + + + + + + the branch of botany that studies roses + + + + + + + act as staff for, work at (place) + + + + + + + release from blame/sin + + + + + + + the study or science of nothing + + + + + + + the science of friction, adhesion, lubrication, and wear on the length scale of micrometers to nanometers and the force scale of millinewtons (mN) to nanonewtons (nN) + + + + + + + branch of bacteriology that deals with organisms associated with or pathogenic for plants + + + + + + + a topology that contains fewer open sets than another topology on the same set + + + + + + + the study of the form, structure, and arrangement of leaves + + + + + + + camel-driver + + + + + + + + + (polite expletive) short for "fuck up;" to botch, make a hash of, mess or screw up + + + + + + + branch of geology that deals with topography + + + + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + + + + + + the study of the interactions between human bodies and the atmosphere + + + + + + + newcomer; fresh immigrant + + + + + + + heavy whip cut from rhinoceros or hippopotamus hide + + + + + + pertaining to or connected with fermentation + + + + + + + a late 19th century to early 20th century American school of psychology concerned especially with how the mind functions to adapt the individual to the environment + + + + + + being part of; included in + + + + + + + to block + + + + + + to block + + + + + + + emphasize + + + + + + + headman of a region, community, or occupational group + + + + + + + + + to blunt, dull; to render obtuse + + + + + + + make available for consideration + + + act of postponing consideration of + + + + + + + the application of mesmerism to phrenology, to the phrenological organs, or to the mental faculties in general + + + + + + + the study of or theory about mathematical or occult significance in measurements of the Great Pyramid of Egypt + + + + + + make sense of, distinguish + + + + + + exclude + + + + + + + one who is the personification of dawdling; especially, a dawdling girl or woman + + + + + + + mortgage again + + + + + + + act/process of causing an increase (often in elevation) + + + + + + + decrease + + + change location + + + + + + exaggeratedly publicized + + + + + + act of removal + + + The process of a rise or leap from a surface in making a jump or flight or an ascent in an aircraft or in the launching of a rocket. + + + act of taking time off for vacation + + + act or process of increasing dramatically + + + act or process of going or leaving [similar to "getting going, hitting the road," etc.] + + + + + + + cause distance between two things + + + + + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + + + + + + the application of various technologies to enhance the learning experience, encompassing a wide range of tools and platforms used for teaching, learning, and assessment + + + + + + + + + act/process of remaining unsettled, waiting or awaiting + + + + + + + assembling military units for deployment + + + + + + + act of typing and sending a brief, digital message + + + + + + + the study of past human activity, settlement, and environments as revealed through archaeological sites located in wetlands + + + + + + + act of uttering a moan, complaining + + + + + + process of finding, searching + + + + + + + come up with a new idea + + + + + + center on + + + + + + + a topology defined on a quotient space, which is obtained by identifying certain points in a given topological space + + + + + + + act of making silent + + + + + + + act of attaching firmly + + + + + + + + + to charm or seduce + + + + + + + the doctrine of the Logos + + + the science of words + + + + + + + the study of mineral inclusions within larger mineral grains, focusing on the information they reveal about the host mineral's formation and the broader geological environment + + + + + + + act or process of giving shelter + + + absorb sensorily, possibly with pleasure + + + + + + + act or process of teaching (especially privately) + + + + + + + the philosophical study of the mind and life, distinct from the physical body + + + + + + (in the oil industry) in or into a well or borehole + + + + + + + a hole dug or drilled downward, as in a mine or a petroleum or gas well + + + + + + + Homology is a geometric process H that constructs finite dimensional vector spaces Hᵢ(X), for suitable X and i. Homology is linear when hᵢ(X) is a linear function of X (and hᵢ(X) ≥ 0). + + + + + + + the spatial arrangement and connectivity of atomic or molecular orbitals, particularly in the context of chemical reactions and electronic structure + + + + + + + that part of natural theology which is based on the properties and phenomena of fire + + + + + + + to the methods, tools, and techniques used to transform raw materials into finished goods or services + + + + + + + the methods and systems that enable vehicles, including aircraft, missiles, and spacecraft, to move toward their destinations + + + + + + + erroneous or incorrect psychology + + + + + + + a (suggested) name for a science of the ‘ends’ of human conduct + + + + + + + + + to treat someone unfairly and badly, put or leave in a bad situation + + + + + + + + + choose, elect, or appoint (for a specific task or purpose) + + + + + + + determine quite detailedly + + + + + + + act of bringing to a sudden halt + + + form of train incident + + + + + + + the act of stabbing + + + + + + + mess up, botch + + + + + + + the act or process of bending, changing direction, or forming an arc + + + + + + + hold a second job + + + + + + + psychological study or theory based on the classification of people or phenomena by type + + + + + + + phytogeography: branch of biogeography concerned with the geographic distribution of plant species + + + + + + + + + the act of division, dividing into sections + + + + + + + act or process of helping grow or develop + + + + + + + act or process of transfering data from one computer to another + + + + + + + The act of isolating + + + + + + + revise an opinion + + + + + + + to make a mess of + + + + + + + instance of shaking or trembling + + + + + + excited, amped up + + + + + + + + + extract, produce + + + + + + + make/accept an oath of office or court + + + + + + + + + continue fighting + + + + + + + act of protest, standing outside it in order to protest + + + + + + + act or process of uttering with a groan + + + + + + + a fragment of detrital volcanic material that has been expelled aerially from a vent + + + + + + + + + cover with sequins literally and figuratively + + + + + + + + + hit the back of a car + + + + + + + + to make sexual advances + + + + + + + + establish, make ready in advance + + + + + + to make peace + + + + + + (cause to) be affected with a certain attribute + + + + + + having been effected by the process of hindering the clotting of blood + + + + + + preventive of nausea or vomiting + + + + + + used to lower high blood pressure + + + + + + + + + to be or act like a dilettante + + + + + + + a situation where homologous traits (those shared due to a common ancestor) evolve independently in different species or populations, often due to similar environmental pressures + + + + + + + making void or erasing + + + + + + + + + to lift and throw (someone) to the ground, as in wrestling + + + + + + + shortened form of a word or phrase, typically created by omitting letters or syllables + + + + + + + + + fool + + + to push through, acting like a bull + + + + + + + + + put on a cassette + + + + + + Being like stone through calcification + + + + + + sensitive to chemo + + + + + + + + + develop in conjuction with another developer or project + + + + + + + surgical removal of all or part of the colon + + + + + + + + + exist in coiled state + + + + + + consisting of an array of multiple boreholes drilled into the ground for a shared purpose, often used in large-scale geotechnical, geological, or geothermal projects + + + + + + + + + call to court + + + + + + + + + to schedule programming to compete with another show + + + + + + + + + cause one entity to span a gap + + + + + + + device for dethatching, similar to a lawnmower but with vertical rotating blades + + + + + + + The act of losing muscle tone or fitness, becoming less adapted to + + + + + + + + + remove the sheen + + + + + + + + + inhabit a den, as in hibernation + + + + + + + + + remove hair + + + + + + + + + to deprive an organ of attached nerves + + + + + + + + + to hurry off promptly, abandon effort, flee + + + + + + + fakecel + + + + + + + + + send a direct message on twitter + + + + + + + contaminate the source and the destination simultaneously + + + + + + + breeding different varieties + + + + + + + + + remove dust, metaphorical/phrasal variant + + + + + + informal expression used to get attention or greet someone + + + + + + + + + beat, surpass + + + + + + + + + process of becoming covered in epithelial cells, usually during wound healing + + + + + + (of a tumor or other abnormal mass) growing outward from tissue or organ of origin + + + + + + + name + + + + + + + + + to make over, or literally give face lift + + + + + + + face off: oppose, fight + + + + + + + be no longer standing + + + + + + + natural disaster: fast moving flood that comes all at once + + + + + + + to form a cleft or crack + + + + + + + The act of making fatter + + + + + + + + + to allow an old exception to a new regulation + + + + + + + act or process of creating a graph of a function + + + + + + + + + surf move + + + + + + + + + twirl a lightweight hoop around the body in play or exercise by rotating the hips + + + + + + + The act of to taking care of someone's house + + + + + + + surgery that creates a connection between the ileum and the colon + + + + + + involving the ileum and the sigmoid colon + + + + + + + + + beginning, origination + + + graduate from a university + + + + + + + surgical removal of part of the colon + + + + + + + + + court ordered prohibition of a specific action + + + + + + + The act of calibrating within a set; calibrating between + + + + + + making a bubbling noise + + + + + + + low-energy food + + + + + + + + + opportunity + + + + + + displaced to one side + + + + + + + make the characteristic noise of a cow + + + + + + forming or dividing into lobules + + + + + + + the failure to adapt properly to a new situation or environment + + + + + + + + + to diagnose incorrectly + + + + + + + attend to + + + + + + + very slight invasion of malignant cells into adjacent tissue + + + + + + + post to an online journal + + + + + + + create + + + + + + be amazed + + + + + + + an annual herb (Chenopodium quinoa) of the amaranth family that is native to the Andean highlands and is cultivated for its starchy seeds which are used as food and ground into flour + + + quinoa seeds + + + + + + + regulation of osmotic pressure + + + + + + not having given birth or laid eggs + + + + + + + + + to buy in excessive amounts + + + + + + + + + allocate too much money to some purpose + + + + + + + + + overbake + + + + + + consisting of multiple layers + + + + + + + + + outdo + + + + + + + + + to leap beyond something else + + + + + + + + + to surpass another in trading + + + + + + + aim too far, exceed + + + + + + being in, going to, coming from, or characteristic of the 48 conterminous states of the U.S. + + + + + + + The act of inserting names of famous people into conversation in order to seem more important + + + + + + + imaging for transverse section reconstruction of the radionuclide distribution within the body + + + + + + + + describe in detail, spelling out each play + + + + + + + + + to make or cause to make a tinkling sound + + + + + + near the aorta + + + + + + + surgery that creates a connection between the pancreatic duct and the jejunum + + + + + + asleep, soundly + + + + + + beat + + + + + + whump, make noise + + + + + + be straightfoward and honest with + + + + + + not suitable for/capable of being viewed + + + + + + not presenting new info + + + + + + not having been indicted + + + + + + not having a connection to ground potential (or metaphorical extension) + + + + + + ubiquitinate + + + + + + phrasal typing, using a typewriter + + + + + + sounding like a drum + + + + + + give medicine to before an event + + + + + + situated in front of the tibia + + + + + + looking into the future, forecasting + + + + + + Being examined using a proctoscope + + + + + + having no answer to give, containing no answer + + + having no possible answer, unanswerable + + + + + + recite from a list + + + + + + attach, again + + + + + + concentrate into one location + + + + + + act or process of teaching again + + + + + + + lucid clarity of being fully present and aware + + + + + + become more intense (again) + + + + + + to occupy again; to take possession of, settle or maintain a position in a certain place again + + + + + + to pass again (especially into law) + + + + + + + participial verb form in the active voice + + + + + + obtain again + + + + + + impudent/shameless (unblushing) + + + + + + send again + + + + + + type again + + + + + + (cause to) fit as necessary + + + + + + to avoid humiliation or loss of status and respect + + + + + + make the noise 'scrawk' + + + + + + to make certain, secure, be assured of + + + + + + act of presenting in a sensational manner + + + + + + distribute to shareholders + + + + + + depart, as a soldier + + + + + + look inward, search for inspriation, motivation, etc. + + + + + + compare, measure up + + + make into a stack + + + + + + to take a smaller sample from a larger sample + + + + + + to mix or twist together, drag in + + + + + + thaw_out: fully defrost + + + + + + make better by equipping with "tools" + + + + + + touch upon: same as touch on + + + + + + to hit or beat with a truncheon or billy club + + + + + + mad, crazy; eccentric, unconventional, wild + + + + + + in a futuristic manner + + + + + + + perpetrator (of a crime) + + + + + + which thing, which object + + + + + + + the number 2 + + + + + + the number 7 + + + playing card + + + + + + connects at least two alternatives (inclusive) + + + + + + + thousand million + + + + million million + + + + + + + + list of films related by some criteria + + + + + + gesture and internet term + + + + + + + one; any indefinite example of + An yttrium sulfate compound is generally soluble. + + + + + + (introduces a clause which is the subject or object of a verb) + + + + + + at any point in time + + + + + + for a time period + + + + + + All; every; qualifying a singular noun, indicating all examples of the thing so named seen as individual or separate items (compare every). + Make sure you wash each bowl well. + The sun comes up each morning and sets each night. + + + + + + + the number 100 + + + + + + + + A large amount of. + Do you think I have much chance of catching the train on time? + After much discussion, we decided to set about the task with much enthusiasm. + Did you do much running last summer? + + + + + + Denotes the one immediately following the current or most recent one. + Next week would be a good time to meet. + I'll know better next time. + + + + + + after a point in time + + + + + + not containing or using + + + + + + + in the direction of + + + + + + + some person + + + + + + with an increase of + + + + + + Any one out of an indefinite number of persons; anyone; any person. + Anybody will do. + Is there anybody inside? + + + + + + at any time that + + + + + + Introducing a basis of comparison, with an object in the objective case. + You are not as tall as my sister. + They are big as houses. + + + + + + not containing meat + + + + following/in line with a meatless diet + + + + + + characterized by entropy; inevitably deteriorating + + + + + + phrase used when someone is leaving + + + + + + + + + + to eat + + + + + + + + + apportion; give out according to a rationing system + + + + + + + + + to strike with one's knee + + + + + + cheer + + + + + + + + + to squeeze fruit to produce juice + + + + + + + comics created in Japan + + + + + + having serifs + + + + + + number between 59 and 61 + + + + + + + repository of biological samples used for research + + + + + + + type of pharmaceutical drug product + + + + + + + field of biology that examines periodic (cyclic) phenomena in living organisms + + + + + + + + + separate one area from another + + + + + + + database + + + organization responsible for a database + + + + + + natural number + + + + + + natural number + + + + + + + state of being employable + + + capability of an individual to adjust into the work labor + + + + + + study of gene expression changes + + + the study of the mechanisms of temporal and spatial control of gene activity during the development of complex organisms + + + the study of mitotically and/or meiotically heritable changes in gene function that cannot be explained by changes in DNA sequence + + + + + + relating to epigenetics + + + + + + pertaining to evolution + + + + + + + animal feed made from fish + + + + + + self-similar + + + + + + pertaining to a genome + + + + + + deliberate manipulation of Earth's environment + + + + + + engineering aspects of soil and rocks + + + + + + + academic qualification + + + + + + + + + chemically treat with a halogen + + + + + + pertaining to hydrobiology + + + + + + + branch of geology which deals with the relations of water on or below the surface of the earth + + + branch of science that studies distribution and movement of groundwater + + + + + + + + pertaining to hydrology + + + + + + + branch of immunology that deals with the immunologic properties of blood + + + + + + + study of infection + + + + + + + + + zoo for insects + + + + + + + one who inspires + + + + + + + collection of instruments + + + + + + + process of blending together + + + + + + between governments + + + + + + between universities + + + + + + medication administered intravenously + + + + + + + + + communicate with opposing party + + + + + + + sequence of events in a life + + + + + + + wave of light + + + + + + + process of creating malt + + + place where malt is created + + + + + + + microscopic bead + + + + + + + local region near a cell + + + + + + + device around 1 micron in size + + + + + + + miniature satellite + + + type of DNA sequence + + + + + + + technology for microscopic devices + + + + + + + something imitative + + + + + + relating to myelodysplasia + + + + + + + use of nanotechnology in medical treatment + + + + + + + study of drug abuse + + + + + + + doctor specializing in nephrology + + + + + + measurement of shape + + + + + + + use of radiation in nervous system medicine + + + + + + made without weaving + + + + + + pertaining to notaries + + + + + + pertaining to coins + + + + + + + + + bring into a group + + + + + + pertaining to optometry + + + + + + pertaining to palynology + + + + + + + + + fly a paraglider + + + + + + Appropriate and legitimate for its purpose. + + + + + + method of creating electric power from sunlight + + + + + + + study of mental aspects of biology + + + + + + + with both psychological and social aspects + + + + + + + act of reanimating + + + + + + + + + put together again + + + + + + + rearranged structure + + + + + + + one who tries to re-establish a historical practice + + + + + + + one that recycles + + + + + + + + + light again + + + + + + process of reprography + + + + + + + patterning layer in semiconductor fabrication + + + + + + + chemical produced by an organism that affects others + + + + + + + + + locate something in three dimensions + + + + + + Connochaetes taurinus + + + + + + terminal-based network protocol + + + + + + used to warn of a falling tree + + + + + + + a South African species of palm tree + + + + + + quality/fact of being irritating/tiresome/annoying + + + + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + affirmative option provided in a binary vote + + + + + + Ordering items individually + + + + + + abjectly (in an abased/humbled/humiliated manner) + + + + + + relating to transactions + + + + + + + + + to smoke using an e-cigarette + + + + + + covered in or characterized by upholstery + + + + + + + intermediate point along a route + + + + + + mocking sadness + + + + + + + + + to make robust, to turn something into a robust form + + + + + + + transduction of mechanical stimuli into neural signal + + + + + + + toxic effect on ecosystems + + + + + + + type of alcohol (chemical term) + + + + + + political/economic philosophy + + + + + + + type of fiber + + + + + + + + + selfishly keeping or consuming something + Don't bogart that joint, my friend. Pass it over to me. + + + + + + + the study of cave-dwelling organisms + + + + + + + type of horseman + + + + + + + type of bread + + + Italian white bread + + + + + + + type of small village or settlement + + + + + + anarchism based on computerized cryptography + + + + + + + algorithm used to train an artificial neural network based on the gradient of a cost function + + + + + + + study of cultural aspects of dealing with living things + + + + + + + mark used to indicate quotation in some languages + + + + + + + track and field combined competition + + + + + + + place of work for a knacker + + + + + + intentially hostile software + + + + + + + small moon + + + + + + + type of cell found in muscles + + + + + + In an anticipative manner; expectantly. + + + + + + groundlessly/unjustifiably (in a baseless manner) + + + + + + flexibly/limply (as if without bones) + + + + + + foolishly, without thought or intelligence + + + + + + in a manner representing something as small or less than it is + + + to a small/minute degree + + + + + + in a manner suggesting agitation or excitement; animatedly + + + + + + in a way causing irritation/frustration (i.e. that isn't satisfactory or what one wishes for/requires) + + + + + + in a manner much larger than expected + + + + + + latin phrase referring to actions taken in memory of a deceased individual or individuals + + + + + + in an isolated manner + + + + + + in a lesbian manner + + + + + + in a loveless manner + + + + + + without bounds/restrictions (in a manner without limits) + + + + + + topological space that at each point resembles Euclidean space + + + + + + in a meaningless manner + + + + + + with significance (of look/tone/gesture/etc.), so as to convey meaning + + + + + + in a persistently irritating/annoying/complaining/exhausting manner + + + + + + these days, in the present day + + + + + + often; oftentimes + + + + + + In a promissory manner. + + + + + + in a quenchless manner + + + + + + in a rattling manner + + + + + + in a reasonless manner + + + + + + In a temulent manner. + + + + + + without thanks, unthankfully + + + + + + "besides that;" that which is beside another object + + + + + + Across the direction of travel or length of; athwart, crosswise, obliquely, transversely. + + + + + + done in a way that lacks resentment or ill will + + + + + + yes + + + + + + + study of nematodes + + + + + + + plant which prefers low-nitrogen soils + + + + + + + Pluto-like object beyond Neptune + + + + + + + type of computer program + + + + + + + organism living in symbiosis + + + + + + + + synchronised well + + + + + + + allocate money to some purpose + + + + + + + predominant cell type in the epidermis, the outermost layer of the skin, constituting 90% of the cells found there + + + + + + statistical analysis of written publications, such as books or articles + + + + + + + + approve of loudly + + + + + + + natural disaster: stretch of very high temperatures + + + + + + + reduction of some kind of asset for financial, ethical, or political objectives or sale of an existing business by a firm + + + + + + + + + to convert into agate + + + + + + + + + not becoming, appropriate or in accord with expected standards + + + + + + + + + to become sane or reasonable + + + + + + + + + to repay, requite + + + + + + + + + to select from a group or pluck again + + + + + + + + + certifying again + + + + + + + + + to launch something again or put something into operation or motion again, i.e. a company or brand; to set off or start again + + + + + + + + + to make trendy + + + + + + + be on all sides of, encompassing + + + + + + + horse breed group + + + + + + + someone concerned with the raising of livestock + + + + + + assembly of microorganisms belonging to different kingdoms; part of a microbiome (which consists of the microbiota and their environment) + + + + + + + study of traditional medicine practiced by various ethnic groups + + + + + + + + + invest again, put money back into a project or investment + + + + + + Scientific study of algorithms and statistical models that computer systems use to perform tasks without explicit instructions + + + + + + + degree to which overt adverse effects of a drug can be tolerated by a patient + + + + + + + parasital protein found in Leishmania major Friedlin, encoded by LmjF.36.2320 + + + + + + + cell type + + + + + + + acquired metabolic disease that has material basis in an abnormally high level of uric acid in the blood. + + + + + + + neurons which are not motor or sensory + + + + + + + degree to which a system's components may be separated and recombined + + + + + + + class of protein + + + + + + + type of photodetector based on a p–n junction + + + + + + + class of chemical compounds + + + + + + + the act or process of constituting again or anew + + + + + + + class of enzymes + + + + + + + Cytoplasmic organelles, spherical or oval in shape, that are bounded by a single membrane and contain oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). + + + + + + + class of chemical compounds + + + + + + + any of a group of galactose-containing cerebrosides found in the surface membranes of nerve cells + + + + + + + type of cell + + + + + + + tectonic plate boundary where subduction takes place + + + + + + + act or process of increasing, or causing to increase, again + + + + + + + segment of content intended for podcasting + + + + + + former name for rutherfordium + + + + + + + macrocyclic lactone with a ring of twelve or more members + + + + + + ability of an organism to keep its body temperature within certain boundaries + + + + + + + eukaryotic cell clone derived from an eukaryotic organism by immortalization + + + + + + + spreading and enforcing Russian language and culture in neighboring regions and among minorities in Russia + + + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + effigy into which pins are inserted + + + + + + + + + to look after child temporarily + + + + + + Reference to physical, non-human inputs used in production to produce wealth + + + + + + + amusement park and funfair attraction + + + + + + video game genre + + + + + + salutation used in the evening + + + + + + + a photograph of the photographer + + + + + + sex act and pornography genre + + + + + + practice of or desire for intimate relationships with more than one partner, with the knowledge of all partners; consensual, ethical, and responsible non-monogamy + + + + + + + members of an online subculture who define themselves as unable to find a romantic or sexual partner despite desiring one + + + + + + suspicious + + + homosexual + + + + + + + artwork featuring aspects of a work of fiction created by a fan + + + + + + + + + to cause to enter popular awareness + + + + + + + administrative territorial entity + + + + + + + cart for carrying apples + + + + + + + grandparent's brother + + + + + + + protuding abdomen, paunch + + + + + + + profane term; word considered rude or offensive + + + + + + as; in the capacity of; acting as + + + + + + Until. + + + + + + : with. + + + + + + therefore + + + + + + at this moment + + + + + + because + I wanted to attend the concert, for it featured my favorite band. + + + since / because + She prepared thoroughly for the meeting was crucial to her career. + + + + + + + some large quantity of something + + + + + + which of two + + + + + + Exclamatory response to a minor disappointment. + Shucks. It's too bad you can't make it to the party. + + + + + + An expression of surprise. + + + + + + Used in place of fuck. + + + + + + used to tell someone, especially a child, to be quiet + + + + + + requesting assistence + + + + + + used as an exclamation to express surprise, taunting, exultation, etc. + + + + + + Used to place emphasis upon something or someone; sometimes, but not always, when actually addressing a man. + Man, that was a great catch! + + + + + + Nonsense! Expresses dismissal or disdain. + Fiddlesticks! It's nothing but smoke and mirrors! + + + + + + An expression of laughter. + + + + + + Used to acknowledge a small mistake or accident. + Oops! I left the lid off the ketchup. + + + + + + + + + to prioritize and sort into groups based on severity of need (usually medically) + + + + + + + common name for a genus of gastropods known under the taxonomic name Ariolimax + + + + + + + theoretical concept in sociology + + + + + + + list of web pages on a website + + + + + + an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + + + + + + a south Indian pancake + + + + + + augmentation of intelligence through the use of information technology + + + + + + + efficiency measure based on environmental impact + + + + + + of an astronomical body + + + + + + + actions to limit climate change in order to reduce the risks of global warming + + + + + + + denial, dismissal, or unwarranted doubt about the scientific consensus on the rate and extent of global warming + + + + + + market-based approach used to control pollution + + + + + + total set of greenhouse gas emissions caused by an individual, event, organisation, or product, expressed as carbon dioxide equivalent + + + + + + + quantitative methods used to simulate climate + + + + + + + umbrella term for the study of the atmosphere + + + + + + decrease in the pH of the Earth's oceans + + + + + + + risk resulting from climate change and affecting natural and human systems and regions + + + + + + + officer in government or business + + + + + + involving only one sex or gender + + + + + + + differential operator in vector calculus + + + + mathematical symbol + + + + + + + written document used to document consent in a standardized manner + + + + + + + set of recommendations for decision-making + + + + + + medical research using human test subjects + + + + + + + tructure formed in a sediment by the action of a living organism (e.g. a tube, burrow, footprint, or groove made by crawling across a surface) and preserved when the sediment becomes a sedimentary rock + + + + + + + bony spines on the tip of the tail of a dinosaur + + + + + + + something ill-considered + + + + + + + class of typespecimen + + + + + + + + + person who rejects the efficacy or safety of vaccines + + + + + + + vegetation layer above shrubs and under the canopy + + + + + + + increasing occurrence of a species in a new habitat + + + + + + another term for a selfie. Usually used in KPOP culture + + + + + + + last performance promoting on music shows (KPOP) + 《Goodbye Stage》 BLACKPINK (블랙핑크) - PLAYING WITH FIRE + + + + + + + act of correct identification + + + + + + to be alive + + + + + + + fictional monster + + + + + + + The thing, item, etc. being indicated. + This is a pronoun. + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + box lyre associated with Welsh music + + + + + + + fictional technology that renders objects invisible + The first known a example of a practical cloaking device was on a Romulan bird-of-prey spacecraft that crossed the Romulan Neutral Zone in 2266. + + + + + + + science fiction weapon + + + + + + + continuity that has be retroactively applied to an existing work + + + + + + research field concerned with information technology approaches to handling biodiversity-related data + + + + + + + alteration of calcium-rich plagiocale feldspar to fine grained aggregate of secondary sodic-rich minerals + + + + + + + ethological class; trace fossils formed as a result of grazing by organisms + + + + + + + lithium atom with a charge + + + + + + type of Japanese candlestick pattern + + + + + + + + + to have been altered by corundum + + + + + + + + + to strengthen or fortify using corundum + + + + + + + part of a graph + + + + + + + + + to exchange explicit texts or images with someone + + + + + + used to express discontent or dismay + + + used to express surprise + + + + + + lacking romantic attraction to anyone + + + + + + + + + to moderate + + + (of a product) to modify + + + + + + + a video blog + + + + + + + attractive older woman; acronym of Mom I'd Like to Fuck + + + + + + happening before a pandemic, specifically the COVID-19 pandemic + + + + + + + clade of dinosaurs containing all modern birds + + + + + + + + offensive or lewd + + + + + + + gender identity where a person identifies as only partly male + + + + + + + transgender with a partially or fully masculine gender identity + + + + + + + one sextillionth of a second + + + + + + + + + اینٹرنیٹ تے گل بات دی چوݨ دیݨا + + + + + + + a member of the Reichsbürger movement + + + male citizen of an empire + + + + + + drunk + + + + + + + device dispensing ink over a metal ball at its point + + + + + + having a crooked back + + + + + + + Any organism of the clade Unikonta + + + + + + + + weird, dubious, or otherwise strange + + + + + + + + كَان مُمكِن + + + + + + + any toad of the clade Bombina + + + + + + + any butterfly of the family Lycaenidae + + + + + + + any protist in the clade Alveolata + + + + + + + any insect of the infraclass Neoptera + + + + + + tartaric acid + + + + + + + + + to arrange to pay debt in installments + + + + + + + act of assigning a label + + + + + + + act or process of preceding, spatially or temporally, terminating at a determined point + + + + + + + a little thing + + + + + + + a text-based user interface operated from a command-line console + + + + + + + a New Zealand honeyeater, a parson bird + + + + + + + a barangay + + + + + + having a reddish-brown color + + + made from terracotta, a hard, baked reddish-brown clay + + + + + + + any crustacean of the family Palaemonidae + + + + + + + platonic friendship including sex + + + person one has a platonic friendship with, that includs sex + + + + + + + female a person whose company one enjoys and towards whom one feels affection + + + + + + stylistically advanced + + + + + + ergonomics + + + + + + + + + one who bunkers, or one who creates a bunker + + + + + + prepare for an immediate event about to happen + + + prepare a weapon for use + + + + + + + boat or ship suited to sailing + + + + + + + Japanese syllabary + + + + + + + + + vocalisation produced by canines and other mammals + + + + + + + type of formal grammar + + + + + + + + + to render illegitimate + + + + + + + + + to trick somebody + + + + + + + any even-toed, ruminant mammal in the family Camelidae + + + + + + + rodent in the family Caviidae (cavies) + + + + + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + + + + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + + + + + like a troglodyte + + + + + + + like a troglodyte + + + + + + + + a specialist in pedology, i.e. soil science + + + someone who studies the behavior and development of children + + + + + + + a bird in the family Struthionidae + + + + + + of, relating to, or resembling the ostrich or related ratite birds + + + + + + + + personal canon of somebody + + + + + + + medical practice concerned with feet + + + the scientific study of the morphology and physiology of the feet + + + + + + of or relating to the bat family Molossidae + + + + + + + + any cactus of the genus Mammillaria; even when not globular in shape + + + + + + + Atticora tibialis, a common South American species of swallow + + + + + + + + like a toad + + + + + + + wildflower of the family Iridaceae + + + + + + + the Cape vulture + + + + + + + rhinoceros + + + + + + shut up! be quiet! + + + + + + + cyberattack that utilizes a recently-publicized computer software vulnerability on systems which are yet to be mitigated + + + + + + applied to molar teeth that are V-shaped, narrow at the front and rear, with a sharp apex, and with the two cusps partly or completely fused + + + of or relating to the Zalambdodonta + + + + + + + any porpoise in the family Phocoenidae + + + + + + of or designating a person of mixed race, especially a person who is partially of East Asian, Southeast Asian, or Pacific Islander descent + + + + + + + any fruit bat in the family Pteropodidae + + + + + + + Schawarma + + + + + + + Islamic architecture style using alternating coloured bricks + + + + + + + shaft allowing light to enter a space + + + + + + of or relating to the bird family Picidae (woodpeckers) + + + + + + in opposition to + + + + + + long live + + + + + + to be honest + + + + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + + + + + an investigation of truth in a civil law case in which the interrogation and inquiry are often accompanied by torture + + + + + + + + A 'book' containing a student's overall grade + + + + + + + Inuit shaman + + + + + + + relative, someone who is part of a family + + + + + + impertinent; having chutzpah + + + + + + a disorderly, confusing situation; a mess + + + + + + having something additional applied + + + + + + + landlord who rarely visits or attends to the propery he lets + + + + + + six, six of something (often approximately) + + + + + + + + + to move the top of the body downwards + + + + + + + coming outside from + Preparations for their departure out of Egypt + + + + + + + dreamtime, everywhen + + + + + + + recipient of negative affect + + + + + + + branch of zoology dealing with the Crustacea + + + + + + + + + study of the geology of celestial bodies + + + + + + study of the interaction between humans and other animals + + + + + + branch of entomology dealing with the Trichoptera (caddis flies) + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + branch of ecology that deals with the structure, development, and distribution of ecological communities + + + + + + + the study of character including its development and its differences in different individuals + + + systematic description of distinguishing or essential features; the aggregate of these + + + + + + study of the shape of the ear + + + + + + academic and professional field combining gerontology and technology + + + + + + + the study of waves or wave motions + + + + + + + a branch of anthropology concerned with the study of cultural institutions as distinct from the people who are involved in them + + + + + + + the study of a community or society through systematic analysis of what is thrown away as garbage; the branch of anthropology or archaeology dealing with this + + + the practice of looking through the garbage of celebrities, politicians, etc., in search of compromising or incriminating material + + + + + + + the study of vibrations and oscillations in the Sun + + + + + + + + cruel, cold-hearted + + + + + + occurring outside of daylight hours + + + + + + one-hundred-and-twenty-fifth anniversary + + + + + + hilarious + + + + + + + cylindrical body that is composed of parallel peripheral rods connected to the axial filaments of flagella + + + + + + + ancestor + + + + + + that which shares attributes with another or with itself at another time + + + + + + the branch of aerobiology that is concerned with the bacteria of the air + + + + + + the study of sea birds + + + + + + + branch of zoology that deals with the oligochaete worms + + + + + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + + + + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + + + + + branch of botany that deals with plant functions + + + + + + + + the study of mental functioning and behavior in relation to other biological processes + + + + + + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + + + + + + a fish of the order Isospondyli + + + + + + egg-shaped + + + + + + consisting of a mixture of an essential (volatile) oil and a resin + + + + + + + drug addict, homeless person + + + + + + + the study of the effects of radiation upon living organisms + + + + + + + + branch of biology concerned with the study of plankton + + + + + + + + the study of grasshoppers and locusts (infraorder Acrididea) + + + + + + the study of the nature of ignorance or of what it is impossible to know + + + + + + + the study of weather and use of weather and climate information to enhance or expand agricultural crops and/or to increase crop production + + + + + + + + branch or school of psychology mainly based on the work of the philosopher John Locke + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + + + + + + the scientific study of aponeuroses + + + + + + + the branch of meteorology which studies thunder + + + + + + + observation of the heavens as the basis of a religious system; reverence of the heavens + + + + + + + branch of biology that studies cells + + + + + + + scientific investigation of the atmosphere + + + a treatise on the atmosphere + + + + + + + the science of the universe + + + + + + (expressing approval, emphasizing accuracy) + + + (implying alarm or threat) + + + + + + + the branch of astronomy concerned with comets. + + + + + + + + the study of cyclones + + + + + + + an environmental movement and philosophy which regards human life as just one of many equal components of a global ecosystem + + + + + + + the study of the mind in relation to the electrical activity of the brain + + + + + + of, relating to, living in, or being a controlled environment containing one or a few kinds of organisms + + + + + + + the application of scientific methods and engineering techniques to the exploitation and utilization of natural resources (as mineral resources) + + + + + + + the science dealing with the brain and its structure and function + + + + + + + the study of fungi + + + + + + + the study of or knowledge of the diseases of horses + + + + + + + the branch of pharmacology that deals with drugs acting on the immune system and, in addition, with the pharmacological actions of substances derived from the immune system + + + + + + + the study of karst and karst topology + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + branch of bryology that deals with mosses + + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + + + + + + + + to leave + + + to surpass + + + to kill + + + to humiliate, act aggresively + + + + + + + the branch of ophthalmology that deals with neural aspects of the visual system + + + + + + + the study of ostraca (potshards or limestone flakes used as a surface for drawings or sketches, or as an alternative to papyrus for writing as well as for calculating accounts) + + + + + + + the physiology of extinct and fossil organisms + + + + + + + the branch of science that deals with pests and methods of controlling and eradicating them + + + + + + + the psychological study of the passions or emotions + + + + + + + radiology + + + + + + + the scientific study of repairing disturbed ecosystems through human intervention + + + + + + + the scientific study of inorganic entities: geology, mineralogy, etc. + + + + + + + wearisome repetition of words in speaking or writing + + + + + + + the branch of psychology that focuses on how people grow and change over the course of a lifetime + + + + + + + the study of turtles and tortoises + + + + + + + + the study of writing systems and orthography + + + + + + + (informal) the art or practice of bluffing or deception + + + + + + + + a person or people who are unable to leave a place and are thus forced to listen to what is being said + + + + + + + + + to spend time doing unimportant or trivial things + + + to waste someone's time + + + + to be sexually promiscuous + + + + + + + + a center for monitoring electronic communications (as of an enemy) + + + + + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + + + + + + the study of the time-averaged geographical distribution of cloud properties and the diurnal, seasonal, and interannual variations of those properties + + + + + + + the scientific study of human beings and populations from a biological point of view + + + + + + + the scientific study of human behavior under natural conditions especially in the context of its origin and evolution + + + + + + + the psychology of a person's own mind + + + + + + + scientific discipline that is concerned with all aspects of the Earth's structure, composition, physical properties, constituent rocks and minerals, and surficial features + + + + + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + + + + + + the study of facial features + + + + + + + a treatise on diseases of the teeth + + + the branch of medicine that deals with diseases of the teeth + + + + + + + branch of histology concerned with the nervous system + + + + + + + the study of and classification of muscles with reference to their innervation + + + + + + + a treatise on electricity + + + + + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + + + + + + the application of food science to the development, processing, or preservation of foods + + + + + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + + + + + + a treatise on dialling + + + + + + + a victory in which one side or team wins every game, contest, etc. + + + a complete change in something + + + an election when a candidate or party achieves an overwhelming or complete victory, winning in all or almost all districts or precincts + + + + + + not assassinated + + + + + + + the branch of psychology concerned with the study of the human mind + + + + + + + seismology dealing with records obtained at long distances + + + + + + + the branch of medicine studying the effects of psychological phenomena on the immune system; the intersection of psychology and immunology + + + + + + + sociology as it relates to psychology, or is influenced by the findings of psychology + + + + + + + the classification of mental illness + + + + + + + a treatise on fossil animal remains + + + the study of fossil animals + + + + + + + + the branch of biology that deals with the formation, structure, and development of ova + + + + + + + the use of specially designed and fitted contact lenses to temporarily reshape the cornea to improve vision + + + + + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + + + + + + the study of water balance components intervening in agricultural water management + + + + + + + the study of the effects of sexually transmitted disease on the skin, mucous membranes, nails, and hair + + + + + + + an applied earth science that uses hydrologic principles in the solution of engineering problems arising from human exploitation of the water resources of the Earth + + + + + + + the study of the climatic conditions of a large area + + + + + + + the study of relative abundances of nuclear species as a means of dating stages in stellar nucleosynthesis + + + + + + + a universal theology; specifically, a theology which comprehends all gods and all religions + + + + + + + a guide who helps visually impaired runners during a race + + + + + + + the study of human society; sociology + + + + + + + the study of and collecting of beer mats + + + + + + + simple or basic technology; (relatively) unsophisticated technology + + + + + + + the study of the spleen + + + + + + + the use of climate information in decision-making, impact assessments, seasonal climate forecast applications and verification, climate risk and vulnerability, development of climate monitoring tools, urban and local climates, and climate as it relates to the environment and society + + + the application of weather and climate information to problems facing agriculture and commerce + + + + + + + a branch of meteorology that uses synoptic weather observations and charts for the diagnosis, study, and forecasting of weather + + + + + + + a library staff person who is not a librarian + + + + + + + the application of the data and techniques of climatology to aviation meteorological problems + + + + + + + + hypnotism + + + + + + + the branch of science concerned with the effects of drugs and other chemical substances on plants + + + + + + + the phenology of plants + + + + + + + psychological discipline that deals with individual psychology techniques applied by an individual, in order to affirm and achieve individual goals such as happiness and self-affirmation + + + + + + + archaeological survey and excavation carried out in advance of construction, other land development, or natural destruction of a landscape + + + + + + + the study of bounded sets + + + + + + + a video that integrates a song or an album with imagery that is produced for promotional or musical artistic purposes + + + + + + + a theory or science of faith + + + + + + + foolish talking; babbling + + + + + + + a monologue + + + + + + + medical field that is concerned with rational nutrition, energy and nutrient needs of the body and the ways to alter them with special diets in the treatment of particular diseases + + + + + + + + + the study of fools and folly + + + + + + + Adderall + + + + + + + technology designed or planned so that people with disabilities are not prevented from using it + + + + + + + the branch of mineralogy concerned with the physical properties of minerals, as distinct from their chemical composition + + + + + + + natural theology + + + + + + + + + to be realized in the near future + + + + + + + non-existent job posting or job interview + + + + + + + the making of false statements, lying; (also) an instance of this + + + + + + + an approach to archaeology that uses queer theory to challenge normative, and especially heteronormative, views of the past + + + + + + + the study of artillery; the practice of using artillery as a weapon + + + + + + + + the study of artillery; the practice of using artillery as a weapon + + + + + + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + + + + + + + the chemistry of metabolic processes; biochemistry + + + + + + + + + + singular ‘they’ + + + + + + killed by suffocation in water + + + + + + + a structure that stores transactional records, also known as the block, of the public in several databases, known as the “chain,” in a network connected through peer-to-peer nodes + + + + + + + drug user, junkie + + + + + + + act of toppling, knocking over + + + dumping of waste + + + + + + + agricultural food products as a class + + + + + + + (reflexive third-person plural pronoun) of their own self + + + + + + + analysis of the climate of a single space, or comparison of the climates of two or more places, by the relative frequencies of various weather types or groups of such types + + + + + + + the study of relationships between the structure of an organism and the function of the various parts of an organism + + + + + + + a branch of mathematics encompassing any sort of topology using lattice-valued subsets + + + + + + + branch of radiology dealing with minimally invasive treatment, which reaches the source of a medical problem through blood vessels or directly through a tiny incision in the skin to deliver a precise, targeted treatment + + + + + + + the scientific use of mineral springs and hydrotherapy for healing + + + + + + + + a doctrine or theory concerning matter + + + + + + + the science or knowledge of the streets of a town or city; (now especially (colloquial and humorous)) the skills and knowledge necessary for dealing with modern urban life + + + + + + + theological theory based on the idea of process + + + + + + + an explanation for the origin of a word that is believed to be true, but is, in fact, wrong + + + the transformation of words so as to give them an apparent relationship to other better-known or better-understood words (as in the change of Spanish cucaracha to English cockroach) + + + + + + + the branch of science and technology concerned with robots + + + + + + + technology + + + + + + + the study and analysis of the evolution of a text or texts, esp. through rewriting, editing, and translation; more generally, the study of text production; textual classification + + + + + + + the theory or subject of spirit-rapping + + + + + + + + + to treat in the manner of Shakespeare + + + + + + + + + to deteriorate in quality or condition + + + + + + + type of mathematical function + + + + + + + type of scientific study + + + + + + qaqorpoq + + + + + + + talk or gossip of a rural area + + + + + + that occupies oneself + + + + + + + + + to subject to electrolysis + + + + + + + + + to increase the amphibolitic content of a rock + + + + + + + + + to regulate the body’s water content and solutes + + + + + + + + + to perform parathyroidectomy on + + + + + + + fine-grained albite-rich rock resulting from contact metamorphism of shales and slates + + + + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + + + + + + the practice of designing, manufacturing, using, and disposing of information technology products in an environmentally friendly way + + + + + + + + + to flow or wash over; to inundate + + + + + + + + + to convert by petrification into jasper + + + + + + + + + + + to break the law + + + + + + + bleating sound + + + + + + + + + to spit a lump of phlegm + + + + + + + + + to work as an adjunct + + + + + + to have been made widely available, formally released + + + to have had works accepted for publication (as an author) + + + + + + + act of disturbing, disturbance + + + + + + + + + to make a dull or plangent sound upon impact + + + + + + + + + to pair or team up with another person + + + + + + + + + to make a rejoinder to something or someone authoritative + + + + to reply (not necessarily impertinently) + + + + + + + the fly agaric toadstool, Amanita muscaria, which was formerly smeared on bedsteads to repel bedbugs + + + + + + + mineral, complex sulfate of aluminum + + + + + + + + + to behave in an aimless or idle manner; putter + + + fiddle with + + + + + + + sacred object, amulet + + + + + + + type of shaman and traditional executioner amongst the Arrernte people + + + + + + + hydrous fluoride mineral of calcium and sodium + + + + + + the act or action of performing the high jump + + + + + + + joking, teasing + + + + + + + understanding, knowledge + + + + + + + + deep purple-red colour, like that of Burgundy wine + + + + + + + musical instrument resembling a guitar with plucked metal strings and a scalloped body + + + + + + close by + + + + + + (of a person) associated, accompanying + + + + + + that hints + + + + + + + the state of being a servant + + + + + + + a white, deliquescent crystalline compound, ZnCl₂, used as a wood preservative, a disinfectant, a soldering flux, and for a variety of industrial purposes, including the manufacture of cements and paper parchment + + + + + + + + foolishly stupid: clueless + + + + + + + act to gargle + + + + + + the fragrant wood of the root and stem of either of two shrubs (Convolvulus scoparius and C. virgatus) native to the island of Tenerife + + + + + + + a dark-gray crystalline compound, GaAs, used in transistors, solar cells, semiconductor lasers, and other semiconductor applications + + + + + + + the branch of astronomy concerned with comets; cometology + + + + a treatise on comets + + + + + + + description of trees + + + the recording of tree growth by a dendrograph + + + + + + + examination of the aorta using x-rays following the injection of a radiopaque substance + + + + + + acute febrile disease especially of swine and some nonhuman primates caused by a picornavirus + + + + + + + dislike of or prejudice towards people, cultures, and customs that are foreign, or perceived as foreign; xenophobia + + + + + + + the study of the geographical distribution of extinct or fossil animal species or populations + + + + + + + the compilation, description, or analysis of myths + + + a critical anthology of myths + + + + + + + a history or description of fevers + + + + + + + an electrotype process by which a copy of an engraved plate is obtained with a raised surface, suited for letter-press printing + + + + + + + the study of luminous atmospheric phenomena, such as rainbows, parhelia, etc.; a treatise on this subject + + + + + + + wingtip device + + + small or rudimentary wing + + + + + + + medium or membrane used for ultrafiltration + + + + + + pertaining to tourists or touring + + + + + + + apparatus for determining the direction from which radio waves are coming + + + + + + + diseased or morally degenerate city + + + + + + + instrument for measuring the absorption of light or other radiation + + + + + + + instrument for measuring the concentration of alcohol + + + + + + able to communicate fluently in two or more languages + + + + + + + fictional work lacking traditional elements of the novel + + + + + + + tartar deposited from wines completely fermented + + + + + + + avgas; gasoline for use in piston-driven airplanes + + + + + + lacking mutual consent + + + + + + + pay issued retroactively + + + + + + + instrument for determining the expansion of a liquid by heat + + + + + + + unit of area equal to 10 ares + + + + + + + photoconducting substance or device + + + + + + + class of substances released into water by eggs of some aquatic animals + + + + + + wood-eating (of certain beetles) + + + + + + + chief administrative officer + + + + + + + board bearing notice; signboard + + + + + + relating to particles of rock that have been broken down from pre-existing rocks by erosion and weathering + + + + + + + + well-mannered, good-natured + + + + + + + + + (of an animal) to lie on stomach with legs stretched out + + + + + + that chokes, stops respiration + + + + + + each week, per week; weekly + + + + + + + ritual ablution; wudu + + + + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + + + + + conveyed by instruction + + + + + + + the fruit of the shrub or small tree Amelanchier alnifolia (family Rosaceae) + + + + + + in expectation of, anticipating + + + + + + + electronic radio component + + + + + + + + + to strike, to knock + + + to bump into or against + + + to have sexual intercourse with + + + + + + of a structure, precomposed + + + + + + + + + + to swirl or rotate + + + + + + + + + to feel or search with hands; to grope about + + + + + + + + + to restore to a former legal status + + + + + + + + + to put or hold forward in opposition against or to + + + + + + + + + to utter (words or prayers) + + + + + + + + + to bring forth; to give off + + + + + + + + + to affect, exhibit affectation + + + + + + + + + to make or shape by artifice; to construct, contrive + + + + + + + + + to place before in position + + + + + + + + + decompound + + + + + + + + + to make (a molecular structure) into a supercoil + + + + + + + + + to place in a tomb + + + + + + + + + for a tornado storm to occur + + + + + + + + + to stimulate the transcription of (a gene) by binding to DNA + + + + + + + + + to carry out transfer of phosphate between molecular compounds; to exchange phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + + + + exhibiting three phases + + + + + + + the use of ice-penetrating radar to investigate the thickness, roughness, motion, and debris of a body of ice, and to measure and detect crevasses and sub-ice lakes + + + + + + + + + to react with insufficient enthusiasm or vigor + + + + + + + + + to move quickly from place to place + + + + to move as if by hopping + + + + + + + + + to provide education at home + + + + + + + + + to greet with a high-five + + + + + + + + + to boil an egg until the white and yolk are hard + + + + + + + a squat broad-mouthed usually covered jar (as of bronze, pottery, or jade) used mostly as an incense burner + + + a psychological affliction in which an individual believes his genitals or her vulva and nipples are retracting and likely to disappear + + + + + + + + + to express admiration or pleasure by saying ‘ah’ + + + + + + + + + to scrape with a curette + + + + + + + + + to deprive/divest of nuclear armaments + + + + + + putting anthropology to practical use in its broadest sense, ranging from research and design to the implementation and management of an organization, process, or product + + + + + + + + + to present or report in a sensational, lurid, or melodramatic manner + + + + + + + + + to re-establish or restore blood supply to + + + + + + + any of various theories asserting the validity of objective phenomena over subjective experience + + + an ethical theory that moral good is objectively real or that moral precepts are objectively valid + + + a 20th century movement in poetry growing out of imagism and putting stress on form + + + philosophical system named and developed by Russian-American writer and philosopher Ayn Rand + + + + + + + the study of enzymes at very low temperatures + + + + + + + the quality or character of being vainglorious + + + + + + without the use of a condom; (also) not in possession of a condom + + + + + + olive-green + + + + + + + + + Originally: to utter an exclamation or sound represented by ‘ouch’. Now also: = hurt + + + + + + + the position, status, or character of a puny; junior position or status; inferiority + + + + + + + a large building used for storing farm machinery, vehicles, etc. + + + + + + + a small quantity of loosely-aggregated matter resembling a flock of wool, held in suspension in, or precipitated from, a fluid + + + a bright or dark patch on the sun + + + either of two small lobes on the lower posterior border of the cerebellum + + + + + + + substance giving butter its characteristic aroma + + + + + + money + + + + + + comments or explanatory notes about a recording printed on the jacket or an insert + + + + + + + a fifth anniversary + + + a period of five years + + + + + + + artillery soldier next in rank below a gunner + + + + + + + + + to collaborate on a design with someone else + + + + + + of, pertaining to, or derived from intuition; of the nature of intuition + + + + + + + the place in which a person or thing is; location, whereabouts + + + + + + + an organism that feeds on mites + + + + + + drawn, allured + + + + + + against; in return for + + + + + + used to, acquainted with + + + + + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + + + + + + + + to assail or prey upon after the manner of a vampire + + + + + + in a westward direction + + + + + + + scumbag; disreputable person + + + + + + + + + to pronounce with a harsh or guttural voice + + + to sing or enunciate in a throaty voice + + + to work very hard + + + + + + + utilization of computer knowledge in a clever way + + + remove pieces + + + cough + + + + + + + the wife of a dauphin + + + + + + + + process of becoming prosperous + + + + + + + act of freely giving + + + + + + + unjoining, disintegration + + + + + + + causation of damage + + + + + + engage in sexual relations, having been the recipient of sexual relations + + + + + + greet, accept, happily permitted + + + + + + + collaboration + + + + + + + + + to write or record in a diary + + + + + + + + + to formulate a strategy + + + + + + + + + to make a tumult, commotion, or disturbance; to raise an insurrection, to riot + + + + + + + a gene-hunting technique that traces patterns of disease in high-risk families + + + + + + + a nutritional supplement composed of serum-derived bovine protein concentrate containing high levels of immunoglobulins (Ig), particularly IgG, with the potential to improve nutritional status + + + + + + being alone : solitary, isolated + + + + + + + + + to recompense, reward; to pay for something done + + + + + + deserted; left solitary or desolate + + + + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + + + + + + result + + + + + + describing a type of assessment in which the learner’s current level of achievement, skill, knowledge, or understanding is assessed against their own previous level, rather than against fixed criteria or a norm + + + describing a process of learning in which the same content is covered more than once, but at an increasingly challenging level, as happens within a spiral curriculum model + + + + + + of, relating to, or characterized by dialogue + + + + + + + depending on or exercising opinion + + + + + + worry about, be emotionally involved with, cause anxiety about + + + indicating a particular condition or outcome. + + + + + + a Japanese bamboo flute + + + + + + + let go + + + + + + + the act or process of macadamizing + + + + + + + a diverse range of critical, iconoclastic, and non-linear approaches to researching the historical development of media technologies and the history of ideas about them + + + + + + the academic investigation of the mass media from perspectives such as media sociology, media psychology, media history, media semiotics, and critical discourse analysis + + + + + + + the disclosure of an inappropriate amount of detail about one's personal life + + + + + + + an ornament worn in a perforation of the lip + + + + + + having the form of an animal + + + of, relating to, or being a deity conceived of in animal form or with animal attributes + + + + + + + jar with a human face, usually in appliqué technique, formed on the shoulder; the function of these vessels was often funerary + + + + + + + obtaining or using from a specific source + + + providing to, being the source + + + + + + + summing + + + saying + + + + + + + + + to inspire guilty feelings + + + + + + + move downward + + + be defeated + + + become + + + the act of occurring + + + + + + + a substance being studied in the treatment of follicular non-Hodgkin lymphoma + + + + + + + an antiviral agent used to prevent or treat cytomegalovirus infections that may occur when the body's immune system is suppressed + + + + + + + an orally bioavailable, synthetic, highly selective adenosine A3 receptor (A3AR) agonist with potential antineoplastic activity + + + + + + + + + well known, popular, renowned + + + + + + cockery + + + + + + go by + + + + + + + a dice game resembling hazard + + + + + + + uncle; nuncle + + + a fool + + + + + + get by + + + + + + + the branch of zoology that deals with the ascidians or broadly the tunicates + + + + + + + person or animal of small size and stature + + + child + + + + + + oops; sorry, I just let off + + + + + + + theology based on the Bible; specifically : theology that seeks to derive its categories of thought and the norms for its interpretation from the study of the Bible as a whole + + + + + + + a design where signal paths are balanced or symmetrical, often used to reduce noise and improve signal integrity, especially in audio and RF applications + + + + + + + the technology approved by legislators or regulators for meeting output standards for a particular process, such as pollution abatement + + + + + + + subfield of sociology that examines the role of culture in shaping social life, including how people create meaning, form groups, and interact with cultural expressions within institutionalized settings + + + + + + + move forward or upward + + + + + + + stretch of water where the waves break over a submerged reef + + + + + + + sea urchin + + + porcupine fish + + + + + + + + + to incite or urge a dog to attack or chase + + + + + + (mathematics) of or pertaining to the fiber of a map + + + + + + + the application of methods and principles of psychology to problems of military training, discipline, combat behavior + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route on top-rope beforehand + + + + + + + explore, discover new places or things, searching out new places + + + + + + botch, mess up, make a hash of, short for 'fuck up', screwed up + + + + + + + the study of human races + + + + + + + the branch of entomology concerned with fleas (Siphonaptera) + + + + + + + follow, pursue + + + + + + + the branch of paleontology dealing with ancient and fossil animals + + + + + + + + to come down, lower oneself, or arrive, lowering + + + + + + draw attention away from something, not focused on what is at hand + + + + + + make more western (new world), make more western (European-based cultures) + + + + + + + relinquish, give up rights to + + + + + + + act or process of filling with liquid or emptying of liquid + + + act or process of moving up and down + + + + + + + monitor, watch, serve as police for, enforcing the law + + + + + + + theology based on and attainable from revelation only + + + + + + + + the geological features of a given region specifically excluding superficial deposits such as clay, sand, etc. + + + + + + + the hobby of collecting sugar packets + + + + + + + act/process of discarding, throwing away, dismantling for scraps + + + + + + + the process of dwindling; gradual diminution or decline + + + + + + + the practice of diagnosing disease by visual inspection of the patient's urine; uroscopy + + + + + + + the branch of zoology concerned with quadrupeds + + + + + + + to save or relieve from + + + + + + + act of renting + + + be a landlord + + + + + + + the initial topology (or induced topology or strong topology or limit topology or projective topology) on a set X, with respect to a family of functions on X, is the coarsest topology on X that makes those functions continuous + + + + + + + the classification of lakes based on various characteristics + + + + + + + act/process of moving a fluid, or fluid-like, substance from a container, especially into another in a controlled stream + + + + + + + send a text message via cell phone + + + + + + + an expert in bryology + + + + + + enticed, seduced, inclined to + + + + + + + relative unit of measurement used in mapping of chromosomes; one hundredth of a morgan + + + + + + act or process of increasing incrementally + + + + + + + a system of classification that creates distinct, non-overlapping categories or "types" to represent different aspects of a phenomenon + + + + + + + act of looking intently, gazing fixedly + + + + + + + act of setting one thing atop another + + + + + + + a medical specialty that uses medical imaging techniques to diagnose and treat diseases + + + + + + + a creative person + + + + + + with confidential or sensitive information excluded + + + + + + + type of combustion system that utilizes a circulating bed of solid particles, like sand or limestone, to burn fuel + + + + + + + concept in object-oriented programming that allows a new class (a subclass or derived class) to automatically acquire the properties and behaviors of an existing class (a superclass or base class) + + + + + + + the tools, resources, and technological systems medical professionals use to diagnose, understand, and treat patients + + + + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + + + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + + + + + + + + to make a sortie; to sally + + + + + + + a catalogue of saints, or a collection of saints' lives + + + + + + + + to direct the course + + + + + + + + + (cause to) experience stress (phrasal) + + + + + + + The act of renting a place as a landlord + + + The act of renting a place as a tenant + + + + + + + contract work to an outside entity + + + + + + + an act or instance of touching up + + + + + + + + + to say as a quick retort; to say (a witty or sharp reply) in answer to an earlier remark + + + + + + + the act of engaging in a lively and witty exchange of retorts, or the skill of making clever and quick replies + + + + + + + + + the use of growth rings in trees to date when timber was felled, transported, processed, and used for construction + + + + + + + + + short for 'superimpose:' put one thing atop another + + + + + + + moving with a whooshing noise + + + + + + hold a second job + + + + + + + + + + + to feed or fatten (livestock, especially sheep) on turnips + + + + + + + the study of urine or the science of the urinary system + + + + + + + the study of fungi in the Zygomycota group (bread molds, etc.) + + + + + + + manner of motion, jumping + + + + + + having a freckled face + + + + + + + a hollow or depression in a surface; a wrinkle + + + + + + + arm strengthening exercise + + + + + + + + + go away + + + + + + + + + to perform a pole vault + + + + + + confounded, baffled, perplexed + + + + + + + a disorder of vocal communication marked by involuntary disruption or blocking of speech (as by abnormal repetition, prolongation, or stoppage of vocal sounds) + + + + + + + The act of making flakes + + + + + + + twist (a body part) emotionally + + + + + + + the ability of a layer of a substance to absorb radiation expressed mathematically as the negative common logarithm of transmittance + + + + + + covered with insulation, protected + + + + + + The act of explosive air motion + + + + + + + conscious abandonment of allegiance or duty (as to a person, cause, or doctrine + + + + + + The act of experiencing great pleasure + + + + + + make acidic + + + + + + + well_up: gather; upward motion of water, or as if of water, perhaps from a spring + + + + + + acquisition or development of nuclear weapons by a nation or military force + + + + + + + + + to resign; to withdraw or step down from one's position or occupation + + + + + + opposed to war + + + + + + nearby, spatially or temporally; be imminent or immediately relevant + + + + + + + the branch of geology that studies the deformation and movement of the Earth's outer layers, specifically its crust and lithosphere, along with the forces that cause these changes + + + + + + + (obsolete) slaughter + + + (archaic) the power of quelling + + + + + + + act of lifting and throwing (someone) to the ground, as in wrestling + + + + + + + + an illogical situation for which the only solution is denied by a circumstance inherent in the problem or by a rule + + + + + + + + + label by color + + + + + + come by: acquire + + + + + + + + + express two or more genes simultaneously + + + + + + having skin with certain characteristics + + + + + + + traction opposed to another traction, used in reduction of fractures + + + + + + + act in responce to a stimulus + + + + + + + convert into a horny tissue + + + + + + + + + cause to precipitate together + + + + + + + act or process of causing to precipitate together + + + + + + + + + punish + + + + + + + surgery that creates a connection between the jejunum and a cyst for drainage of the cyst + + + + + + + + + to remove necrotic tissue or foreign matter (f. ex. from a wound) + + + + + + + + + remove mast + + + + + + + + + remove rat + + + + + + + The act of decreasing oxygen saturation in hemoglobin + + + + + + + + + goof off, screw around + + + + + + + mastocel + + + + + + oversatiate with cuban food/culture + + + + + + surgical birth + + + + + + + + + combine with a similar molecule to form a dimer + + + + + + + scale down + + + + + + + person who never laughs + + + + + + expression of satisfaction + + + + + + + + + flow outward + + + + + + capable of being elected by voters + + + + + + + + + to drive in the slipstream of a vehicle; draft + + + to travel in the slipstream of (someone), especially in order to overtake them + + + + + + within the skull/vertebrae, but outside the brain/spine + + + + + + having a normal volume of bodily fluids + + + + + + outside of the family + + + + + + + mobilization of the lower end of the esophagus and plication of the fundus of the stomach up around it + + + + + + + + + + enjoy, be amused by + + + + + + + surf move + + + + + + + give by hand + + + + + + + + + gulp all the way + + + + + + + act or process of looking until found + + + + + + + + + to rage around, to cause distruction + + + + + + increase in blood pressure and pulse pressure + + + + + + + overproduce granulation tissue + + + + + + cause to over expand, over-expanded + + + + + + buttress or reinforcing wall + + + + + + + graphic organizer in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a story + + + + + + + The act of analyzing or identifying proteins via antigen-antibody specific reactions + + + + + + + + + separate an antigen from a solution using an antibody that binds to the antigen + + + + + + + + + stain with an antibody + + + + + + + + a miniature optical disk + + + + + + + + + to make into a landfill, fill with garbage + + + + + + + kayak, boating + + + + + + + (cause to) emit + + + + + + + form material by mixing/massaging in repetative folding motion + + + + + + + tightly tangling, pinching, or impeding progress of + + + + + + + Fight primarily with one's feet, often as a form of exercise. + + + + + + likely, appearing + + + + + + + + + secure + + + + + + + forming or dividing into lobules + + + + + + + abnormal rotation + + + + + + + + + to cause a meaningful change, improve; improve the world + + + + + + + + + purposeful attempt + + + + + + + any of several French aperitif wines flavoured with quinine + + + cinchona + + + + + + saving money + + + + + + + + + to purchase an option on something + + + + + + + removal of all or part of the omentum + + + + + + producing an abnormally small amount of urine + + + + + + + badmouthing, with intent to discredit + + + + + + + name + + + + + + + + + move like water in an outward direction + + + + + + + make too calm with (too much) drugs + + + + + + + inflate too much + + + + + + + + + graze to the point of damaging the life cycle of vegetation + + + + + + excessively express a gene by producing too much of its effect or product + + + + + + + + + categorize something as a pathology + + + + + + + + + to become more like a southern region + + + + + + + a specialist in photolithography + + + + + + + + + destroy tissue with an intense laser beam + + + + + + + act of wishing that someone lacked a particular superior quality/achievement/possession of theirs + + + + + + + + + be miserly; avoid spending money + + + + + + blow the whistle on; alert the authorities or public of wrongdoing + + + + + + to take quickly + + + + + + use the WhatsApp to message + + + + + + hold, support weight + + + + + + removal of all or part of the vagina + + + + + + upgrade; make higher-end + + + + + + lift spirits + + + + + + not able to be dislodged + + + + + + cut beforehand + + + + + + add fertilizer beforehand + + + + + + make beforehand + + + + + + preliminary stages to a production + + + + + + to schedule ahead of time + + + + + + conduct a preliminary screening (weeding out) process + + + + + + affix a signature in advance + + + + + + to put into a specific mental state (usually excitement or gullibility) + + + + + + excited or deceived + + + + + + challenge again + + + + + + act of reexamination + + + + + + the act or process of showing again + + + + + + the act or process of putting something somewhere, again + + + + + + act of attestation to the truth of, again + + + + + + find again, notice again + + + + + + call on the phone, again + + + + + + make a corporation again + + + + + + re-introduce or re-admit + + + + + + the process of restoring function by supplying with nerves + + + + + + operative value/efficacy/efficiency, vigor/energy + + + + + + interview or be interviewed again + + + + + + to offer again + + + + + + by night, in the night, overnight + + + + + + to populate (something) again + + + + + + to put a price on something, again + + + + + + + the picking of pockets + + + + + + invite, again + + + + + + relating to rhizomes + + + + + + the act of re-supplying with vessels to conduct fluid + + + + + + removal of one or both ovaries and one or both Fallopian tubes + + + + + + characterized by quirks; quirky + + + + + + + divide a cavity by means of a partition + + + + + + sign_off: give stamp of approval + + + + + + showing off + + + + + + denigrate, insult + + + + + + + football player, footballer + + + + + + dab, apply a gloppy substance, onomatopoetically + + + + + + act of running at top speed + + + + + + squaredance + + + + + + to insert a stent to prevent closure + + + + + + make a short visit + + + + + + to assume (something) as given, fail to appreciate something + + + + + + to discover bit by bit; to extract, obtain, or pry/prise; to get out + + + + + + + event or party, especially one featuring dancehall reggae or ragga music + + + + + + the process of literally or figuratively sloppily chopping + + + + + + the act of giving a response or reply + + + + + + at what time, in which moment + + + at which, on which, during which + + + + + + + cardinal number + + + + + + + number between eleven and thirteen + + + + + + + type of website that visitors can easily and quickly edit + + + + + + ostensible substance coined to trick someone into asking 'what's up, dog?' + "Umm, is it me or does it smell like up-dog in here?" / "What's up-dog?" / "Nothin' much what's up with you?" / "Oh, oh, wow! I walked right into that. Oh, that's brilliant!" + + + + + + + male person or animal already known or implied + + + person whose gender is unknown or irrelevant + + + + + + + + word used by Donald Trump in a tweet, presumably a typo of “coverage” + Despite the constant negative press covfefe + + + + + + placed above + + + + + + + mathematical model combining space and time + + + + + + + The (thing) here (used in indicating something or someone nearby). + This word is a determiner. + + + + The known (thing) (used in indicating something or someone just mentioned). + + + The known (thing) (used in indicating something or someone about to be mentioned). + + + A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + + (of a time reference) Designates the current or next instance. Cf. next. + + + + + + through the means of + + + near to + + + + + + of a kind + + + + + + English function word + + + + + + + The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. + That pronoun is different with this determiner. + + + + + + + target of an action + + + + indicating a location for an event + + + + + + every person, everyone + + + + + + concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + + absence of anything, vacuum + + + + + + + item(s) that are separate and distinct from the item(s) under consideration + + + philosophical, psychological and anthropological concept that refers to the opposite of one's own identity + She and others were disappointed in the results of the election + + + + + + + + up to a certain point in time + + + + + + according to + + + + + + no matter what; for any + + + anything that + + + + + + More than one (of an indeterminate set of things). + Various books have been taken. + There are various ways to fix the problem. + You have broken various of the rules. + + + + + + all over + + + from one end to the other + + + in view of all the circumstances or conditions + + + as a whole : generally + + + with everyone or everything taken into account + + + + + + + physical sensations caused in the mouth by a substance, e. g. food or drink + + + + + + + flying insect typically within the Diptera family + + + + + + + + + + of poor or inferior quality + + + + + + greeting of non-binding nature + + + + + + With one’s legs on either side of. + The boy sat astride his father’s knee. + + + + + + Except, other than, besides. + He invited everyone to his wedding bar his ex-wife. + + + + + + phrase used when someone is leaving + + + + + + + + container for a set of identifiers + + + + + + + + + make fuzzy, wooly, not having hard edges + + + + + + expression of surprise or disbelief + + + + + + chemical element with atomic number 113 + + + + + + + English archaic personal pronoun + Thou shalt not steal + + + + + + that is perfect; that is it + + + claiming success or a win + + + + + + + + + remove ink + + + + + + Used as an expression of agreement with what another person has said, or to indicate that what they have said equally applies to the person being addressed. + I'm really busy today! —Ditto! + + + + + + + + number between 49 and 51 + + + + + + + anthropomorphized animal + + + + + + + НДС + + + + + + + small plate used to hold Eucharistic bread which is to be consecrated during the Mass + + + + + + + + of or resembling pork; piglike; fleshy, obese + + + + + + + computer programming + + + + + + + time off at home or in one's local community + + + + + + + Synthetic ultralight material + + + + + + + Someone who rides a bicycle + + + Someone who rides a motorcycle + + + + + + + plastics derived from renewable biomass sources + + + + + + + polymer produced by a living organism + + + + + + a set of preventive measures designed to reduce the risk of transmission of infectious diseases + + + + + + + treatment of diseases with biological materials or biological response modifiers + + + + + + + type of radiation therapy + + + + + + + wildfire happening in the bush + + + natural disaster: wildfire in bush land + + + + + + A lysosomal storage disease characterized by the abnormal accumulation of cystine in the lysosomes. It follows an autosomal recessive inheritance pattern and has material basis in mutations in the CTNS gene, located on chromosome 17. + + + + + + non-binary: outside or beyond the gender binary; not exclusively male or female + + + + + + quality of being ready to deploy + + + + + + + land with little water + + + + + + branch of physiology + + + + + + + a science that deals with the practical application of electricity + + + + + + + + + set on fire + + + + + + study of music in cultures + + + + + + + medical condition + + + + + + + + + stream or spray upward + + + + + + + + + provide with a function + + + + + + + + + systematically eliminate a population + + + + + + genetically harmful + + + + + + + science relating to the Earth or planets + + + + + + + graphical user interface element that allows the user to select or unselect an item + + + + + + + shiny coating on an object + + + process of coating with a glaze + + + glass part of a wall or window + + + + + + + rising support + + + + + + + misplaced organ or tissue + + + + + + + highest part of a hill + + + + + + pertaining to hydrology + + + + + + + a branch of dentistry dealing with dental implantation + + + + + + between cells + + + + + + pertaining to karma + + + + + + + highest part of a lake + + + + + + relating to macula + + + + + + + medical condition with too many mastocytes + + + + + + + blood flow through smallest vessels + + + + + + engineering of microscopic devices + + + + + + + funding for low-income entrepreneurs + + + + + + + + + create small particles with a micromold + + + + + + + small-scale mineral structure + + + + + + involving multiple academic disciplines + + + + + + useful for multiple purposes + + + + + + having multiple layers + + + + + + engaging multiple forms of communication + + + + + + + science or profession of museum organization and management + + + + + + + study of matter at near atomic scale + + + + + + + science of drug effects on the nervous system + + + + + + not containing iron + + + + + + + type of fabric + + + + + + + process by which cancer begins + + + + + + branch of pharmacology + + + + + + + + + harden by exposing to light + + + + + + found in a river bank or bed (minerals) + + + + + + plasmon analogue of electronics + + + + + + + + + to carry over a portage + + + to move gear over a portage + + + + + + pertaining to primatology + + + + + + + artificial body part replacement + + + + + + + + + undergo pyrolysis + + + + + + + study of radioactivity in Earth’s ecosystems + + + + + + + + + return to circulation + + + (cause to) go around again + + + + + + + reproduction of graphics + + + + + + + + happy + + + + + + + + + to act as a steward for : manage + + + to perform the duties of a steward + + + + + + + + + make ready + + + + + + Japanese pornographic animation, comics, and video games + + + + + + orphan software + + + + + + from the beginning + + + + + + narrative technique of beginning a story at the beginning of the events + + + + + + + provision of tools + + + + + + + an image file in the Graphics Interchange Format file format + + + any short animated image without sound, regardless of file format + + + + + + at what time. + + + at such time as + + + at the time of the action of the following clause + The show will begin when I get there. + + + conjunction + + + + + + relating to students receiving postsecondary education and not yet graduated + + + + + + study of the flow of urine + + + + + + pertaining to urology + + + + + + an enclosure where kakapo are kept + The second kakaporium (Figure 2) is also on a gentle slope on the north-east corner of the remnant forest, and is an open plan design. + Sometimes called the kakaporium, the pen was safe and stoat-proof. + + + + + + anything (sometimes indicates the speaker doesn't care about options) + + + + + + + ability of an item to be used repeatedly before discarding + + + use of existing assets in some form within the software product development process + + + + + + + type of fossilization + + + + + + behind a paywall; requiring payment to be accessed + It seems ironic that scholars working outside universities may be able to afford to publish only in paywalled academic journals that they are unable to read. + + + + + + + type of mineral containing arsenic + + + + + + + + implement for sprinkling holy water + + + + + + + male Buddhist monk + + + + + + + type of rice cake + + + + + + branch of zoology that deals with the Bryozoa + + + + + + type of pasta + + + + + + + type of bacterial toxin + + + + + + + folded pizza + + + + + + application of information technology in chemistry + + + + + + + scientist studying algae + + + + + + + game usually played on a table or other flat surface + + + product for tabletop game + + + + + + + organism that maintains its body temperature + + + + + + + type of old snow atop glacial ice + + + + + + + herbiovre eating low-growing plants + + + + + + + Russian log hut + + + + + + + very small sovereign state + + + detailed microscopic state of a physical system + + + + + + policy of having one’s cake and eating it too + + + + + + in an accepting manner + + + + + + specifically for letters: referring to or naming in a manner that uses the letter itself at the start of the reference or name + + + + + + event that happens with probability one + + + + + + similarly, in response; correspondingly + + + + + + as if an artist were doing something + + + + + + in a manner suggestive of something being baked + + + + + + unfathomably/endlessly/inexhaustibly + + + + + + in a bustling manner + + + + + + without charm (in a charmless manner) + + + + + + doing without emotion or feeling + + + + + + in a curable manner + + + + + + destroying the looks of something + + + + + + a monosyllabic word or form that is added as a suffix to another word and cannot stand by its own + + + + + + like an inscription in the beginning of a book or over the entrance to a building + + + + + + honestly and without cheating or lying + + + + + + in a fathomless manner + + + + + + time period of two weeks + + + + + + shamelessly/brazenly + + + + + + in a manner without a hat + + + + + + very, a lot, with intensity + + + + + + in an ironic or sarcastic manner + + + + + + one acting unhelpfully/insensitively/tactlessly (not considering the consequences of their actions) + + + + + + disgustingly/foully/repulsively/shockingly + + + + + + quality of fictional events which are not seen, but merely heard by the audience or described or implied by the characters + + + + + + in a circle/ring/spherical form, round about + + + + + + so as to be without equal (in a peerless manner) + + + + + + identifying textual reference, cross-referencing + + + + + + in a quarrelsome manner + + + + + + in a rootless manner + + + + + + done in a brilliant, clever or skillful manner + + + + + + in a shiftless (e.g. lazy/indolent) way + + + + + + in a spiritless manner + + + + + + now, immediately + + + + + + in a toothless manner + + + + + + in a trackless manner + + + + + + in accordance with that which is true + + + + + + in a ubiquitous manner + + + + + + in a venturesome manner + + + + + + How, or in what way. + Wherein did I misspeak myself? + + + + + + foolishly/stupidly + + + + + + + study of ancient water courses + + + study of hydrological features at periods in the historical, prehistoric, or geological past + + + + + + water-based motor sport + + + + + + + landmass containing more than one continent + + + + + + + type of small car + + + + + + + collective organism composed of many individuals + + + + + + + release of a product from its manufacturing facility + + + + + + + chemical compound + + + + + + + infraspecific name + + + + + + + Zika virus protein found in isolate Zika virus/A.taylori-tc/SEN/1984/41671-DAK + + + + + + + cell type + + + + + + + protein + + + protein + + + protein + + + + + + + Describe or represent in terms of a parameter + + + + + + study of the evolutionary history and relationships among individuals or groups of organisms; application of molecular - analytical methods (i.e. molecular biology and genomics), in the explanation of phylogeny and its research + + + + + + + vibrations with frequencies lower than 20 hertz + + + + + + + form of a fungus + + + + + + + a publication's editorial leader who has final responsibility for its operations and policies + + + + + + + + + denied recognition + + + + + + + + + to fill with alacrity; to energize, invigorate + + + + + + + + + to moisten (a thing) + + + to wet lips or throat with drink + + + + + + + + + + to form skin + + + + + + + + + to make stupider + + + + + + + + + to cause to suffer loss of money, property, or reputation + + + + + + + + + to make to resemble jazz + + + + + + + + + to form a salt + + + + + + + + + convert into or enrich with silica + + + + + + + + + establish again + + + + + + + + + to yield tribute + + + to pay as tribute + + + + + + (indicating movement, direction towards a place) + + + before, until (indicating relation to a position in time) + + + (indicating application of or benefactive relationship with) + + + + + + + multi-purpose mobile device + + + + + + + practice of spinning wheels while keeping vehicle stationary + + + emotionally and physically drained beacuse of any task + + + + + + + person listed in the author list of a creative work + + + + + + + pliable transparent plastic material + + + + + + + property of that materials that exhibit both viscous and elastic characteristics when undergoing deformation + + + + + + use of chemical compounds to prevent the development of a specific disease + + + + + + + the nanostructure of a biological specimen that can be viewed with ultramicroscopy or electron microscopy + + + + + + + the process of one or more receptors activating another + + + + + + + chemical reaction + + + + + + + double layer of closely packed atoms or molecules + + + + + + + class of chemical compounds + + + + + + + periodic structure of layers of two or more materials + + + + + + + peripheral system disease that is characterized by damage affecting peripheral nerves (peripheral neuropathy) in roughly the same areas on both sides of the body, featuring weakness, numbness, pins-and-needles, and burning pain + + + + + + + Process of active transport by which a cell secretes intracellular molecules contained within a membrane-bound vesicle + + + + + + + atom that has excess nuclear energy, making it unstable + + + + + + + ideograms used in electronic messages and web pages + + + + + + + those who use telecommunications technologies to earn a living and, more generally, conduct their life in a nomadic manner + + + + + + application of ultrasound + + + + + + + Process of a disordered system forming organized structures without external direction. + + + + + + + addition of a sulfate group to a molecule. + + + + + + + A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one cell to that of an adjacent cell. + + + + + + + Embryological process + + + + + + + class of chemical compounds + + + + + + + class of enzymes, type of hydrolase + + + + + + + the time period during which a specific antibody develops and becomes detectable in the blood + + + + + + + physician who treats critically ill patients in the ICU + + + + + + + physical damage to body tissues caused by a difference in pressure + + + + + + + cell line derived from cancer cells + + + + + + + Clipping of promotion. + + + + + + + that is made cognizant of/realized + + + + + + + (derogatory) person born in the United States to non-citizen parents + + + + + + + hybrid instrument designed as a cross between the Dobro-style guitar and the banjo + + + a school for training in various arts of self-defense (such as judo or karate) + + + + + + + regular non-binary companion in a platonic, romantic or sexual relationship + + + + + + hatred, irrational fear, prejudice, or discrimination against transgender people + + + + + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + + + + + an annoying, contemptible, or inconsequential person + + + + + + + The practice of making unverified or misleading claims which misrepresent the appropriate level of human supervision required by a partially or semi-autonomous product, service, or technology. + + + + + + wood from a beech tree + + + + + + + able to be received; which has the ability to be received + + + + + + + Sekai no Owari single + + + + + + + swimming while breathing through a snorkel + + + + + + + + + + + + + elect again to the same position + + + + + + From the higher end to the lower of. + The ball rolled down the hill. + + + + + + regarding; considering + I wrote to him respecting the proposed lawsuit. + + + + + + While waiting for something; until. + Pending the outcome of the investigation, the police officer is suspended from duty. + + + + + + Across, athwart. + + + + + + in addition to what has been said previously + + + + + + in another way + + + or else + + + + + + wherever + + + + + + In advance of the time when. + Brush your teeth before you go to bed. + + + + + + What place. + Where did you come from? + Where are you at? + Where are you off to? + Where you off to? + Do you know where you came from? + + + + + + + whatever person + + + + + + look, see, behold . + + + + + + No! Not at all! + + + + + + (expression of strong feeling) + + + + + + An exclamation yelled to inform players a ball is moving in their direction. + + + + + + an imitation or representation of the grunt of a pig + + + + + + An exclamation to invoke a united cheer: hip hip hooray. + + + + + + A liturgical or variant form of hallelujah. + + + + + + Ellipsis of stand fast, a warning not to pass between the arrow and the target. + + + + + + Indicating surprise, pity, or disapproval. + Dear, dear! Whatever were they thinking? + + + + + + A mild expression of annoyance or exasperation: bother! + + + + + + Expressing good wishes when greeting or parting from someone; hello; goodbye. + + + + + + Expressing exasperation. + We're being forced to work overtime? Oh, brother! + + + + + + no longer in vogue + + + + + + + disruption caused by a disagreement or misunderstanding + + + + + + heritage related to sounds, smells, etc. + + + + + + + name considered ill-suited + + + + + + + code name + + + + + + + name consisting of only one word + + + + + + + political movement + + + + + + + hypothesis + + + + + + + cylindrical section of a naturally occurring substance, usually obtained by drilling with special drills into the substance. + + + + + + + Energy usage that meets the needs of the present without compromising the needs of future generations + + + + + + economy based on low carbon power sources + + + + + + global cooling phenomena + + + + + + + capacity of a socio-ecological system to maintain function during climate change + + + + + + natural reservoir that stores carbon-containing chemical compounds accumulated over an indefinite period of time. + + + + + + + archaic Greek letter + + + + + + + sensation that an event has been experienced in the past + + + + + + + asian motorbike + + + + + + + someone that asserts that the 2001 terror attacks are at the center of a conspiracy + Despite Maxwell’s efforts, the truthers doubled down, more certainthan ever that there was a conspiracy afoot. + At the Eastern Bloc coffee shop, we sat through a few revolutions of customers stopping to eat and talk and laugh, and Charlie seemed to feed off of it, raising his voice so that bystanders could easily hear him explain from within a cloud of American Spirit cigarette smoke why he was no longer a truther. + + + + someone who is convinced that a powerful conspiracy is actively hiding the real facts regarding a significant topic or event from the general public + + + + + + + personalized character created by the furry fandom + + + + + + + attack from the air + + + + + + + state or condition of being unsentimental + + + + + + + + + a file that uses the jpg file format + + + + + + + potato + + + + + + + potato + + + + + + + attribute in video game representing the health of a game character + + + + + + + Virtual reality device in Star Trek + + + + + + + + + to alterate a previously established facts in the continuity of a fictional work + It was in the development of this sequel—the more mature epic fantasy The Lord of the Rings—that Tolkien began to retcon certain events from The Hobbit. + + + + + + the practice of alterating previously established facts in the continuity of a fictional work + Retconning has been made most explicit in the imaginary worlds of the superhero "universes" found in comic books published over the past seventy-five years by DC Comics and Marvel Comics. + + + + + + + a South American rodent + + + + + + + a despicable person + + + + + + + a contemptible person + + + + + + + baseball position + + + + + + + fine mica mineral; commonly occurs as alteration mineral of orthoclase or plagioclase feldspars in areas subjected to hydrothermal alteration + + + + + + + special consideration to individuals solely on the basis of their species membership + + + + + + + + silly, foolish + + + + + + + parameter used to control machine learning processes + + + + + + species occurring outside its native range + + + + + + + a member of Generation Z + + + a female breast + + + + + + + reluctant to wear face masks during a disease outbreak + + + skeptical of the usefulness of face masks + + + + + + + attempting to trick a person into revealing information + + + + + + + abbreviation consisting of the first letters of words + + + + + + + member of the Afrotheria clade of mammals + + + + + + nothing of value, emphatically nothing + + + + + + attracted to both the same and opposite sex or gender + + + + + + condition where a person differs from normal male or female physical characteristics + + + + + + three-dimensional + + + + + + of or relating to a lynx + + + sharp-sighted + + + + + + + one who vapes + + + + + + + a trucking rig consisting of a tractor and a trailer and typically having eighteen wheels + + + + + + + + + outdoor camping with amenities and comforts not typically had while camping + + + + + + extremely good or impressive + + + + + + + smartphone sold by Apple, Inc + + + + + + + laughing out loud + + + + + + + a single piece in the game of milk caps + + + + + + drunk + + + + + + able to find in a Google search + + + + + + + + the point on the compass or the direction midway between east and southeast + + + + + + fifth-generation + + + 5th generation of cellular mobile communications + + + + + + + collective of users of a service + + + + + + + any weevil in the family Curculionidae + + + + + + + + any bird of the family Acanthizidae + + + + + + + any insect of the clade Heteroneura + + + + + + + Anolis carolinensis + + + + + + + + any moth of the clade Pterophoridae + + + + + + + an instance of someone buying many things in a short period of time + + + + + + naturally-occurring retinol (vitamin A) precursor obtained from certain fruits and vegetables with potential antineoplastic and chemopreventive activities + + + + + + + official postnominal title + + + + + + designating lesbians and gay men collectively + + + of or relating to lesbians and gay men + + + designating lesbians, gay men, and bisexuals collectively + + + of or relating to lesbians, gay men, and bisexuals collectively + + + + + + + in plural form, lesbians and gay men collectively + + + in plural form, lesbians, bisexuals, and gay men collectively + + + + + + + class of yellow or white flavonoid pigments found in plants + The yellow comes from anthoxanthins, powerful protectants against free-radical damage. + The variety of anthoxanthins is greater than that of anthocyanins, and new anthoxanthins are continuously being discovered. + + + + + + + تحریکِ التواء + + + + + + + a special group of people, a committee, a delegation, etc. + + + + + + worthless, bad, horrible, untrue + + + + + + + person who attends to customers by serving them food and drink + + + + + + having a sexual orientation that changes over time + + + + + + + Marxist term to describe the underclass + + + + + + + condiment made typically of peppers, pickles, grated coconut, salt fish, or fish roe + + + + + + + insulting and racist term of address or reference to an Indian man + + + insulting generic name given to an Indian trader or hawker, particularly a vegetable-hawker + + + + + + + building or room where computer servers and related equipment are operated + + + + + + electricity + + + + + + + elastic band + + + + + + + brownish-red clay that has been baked and is used for making things such as flower pots, small statues, and tiles + + + reddish-brown color + + + + + + + a hybrid between a zebra and any other equine + + + + + + related to or resembling a zebra + + + + + + + of or among the highest rank, level, importance, or quality + + + + + + relating to or in the style of brutalism + + + + + + used to describe a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + + + + + one who wields something + + + + + + the revival of the policies and practices of Brezhnevism + + + + + + corundum; ruby or emerald mineral + + + + + + collection of records, documents or works + + + + + + + + having great girth + + + + + + + + + To look through something very quickly, roughly, or energetically + + + + + + + someone who is a foreigner in Japan + + + + + + + pseudoscientific alternative medicine method using colored light + + + + + + used to wish someone the best of luck and that events will turn out in favorably + + + + + + + any mollusc of the class Monoplacophora + + + + + + + a mammal in the family Mephitidae + + + + + + + marine mammal in the seal family Phocidae + + + + + + + a mammal of the family Tachyglossidae + + + + + + + any toad in the family Bufonidae + + + + + + + any frog in the family Dendrobatidae + + + + + + of, relating to, or resembling the ostrich or related ratite birds + + + + + + + + a mammal in the family Orycteropodidae + + + + + + + + having partially, noticeably distinct, or fully white-colored thighs + + + + + + + heavy steel ball used for demolishing buildings + + + + + + nearby, next to + + + + + + + a member of the bird family Columbidae + + + + + + + square section or area, sometimes containing an inscription + + + + + + of or relating to moles in the Talpidae + + + + + + + Conversion into a xanthate. + + + + + + + Japanese rice ball + + + + + + chewing gum that can be blown into bubbles + + + pop or rock music having simple repetitive phrasings and intended especially for young teenagers + + + + + + + house made of brick + + + attractive/curvaceous woman + + + + + + + marinering + + + + + + + demographic segment + Mary is a soccer mom. + + + + + + + in cricket, ball which breaks from the leg (to a right-handed batter) + + + + + + + master, especially of music in South Asia + + + + + + + tax on business of selling liquor in India + + + + + + + physical and chemical changes undergone by sediment after deposition + + + + + + of a manner of Jewish religious practice that is considered to be intermediate between the Conservative and Orthodox movements in liturgy, observance, etc. + + + + + + + megalopae; stage in the life cycle of crustaceans in the Malacostraca class + + + + + + + + + to think something is good, agreeable + + + + + + + emerald + + + + + + + amount of attention received by audio media + + + + + + + insect possessing wings + + + + + + + swamp-dwelling creature in south-eastern Australian aboriginal mythology + + + + + + + small sack for carrying things + + + + + + ablution, abdest + + + + + + + branch of medicine that deals with the nose and its diseases + + + + + + branch of entomology dealing with wasps + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + (indicates immanent occurrence of action) + + + + + + study of fossil footprints and traces + + + + + + + + scientific study of dreams + + + + + + + branch of pharmacology dealing with cinchona and its derivatives + + + + + + + the study of the organization of the egg especially with reference to localization of subsequently developed embryonic structures + + + the science of the fundamental morphology of organisms, which aims to describe in mathematical terms the stereometry and symmetries of organic forms; the features of organisms so studied. Now chiefly historical + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + branch of veterinary medicine concerned with veterinary obstetrics and with the diseases and physiology of animal reproductive systems + + + + + + branch of medical science dealing with the structure and function of glands and lymphoid organs + + + + + + + the study of the devil or devils + + + + doctrine or beliefs concerning the devil; devil lore + + + + + + + the study of cats + + + + + + + alkaline abrasive used to remove paint + + + + + + + + + to say ’amen’ to; to endorse an utterance of another + + + + + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + + + + + wild soursop, mountain anona + + + + + + + in imprecations, damnation + + + + + + + study of animal diseases + + + + + + + + the study of marine viruses + + + + + + the study of bacteria in marine environments + + + + + + the systematic attempt to account for such psychological variables as temperament and character in terms of bodily shape and organic function + + + + + + the study of the ego especially with regard to mechanisms of defense, transference, reality-testing, and attainment of the ego ideal + + + + + + the study of the mind and behavior of different peoples through analysis of the human factors involved in their cultural and technological development + + + the mental traits common to or characteristic of a people + + + + + + + a membrane-bound storage structure, containing protein and lipid, that is found in large numbers in the cytoplasm of the eggs of all animals except mammals + + + + + + + membrane-bound disc containing high concentrations of yolk found in eggs + + + + + + stay still (for a moment); exclamatory expression + + + + + + seemly, proper, fitting + + + + + + in birds, applied to feet in which two toes point forwards, and two to the rear + + + + + + + an altitudinal belt of stunted and often prostrate trees, found between the upper limit of tall, erect trees growing in forest densities (waldgrenze; timber-line) and the extreme upper limit of tree growth (the species limit or baumgrenze) + + + + + + consitent of, having been created from + + + + + + + the study of the planet Mars + + + + + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + + + + + prepared only with ingredients from animals whose lungs contained no forbidden adhesions on the outside of their lungs + + + + + + + branch of climatology concerned with the impact of climate on agriculture + + + + + + + + the study of emblems + + + + + + + the study of endemic diseases + + + + + + + the study or collection of knives + + + + + + on or characterized by a relatively small or detailed scale + + + + + + + the study of rivers + + + + + + + + branch of knowledge dealing with vitamins, their nature, action, and use + + + + + + + vital energy units according to Reich's theories + + + + + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + + + + + + the science of geology as applied to extraterrestrial objects and other planets + + + + + + + + investigation of the supposed relation between the celestial bodies and the weather + + + + + + + + the systematic use of the fingers and hands as a means of communication; a manual alphabet + + + branch of anatomy concerned with joints + + + + + + process for strengthening steel alloys + + + kind of hard steel obtained with the homonym process + + + + + + + important + + + preparing or about to do something + + + + + + + finger spelling + + + the technique of communicating by signs made with the fingers + + + + + + + the study of a culture's system of classifying knowledge (such as its taxonomy of plants and animals) + + + + + + + branch of physiology concerned with the function and activities of tissues + + + structural and functional tissue organization + + + + + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + + + + + + the study of fires and fire regimes in global forest, prairie, shrubland, chaparral, meadow, and savannah ecosystems + + + + + + + the study or description of the history or genealogy of heroes + + + a history of or treatise on heroes + + + + + + + the study of the membranes of cells and cell structures + + + + + + + branch of biology concerned with the study of organisms as individuals + + + + + + + the study of mythological nymphs + + + + + + + the branch of toxicology dealing with toxicity to the nervous system + + + + + + non-finite + + + + + + + company for which members’ responsibility for debt is legally limited to the extent of their investment + + + + + + + the study of the origin of surnames + + + + + + + the study of biological substances or processes with the aid of antigens or antibodies labeled with a radioactive isotope + + + + + + + the study of plant diseases and their causes + + + + + + + + + the branch of zoology dealing with sponges + + + + + + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + + + + + + opposition to theology + + + + + + + the science of botany + + + divination by plants + + + + + + + the branch of botany which is concerned with the study of fruits + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + the study of turtles and tortoises + + + + + + + + the study of those things that determine the highest good or best way of life for humankind + + + + + + + the microscopic study of cells shed or obtained from the body especially for diagnostic purposes + + + + + + + the study of chaos and chaotic systems + + + + + + + the branch of cytology devoted to study of the chromosomes + + + + + + + refers to the careers of politicians who have experienced a significant decline of their political influence and electoral viability + + + + + + + branch of sociology concerned with the modes of recurrent social relationships (as competition, division of labor, supraordination, and subordination) that are conceived to exist in any type of human association + + + + + + + the part of logic dealing with the establishment of criteria + + + + + + + the feeding habits of an animal or animals + + + + + + + the study of lighthouses and signal lights + + + + + + + plant ecology + + + + + + + + a scientific treatise on pores or porous bodies + + + + + + + the branch of ornithology concerned with the incubation of eggs and rearing of young + + + + + + + the application of psychological principles to the problems of vocational choice, selection, and training + + + + + + + the study of the actions and thought processes of both the individual members of a crowd and a crowd as a collective social + + + + + + + + + in mathematics, especially functional analysis, a bornology on a set X is a collection of subsets of X satisfying axioms that generalize the notion of boundedness + + + + + + + the study of how individuals interact with and respond to the environment around them, and how these interactions affect society and the environment as a whole + + + + + + + the study of sociopaths and the disorder known as antisocial personality disorder + + + + + + + theology founded on or fundamentally influenced by speculation or metaphysical philosophy + + + + + + + the study of air motion in the Earth's atmosphere that is associated with weather and climate + + + + + + + phonemics + + + + + + في الأول + + + + + + + linguistics + + + + + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + + + + + + space weather; the study of the meteorology of near-Earth space + + + + + + + + the study and practice of instructional endeavors for and about aged and aging individuals + + + the study of the changes in the learning process caused by old age + + + + + + + the love of fables or stories + + + + + + + the study of the various forms of social structure and the changes that govern or take place in them + + + + + + + theanthropism + + + + + + + a range of philosophical and theological explorations of the idea that God may be dead + + + + + + + + a roll or register of traitors + + + + + + + the study of the relationship between natural geological factors and their effects on human and animal health + + + + + + + subfield of meteorology generally restricted to that part of meteorology not explicitly devoted to atmospheric motions; usually deals with optical, electrical, acoustic, and thermodynamic phenomena of the troposphere, its chemical composition, the laws of radiation, and the physics of clouds and precipitation + + + + + + + the representation of the climate of a region by the frequency and characteristics of the air masses under which it lies; basically, a type of synoptic climatology + + + + + + + omvendelsesterapi + + + + + + + degeneration of body’s immune system; immunodeficiency + + + + + + + vacuous chatter, mere talk + + + + + + + a treatise on fevers + + + the description or classification of fevers + + + + + + + the doctrine or consideration of the bursae mucosae + + + + + + + a Grothendieck topology on the category of schemes which has properties similar to the Euclidean topology, but unlike the Euclidean topology, it is also defined in positive characteristic + + + + + + + type of evergreen shrub + + + + + + + the branch of medical science concerned with diet and nutrition; dietetics + + + + + + + + opposed to technology or technological change + + + + + + + the subdivision of the science of hydrology that deals with the occurrence, movement, and quality of water beneath the Earth's surface + + + + + + + + + (first-person singular possessive) belonging to me + + + + + + + (third-person plural possessive) belonging to them + + + + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + + + + + + ability to remember and learn association between unrelated objects + + + + + + + + + + to associate with, join forces with + + + to understand, join in; to accept the party line + + + to enjoy oneself + + + to have sexual intercourse + + + + + + + technology related to the exploration of and activity in space, and with the development of satellites, rockets, etc. + + + + + + + the study of squalor, especially as a supposed science + + + + + + + the science or theory of poetic meters + + + + + + + a sub-discipline of military tactics and passive and active electronic countermeasures, which covers a range of methods used to make personnel, aircraft, ships, submarines, missiles, satellites, and ground vehicles less visible (ideally invisible) to radar, infrared, sonar and other detection methods + + + + + + that does not get tired + + + + + + process where unique economic goods become interchangeable in the eyes of consumers + + + + + + + technology to protect products and operators from contamination + + + + + + + term for that branch of anatomy which treats of the nature and structure of membranes + + + + + + practice of criticizing a woman or gay men who lives their sexuality in a different way to what is socially expected + + + + + + + a combination of theology and mythology + + + + + + + the techniques of deception and manipulation employed by a dominant group (esp. a white majority) to disempower a weaker one (esp. a black minority) + + + innovative techniques or technology, especially for recording or performing music + + + + + + + a figurative mode of speech or writing + + + a mode of biblical interpretation stressing a moral meaning inhering in the metaphorical character of language + + + a treatise on or compilation of tropes + + + + + + + the study of vermin + + + + + + + a field of study and practice that focuses on how industry can be developed or restructured to reduce environmental burdens throughout the product life cycle (extraction, production, use, and disposal) + + + the study of material and energy flows through industrial systems + + + + + + tother + + + + + + that thirsts; thirsty + + + + + + + water impregnated with salt; seawater + + + + + + characteristic of the hand on the right side of the body + + + + + + + thirty minutes + + + + + + + one that yaps (of a dog or person) + + + + + + + + + + гардиш кардан + + + + + + + + + to ride a tricycle (three-wheeled velocipede) + + + + + + + + + to make potential; give potentiality to + + + to convert into potential energy + + + + + + + + + to perpetrate feloniously + + + + + + + + + to crop with wheat + + + + + + + + foolish, mistaken (used as a general negative) + + + + + + + + + + to expose (someone) + + + + + + resembling a thug in behaviour or appearance; tough, hardened + + + + + + + + + to reduce magnification of view + + + + + + + + + to measure the quality or extent of + + + to perform quantitative analysis on + + + + to express in numerical terms + + + + + + + + + + to subject to thyroidectomy + + + + + + + + + + to be made envious, covetous + + + + + + to have an ability; to have means, capacity, or qualification for + + + + + + + + + to inject a substance into a microscopic object + + + + + + + + + to communicate via modem + + + + + + + + + to perform multiple tasks concurrently + + + + + + + social psychology field that studies how groups of people behave differently than individuals; also known as crowd psychology or mob psychology + + + + + + + + + branch of zoology dealing with entozoa, internal animal parasites + + + + + + + + + to put forward as a suggestion or proposal + + + + + + + + + to belch, vomit forth + + + + + + to experience fear, apprehension towards + + + + + + to be experiencing anger + + + + + + + a person who approaches biology from the point of view of an engineer; an expert or specialist in bioengineering + + + + + + + boskru + + + + + + + + + of a liquid, to accumulate forming a pond (especially by being obstructed) + + + + + + + + + to come to an impasse, standstill, stalemate + + + + + + + + + to be or behave like a busybody; to meddle, pry + + + + + + + + good, excellent, cool + + + + + + + + + to add a glycosyl group into a molecule or compound + + + + + + + juice extracted from a pomegranate + + + + + + + sweet sap from date palm + + + + + + + juice extracted from a prune + + + + + + (of a mineral) having a small portion of a constituent replaced by ferric iron + + + + + + interjection used to express surprise, anger, or extreme displeasure + + + + + + + bush bean, bush cucumber + + + + + + + Australian aboriginal boy + + + + + + + bush onion, nalgoo + + + + + + + the theoretical study of metaphysical, logical, divine, or human laws + + + + + + to whom immunity has been granted + + + + + + that holds + + + + + + that wraps, covers + + + + + + that is resident, that resides + + + + + + walking or moving with a slouch + + + + + + relating to or of scandium + + + + + + with regard to + + + + + + + rough, unpolished board + + + + + + + response of untruth + + + + + + + device for drying hair by blowing heated air over it + + + + + + + egret, heron + + + + + + + one who makes tents + + + + + + lacking a servant + + + + + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + + + + + manga or anime intended primarily for boys (usually used before another noun) + + + + + + + the study of the spatial and temporal distribution of fossil organisms, often interpolated with radiometric, geochemical, and paleoenvironmental information as a means of dating rock strata + + + + + + + a bibliography with biographical notes about the author or authors listed + + + + + + + a history or description of printed maps + + + a bibliography of maps + + + + + + + the art of engraving on copper + + + + + + + description of the skin + + + + + + + + the writing of something in one's own handwriting + + + autographs considered as a group + + + + + + + the writing of glosses or commentaries; the compiling of glossaries + + + + + + + the conditions and processes occurring in oceans in the past; the branch of science that deals with these + + + + + + + the art of decorating wood by burning a design with a heated metal point + + + + + + + aviation gasoline; gasoline for use in piston-driven airplanes + + + + + + + one who distills + + + + + + + tenth power of a million + + + + + + + measurement of galvanic currents + + + + + + occurring within a vessel of an animal or plant + + + + + + + soil rich in iron, alumina, or silica formed in humid, high temperature tropical woodland environments + + + + + + + to (attempt to) influence legislation, advocate for + + + + ask a favor, ask a request, ask for + + + + + + + house officer working in surgery + + + + + + + elected house of legislature + + + + + + + black tinged with blue + + + + + + + خَارِج + + + + + + + + + to monitor or select information; to control access to something + + + + + + + a wind instrument consisting of a mouthpiece and a small keyboard controlling a row of reeds + + + + + + + + + to make a denizen of; grant rights of residence to + + + + + + + + + cithara + + + + + + + + + + to save again + + + + + + + energy, spirit; pep + + + + + + + brevity of speech + + + shortened or condensed phrase or expression + + + + + + + idiot + + + + + + + mixture of various kinds of grain sown together for feeding cattle + + + + + + + splenic apoplexy in sheep + + + + + + + failing to win + + + + + + + + + to increase or cause to increase in size + + + + + + + an act of haunting, especially : visitation or inhabitation by a ghost + + + + + + + + + + to tell, impart + + + transfer + + + + + + + + + to face self-assuredly + + + + + + + + + to render fanatical + + + + + + + + + to set forth in words, declare + + + + + + + + + to postpone again + + + + + + + + + to doze + + + + staying in a dorm + + + + + + + + + to heat to relatively high temperature + + + + + + knowledgeable, skilled + + + + + + + + + to incline towards; to deal in + + + + + + + clay whose structure collapses completely on remoulding, and whose shear strength is thereby reduced to almost zero + + + + + + + + + to remove restrictions or limitations; to detruncate + The TAA Study begins with a fixed amount of ammunition and equipment and then unconstrains the support force structure to determine what units are required. + + + + + + + + + to supply with fewer employees than required + + + + + + + + + to split or break up into fission products + + + + split into smaller parts + + + + + + + + + to seek a house to buy or rent + + + + + + + an interdisciplinary field that studies how individual psyches and subjectivities interact with, express, and transform socio-cultural meanings, practices, and institutions + + + + + + + a partially refined, light brown granulated sugar from which most of the molasses has been removed + + + + + + + + a theater company that presents and performs a number of different plays or other works during a season, usually in alternation + + + + + + + administrative unit of feudal England + + + + + + + one of two bird species, formerly regarded as conspecific: western olivaceous warbler, Hippolais opaca; eastern olivaceous warbler, Hippolais pallida + + + + + + (slang) out of one's mind; crazy + + + (slang) wildly enthusiastic + + + (slang) homosexual + + + + + + + a clasp, buckle, fibula, or brooch, esp. one set with precious stones, for holding together the two sides of a garment; (hence) a clasped necklace, bracelet, or the like. Also, in later use: a buckle or brooch worn as an ornament; (more generally) a gem, jewel, or precious ornament + + + (obsolete) the gold or silver setting of a precious stone + + + (obsolete, rare) an abscess; a carbuncle; a sore + + + (obsolete, rare) a wound + + + + + + + + + + to drive mad, to infuriate, to make someone very irritated, angry, or annoyed + + + + + + resembling flocculi + + + minutely floccose + + + + + + + + + + + + the ten percent of earnings or produce that is to charity + + + + + + + the state or quality of being blobby + "Good gracious, look there!" and we looked there, and where we were to look was the lowest piece of the castle wall, just beside the keep that the bridge led over to, and what we were to look at was a strange blobbiness of knobbly bumps along the top, that looked exactly like human heads. + + + + + + happening once every five years + + + consisting of or lasting for five years + + + + + + + a blow to the head + + + + a hollow thud + + + + a state of sudden and extreme fatigue often experienced when participating in endurance sports, especially bicycling + + + an act of sexual intercourse + + + + + + + non-existent + + + + + + + an agreement, an act of support + + + + + + + pizza + + + + + + + any of a group of degenerative diseases of the brain characterized by the progressive formation of vacuoles in the cells of the cerebral cortex + + + + + + + a bookworm: a person unusually devoted to reading and study + + + + + + + an insect or other organism that eats wood + + + + + + + + + to perform a free skate in a figure skating competition + + + + + + (introduces restrictive relative clause) + + + + + + having the characteristics of a gorgon; hideous, repulsive + + + + + + + a man who explains something to a woman in a condescending way that assumes she has no knowledge about the topic + + + + + + + in figure skating, a toe jump that takes off from a back inside edge and lands on the back outside edge of the opposite foot + + + + + + reaching the stomach via the nose + + + + + + relating to or resembling vampires + + + + + + + + + the quality of being constrained; constraint + + + + + + of or relating to the snake family Pythonidae + + + + + + fiercely competitive + + + + + + + a jack ladder having a V-shaped trough up which logs are drawn by a jack chain + + + + + + + Italian bacon that has been cured in salt and spices and then air-dried + + + + + + nonsensical, absurd, pointless + + + second-rate, inferior + + + + very angry, furious + + + + + + smooth: pleasant, affable, polite; seemingly amiable or friendly; having a show of sincerity or friendliness + + + + + + + act of running away + + + + + + + act of causing fright + + + + + + + bitch and moan, express dissatisfaction, problem, concern, complaint + + + + + + + regular undertaking of a task + + + + + + + the acetate salt of a synthetic long-acting cyclic octapeptide with pharmacologic properties mimicking those of the natural hormone somatostatin + + + + + + + a long-acting synthetic analog of somatostatin that is a cyclic octapeptide, is administered especially by subcutaneous injection in the form of its acetate, and is used to treat acromegaly and to treat severe diarrhea associated with metastatic carcinoid tumors and vipomas + + + + + + a genetic disorder caused by having an extra chromosome 18 in some or all of the body’s cells + + + + + + + the fact of something having objective reality + + + + + + + relation to, involvement + + + + + + + relation to, involvement + + + act or process of saying + + + + + + arriving at an endstate + + + + + + come into opposition + + + + + + come into opposition + + + + + + to examine carefully, review + + + + + + + domestic spinning wheel + + + + + + + realism in art characterized by depiction of real life in an unusual or striking manner + + + + + + realistic in art characterized by depiction of real life in an unusual or striking manner + + + + + + + a technique of mass spectrometry that uses a particle accelerator to bring a small amount of the sample to be analyzed to high velocities + + + + + + + + hellish, infernal, devilish + + + + + + + being nearby + + + + + + quickly, fast + + + + + + + cancer that forms in tissues of the gallbladder + + + + + + + + + (in computing) to copy text and replace it elsewhere + + + + + + + provide direction, provide instruction/guidance (not cardinal directions!) + + + + + + + Nyctereutes procyonoides + + + + + + + a large wild edible brownish boletus mushroom (Boletus edulis) + + + + + + + + + + to hasten, hurry up + + + + + + cause to be available + + + + + + + native of South Sea Islands (especially one employed on Queensland sugar plantations) + + + native Hawaiian + + + + + + + + characterized by tune or melody + + + + + + + purgative drug obtained from certain convolvulaceous plants + + + + + + + goldfinch + + + + + + + tool-dresser + + + engineering student + + + + + + sound of spitting + + + + + + + person whose eccentric or foolish behaviour can be exploited to amuse onlookers + + + + + + + + + to hoax, deceive, hoodwink + + + + + + + canned beef + + + + + + + the application of organized knowledge and skills in the form of devices, medicines, vaccines, procedures, and systems developed to solve a health problem and improve quality of lives + + + + + + + the study of the physical characteristics of aquatic ecosystems + + + + + + + the conversion of organic materials (such as wastes) into an energy source (such as methane) by processes (such as fermentation) involving living organisms + + + + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + + + + + + neoorthodoxy especially in its pessimistic view of human nature that holds that humans and all human institutions are inevitably confounded by their own inner contradictions and that the resultant crisis forces humans to despair of their own efforts and possibly to turn to divine revelation and grace in faith + + + + + + + the lore of hotels and inns + + + + + + + the scientific study of the principles of zymotechny + + + + + + predigested by means of zymin + + + + + + characteristic of or relating to personalism, a philosophical movement that stresses the value of persons + + + of or relating to an idiosyncratic mode of behaviour or expression + + + + + + + put or reput x into y, putting x into y with a syringe + + + + + + + to hit, with words or a bat (etc) + + + + + + + to remove or obtain + + + + + + + the medical specialty focused on the diagnosis, treatment, and prevention of infectious diseases + + + + + + + + + + to break off/sever/interrupt suddenly/curtail + + + + + + + the study of manuscripts, encompassing their history, physical characteristics, and cultural significance + + + + + + + the scientific study of psychological reactions + + + + + + + theology based on and attainable from revelation only + + + + + + + + the study of the sociology of reading + + + + + + + the study of the microbiology of soils + + + + + + + the study of the geology of soils + + + + + + in an absconded manner + + + + + + + + + mortgage again + + + + + + + act/process of removing or releasing (usually a fluid), emptying, unfilling, depleting + + + + + + that acquiesces (assenting/compliant) + + + + + + + to cut or tear with or as if with the teeth, nom/partitive-quant + + + + + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + + + + + + an expert or specialist in the study of Creole languages + + + + + + the branch of linguistics concerned with the study of Creole languages + + + + + + + act or process of supplying with feathers, making ready for flight + + + raise a baby bird until it can leave the nest, and metaphorical development extension + + + + + + + (often capitalized) an American soldier of the Revolution in the Continental army + + + a piece of Continental paper currency + + + the least bit + + + an inhabitant of a continent and especially the continent of Europe + + + a native of the continental United States living or working in Puerto Rico or the US Virgin Islands + + + + + + + engagement in a 1-on-1 (one team, or one person, etc)direct contest + + + + + + + the methods and systems used to connect electronic components, enabling the flow of data and power between them + + + + + + + + + to encourage + + + + + + + field focused on developing computer systems that can understand, process, and generate human language + + + + + + + a topology defined on a subset of a topological space, where the open sets of the subset are created by intersecting the open sets of the original space with the subset + + + + + + + a political principle that emphasizes the importance of a nation as the fundamental unit of social life and political organization + + + + + + + branch of optical technology that focuses on the application of light and its fundamental unit, the photon, in various technologies + + + + + + you only live once + + + + + + + the use of another entity's intellectual property (IP), like patents, copyrights, or trade secrets, through a contractual agreement where the owner (licensor) grants permission to a user (licensee) + + + + + + + a topology defined on a partially ordered set, where the topology is generated by the subbasis consisting of sets of the form (←, a) and (a, →) for a ∈ P + + + + + + + the methods, tools, and systems used to create, improve, and manage products, from physical goods to digital services + + + + + + + + + move forward quickly, like on a media player + + + + + + + act of going on and on, talking nonsensically + + + + + + + + + fill up, load + + + + + + + to bark or speak sharply, shrilly, or snappishly + + + + + + + + + start_over: once more, from the top + + + + + + + + + bleed to death + + + + + + + the quality or condition of being tremulous + + + + + + opposite to or directly away from the apex + + + + + + + + + acquire, make (money) + + + + + + + + + print, generally on a computer printer + + + + + + + + + completive + + + + + + + a type of organizational technology characterized by a sequential interdependence of tasks or processes + + + + + + + the action of recognizing a voice; the process of, or a facility for, identifying a speaker from his or her voice; specifically, the analysis or interpretation of speech sounds, especially by computer; computer analysis and matching of the distinctive characteristics of a particular human voice + + + + + + + the study of chytrids, primitive aquatic fungi + + + + + + + act or process of estimating by extending known information + + + + + + + 'it seems to me', 'i think ___' + + + + + + + The act of copying + + + + + + + set of non-stellar objects in orbit around a star + + + + + + + + + remove the acetyl group from a compound + + + + + + act or process of making hot or hotter + + + + + + to put on or wear formal or fancy clothes, to decorate, wearing formal clothes/adornments + + + + + + + a dipolar ion + + + + + + + + obstruct, hinder with painful constriction, painfully constricting + + + + + + + + irritable due to hunger + + + + + + composed chiefly of rock fragments or particles of volcanic origin, such as pumice, obsidian, or volcanic ash + + + + + + + any of a group of small, usually rectangular plots of land used for sampling the occurrence of species or of archaeological artifacts + + + a piece of type metal lower than the raised typeface, used for filling spaces and blank lines + + + + + + + (cause to) become acid + + + + + + + exit again + + + + + + + The act to cause confusion + + + + + + + The act of infecting with a parasite whose entire lifecycle is lived in a single host + + + + + + + + + perform an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + + + + + + + + attach tightly + + + + + + + + + + die, fall out of competition + + + + + + + technology that combines a fluxgate magnetometer with a triaxial configuration + + + + + + having three axes + + + + + + + a minimally invasive medical procedure that uses argon gas to stop bleeding in various parts of the body + + + + + + + term designating the point in time or space at which something starts or originates + + + + + + + + + to cease + + + + + + + removal of part or all of the cecum + + + + + + + act or process of continuation + + + + + + + process of falling like water, flowing downwards + + + + + + + name + + + + + + + + + to anger, irritate + + + + + + parallel and pointing/polarized in the same direction + + + + + + + + + occur together in the same cell + + + + + + + process coal into coke + + + + + + + + + act as a host, with a partner + + + + + + + chewy, gelatin-based candy + + + + + + + approach + + + + + + + + + + set pen to paper + + + + + + + + + form of assault + + + + + + + act or process of using a curette to remove unwanted tissue + + + + + + + act of swearing, using foul language + + + + + + + + + remove accent + + + + + + + loss of physiological or psychological compensation + + + + + + + + + cause to become unclogged + + + + + + + + + remove husk + + + + + + + + + to (cause to) deteriorate mentally + + + + + + + + + remove flea + + + + + + + The act of taking away funding + + + + + + + + + lose glacier-cover + + + + + + + + be sufficient, measure up + + + + + + + + + to remove worms + + + + + + + cemetery + + + + + + + ethnicel + + + + + + + act for a cause, in (or like in) holy war + + + + + + + + + separate + + + + + + do not intubate + + + + + + + + + procrastinate, be very slow in doing + + + + + + + irrigating some part of the body (usually the vagina) + + + + + + dope_up: dose with narcotics + + + + + + + stop by + + + + + + + natural disaster: sever blowing dust + + + + + + + young black man, esp. one who deals drugs on the street + + + + + + expression of hesitation + + + expression of thinking + + + + + + expression of acceptance + + + + + + + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + + + + normal, reasonably positive mood + + + + + + + ungainly movement + + + + + + + + + obscene gesture: give the finger + + + + + + + make shorter; make to appear to be receding + + + + + + + + + procrastinate; play around + + + + + + go out to eat frozen yogurt + + + + + + + act or process of providing geographic information (especially locations, such as coordinates) via metadata + + + + + + + + + remove gills + + + + + + + + a position in which the dancer, facing diagonally toward the audience, extends one leg in the air to the side with the arm of the same side raised above the head and the other arm extended to the side + + + a two-handed card game which is played with a 32-card pack and in which each player is dealt 5 cards and has the right to replace any or all of them before play can begin, the object being to win at least 3 tricks in a given hand + + + + + + (in ballet, of the legs) held wide apart with an oblique side extension of one foot and the same arm + + + + + + + + + to make or make appear historical + + + + + + + + + to take care of someone's house + + + + + + Being actually living forever + + + Being eternally remembered, perhaps with veneration + + + cells being mutated and resulting in a cell line that can keep undergoing division indefinitely + + + + + + + + + + take into the body, as food, drink, air + + + + + + + deficiency of phosphates in the blood that is due to inadequate intake, excessive excretion, or defective absorption and that results in various abnormalities (as defects of bone) + + + + + + having a tube inserted (usually into a bodily passage or hollow organ) + + + + + + + + + be leftover; cause something to remain after a larger activity + + + + + + + become thick and leathery as a result of rubbing or scratching, become thick and leathery + + + + + + + + + wear out, ruin + + + + + + + act of making greater or bigger + + + + + + severe headache often accompanied by nausea and disturbed vision + + + + + + + act of incorrect judgment + + + + + + + to measure with a metering device + + + + + + + saving money + + + + + + + + + to lubricate + + + + + + + + + oar + + + + + + + + + to bind or obligate beyond capacity + + + + + + + + + name + + + + + + having multiple members + + + + + + + + + cause too much of an increase + + + + + + + + + to sell more than can be delivered + + + + + + + + read again more closely, interperate to a greater degree + + + + + + + + + to plant too abundantly + + + + + + + project over the edge of something, in a cantilevering manner + + + + + + + + + reduce indebtedness + + + + + + + + + + to not have + + + + + + + attacking with napalm + + + + + + suffused or permeated through or over something + + + + + + in the vicinity of a nerve or nerves + + + + + + having a normal activity level + + + + + + that dances + + + + + + + language + + + + + + in the vicinity of the vagina (may or may not include the vagina) + + + + + + + + + Describe or represent in terms of a parameter + + + + + + + + + to pair with something else + + + + + + + + + Carry with oneself, as with a gun + + + + + + to lose courage to do something + + + + + + rummage, look for idly + + + + + + an upward blow to opponent's chin + + + + + + not able to be won + + + + + + unable to be surgically removed + + + + + + not ground up + + + + + + in a panicked manner + + + + + + add fertilizer beforehand + + + + + + + person with Asperger's syndrome + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + + + + to incubate (as a cell or a culture) prior to a treatment or process + + + + + + pick out beforehand + + + + + + pleasing/agreeable/acceptable + + + + + + to put or enclose in a case, again + + + + + + conquer again + + + + + + show again + + + + + + begin again + + + + + + to bind again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + + + + to make famous + + + + + + exactly that; in itself + + + + + + sample again + + + + + + personally unattractive (destitute of charms) + + + + + + brazen/shameless (with reticence/shame/humility absent) + + + + + + reinforce or support again with proof + + + + + + to designate an area for a new purpose; to change zoning + + + + + + wind backwards, perhaps as a cassette, back to the beginning state + + + + + + to remove the rind + + + + + + able/possible to not be spent + + + able to be rescued from peril + + + able to be collected, accrued + + + + + + to save, put away + + + + + + spend money on, splurge + + + + + + say flippantly or quickly, phrasal + + + + + + (cause to) back off, withdraw + + + + + + located under the pleura + + + + + + to affix with tape [completive] + + + + + + act of walking quietly on one's toes + + + + + + touch upon: same as touch on + + + + + + forming trabeculae + + + + + + the act of forming a trabeculae + + + + + + the act or process of gently falling into a dreamy state (often sleep) + + + + + + the act or process of taking out everything in ones path, such as with a car or weapon + + + + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + + + + + + + a fragrant, dark and resinous wood used in incense, perfume, and small hand carvings, formed in the heartwood of Aquilaria trees after they become infected with a type of Phaeoacremonium mold, P. parasitica + + + + + + having no page numbers + + + + + + + + initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + + + + + what place + + + + + + + the number 4 between three and five + + + playing card + + + + + + the number 6 + + + + + + + data about data + + + + + + In addition to; as an accessory to + + + + + + (used to show disagreement or negation) + + + + + + + to move inside of (something) + + + + + + item(s) that are separate and distinct from the item(s) under consideration + + + + + + at least one item of a set + + + + + + Any object, act, state, event, or fact whatsoever; a thing of any kind; something or other. + I would not do it for anything. + + + + + + what person’s + + + person’s … that + + + + + + At or to the back or far side of. + The children were hiding behind the wall. + Behind the garage needs clearing asap. + The sun went behind the clouds. + Look behind you! + I hide behind you in hide and seek. + Behind the smile was a cruel intention. + All my problems are behind me. + + + + + + + hand-operated tool for cutting + + + + + + enjoyable + + + + + + in all associated places + + + + + + + period of the day after 12:00pm and before approximately 6:00pm, depending on the time of sunset and time of year + + + + + + + human whose profession is bricklaying + + + + + + through + + + + + + at any time + + + + + + unless + + + + + + Side by side with. + + + + + + Below. + + + + + + + individual change made to a document + + + + + + + advertising term + + + + + + along an equator + + + + + + in an insightful fashion + + + + + + while + + + + + + indicating sudden understanding + + + + + + Expressing contempt, disgust, or bad temper. + + + + + + like a fairy, or related to fairykind + + + + + + express uncertainty or hesitation + + + + + + traditional maritime greeting + + + + + + + + synthetic chemical element with symbol Ts and atomic number 117 + + + + + + + former stronghold or villa in the province of Groningen, Netherlands + + + + + + business enterprise established for the processing of animal milk + + + + + + + the process by which individual access to a computer system is controlled by identifying and authenticating the user through the credentials presented by the user + + + the credentials required during the login process + + + + + + + construction equipment used to lay asphalt + + + + + + + + + remove cap + + + + + + + + + To pass (time) idly. + I whiled away the hours whilst waiting for him to arrive + + + + + + + a process of deterioration + + + + + + study of the structure and function of the mechanical aspects of biological systems + + + + + + branch of discrete mathematics + + + + + + + branch of cell biology + + + + + + + medical specialty + + + medical specialist in diabetes + + + + + + natural number + + + + + + human disease + + + + + + study of changes in the epigenome + + + + + + + film genre + + + + + + about limb: with three toes + + + about animal: with limbs with three toes + + + + + + sport + + + + + + + traditional culture + + + + + + + business providing food + + + + + + pertaining to foraminifers + + + + + + + process of providing with a function + + + chemical process + + + + + + + science of dating rocks + + + particular geological dating method + + + + + + + lining + + + + + + + material used in vacuum systems + + + + + + + + + overuse + + + + + + power from hydroelectric sources + + + + + + + branch of biology dealing with immune systems + + + + + + + medicine working through immune system + + + + + + + + + to make a mistake while typing on a keyboard + + + + + + + done in an interactive manner + + + + + + + cell life cycle phase + + + + + + vigorously + + + + + + study of lymphatic system + + + + + + + large globulin found in blood + + + + + + + medical condition with too many macroglobulins + + + + + + broadly accepted + + + common current thought of the majority + + + + + + + + person from the Middle Ages + + + + + + pertaining to metabiosis + + + + + + + microscopic pore + + + + + + pertaining to microstructure + + + + + + + microscopic system, or with microelectronic parts + + + + + + + type of particle filter + + + + + + + event involving powered vehicles + + + + + + using multiple channels to communicate + + + + + + + structure with multiple distinct layers + + + + + + looking at a range of different spectral wavelengths + + + + + + pertaining to fungi + + + + + + + material with nanometer-scale structure + + + + + + + nanometer-scale pore in a membrane + + + + + + + one who naps + + + machine used with textiles + + + + + + field combining neuroscience with economics + + + + + + + domain of human thought + + + + + + relating to ophthalmology + + + + + + study of optics and electronics together + + + + + + optoelectronics + + + + + + + formation of organs + + + + + + study of dust, spores, etc. + + + + + + + type of system of government + + + + + + + branch of agriculture + + + + + + + branch of dentistry that deals with diseases of the supporting and investing structures of the teeth including the gums, cementum, periodontal membranes, and alveolar bone + + + + + + + + branch of chemistry + + + + + + + physiology of disease or injury + + + + + + + + study of plant diseases + + + + + + + + + study of detection and measurement of radiant energy + + + + + + + study of sediments + + + + + + every 150 years + + + + + + + + mathematical structure + + + + + + science of applying telecommunications + + + + + + using telecommunications to provide medical assistance + + + + + + + ocean phenomenon + + + + + + + Name for a person who pursues high-quality or realistic audio playback + + + + + + a small amount + + + + + + from without/the outside + + + + + + in an abashed manner + + + + + + pertaining to the troposphere + + + + + + + + + convert waste into a higher quality product + + + + + + pertaining to volcanology + + + + + + + natural phenomenon on Mars + + + + + + + land unmodified by humans; natural land + + + + + + + + + make a sweeping rotating motion + + + + + + furniture component, top of a table + + + + + + + fat cell + + + + + + + type of chemical compound + + + + + + + fictionalized autobiography + + + + + + + type of food dish + + + + + + + photon from a biological source + + + + + + type of mineral + + + + + + + type of protein + + + + + + + reddish-orange color + + + + + + + + + create a cross-reference + + + + compare distinct sources + + + + + + + one who studies cybernetics + + + + + + dancing as a sport + + + + + + + process of removing methyl groups from a molecule + + + + + + + type of enzyme + + + protein + + + protein + + + protein + + + protein + + + + + + + Japanese alcoholic beverage + + + + + + + type of large edible berry + + + + + + philosophical inquiry into nature of philosophy + + + + + + + writer on music and musicians + + + + + + with bitterness or severity + + + + + + additionally, to a pronounced degree + + + + + + done in a manner related to walking + + + + + + in an animating manner, so as to give life/inspiration/enlivenment/encouragement + + + + + + with care (in a careful/caring manner) + + + + + + internationally + + + + + + some time ago + + + + + + genuinely, sincerely + + + + + + all over the place + + + + + + extremely/very much + + + + + + in regard to world-wide political implications + + + + + + with grief, usually during a bereavement period + + + + + + without adequate reason/cause + + + + + + without guilt (in a guiltless manner) + + + + + + without luck/good fortune, unfortunately/unhappily + + + + + + smoothly, without hindrance/difficulty + + + + + + using holography + + + + + + in a homosexual manner + + + + + + in an imperturbable manner; without being mentally perturbed or agitated; calmly, composedly + + + + + + unable to be extinguished + + + + + + in a monarchical form/manner + + + + + + From the title of the cult 1962 Italian documentary film Mondo cane, Italian for "A Dog's World", from mondo (“world”) and cane (“dog”). The film featured bizarre scenes, leading to English use of mondo as an adverb meaning "very, extremely" in mock-Italian phrases like mondo bizarro. + + + + + + without consent, not consenting + + + + + + doing too much to prevent harm to another (usually a child) + + + + + + occurring over a period spanning winter + + + + + + in a pathophysiological manner + + + + + + in a penniless manner + + + + + + In a recalcitrant manner. + + + + + + in a regardless manner + + + + + + by sacrifice, in sacrifice + + + + + + In a scenographic manner. + + + + + + In a manner only partially related to logarithms + + + + + + in a manner that teaches wisdom + + + + + + sonorously/imposingly (so as to emit/cause a sound) + + + + + + used for making one's criticism of someone or something seem less strong + + + + + + before, previously + + + + + + in a transformational manner + + + + + + in a trifling manner/degree + + + + + + done in a manner that produces a quavering or warbling sound + + + + + + in an unwholesome manner + + + + + + distressingly (in an upsetting manner) + + + + + + in a verisimilar manner + + + + + + with good intent + + + + + + + person who works on nanotechnology + + + + + + + person who practices palynology + + + specialized scientist studying palynology + + + + + + branch of genomics concerned with developing pharmaceuticals + + + + + + approach to classification of organisms + + + + + + + resistor that changes with light level + + + + + + + organism that feeds on plankton + + + + + + + version of a solid with a particular crystal layer stacking sequence + + + + + + + book containing rules + + + + + + + state of not being a citizen of any country + + + + + + + type of large star + + + + + + + device that produces modulation + + + + + + the measurement of cell characteristics + + + + + + + the process of removing one or more phosphoric (ester or anhydride) residues from a molecule. + + + + + + + A vesicle-mediated transport process in which cells take up external materials or membrane constituents by the invagination of a small region of the plasma membrane to form a new membrane-bounded vesicle. + + + + + + + set of all RNA molecules in one cell or a population of cells + + + + + + study of measuring and analysing science, technology and innovation + + + + + + + written prose piece in a publication expressing the opinion of an author or entity + + + + + + + individual's or a group's human demand on nature + + + + + + + method to avoid unsolicited products or advertisements + + + + + + + organism that prefers higher temperatures + + + + + + process of adding salt + The team identified sources of ground-water salinization and found that sea-water intrusion was the main mechanism. + + + + + + + act of adding moisture to + + + + + + cardinal number + + + + + + + class of enzymes that cleave phospholipids + + + + + + + a diagnostic endoscopic procedure that visualizes the upper part of the gastrointestinal tract down to the duodenum + + + + + + reduce a cellular response to a molecular stimulus + + + + + + + + + to tonicize + + + + + + + + + to turn into horn + + + + + + + + + to pack again + + + + + + + + + to make a dunce of; render stupid, slow-witted + + + + + + + + + to make rancid + + + + + + + + + to subdivide a classification into subordinate classifications + + + + + + + + + to turn into chyle + + + to produce chyle + + + + + + + change of economy, especially of energy industries, towards lower carbon dioxide emissions + + + natural soil-forming process + + + economy based on low carbon power sources + + + + + + + + call for, require, justify + + + + + + a monument made of stone + + + + + + + person whose profession is study and research + + + + + + + electrophysiological monitoring method + + + + + + disease + + + virus + + + + + + + act or process of making illegitimate + + + + + + + abnormal retention of fat (lipids) within a cell or organ + + + + + + + process using extreme cold to destroy tissue + + + + + + + pure quantum state unchanged by a certain operator + + + + + + + unblur a digital image + + + + + + measurement method using interference of waves + + + + + + + nanomaterial + + + a billionth of a rod (equivalent to 5.029 nm) + + + + + + + long unbranched polysaccharides consisting of a repeating disaccharide unit + + + + + + + social distancing measure + + + + + + + elevated level of gene expression + + + + + + + infection by the same infectious agent following a recovery + + + + + + + orthodontic headgear + + + a mask or protective covering for the face or part of the face + + + a covering (as of polypropylene fiber or cotton fabric) for the mouth and nose that is worn especially to reduce the spread of infectious agents (such as viruses or bacteria) + + + a device usually covering the mouth and nose to facilitate delivery of a gas (such as a general anesthetic) + + + a covering typically attaching to the front of a helmet that consists of a hard, clear material (such as polycarbonate) or a cage of metal (such as steel or a titanium alloy) and is worn to protect the wearer's face from injury + + + or face mask penalty (American football): a penalty imposed on a player for grabbing and pulling an opponent's face mask during play + + + + + + + abnormally low level of oxygen in the blood + + + + + + + + + ejaculate, orgasm + + + + + + + the formation of ozone (O₃) in the earth's atmosphere + + + the treatment or combination of a substance or compound with ozone + + + + + + + production of spores in biology + + + + + + + any phosphatidylinositol that is phosphorylated at one or more of the hydroxy groups of inositol + + + + + + + protein encoded by an oncogene + + + + + + + class of chemical compounds + + + + + + + protein devoid of its characteristic prosthetic group or metal + + + + + + + + + identifier for a person in a computer system + + + + + + + droplets in the microlitre range + + + + + + + protective suit against chemical, bacteriological, and nuclear risks + + + + + + + The act of impairing a physiological regulatory mechanism + + + + + + + a military order to cease firing + + + a suspension of active hostilities + + + + + + + offshore rise of water associated with a low pressure weather system + + + + + + + InterPro Family + + + + + + + agent that carries and transmits an infectious pathogen into another living organism + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + pronoun used in place of he, she or singular they + + + + + + + person who does not experience sexual attraction + + + + + + + + village + + + + + + + play-through of a video game performed as fast as possible + + + + + + + currency of Madagascar + + + + + + + one unduly fearful of what is foreign and especially of people of foreign origin + + + + + + + + + to betray by contradicting prior agreement + + + + + + + something revelatory + + + + + + web content whose main goal is to entice users to click on a link to go to a certain webpage or video + + + + + + + scale or full-size model of a design or device, used for teaching, demonstration, design evaluation, simulation, promotion, and other purposes + + + + + + + point-to-point communications link + + + + + + + study of the past + + + + + + brother + + + friend + + + + + + + person who designs, builds, programs, and experiments with robots + + + + + + + period with lack of sexual arousal + + + + + + + set of alphabetic and numeric characters + + + + + + + part of stage lighting + + + + + + + grandparent's sister + + + + + + + A minor miscellaneous item. A food item eaten as an accompaniment to a meal; a side dish; also, such an item eaten on its own as a light meal. + + + + + + + Electric bus that draws power from dual overhead wires + + + + + + + + + sew on as decoration + + + + + + + + + to drench with a liquor and ignite + + + + + + + + + to fry (food, such as small pieces of meat or vegetables) in a small amount of fat + + + + + + In favor of. + He is pro exercise but against physical exertion, quite a conundrum. + + + + + + In the midst or middle of; surrounded or encompassed by; among. + + + + + + Instead of; in place of; versus. + + + + + + unless; except + + + + + + Introduces the first of two (or occasionally more) options or possibilities, the second (or last) of which is introduced by “or”. + Either you eat your dinner or you go to your room. + You can have either potatoes or rice with that, but not both. + You'll be either early, late, or on time. + Either you'll finish your homework or you'll be grounded you home. + + + + + + Not either (used with nor). + Neither you nor I likes it. + + + + + + Whatever. + Whatsoever you seek, you will find. + + + + + + That which was previously mentioned; that. + I'll become a loyal friend and remain so. + If that's what you really mean, then just say so. + You may need to refer to litigation as a procedure, and when you have done so, you can say a matter is "in litigation". + + + + + + Which ever; emphatic form of 'which'. + Good heavens! Whichever button did you press to make that happen?! + + + + + + Hold fast!; cease!; stop! + + + + + + A cry of praise or adoration to God in liturgical use among the Jews, and said to have been shouted in recognition of the Messiahship of Jesus on his entry into Jerusalem; hence since used in the Christian Church. + + + + + + Oops. + + + + + + A statement of defiance + ‘Guess what, I've won the pools!’ ‘Never!’ + + + + + + A mild expletive, expressing disbelief or dismay + Didn't you have a concert tonight? —Shoot! I forgot! I have to go and get ready… + + + + + + goodbye + + + + + + Used to gain someone's attention before making an inquiry or suggestion + Say, what did you think about the movie? + + + + + + An expression of mild surprise. + + + + + + A spontaneous expression of delight or joy. + Whoopee! I won! + + + + + + Okay; all right. + + + + + + expression of pain + + + + + + + local set of atmospheric conditions + + + + + + + intentional killing or other violent deaths of females (women or girls) because of their gender + + + + + + und/oder + + + + + + + pseudonym + + + + + + + name of a person + + + + + + + name used for a place which is used by the people of that place + + + + + + difficult situation or complex health system that affects humans in one or more geographic areas + + + + + + part of the large-scale ocean circulation that is driven by global density gradients created by surface heat and freshwater fluxes + + + + + + having net zero carbon emissions + + + + + + making lifestyle choices to reduce the greenhouse gas emissions resulting from consumption decisions + + + + + + + measurement of how much temperature will rise given an increase in CO2 + + + + + + + reduction in emissions of carbon dioxide or greenhouse gases made in order to compensate for or to offset an emission made elsewhere + + + + + + + benefits created by nature, forests and environmental systems + + + + + + + hookworm disease caused by Ancylostoma hookworms + + + + + + + fictional device + The captain tapped her combadge. + "Only Equinox crew on board now," Max confirmed, checking the bioscans from encrypted combadges all over the ship. + Constructed from a crystalline composite, the combadge had a signal range restricted to approximately 500 kilometers when beyond the range of a starship. + + + + + + + granting of permission by an ethics board (typically for research) + + + + + + + identifier used for an act of approval + + + + + + + type of lawn game or sport in which players toss beanbags toward a slanted platform with the aim of passing the beanbag through a hole in the center of the platform + When you think of cornhole, visions of tailgating, beer-drinking, and backyard picnics come to mind. + + + vulgar slang term for the anus + When Mike pumps a creampie into Anna's cornhole, she collects the cum in a cocktail glass and swallows it. + + + + + + Unwanted pre-installed software + Here's all the crapware that comes with new Windows 8 PCs. + Though I hope Microsoft always allows Windows users to install desktop software, the best way fend off crapware is to also provide a controlled environment, such as the Windows Store, for users who want it. + + + + + + + + + to express contempt or impatience + + + to express contempt for or make light of + + + + + + + thong visible over trousers or similar + + + + + + graze to the point of damaging the life cycle of vegetation + + + + + + + a live online educational presentation + + + + + + + compartment in a ship used for medical purposes + + + + + + to the degree or extent indicated. + We only have this much water. + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + + + to redistribute the heat in bath water + + + + + + crushed green tea leaves + + + + + + + bag containing crumbled tea leaves that is soaked in water to make tea + + + + + + + + + place scrotum into one's mouth + + + + + + + appearing to have zones of color/texture/etc. + + + + + + + meal which combines breakfast and dinner + + + + + + + ethological class; trace fossils formed as a result of organisms disturbing sediment for food + + + + + + + ethological class; structures which were created by organisms for breeding purposes + + + + + + + ethological class; evidence of organisms moving at the front + + + + + + + individual member of the Xenophyophorea clade of protists including some of the largest known single-celled organisms + + + + + + printing that goes beyond the edge of the sheet before trimming + + + + + + + attractive male person + + + + + + when something does not go your way + + + when you are surprised + + + when you see something you are impressed by + + + when you realize something profound + + + + + + + pictorial depiction in an online chat + + + + + + + + + carved pumpkin or other gourd, used primarily during Halloween + + + + + + + video recording of a stage performance by a fan in the crowd + + + + + + + gender identity that is typically associated with concepts that are not entirely related to gender + + + + + + + a bird + + + a bird-like creature + + + + + + + + set in the 19th century, featuring steam-powered machinery and related technologies extrapolated from the science of that era + + + + + + + one who films and/or edits vlogs (video blogs) + + + + + + romantically attracted to members of the opposite sex or gender + + + + + + romantically attracted to people regardless of sex or gender + + + + + + attracted to experiencing bisexuality + + + + + + attracted to people regardless of gender + + + + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + + + + + + electronic cigarette + + + + + + + variable that statistically affects the relationship between other variables + + + + + + + + + + you; person spoken to or written to + + + + anyone, one; unspecified individual or group of individuals + + + + + + + + + + + + + + + + + + + + + + abbreviation of love + + + abbreviation of romantic love + + + + + + + método de entrada + + + + + + + Any beetle of the taxon Cerambycidae + + + + + + + any beetle of the subtribe Coptomiina + + + + + + drunk + + + + + + drunk + + + + + + drunk + + + + + + + + + to cancel a subscription + + + + + + + Antennarius pictus + + + + + + + the quality or state of being exclusive + + + exclusive rights or services + + + + + + + Gampsonyx swainsonii + + + + + + + a language with no genetic relations + + + + + + + oh my God + + + + + + + Crinifer zonurus + + + + + + + any fly of the family Dolichopodidae + + + + + + + any insect in the clade Eulepidoptera + + + + + + + any bacterium in the class Actinobacteria + + + any bacterium in the phylum Actinobacteria + + + + + + + Boiga irregularis + + + + + + + + + make space available + "Getting people out of hospital on time is more important than ever," said Helen Whately, minister for care. "It's good for patients and it helps hospitals make space for those who need urgent care." + Some residents believe it may have been the result of a crude attempt to clear forest land and make space for building projects, but police are yet to determine a cause. + Wards have been emptied to make space for Covid patients + Due to a slump in construction and high production costs, the timber industry in Zimbabwe has been struggling to survive. To make things worse, illegal miners in some of the country's forests have been chopping down trees to make space for their own operations. + + + + + + + any gelechoid moth in the family Coleophoridae + + + + + + fictional dish named by listing ingredients + + + + + + like a corymb + + + + + + + small, benign skin growth that may have a stalk (peduncle); also called achrochordon + + + + + + + + a person who is transgender + + + + + + + + + to sweat + + + + + + + one who flatters a supervisor, or superior, in order to get special attention + + + + + + + fund offered to students who are struggling with their finances and need help + + + + + + something chosen by hand + + + + + + something chosen out of a larger set or whole + + + + + + sexually attracted to more than one sex or gender + + + + + + participle + + + people + + + + + + + any beetle of the genus Caccobius + + + + + + + agent noun of warp; one that warps + + + + + + + any enzyme that initiates methylization + + + + + + + + + to use a flashbang/flash grenade + + + + + + + + using little effort to do something + + + + + + + the monitoring of someone by taking photographs + + + + + + + learned man in Indian classical tradition + + + + + + + aggregation of dust particles + + + + + + + സാമൂതിരി + + + + + + + + (disparaging) promiscuous + + + + + + + (relexive pronoun for the second person) that which belongs to you + + + + + + + small street, often in an old or poor neighborhood of a city + + + + + + having leaves like those of a willow; attributive element in the common names of plants + + + + + + + dial of a watch + + + + + + + jewelry used on the body + + + poke a hole in, go through such a hole + + + + + + + one who takes part in cosplay + + + + + + + person promoting conspiracy theories + + + + + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + + + + + subgenre of hip hop + + + + + + + marine mammal in the fur seal and sea lion family Otariidae + + + + + + + a rodent of the family Erethizontidae (New World porcupines) + + + + + + + any tapeworm of the family Taeniidae + + + + + + + any bird in the family Falconidae + + + + + + + professional who treats foot ailments + + + + + + of or relating to the insect family Thripidae + + + + + + a fundamental; a foundational or integral aspect of something + + + + + + + Any fly in the family Syrphidae, which hover in place and visually resemble bees or wasps + + + + + + + bench located in front of the chancel + + + + + + of or relating to the mammal family Viverridae + + + + + + accidie + + + + + + + + + swindle, dupe or manipulate to obtain a wrongful advantage + + + complain loudly or shout + + + + + + + a bird of the family Paradisaeidae + + + + + + + any bird in the family Podicipedidae + + + + + + any reptile of the family Chelidae + + + + + + mutual yielding; concessions, compromise + + + + + + + + to use arms and legs to stay afloat in place in water + + + + + + + + + wrestle + + + + + + + + + + to use a pickaxe + + + + + + + kitchen garden + + + + + + a disorderly, confusing situation; a mess + + + + + + + republic by popular mandate + + + + + + for or by the general public + + + + + + + plundering expedition, raid + + + + + + associated with humans but not domesticated + + + + + + + time prior to a sporting season + + + + + + + title of Islamic martyr + + + + + + + non-legal return of refugees and immigrants across the border + + + + + + + one who is chased + + + + + + + study of narrative and narrative structure + + + + + + the branch of medicine dealing with the intestines + + + + + + + the branch of zoology dealing with the ants + + + + + + + hymnody (hymn singing and writing) + + + the study of hymns + + + + + + branch of entomology that deals with the Isoptera (termites) + + + + + + + decisive match in a series + + + + + + + study of the occurrence, transportation, and effects of airborne materials (such as viruses, pollen, or pollutants) + + + + + + the study of the Holy Shroud of Turin, in which the body of Christ was reputedly wrapped + + + + + + the study or investigation of crop circles + + + + + + + the study of dogs and other canines + + + + + + + branch of dendrology dealing with the gross and the minute structure of wood + + + + + + the study or practice of herbal medicine + + + + + + + likely to cause one to laugh + + + + + + the study of sleep + + + + + + + + study of the organization and function of committees + + + committees and their practices considered collectively + + + system of administrative and expert committees within the European Union + + + + + + (linking a destination, subject of approach) + + + + + + + charisma, charm + + + + + + + orange grown for commercial consumption containing seeds, as opposed to seedless oranges + + + + + + + village + + + + + + + the study of intonation in speech + + + + + + + study of psychology applied to sports + + + + + + + + study of psychology applied to sport + + + + + + + + branch of entomology that is concerned with the scales, mealybugs, and other members of the superfamily Coccoidea + + + + + + + + in naming an animal, having a long tail + + + + + + be courageous, unafraid + + + + + + applied to organisms whose presence in a given habitat is transien + + + producing fermentation + + + + + + be of recent age + + + + + + + a form intermediate between a worker and a queen which occurs in some ant species + + + a worker or soldier ant that develops female characteristics especially as a result of the attack of parasitic worms + + + + + + no + + + + + + + hair turned white with aging + + + + + + + device to store spent espresso grounds + + + + + + + a specialist in orthopterology + + + + + + + the study of pollen grains and spores (palynomorphs) in the atmosphere + + + + + + + branch of theology dealing with the doctrine of evil + + + + + + + the study dealing with specialized problems of cities + + + + + + + branch of meteorology that deals with the relationship of weather and climate to crop and livestock production and soil management + + + + + + + + crystallography + + + + + + + + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + + + + + + the subfield of ecology that deals with the study of relationships between organisms and their environment at large spatial scales + + + + + + + + protein that is rich in phosphorus + + + + + + + theological doctrine that describes the divine nature according to positive categories + + + + a theology that instead of beginning with the philosophy of religion takes as its content the gospel as given by biblical theology and presents it directly in systematic form + + + + + + + the branch of pharmacology that deals with the use of drugs in the treatment and prevention of disease + + + + + + + the branch of science concerned with the action of frost and freezing water on the structure and properties of the ground + + + + + + + branch of mycology dealing with the rusts + + + + + + + + little + + + + + + + + + irksome, annoying, irritating + + + + + + + period during which a draught animal is yoked + + + form of mugging involving assailant wrapping arms around victim’s neck from behind + + + + + + + the study of bridges and naturally occurring arches or bridge-like structures + + + + + + + lore dealing with ghosts + + + the study of ghosts and ghostlore + + + + + + + + + a Haeckelian branch of morphology that regards an organism as made up of other organisms + + + the universal organizational science + + + + + + + the branch of physiology which treats of pregnancy + + + + + + + study of handwriting + + + + + + + the study of or knowledge of pathological conditions of the horse + + + + + + + the branch of zoology that studies insects + + + + + + + branch of anatomy dealing with the fundamental tissues and fluids of the body + + + + + + + + having unrequited desire + + + despondent, depressed + + + badly ill, injured + + + not having a weapon + + + lacking funds to acquire drugs + + + + + + + the study of words and expressions having similar or associated concepts and a basis (as social, regional, occupational) for being grouped + + + + + + + branch of immunology that studies the interaction of the immune and nervous systems + + + + + + + the branch of limnology that deals with the conditions and processes occurring in lakes in the geological past + + + + + + + one who or that which brings + + + + + + + the science that deals with atmospheric dust and its effects on plant and animal life + + + + + + exhausted + + + + + + pregnant + + + delicious + + + + + + + use of more words than are necessary; redundancy or superfluity of expression, pleonasm + + + + + + + the branch of anatomy that deals with the pelvis + + + + + + + the study of manuscripts of ancient literature, correspondence, legal archives, etc., preserved on portable media from antiquity, the most common form of which is papyrus, the principal writing material in the ancient civilizations of Egypt, Greece, and Rome + + + + + + + branch of medical science concerned with symptoms of diseases + + + + + + + + the study of or a treatise on beards + + + + + + + the science which treats of the origin and character of springs + + + + + + + + handgun + + + + + + + filthy talk + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + the study and description of the movements of dancing + + + + + + + the study of bile and the biliary organs + + + + + + + + a description of what relates to the bile and biliary organs + + + the study of bile and the biliary organs + + + + + + + + the investigation of urban spatial structure by factor analysis + + + + + + + a branch of theology dealing with the interpretation or explanation of scripture + + + + + + + the branch of chemistry which deals with salts + + + + + + + the sociological study of race by anthropological methods (as in the theories of Lapouge) as a means of establishing the social superiority of dolichocephalic peoples + + + + + + + the study of sacred buildings + + + + + + + the study or investigation of miasmas + + + + + + + + the science that deals with the effects of weather and climate on living beings + + + + + + + the art or science of cookery + + + + + + + the narration or study of history + + + + + + + the anatomical study of the pharynx (obsolete) + + + a branch of medical science concerned with the pharynx and its diseases + + + + + + of or relating to the form, arrangement, and structure of rock masses of the earth's crust resulting from folding or faulting + + + + + + + the study of apes + + + + + + + a branch of the life sciences dealing with neurosecretion and the physiological interaction between the central nervous system and the endocrine system + + + + + + + the scientific study of clouds + + + + + + + a branch of laboratory technology dealing with diagnostic cytology + + + + + + + a great speech or discourse + + + + + + + the study of the macrocosm + + + + + + + the study of ecological microcosms + + + + + + + the scientific study of mummies + + + + + + not apportioned + + + + + + + boasting or vaunting speech + + + + + + + a religious belief among some Charismatic Christians that financial blessing and physical well-being are always the will of God for them, and that faith, positive scriptural confession, and giving to charitable and religious causes will increase one's material wealth + + + + + + + the science of defining technical terms + + + + + + + a branch of hydrography that deals with the relations of mountains to drainage + + + + + + + + a branch of hydrography that deals with the relations of mountains to drainage + + + + + + + + the study of human behavior in the workplace + + + + + + + the branch of science that deals with the neurology of animals and humans of the historical, prehistoric, or geological past + + + + + + + the field of study concerned with sound design and the use of technology in musical composition and performance + + + + + + + field of science that involves redesigning organisms for useful purposes by engineering them to have new abilities + + + + + + + the scientific study of the diseases of animals + + + + + + + the branch of zoology which deals with cephalopods + + + + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + + + + + + the bioclimatology of plants + + + + + + + + lore about parsons + + + the speech of parsons, preaching + + + + + + + one that conforms to rules or the law + + + + + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + + + + + of or relating to the cosmos, the extraterrestrial vastness, or the universe in contrast to the earth alone + + + of, relating to, or concerned with abstract spiritual or metaphysical ideas + + + characterized by greatness especially in extent, intensity, or comprehensiveness + + + + + + + the study of climates of small, confined spaces such as caves or houses + + + + + + + radiology of the teeth and jaws + + + + + + + persuasive or seductive speech or argument; sophistry + + + + + + + the science or study of political parties + + + + + + + the doctrine of the divine direction of nature to an appointed end + + + + + + + a type of micro-level case study research that examines a case in its socio-historical context, using mainly original sources + + + + + + + technologies that support the storage, retrieval, processing and dissemination of information necessary for the efficient and effective operation of libraries in meeting the information needs of their users + + + + + + + the calibration and testing of instruments used in the field of health + + + + + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + + + + + + the study of the tropical atmosphere + + + + + + + the study of runes or runic writing + + + + + + + the study of the physiology of the kidney + + + + + + + + unpleasant, dirty, disgusting + + + piffling; second-rate + + + + + + + the study of comparability and traceability of chemical and biological measurements to ensure the reliability of results + + + + + + + the study of the use of puns + + + + + + + type of macaw with distinctively red upper body and green wings + + + + + + + the science of first principles + + + + + + + a general term for a sequence of abelian groups, usually one associated with a topological space, often defined from a cochain complex + + + + + + + + + to inquire, to interrogate + + + + + + + + malodorous, stinky + + + + + + + (second-person singular possessive) belonging to thee + + + + + + of or related to lexemes + + + + + + + protagonist or leading role in a fictional work + + + + + + + a field within applied climatology that studies the effects of weather and climate on industrial operations + + + + + + + an approach to archaeology that builds out of post‐processual thinking as a simple reaction to processual archaeology and instead sees interpretation as a creative process + + + + + + + the branch of science that deals with the structure of living cells; cytology, histology + + + + + + + the study of measurement and control in sports + + + + + + + the study or subject of the Hebrew accents + + + + + + (third-person singular masculine personal possessive) belonging to him + + + + + + + prebiological conditions and processes; the branch of science concerned with these + + + + + + of or relating to a legal process + + + functional, operational + + + + + + + a network structure that resembles a tree, with a central node (the "trunk") and multiple child nodes that branch out from it + + + + + + + opposite participant in a legal or financial transaction + + + + + + + in soccer, any of various electronic or digital systems used to determine whether the ball has crossed the goal line, and hence to assist officials in deciding whether or not a goal has been scored + + + + + + + activity of humiliating someone + + + impel through shame, assign shame as punishment + + + + + + + term coined by Jean-Philippe-Arthur Dubuffet (1901-85) for a kind of painting created by him, composed of minute drops of paint entirely covering a flat surface + + + + + + + the study of local climates, or topoclimates, which are climatic features caused by the interplay of topography, water, soil, and land cover + + + + + + of a plant, growing on waste ground + + + + + + + the scientific study of blindness + + + + + + + the study or science of nutrition + + + + + + + + knowledge or study of sermons + + + sermonizing: the preaching of sermons + + + sermons collectively + + + + + + + time in which one’s child, partner, etc., receives one's undivided attention + + + + + + + license allowing a person to operate a vehicle + + + + + + + + + to treat with sulphur + + + + + + + + + to make geological researches + + + + + + + + + to disperse a clay suspension, reducing its tendency to settle and viscosity + + + + + + be fed up with + + + + + + + condition of thirst; desiring of a drink + + + + + + + + + to grieve, sorrow for + + + + + + + + + very distant + + + + + + filled to capacity, completely full + + + + + + + + + to designate again; to reinstate designation + + + + + + + abandoned house used for drug storage or processing + + + + + + + field of study that examines how social processes lead to some people being victimized more than others + + + + + + + + + to make a sharp, high-pitched noise, especially as passing rapidly through the air + + + + + + + + + to deposit alluvium on + + + + + + + + + to form a fungoid growth + + + + + + + + + to perform oophorectomy on + + + + + + + + + to excise the spleen of an animal or person + + + + + + + + + to fish through holes made in ice + + + + + + + + + to impoverish, inflict misery upon + + + + + + + + + to cause immunosuppression of an organism; to suppress immune function + + + + + + + an explicitly third-person, scientific approach to the study of consciousness and other mental phenomena + + + + + + + + + to perform a backward somersault + + + + + + over the top of; over + + + + + + in the assemblage of + + + + + + + + + to dance ballet + + + + + + + + + + + + to speak, say, tell + + + + + + to have black colour + + + + + + + + + to forge metal (especially iron) by hand + + + to break into a safe + + + to work as a pimp + + + + + + + the part of physiology and pathology which deals with the bile + + + + + + + + + to ruin, spoil, make a mess of + + + + + + + + + to embed amongst or between + + + + + + + + + to make into boulders + + + to climb boulders + + + + + + + + + to regulate temperature, especially body temperature + + + + + + + + + to convey by van or caravan + + + + + + + the study of ichneumon wasps + + + + + + + any of a large family (Ichneumonidae) of brown or black hymenopterous insects that have a slender body and long ovipositor and whose larvae are parasites of the larvae and pupae of various insects + + + + + + + + + to ascertain, allow for, or indicate the tare of + + + + + + + musical instrument of the lute family + + + + + + at a distance from + + + + + + + a small three-masted Mediterranean vessel with both square and lateen sails + + + + + + + + + to catch or try to catch lobsters + + + + + + + + + to divest or deprive of power conferred + + + + + + + + + to bungle or botch + + + + + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + + + + + + + powerful feudal territorial lord in pre-modern Japan + + + + + + classical Japanese dance-drama + + + + + + + sacred ritual with object of increasing the totemic species of a clan + + + + + + + the study of communication, including such fields as semiotics, audiology, and speech pathology + + + + + + + the study of the body's metabolic response to short-term and long-term physical activity + + + + + + + the study of the changes in flow properties that occur in certain fluids exposed to magnetic fields + + + + + + + tetragonal aluminosilicate mineral and chloride of sodium and beryllium + + + + + + + silicate of glucinum and manganese, occurring in regular tetrahedral crystals + + + + + + + mineral with tetrahedral silicate crystal structure + + + + + + + the state of being feral + + + + + + adorned with figures of needlework + + + + + + that has received an invitation + + + + + + later on + + + + + + see you later + + + + + + + act to commit + + + + + + + making of an exit + + + + + + + أبو قِردَان + + + + + + + someone who soliloquizes + + + + + + + + a vaginal artery (Obsolete. rare) + + + + + + + action of love; affection + + + + + + + Turtur + + + + + + + description of the skin + + + + + + + + a writing or treatise on dogs + + + + + + tending to cause encephalitis + + + + + + + the measurement of the magnetic fields associated with the electrical and mechanical activity of the heart + + + + + + + branch of geography that deals with the figure and motions of the earth, its seasons and tides, its measurement, and its representation on maps and charts by various methods of projection + + + + + + + wood engraving, especially of an early period + + + the art of printing texts or illustrations, sometimes with color, from woodblocks, as distinct from typography + + + + + + + the study of the geographic distribution of plants + + + + + the phytogeographic features of a region + + + + + + + a description of the moon's surface + + + + + + + an imaging technique in which the output is produced by the coupling of two types of field (electromagnetic and magnetic) + + + + + + characterized by exclusivism + + + + + + + very large or fast jet aeroplane + + + powerful jet engine + + + + + + + dramatic work in which psychological elements are the main interest + + + + + + that pollutes; that causes environmental pollution + + + + + + + style of painting using pointillism to achieve a more formal composition + + + + + + + protuberance of the outer ear; thicker part of the antihelix + + + + + + + condition produced by overuse of bromine or a bromide + + + + + + + instrument for measuring logarithmic decrement of oscillatory circuit + + + + + + + removal of a security from official register + + + + + + + a nucleus of the optic thalamus + + + + + + + pollination by agency of water + + + + + + + machine for separating the hulls from seeds + + + + + + + keyed viol, a musical instrument + + + + + + + production of ketone bodies + + + + + + engaged in courtship + + + + + + not disclosing one's true ideology, affiliations, or positions + + + intended not to attract attention : stealthy + + + aving or providing the ability to prevent detection by radar + + + (medical) involving or caused by an asymptomatic or presymptomatic infectious individual : silent + + + + + + having a heart + + + + + + + the study of how human diet, nutrition, and subsistence are influenced by social, cultural, historical, ecological, and evolutionary factors + + + + + + the best, most exciting + + + + + + + the frequency of marriage within a population, usually expressed as a marriage rate + + + + + + + a mayfly used as fishing bait + + + + + + + African musical instrument of the lamellophone family + + + + + + + + membranous lining in insects and arachnids + + + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + that which is eaten + + + + + + + + + to go to the gallows, to be hanged + + + + + + + the idea that the present is haunted by the metaphorical "ghosts" of lost futures + + + musical genre that took hold in the early aughts that evokes cultural memory and aesthetics of the past + + + + + + + + + + + to take with; to have accompanying + + + + + + + + + to force or barge one’s way into (a place or event) + + + crash, slam or invade, possibly unexpectedly + + + + + + + rumbling noise produced by movement of gas through intestines + + + + + + + + + to expect, regard as likely to happen + + + + + + + + + to interpose in one’s authority + + + + + + + + + to officially or legally make over, convey, assign, grant + + + + + + + + to place or set upon something + + + + + + + anathema; curse; denunciation, condemnation + + + + + + + + + to place against, set in opposition to + + + + + + + + + to presuppose, assume beforehand + + + + + + + + + to endow with a benefaction + + + + + + situated or occuring above the clavicle + + + + + + + + + to give an additional name, title, or epithet to (a person) + + + + + + + + + to take turns doing something with someone + + + + + + + + + to put into the possession of trustee(s) + + + to act as a trustee + + + + + + + + + to bind ubiquitin to (a protein) + + + + + + + depression on the upper part of a pock on the skin + + + + + + + Egyptian dancing-girl + + + + + + + + + to unfasten, loosen; to undo from fixed state + + + + + + + a small cavity in a rock or vein, often with a mineral lining of different composition from that of the surrounding rock + + + + + + + + + to experience enjoyment, amusement, entertainment + + + + + + + + + + to sew by hand + + + + + + + + + to feed by hand + + + + + + + + + to remove social stigma associated with + + + + + + + a theory of ethnicity emphasizing that ethnic groups are created on the basis of enduring ("primordial") biological, linguistic, or geographic relationships + + + + + + the branch of anthropology that studies human economic activities throughout the world + + + + + + + + + to re-establish priorities for + + + + + + + semblance of interpersonal exchange whereby members of an audience come to feel that they personally know a performer they have encountered in mass media + + + + + + + any of various herbivorous dinosaurs (family Hadrosauridae) of the Late Cretaceous having the jaw elongated into a snout that resembles a beak : hadrosaur + + + + + + + a polemical argument; a diatribe, a polemic. Usually in plural + + + + + + + + synthetic chemical element with symbol Og and atomic number 118 + + + + + + + an undersized, slight person; a person lacking in strength, weak, feeble + + + + + + colored stoneware with raised white decoration + + + + + + + the fishing fleet for sardines + + + + + + + a person who or thing which procreates; a parent; a creator + + + + + + + best friend + + + + + + + one that debunks + + + + + + representing a brief resonant sound, as of a blow + + + + + + worthless, useless + + + + + + + the buttocks; the anus + + + + + + in computing, that which can be read but cannot be changed by a program + + + + + + + the fact or condition of occupying a certain place or position; the place in which a person or thing is; location + + + + + + + a place, a location; (also) position, location + + + + + + feeding on insects + + + + + + + the action or process of a bacteriophage + + + + + + + + + + to unsay or retract something sworn + + + + + + + later or vertical movement of material in solution or suspension through soil + + + + + + + a person who engages or participates in figure skating, especially competitively + + + + + + + a freestyle competition with no required elements, in which skaters perform an original program of jumps, spins, sequences, etc., to music of their choice + + + + + + + a person who performs a free skate in figure skating + + + + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + + + + + among a group of two or more + + + + + + paid with paper currency + + + + + + + a figure skating jump in which the skater takes off from the back outside edge of one skate, makes at least one full turn in the air, and lands on the back outside edge of the same skate + + + + + + + + + clever, wise + + + + + + relating to or resembling vampires + + + + + + + + + the quality of being unconstrained + + + + + + nincompoops as a class + + + + + + + person regarded as socially inadequate, unfashionable, contemptible + + + + + + + the act of assigning a criminal punishment + + + + + + + act of objecting to something or participating in a protest + + + manner of speaking + + + + + + + a type of mozzarella cheese made from the milk of Italian Mediterranean buffalo + + + + + + + state that has the highest authority over a territory + + + + + + of or relating to the moth family Arctiidae + + + + + + + a miserable person + + + + + + + Stiefmutter + + + + + + + an unwanted and unsolicited telephone call + + + + + + + necrosis of a tooth + + + + + + + gift giving, often as a fulfillment of a request + + + + + + + + + + to draw again + + + + + + + a container, typically a rectangular or square structure, used to grow plants in a controlled environment, often outdoors + + + + + + (expression to persuade, garner attention) + + + + + + + clothes custom-made for sale + + + + + + + an ancient Mediterranean and Near Eastern earthen vessel with small cups around the rim or fixed in a circle to a central stem + + + + + + + working (of something) + + + + + + + musical instrument that creates sound through the vibration of air without the use of strings or membranes + + + + + + + + + to reduce risk + + + + + + assumed (of a setting) + + + + + + + a combination of nine instruments or voices + + + a musical composition for nine instruments or voices + + + + + + + rolling pin + + + + + + + in advertising and web design agencies, the person who acts as the intermediary between the agency and the client, whose job is to interpret the client’s brief and manage the process of its realization + + + + + + + a noncommercial often homemade or online publication usually devoted to specialized and often unconventional subject matter + + + + + + + fast-forwarding through commercials on recorded media during playback + + + + + + + the practice among television viewers of rapidly changing from one channel to another using a remote control device, especially during commercial breaks + + + + + + + the mass production of identical copies of a text using technological means (i.e. printing) + + + + + + a television show or series that tells a story in a predetermined, limited number of episodes + + + a comic book series that tells a self-contained story in a limited number of issues, usually between two and eight + + + (sports) a short series of performances or athletic contests + + + + + + + the high redundancy of broadcast codes associated with structurally simple, formulaic, and repetitive texts + + + + + + + a technique used in broadcast programming whereby an unpopular television program is scheduled between two popular ones in the hope that viewers will watch it + + + + + + the use of technology that stimulates the senses of touch and motion, especially to reproduce in remote operation or computer simulation the sensations that would be felt by a user interacting directly with physical objects + + + the perception of objects by touch and proprioception, especially as involved in nonverbal communication + + + + + + + person who takes part in a game + + + + + + the sport or activity of riding a mountain bike + + + + + + + a synthetic cannabinoid and dibenzopyrane derivative with anti-emetic activity + + + + + + + musician, singer; provider of music + + + + + + + + + + + + + + a pastelike mixture of apples, nuts, cinnamon, and wine used during the seder meal on the Passover and symbolic of the clay from which the Israelites made bricks during their Egyptian slavery + + + + + + + utterance of ‘ah’ + + + + + + + act/process of amounting to, coming to, calculating, or computing arithmetic mean (usually mean, median, or mode) + + + + experiencing or having an average + + + + + + + give legal rights to property + + + + + + + to impose or command, imposing, commanding, deciding, telling + + + + + + + my (in colloquial dialectal use) + + + + + + + the study of alphabetic systems of writing + + + + + + + tthe methods and processes used to join different components together to create a complete product + + + + + + + + the science and engineering involved in designing, developing, and applying devices called actuators + + + + + + + + + + to say or shout something loudly + + + to sing something loudly + + + + + + of or like fibrils or fibers + + + of or exhibiting fibrillation + + + + + + having the color of the element copper + + + made of copper + + + + + + + engage in a battle with someone + + + + + + + the study of physiology at a microscopic scale + + + + + + biochemical + + + + + + + the study of the relationships between plants and climate, including the impacts of climate on plants and how plants, in turn, affect climate + + + + + + + + branch of geology concerned with the study of rock layers (strata) and layering (stratification) + + + + + + + the study of witches or witchcraft + + + + + + + organismic psychology that emphasizes the self or the individual personality + + + + + + + one who has hair cropped short + + + + + + + the study of the plant genus Theobroma, cacao, and chocolate + + + + + + in an abrupt manner (suddenly/without warning) + + + + + + + a bisector; specifically : a line bisecting the angle between the optic axes of a biaxial crystal + + + + + + make available for consideration + + + postpone consideration of + + + + + + + the study of the Earth's atmosphere and oceans using data obtained from remote sensing devices flown onboard satellites orbiting the Earth + + + + + + that has escaped/is a fugitive + + + + + + + the study of the significant influence of climate on many aspects of commerce and industry + + + + + + + + + lose, come to not have + + + + + + + act/process of poking with sharp object (perhaps fatally), metaphorically trying something + + + + + + + removal of innards + + + + + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + + + + + + act of talking aimlessly + + + The act of moving aimlessly from place to place + + + + + + + the act or process of making something active again + + + + + + + process or act of making less effective, not sharp + + + + + + departed from a straight path + + + + + + + moment when an institution starts operating after a closure + + + + + + + addition or administration of a substance + + + measuring an appropriate amount of chemical for a given purpose + + + + + + + feeding of babies and young children with milk from a woman's breast + + + + + + pique one's interest + + + + + + + + + to pair, combine, compare + + + + + + + faint, pass out + + + + + + + act or process of making higher, increasing, raising + + + + + + that makes a sign or signs; that signs or is authorized to sign + + + + + + + technologies that support individuals in performing tasks or improving their overall performance, particularly those with disabilities or those needing assistance to live more independently + + + + + + + a genetic engineering technique used to disable or remove a gene from an organism's genome, typically to study its function + + + + + + + act of displaying something proudly + + + + + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + + + + + technology that radically alters the way something is produced or performed, especially by labor-saving automation or computerization; an instance of such technology + + + + + + + + + to leave out, not experience, fail to take advantage of + + + + + + + + + to submit or give something + + + + + + + the integration of various functionalities into glass surfaces, transforming them beyond traditional windows and partitions + + + + + + + a practitioner of anaplastology + + + + + + + the study of a single, unified sound system within a language, rather than comparing it to other systems + + + + + + + + + to cause (a solid) to behave like a fluid, as by pulverizing or by suspending pulverized particles in a moving gas + + + to suspend (something, such as solid particles) in a rapidly moving stream of gas or vapor to induce flowing motion of the whole + + + + + + + technology that extracts heat from the earth by circulating a working fluid through a closed loop within a borehole, typically in geothermal or oil/gas wells + + + + + + (in the oil industry) used, occurring, or performed in a well or borehole + + + + + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + + + + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + + + + + + one who uploads or uploaded + + + a program that uploads + + + + + + + (cause to) become flat + + + + + + + divvy up + + + + + + act or process of bullying + + + + + + + transformation of one tissue into another + + + abnormal replacement of cells of one type by cells of another + + + + + + + A small town; a town of very modest size, typically smaller than an average town but larger than a village. + + + + + + + The act of accumulating + + + + + + + The act of approaching. + + + + + + wrongly or badly informed; deceived + + + + + + + + + + wind down: come/bring to a stop + + + + + + + + endure, last through + + + + + + + + + play to: butter up to, try to please + + + + + + blackout drunk + + + + + + + the classification of libraries based on their function, user group, or other defining characteristics + + + + + + + The act of sprinkling lightly + + + + + + + one who delves, as a tiller of the ground, or excavator + + + + + + + remove armed forces, removal of military presence + + + + + + + The act of working on more than one task at once + + + + + + + act of dipping (as with ladle or hand) + + + + + + + an enzyme that originates from an extremophile, an organism that thrives in extreme environments like high temperatures, acidity, salinity, or low temperatures + + + + + + + + + provide with context + + + + + + + a condition in which the secretion of mucous is diminished + + + + + + + police officer in the Republic of Ireland + + + + + + + The act of causing something to become yellow + + + + + + + a floating hotel, permanently moored at one location + + + + + + + act or process of supporting, substantiating, being a foundation + + + + + + variation on sense two above, enter into a contract with an outside party + + + + + + advance diet as tolerated + + + + + + able to be awakened, stirred up + + + + + + + + + pave, cover with asphalt + + + + + + politically opposed to Bashar al-Assad + + + + + + + The act of sorting into groups categorically + + + + + + having no opening + + + + + + + + + be prevented from coagulating + + + + + + + act of performing an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + + + + + intensify effort, exert pressure on + + + + + + + small African fox, Vulpes zerda + + + + + + + act or process of bird-watching + + + + + + susceptible to blanching + + + + + + lazy, inefficient + + + + + + + + + to squash or mash + + + to press or force (someone or something) into a small space + + + + + + + the scientific study of children; pedology + + + + + + + the field of meteorology that uses fundamental laws and principles of physics and mathematics to understand, analyze, and model the atmosphere + + + + + + + a device used to indicate the direction and intensity of the magnetic field (as on a planet) + + + + + + capable of being quelled + + + + + + + common name for a freshwater fish (genus Hiodon) known for its large, shiny, golden eyes + + + + + + + + + buckle up: prepare for the worst + + + fasten one's seatbelt + + + + + + + + + to place or store in a cellar + + + + + + + + + form cavities in tissue or organs + + + + + + + act of holding together very tightly + + + + + + + + + to cut, cut off, or cut out + + + + + + + surgery that creates an artificial connection between two non-contiguous parts of the colon + + + + + + involving the colon and the anus + + + + + + + + + establish with another + + + + + + + expression of two or more genes simultaneously + + + + + + + + + amend text with a partner + + + + + + + a topology on a space that is the most suitable or standard one for its given context, often arising from a more fundamental structure like a metric or an order, or by making certain naturally defined maps continuous + + + + + + + removal of the urinary bladder and the prostate + + + + + + + + + remove burrs + + + + + + + process of degrading and destroying the myelin sheath covering nerves + + + + + + + + + remove flesh + + + + + + + + + remove germ or oil + + + + + + + + + remove a phosphate group from an organic compound by hydrolysis + + + + + + branch at a wide angle + + + + + + + accumulation and sinking + + + + + + + bending or hanging downwards + + + + + + + + + + act in a manner that causes others to pay attention + + + + + + cool, stylish, excellent + + + + + + be oriented with the face pointing down in some framework + + + + + + + The act of falling back, relying on in emergency + + + + + + + + + (cause to) be enclosed or blocked out + + + + + + + + + + vpc version of fly.03, hit a fly ball + + + + + + + inject liquid to force an opening for extraction of oil or gas. + + + + + + + mark with freckles + + + + + + + + + add/request as a 'friend' on social media + + + + + + + destroy tissue with a high-frequency electric current + + + + + + spontaneously grow fungus + + + + + + + act or process of allowing an old exception to a new regulation + + + + + + + + + go to the gym + + + + + + + + + to place back in a holster + + + + + + + act or process of rendering humid or moist + + + + + + + + + to undergo hyaline degeneration or become hyaline + + + + + + + process of becoming severely inflamed + + + + + + + to exist within, especially as a spirit or driving force + + + + + + + variety of aubergine with purple and white stripes + + + + + + + spider + + + + + + + + + surround with land + + + + + + + + + make lanes out of a certain area or space + + + + + + + act or process of translation, shifting diachronically into Latin + + + + + + forming or dividing into lobules + + + + + + not suited or properly adapted + + + + + + + + + abnormal formation + + + + + + + + + inaccurately assign a label or attribute + + + + + + very slight invasion of malignant cells into adjacent tissue + + + + + + + + + cause to be married + + + + + + + The act of swarming, driving away (perhaps a predator) as a group + + + + + + + removal of an organ's mucous membrane + + + + + + regulation of osmotic pressure + + + + + + + + + Observe with attention + + + + + + + move slightly + + + + + + + add material to the boundaries of a shape/form + + + + + + overwhelm with (military) force + + + + + + + spend the winter + + + + + + + + + to pledge too much + + + + + + + + + inflate too much + + + + + + + hunt a species or area to the point of damaging the herd + + + + + + make poor + + + + + + in or to the continental U.S. + + + + + + + stomach ache + + + + + + + The act of incorporating a nitrosyl group into another molecule + + + + + + + act of splitting into periods, assigning to a period + + + + + + unable to examine by feel + + + + + + not happening repeatedly + + + + + + + + + remove small pieces from + + + + + + + sweetheart, darling, beloved one + + + + + + to decorate a floor with parquetry (inlaid woodwork) + + + + + + + + + flog + + + + + + determine and perform necessary medical course of action + + + + + + (hyper-gendered) act as female staff for, work at + + + + + + drone on about something trivial + + + + + + ride a sailboard + + + + + + the color white-tan + + + + + + warm slightly + + + + + + enclose with walls + + + + + + the snowboarding of waterskiing + + + + + + violet in color + + + + + + surgery that connects two parts of the same ureter + + + + + + not welcome + + + + + + unsettle, destabilize + + + + + + cause to be in the required condition beforehand + + + + + + drink or celebrate, before an event or outing + + + + + + to incubate (as a cell or a culture) prior to a treatment or process + + + + + + entity at a pre-medical school level + + + + + + in favor of war + + + + + + talk about again + + + + + + the process of implanting again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + + + + + groundlessness (quality/fact of being without underlying basis/foundation) + + + + + + find a new home for + + + + + + to look at again + + + + + + to perform surgery or operate again + + + + + + the act of hitting with radiation again + + + the act of emitting or projecting, again + + + + + + look at again; review another time + + + + + + smooth, characterized by absence of hindrance/difficulty + + + + + + travel again + + + + + + behind the pubis + + + + + + cast ballot again + + + + + + the act of casting ballot again + + + + + + roll on the floor laughing + + + + + + scout, investigate + + + + + + act of investigation, scouting + + + + + + without having to pay or be penalized + + + + + + the act or process of cutting, shaping, or forming scallops + + + + + + in a way that is marked by unusual, odd, or peculiar habits, traits, or behaviors, often in a charming or whimsical manner + + + + + + make a shushing noise to encourage someone to be quiet + + + + + + act or process of checking in + + + + + + to inform, make information known + + + + + + the act or process of sleeping until some effect is no longer felt, particularly that of alcohol, medication, or a short-term malady + + + + + + stall off: delay, intensive of stall.01 + + + + + + p-value + + + + + + to stop doing something; pause an activity, perhaps to look at the big picture + + + + + + delusional + + + + number between 12 and 14 + article thirteen (13) of the Constitution of Louisiana + + + For what cause, reason, or purpose + + + the number 10 + the Interim Constitution was amended ten times + + + playing card + + + to give an old object a new purpose/role + + + (second-person possessive) belonging to you + + + joins words and sentence parts together + + + then; and then (concessive) + + + with, accompanied by; and with (associative) + + + although + + + (auxiliary) expressing the future tense + + + give in a will, bequeath + + + third power of ten + Solomon is said to have written three thousand proverbs, and those contained in this book may be a selection from these + + + sixth power of ten + + + Concerning, with regard to, on the subject of + Let's get serious about plagiarism + + + word denoting something already mentioned, or assumed to be known + Did you see my car over there? The exterior was spray-painted red yesterday. + + + In the (same) way or manner that; to the (same) degree that + it is hereby ordered as follows + + + later in time + for 50 years after the year of first publication + + + enclosing in a circle or other curve + + + nearby + + + in a variety of places within an enclosed space + + + next to + + + into the middle of an object and out again + + + beyond + + + used to indicate that something happens or is the case even though there is an obstacle, difficulty, or another opposing factor + + + one of two choices + + + one or the other of a pair + + + On the outside of, not inside + This work is in the public domain in some countries and areas outside the United Kingdom, including the United States. + + + also not + + + denoting something learned + + + in spite of, occurring even with some contrary indicator + + + million million + + + million million million + + + on the top of, above + + + physically supported by + + + at (a point in time) + + + according to previous knowledge + + + More than enough. + Acquire one of these and you'll have plenty of car for your money. + + + the number 0 + + + technique for imaging internal structure using magnetic fields + + + core of the atom; composed of bound nucleons (protons and neutrons) + + + Apart from, except (for), excluding. + Everyone but Father left early. + I like everything but that. + Nobody answered the door when I knocked, so I had no choice but to leave. + + + number between 39 and 41 + + + before + + + form of laughter (especially when repeated) + + + Certainly; verily. + + + make the noise 'woof' + + + used to express surprise, interest, or alarm, or to command attention + + + praise + + + expressing relief + + + chemical element with atomic number 114 + + + without + + + word or phrase that means exactly or nearly the same as another word + + + Used to indicate something dramatic, sudden, and unanticipated has occurred. + Our relationship was going smoothly and then wham! Out of nowhere he told me he was leaving me for another woman. + + + music group made up of young women + + + describes rocks low in silica + + + steel element reinforcing concrete + + + the world's largest land biome, characterized by coniferous forests + + + study of the upper atmosphere + + + study of chemistry pertaining to agriculture + + + science + + + type of higher education institution + + + type of tertiary education teaching institution in the UK between 1965 and 1992 + + + molecule found in living beings + + + decomposition by living organisms + + + renewable energy + + + molecule that is produced by a living organism + + + substance providing scientific evidence of past or present life + + + communications medium with a high data transmission rate + + + response of a sense organ to chemicals + + + act of consigning + + + license + + + not binary + + + outside or beyond the gender binary; not exclusively male or female + + + study of diabetes + + + clinical science of diabetes mellitus + + + indicator of a problem + + + process to assist in medical diagnosis + + + being diurnal + + + measurement of electrical properties + + + pertaining to electrotechnology + + + study of energy transformations + + + of or pertaining to a eutectic mixture + + + semiconductor quasiparticle + + + chemical compound + + + relating to fermions + + + attracted to all genders + + + counter-argue + + + fluid analog of electronics + + + spacecraft flight past a celestial object + + + ceremonial aircraft flight + + + flight event at some distance from the object + + + provider of funds + + + pertaining to geomatics + + + use getter to improve vacuum + + + skill at obtaining grants + + + single layer of graphite + + + undeveloped land + + + provide a guarantee + + + deliberately incorrect version of “who” or “whom”, used humorously in place of those words + Yes, even though she’s one of the YouTubers whomst is bad. + + + medical specialist in hepatology + + + study of water in the atmosphere + + + term for faster-than-light travel mechanism + + + between communities + + + between ministries + + + between mountains + + + type of crystal defect + + + type of Korean food + + + device or process to make linear + + + type of circuit + + + study of fats + + + middle part of a city + + + pertaining to modernism + + + of a size measured in nanometers + + + study of animal behavior related to nervous system + + + study of nervous system disease + + + study of drug interactions with brain and psychology + + + not clinical + + + against proliferation (particularly of nuclear weapons) + + + electron state in an atomic or molecular system + + + an orbital road + + + relating to orthotics + + + economic concept + + + environment of an area in the distant past + + + study of veins + + + degree to which something can be verified + + + pertaining to podiatry + + + cast (as in concrete) elsewhere before installing + + + construction technique + + + pertaining to psychonomics + + + relating to sales directly to final customers + + + characteristic + + + break into fragments + + + notes held only briefly in music + + + steel components of a structure + + + one who studies suicide + + + occupation + + + quality of object + + + interrogative word + + + vehicle safety device + + + period when a broadcast program is shown + + + feeling of weightlessness on a roller coaster + + + entity coming closer + + + helper + + + recording of a text being read + + + person who enjoys the good things in life + + + In spite of, despite. + Notwithstanding personal preferences, the school district's rules on the topic govern our decision. + + + causing a transformation + + + to call someone by their deadname + + + branch of medicine concerned with urological problems affecting women + + + of a desirable age + + + earthquake on the Moon + + + process of overseeing a collection, for example in a museum + + + statistical method that summarizes data from multiple sources + + + a certain proportion of, at least one + + + an unspecified quantity or number of + + + an unspecified amount of (something uncountable) + + + a certain; an unspecified or unknown + + + version of a scholarly or scientific paper that precedes publication in a peer-reviewed scholarly or scientific journal + + + type of sponge + + + perspective of an individual or group + + + action to include someone else’s tweet into one’s own timeline + I'm still learning the full use of hashtags and retweets. + + + include someone else’s tweet into one’s own timeline + In my case, I started following two of the accounts after other people who I follow retweeted or linked to content posted online. + + + reposting of a tweet + + + Slang English language term of endearment + + + type of antibiotic + + + type of pasta + + + beef flank steak + + + female Buddhist monk + + + ethanol produced by fermenting crops for fuel + + + fabrication using biological or biochemical methods + + + Italian antipasto + + + literary genre + + + type of cell + + + female gladiator + + + poetry with 11 syllables per line + + + virtual machine-supporting software or firmware + + + unlawful withholding of employee pay by their employer + + + collection of fashion photographs + + + type of neutron star + + + very thin synthetic fiber + + + fallacious argumentative strategy that avoids genuine discussion of the topic by instead attacking the character, motive etc. of the person(s) associated with the argument + + + et cetera + + + in an apposite manner, appropriately, to the point + + + radiantly (in the manner of beaming light) + + + in a cheating manner + + + In a controllable manner. + + + in a dapper manner; neatly, trimly, sprucely + + + meritoriously (in a deserving manner) + + + used as a lense to improve sight + + + faintingly/fadingly, so as to resemble/evoke death (in dying) + + + without emotion or feeling (in an emotionless manner) + + + the state of not having anything in one's hand + + + so as to enrich + + + in a manner involving multiple cells + + + on the face of + + + without friction (in a frictionless manner) + + + in a guileless manner + + + to what extent? + + + at what cost? + + + in an insubordinate manner + + + without motive + + + type of document issued by the Pope + + + polite response to a "Thank you" + + + said of the time of day, according to the clock + + + onward + + + in a way that involves wild, uncontrolled behavior and feelings of great pleasure and excitement + + + illicit partner in love + + + slang for a user being added to a killfile + + + In a way that is pretended; under false pretence. + + + in a priceless manner + + + in the earliest stage/at first/originally + + + irresistibly/without resistance + + + in a stifling manner + + + without weeping (in a tearless manner) + + + имсол + + + without reference to time, independently of time's passage + + + across an (imaginary) line around which an object may be spun, referring to a mammalian head it is the second cervical vertebra of the spine + + + in a way that is large, bulky, or full + + + in a kind and friendly manner + + + done in a manner that worships another + + + without any mental or neurological abnormalities + + + type of parasitic organism + + + holistic training discipline + + + organism that eats multiple types of other organisms + + + functionless DNA or RNA sequence + + + garbled text as a result of incorrect character encoding + + + Any apparently useless activity which, by allowing you to overcome intermediate difficulties, allows you to solve a larger problem. + + + A less useful activity done consciously or subconsciously to procrastinate about a larger but more useful task. + + + class of small, light notebook computers + + + study of saccharides + + + excessively express a gene by producing too much of its effect or product + + + process of formation of cancer + + + condensed form of chromatin + + + type of signaling protein + + + fraction of population testing positive for a disease + + + narrow shaft bored in the ground + + + instrument that records seismic waves by measuring ground motions, caused by earthquakes, volcanic eruptions, and explosions + + + type of computer software + + + all disciplines related to managing data as a valuable resource + + + condition that results from not enough consumption of nutrients + + + cause to lack nutrients + + + land surface + + + cardinal number + + + freeze again + + + process by which the embryo is formed and develops + + + to magnetize + + + fold again (origami sense) + + + to make sickly + + + post, again + + + to make horn-like in texture + + + to coat or impregnate with zinc + + + to make or render plebeian + + + watch again + + + process of defining the measurement of a phenomenon that is not directly measurable, though its existence is indicated by other phenomena + + + type of civil service position + + + to place in a basket + + + Human disease + + + Human disease + + + filtration by force through a semipermeable membrane + + + bile duct adenocarcinoma that has material basis in bile duct epithelial cells. + + + paralysis of all four limbs and torso + + + excision of the urinary bladder + + + removal of a cyst + + + surgical removal of all or part of an intervertebral disc + + + environment with extremely low apparent gravitational force + + + deepest layer of the oceans + + + the re-emission of photons from a surface following exposure + + + surgical procedure that creates a long-term opening between the kidney and the skin + + + surgical excision of a part of the cornea + + + correlation between measurements of quantum subsystems, even when spatially separated + + + phenomenon applied in physics + + + geometric property of some molecules and ions + + + miniaturized and simplified version of an organ + + + aesthetic ideal introduced into English cultural debate in 1782 by William Gilpin; along with the aesthetic and cultural strands of Gothic and Celticism, was a part of the emerging Romantic sensibility of the 18th century + + + metric in epidemiology + + + process of finding and identifying people in close contact with someone who is infected with a transmissible pathogen + + + dish made from rice + + + crystalline piece of solid matter less than 100nm in diameter + + + nanostructure with its diameter in nanometers + + + human disease + + + formation and then immediate implosion of cavities in a liquid + + + form cavities in tissue or organs + + + phenotype of the typical form of a species as it occurs in nature. Most prevalent allele – i.e., the one with the highest gene frequency – is the one deemed as wild type + + + type of organelle + + + class of chemical compounds + + + a class of chemical compounds + + + the ability of certain substances to produce several distinct biological responses + + + slide show + + + toxic effects on the nervous system + + + word or phrase prefixed by # for categorization + + + large mass of glacier ice + + + device that increases humidity + + + branch of statistics focusing on spatial data sets + + + function of the coefficients of a polynomial that gives information on its roots + + + non-binary gender identity with partial association to a gender + + + territory legally or politically attached to a main territory with which it is not physically contiguous because of surrounding alien territory + + + loss or extinctions of animals in the forests + + + audio effect + + + fictional weapon + + + ancient Persian unit of mass + + + neopronoun + + + exclamation of astonishment + + + distance between different groups in society + + + species of fish + + + worker who is considered to provide an essential service but not necessarily in a special legal category + + + to exhibit especially in an attractive or favorable aspect + + + pay out + + + provide a payout + + + argument for the existence of an intelligent cause adequate to explain the extraordinary design and intelligence we observe in our information-rich universe, particularly within living organisms + + + type of performance art + + + dislike of or prejudice against bisexual people + + + type of cancer of the brain originating in a particular kind of glial cells, star-shaped brain cells in the cerebrum called astrocytes + + + (of a man or woman) attracted to both men and women + + + to capture an image of the on-screen view of an electronic device + + + nostalgic Internet aesthetic celebrating a return to traditional skills and crafts + + + person or object that practices correction + + + dissolute person + + + to travel by dogsled + + + With all due respect to. + + + Unless (something) happens; excepting; in the absence of. + Barring any further red tape, we will finally be able to open the restaurant. + Barring any sudden storms, the plane should arrive on time. + + + Signifies that the action of the clause it starts takes place before the action of the other clause. + The show ends after the fat lady sings. + After we had decided to call it a day, I went home. + + + If + + + English word + + + Where, or in which location. + + + Indicates annoyance, anger, or disappointment. + Nuts! They didn't even listen to what I had to say. + + + Represents the sound of music or singing. + "La la la la, I can't hear you!" Jimmy said, sticking his fingers in his ears. + + + vocalization by cats + + + A mild expression of annoyance. + + + look out!; beware! + + + Please perform again! + + + Used to express repugnance, disgust, or annoyance. + Ugh! The bread in the pantry has gone moldy. + + + An expression of annoyance or disgust; damn, darn. + + + Thanks! + + + Used to show anger or disappointment: damn + + + violating convention or propriety : bizarre + + + third person singular neopronoun + + + the state of being a grandparent + + + process of items shrinking in size or quantity while their prices remain the same + + + a cupboard or cubbyhole + + + a hug + + + planned process of introducing foreign nucleic acids into eukaryotic cells, usually physically or chemically + + + he or she + + + synthetic media where a content is created that resembles a person often by the machine learning models + + + name for an ethnic group + + + word with opposite or contradictory meanings + + + energy that is collected from renewable resources + + + tradeable certificate used in carbon mitigation policy systems + + + for positive and negative feedbacks associated with climate change + + + legal requirements governing air pollutants released into the atmosphere; set quantitative limits on the permissible amount of specific air pollutants that may be released from specific sources over specific timeframes + + + earthquakes as large as magnitude 5.1 that occur in glaciated areas where the glacier moves faster than one kilometer per year + + + system of interaction and processes that regulate the Earth's climate + + + tax on the carbon content of fuels + + + hypothetical type of planet whose surface is completely covered with an ocean of water; in fiction see Q98807723 + + + person with a high performance level + + + for four years in a row + + + across a span of five consecutive years + + + differential operator in vector calculus + + + field at the intersection of medicine and ethics + + + research involving fundamental scientific principles that may apply to a preclinical understanding – to clinical research, which involves studies of people who may be subjects in clinical trials + + + Unwanted pre-installed software + + + Having a gender identity other than male or female + + + a biography or biographical sketch + + + mineral chemically consistent of aluminum and silicon oxide + + + A full length album. Larger than a mini album. Relates to KPOP + + + fictional technology that translates spoken language instantaneously + + + pronoun used to refer reflexively to a hypothetical or generic person + + + response to sneezing + + + out of equilibrium + + + distributed data store for digital transactions + + + the technology used to create such a database + + + person who performs magic in fiction or mythology + + + attribute in video game representing the health of a game character + + + type of fictional weapon in the Star Wars franchise + + + Polynesiain spiritural practice + + + concept in fantasy literature + + + attribute assigned to characters within a game + + + prestige + + + to acquire again + + + heart muscle cell + + + to be over-excited + + + describes rocks with high silica content + + + ethological class; trace fossils in the form of dwelling structures which reflect the life positions of organisms + + + artificial removal of carbon dioxide from blood + + + multiple instances of earbud + + + a single pair of earbuds + + + research involving volunteers + + + species spreading outside its native range + + + the pause in human activity due to the COVID-19 pandemic + + + I love you + + + paddleball sport combining elements of tennis, badminton, and table tennis + + + ball used in pickleball + + + attracted to males + + + attraction to both the same and opposite sex or gender + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + member of the Viverridae family + + + one who comments + + + the use of e-cigarettes or other devices that let you breathe in nicotine or other drugs as vapor rather than smoke + + + a bundle of clothes or bedding + + + type of digital cryptocurrency + + + reply to something negative happening, expressing one's panic or disappointment + + + you (plural) + + + without attraction (all senses) + + + drunk + + + person who streams activities on their computer to a live online audience + + + emoticons or emoji with elements from Japanese katakana + + + Any beetle of the order Coleoptera + + + 21st, ordinal number of 21 + + + Chromobotia macracanthus + + + any sponge of the clade Heteroscleromorpha + + + any spider in the family Sparassidae + + + of, relating to, or shaped like a torus or segment of a torus + + + center of a target + + + not amused + + + a strike of lightning + + + second person plural pronoun + + + post that is a copy of another + + + Knulliana cincta + + + any weevil of the subfamily Entiminae + + + any weevil of the family Curculionidae + + + any parasitoid wasp in the family Braconidae + + + Habrophallos collaris + + + to be extraordinarily proud + + + to be extraordinarily pleased + + + a sauna or steam bath, or a session in one + + + type of information container consising of words + + + person responsible for something + + + hall (building owned by a college or university where students live) where all the food is cooked for you + + + event without spectators at which photographs are taken of people wearing fashionable clothes + + + pine oil-based disinfectant used in India + In aniline, one of the atoms of hydrogen is replaced by the radical phenyle. The converse is also possible, and, if phenyle is in its turn replaced by hydrogen, the ammonia should reappear. + + + installment, debt paid in sequential parts + + + without sweat + + + liberal or progressive + + + plant-based substitute for milk from animals + + + a small map, typically in a video game + + + a simple map of landmarks + + + sale of products and services in individual quantities to end consumers or customers + + + to tithe; give 10 percent (of earnings, produce, etc.) to charity + + + languid state + + + to show off + + + a garden, usually open to the public, where a wide range of plants are grown for scientific and educational purposes + + + a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + any algae of the genus Ecklonia + + + any river shrimp in the genus Macrobrachium + + + treating the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + Having a positive and uplifting effect. + + + chemical compound; 6'-Hydroxycinchonidine + + + (biochemistry) A bacterial form of erythrocuprein that contains two atoms of zinc + + + grammatical construction in which clauses are joined by a coordinating conjunction + Often, however, the significance of a succession of syndeta and asyndeta is perfectly clear from the character of the clauses or sentences connected. + + + a location where war is being waged + + + spontaneous motion of dispersed particles in a mixed solvent induced by a gradient of solvent concentration + + + an instrument for measuring the growth of trees + + + outfit used when exercising + + + the process of making a tunnel + + + having strabismus of the eyes + + + showing artistry + + + nerd-like + + + of interest to nerds + + + adopted logographic Chinese characters used in the modern Japanese writing system + + + coin made from silver-copper alloy used in Germany and the Low Countries during the 13th and 14th centuries + + + harassment that occurs in a public setting + + + female genitalia + + + intercourse; have sex + + + group that is dedicated to a well-known person, group, idea + + + afsygeliggøre + + + follower of conspiracy theories that assert that Barack Obama is not a natural-born citizen of the United States + + + natural disaster: dust storm + + + flashy, but impractical public transport technologies + + + a weed (Suaeda moquinii) of the family Chenopodiaceae growing on alkaline lands in the southwestern U.S. + + + a shrub (Allenrolfea occidentalis) of the family Chenopodiaceae that grows in the southwestern U.S. + + + a plant of the genus Franseria, especially Franseria dumosa of desert regions of the southwestern U.S. and adjacent Mexico + + + the plant Isocoma tenuisecta, native to Arizona, New Mexico, and Sonora + + + any of several rayless goldenrods + + + resembling a bun + + + a mammal of the family Ursidae + + + a mammal in the family Odobenidae + + + process by which a preexisting dark mineral is replaced by amphibole + + + having texture of felt or woolen cloth + + + any bird in the family Motacillidae + + + practical + + + neopronoun (ze/hir/hirs form) + + + sweet pastry with strawberries + + + Completely destroyed (of mass-scale objects such as villages or fields) + + + any bird in the family Ciconiidae + + + plants of the genus Morinda + + + dye obtained from plants of the genus Morinda + + + clothing worn by men during Mobutu Sese Seko's rule + + + pejorative term used for a person who fakes Native American ancestry + + + honour, personal dignity + + + power to command admiration; prestige + + + any member of the mammal family Chrysochloridae + + + to hang (someone) + + + a wrongful advantage + + + folded exterior seat of some early vehicles + + + any cetacean in the family Balaenopteridae + + + robe worn on beach + + + one fourth + + + device to turn a light on or off + + + a covered way or passage between a cathedral transept and the chapter house or deanery + + + to yearn, to desire something one does not have + + + to miss someone or something + + + impertinent; having chutzpah + + + irreplaceable, irreplicable (of a product which has been contracted for) + + + subject to much public attention + + + Derogatory slang for a large utility passenger vehicle. + + + scientific and musical study of bells and the art of bell ringing + + + the minute cytological characteristics of the cell nucleus especially with regard to the chromosomes + + + branch of cytology concerned with the karyology of cell nuclei + + + branch of entomology dealing with the Diptera + + + branch of zoology dealing with barnacles + + + branch of medicine concerned with the anatomy, functions, and disorders (such as infertility or impotence) of the male reproductive system + + + branch of zoology concerning the study of spiders and other arachnids + + + glaucophane-bearing schist variety + + + ecology dealing with individual organisms or individual species of organisms + + + the study of human growth + + + study of unknown, legendary, or extinct animals whose existence or survival to the present day is disputed or unsubstantiated + + + microstructure + + + the study of flags + + + academic and professional field combining gerontology and technology + + + branch of technology and engineering concerned with the installation, maintenance, and replacement of industrial plant and equipment and with related subjects and practices + + + branch of zoology dealing with mammals + + + the study of and hobby of collecting postcards + + + the study of human populations, activities, and behavior + + + branch of science which treats of the laws and phenomena of aqueous vapor + + + branch of science concerned with the effect of environmental and atmospheric conditions (both natural and artificial) on living organisms + + + branch of biology concerned with the study of natural communities and the interaction of the members of such a community + + + performer of or enthusiast for jungle music + + + the study of human cognition and behavior with respect to their evolutionary origins + + + a winter sporting event in which athletes ski over the countryside and stop to shoot rifles at targets + + + in imprecations, subject to damnation + + + from + + + a round, low neckline on a woman's shirt or dress + + + courtyard of a Māori meeting house + + + prison cell, especially one where its occupant entertains many friends + + + out + + + branch of psychology concerned with human maturation, school learning, teaching methods, guidance, and evaluation of aptitude and progress by standardized tests + + + the study of accentuation in language + + + the study of ligaments + + + geology of the ocean floor + + + a psychological approach or system affirming that human acts are understandable and predictable only through an analysis of the previous experiences and motivational states of the organism rather than through a simple description of the objective stimuli temporally preceding human acts + + + speculative psychology concerned with postulating the structure (such as the ego and id) and processes (such as cathexis) of the mind which usually cannot be demonstrated objectively + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + of or relating to the mammal family Erinaceidae (the gymnures and hedgehogs) + + + branch of biogeography concerned with the geographic distribution of animals + + + scientific study of human biological remains (such as bones) from archaeological sites + + + branch of pedology that is concerned with the soils of past geological ages + + + the study of spines (as of sea urchins) especially as an adjunct of taxonomy + + + the science of remedies or therapeutics + + + the study of deliberate, culturally induced ignorance or doubt, typically to sell a product, influence opinion, or win favour, particularly through the publication of inaccurate or misleading scientific data (disinformation) + + + the application of modern technology to agriculture + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + science of plant nutrition and growth in relation to soil conditions + + + the study of the effects of toxic chemicals on biological organisms, especially at the population, community, ecosystem level + + + ecology of deserts + + + in science fiction, the study of aliens + + + in genetics, homology from horizontal gene transfer + + + crystallography + + + branch of entomology that studies pests and beneficial insects of field crops, fruits, and vegetables + + + the physiology of sensation and sense organs + + + the study of the comparative anatomy and physiology of humans; physical anthropology + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + a physical examination + + + the art or "science" of dining + + + branch of anatomy dealing with the arteries + + + a description or illustration of arteries + + + a system of arteries + + + the branch of zoology that deals with crustaceans + + + Atlantic cod + + + fried fishcake of cod, onions and mashed potato + + + tedium, irksomeness, annoyance + + + rival gang member; the opposition + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + the science of climate with respect to its relevance to habitats and ecoregions + + + technology designed to deal with environmental concerns; an instance of this + + + the scientific discipline concerned with the application of geological knowledge to engineering problems + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + of a mix of warmed or chilled alcohol, optionally including ingredient + + + a treatise on mushrooms and other fungi + + + branch of meteorology that deals with precipitation (as of rain and snow) + + + the branch of meteorology that deals with atmospheric conditions and weather in the past + + + to speak ill of, abuse, malign, disparage + + + to act crazily, aggressively, wildly + + + to do something very well + + + the study of the ways in which people negotiate, contest, and reproduce cultural forms and social relations through language + + + in Kantianism, practical ethics + + + a field of creating architectural design principles for very densely populated and ecologically low-impact human habitats; a portmanteau of "architecture" and "ecology" + + + a city intended to be contained in a single structure + + + a treatise on numbers, or statement bearing upon them + + + branch of medicine that specializes in the diagnosis and treatment of cancer + + + branch of zoology that deals with the crustaceans + + + annual total value of only the goods produced and the services provided within a particular country + + + mineralogy + + + (in alternative medicine) diagnosis by examination of the iris of the eye + + + the branch of history or literature that deals with the lives of martyrs + + + histories of martyrs collectively + + + a catalog of Roman Catholic martyrs and saints arranged by the dates of their feasts + + + a list of martyrs + + + the branch of anthropology that deals with the belief in manitous + + + the study of gestures as a means of communication + + + the scientific study of thermal springs + + + addicted to drugs, especially heroin + + + brightening or iridescence appearing on silver or gold at the end of the cupelling or refining process + + + branch of dentistry that consists not only of treating tooth decay, but also of interrupting and preventing this type of damage to the tissues of the teeth + + + the part of medical science dealing with hernias + + + the science of the brain + + + the study of dogs + + + the study of dosages of drugs + + + the study of or knowledge concerning the exanthemata (widespread rashes that are usually accompanied by systemic symptoms such as fever, malaise and headache) + + + writing about fairies; the study of fairies or fairy lore + + + a form of martyrology that lists the feast days + + + neoorthodoxy especially as holding against rationalism that one's attempts to know God by one's own reasoning reach contradictory conclusions and must give way to a faith that awaits God's word + + + the art or science of caring for the stomach either medically or gastronomically + + + the science dealing with the life of past geologic periods as known from fossil remains + + + the mental and emotional states and processes characteristic of individuals when aggregated in such groups as audiences, crowds, mobs, and social movements + + + the scientific study of these phenomena + + + a reference to the provisions in many state constitutions which prevented state governors from running for a second consecutive term in office + + + refers to a controversial incident that emerged during the aftermath of the 2020 presidential election, a hotly contested election in which allies of President Donald Trump attempted an elaborate scheme to illegally overturn his election loss to Joe Biden + + + the study or investigation of miasmas + + + the study of the nature and methodology of sociology + + + a sociological model, framework, or study which is universal in scope + + + the philosophical study of the nature and methods of theology, especially the analysis of religious language + + + branch of zoology dealing with mammals + + + representation by curiologic symbols + + + the field of study that deals with the geological interpretation of aerial or satellite photographs + + + a branch of geology that deals with the causes and processes of geological change + + + study of the ecology of plants + + + the branch of biology, especially of zoology, concerned with extant or recently living organisms, as opposed to fossil or extinct ones + + + nervous system physiology + + + a conceptual framework for the science of psychology + + + the study of the human nose, especially as a means of judging character, intellectual capacity, etc. + + + a treatise on the human nose, especially as a means of judging character, intellectual capacity, etc. + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + technology relating to manufacturing + + + the study of the methods, purpose, etc., of religious missions + + + the study of the interactions between members of a social group, or of interactions between social groups + + + the study of proverbs + + + proverbs collectively + + + the branch of theology that deals with ethics, the resolution of cases of conscience, etc. + + + theology or theological doctrines developed as inferences from moral grounds or reasons + + + a treatise on disorders of the sense of smell + + + the science of nothing, or of things having no real existence + + + the study and use of psychology as it applies to the legal system and people who come into contact with the legal system + + + the study of specters (ghosts, phantoms, or apparitions) + + + the study of the pulse + + + the dating of volcanic eruptions and other events by studying layers of tephra + + + the branch of entomology concerned with insects and other arthropods that are parasites or disease vectors affecting animals + + + trilogy + + + the doctrine, discussion, or study of the performing of miracles + + + the scientific study of smells or of the sense of smell + + + the study of fish diseases + + + a branch of plant pathology dealing with tree diseases + + + excision of the liver or of part of the liver + + + in the theology of John Hick: the theory or study of the status of human life between physical death and the final state + + + the application of the data and techniques of climatology to aviation meteorological problems + + + the branch of science that deals with the hypothetical force called Od + + + dentistry + + + (obsolete) a treatise on the sense of smell and odors + + + the study of odors and the sense of smell + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + of intermediate size + + + in Jeremy Bentham's terminology: the branch of philosophy which deals with matter in respect of quality rather than quantity + + + the study of war, especially as an academic discipline + + + a treatise on sperm + + + the scientific study of sperm + + + the science of thermochrosy + + + the study and applications of weather and climate data to the reproduction, growth, and harvesting of forests + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + the study of the atmosphere and weather using radar as the means of observation and measurement + + + psychology based on the study of individuals, as opposed to that of groups or societies + + + a modification of psychoanalysis developed by the Austrian psychologist Alfred Adler emphasizing feelings of inferiority and a desire for power as the primary motivating forces in human behavior + + + rubbishy, second-rate, inferior + + + pertaining to heroin or the hard drug culture + + + the branch of medical science concerned with the lungs and respiratory system and their diseases + + + the art or practice of calculation by means of the method of rods invented by John Napier + + + hagiology + + + the study of pterylosis, the arrangement of feathers in definite areas of growth + + + to give a name to something or someone + + + theology dealing with salvation especially as effected by Jesus Christ + + + a pair of related novels, plays, or movies + + + employees' initiative related to doing minimum amount of work on Mondays + + + matumannga + + + a style of clothing worn as athletic apparel but also suitable for casual, everyday wear + + + the branch of medical science concerned with diet and nutrition; dietetics + + + a treatise on diet and nutrition + + + a person who gives speeches or presentations intended to motivate or inspire an audience; a practitioner of or expert in motivational speaking + + + a person engaged in motivation research + + + date on which someone or something was born + + + worship of heavenly bodies + + + the branch of medicine and science concerned with aging and its phenomena + + + the study of the diminution or decline of life, as in an individual animal or a species approaching extinction + + + (in a graphical user interface) an on-screen button or icon for navigating to a previous view + + + person who creates manga + + + children's dentistry + + + to participate in, include oneself + + + speckled, spotty; full of particles of dust or extraneous matter + + + the integrated study of cells and tissues + + + a science or doctrine of the cross + + + equipment and programs that are used to process and communicate information + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + being afraid + + + a treatise concerning seven languages + + + ריהוט רחוב + + + to eat breakfast + + + the scientific study of thermal waters + + + the science of trickery + + + that which is characterised by growth on waste ground + + + the technology of surfaces interacting in a relative motion, including friction, wear, lubrication and interfacial interactions between solids as well as between solids and liquids/gases + + + a type of network communication method where the communication is initiated by a server rather than a client + + + the study of the way speech can be analyzed into discrete units, or segments, that constitute the basis of the sound system + + + to liquate; smelt + + + to part by liquation + + + be verifiable, actual, real; not false + + + back side, reverse side + + + be correct, assess accurately + + + to flatter, cajole + + + of or relating to the present time + + + to increase mass by addition of fat and/or muscle + + + individual responsible for the supervision of the execution of plans and functional operation + + + tool consisting of a blade having a handle at each end; drawing knife + + + to be provided or filled with towns + + + to move or incline at an angle to that indicated by "zig" + + + to assign a postcode to + + + to mark with a postcode + + + to perform adrenalectomy on + + + of a woman, to continually criticize or nag one’s male partner + + + to perform hysterectomy on + + + to subject to nephrectomy + + + to be troubled by desire to gain or keep something + + + to travel by jeep + + + to capacitate, make capable, endow with sufficient strength + + + to analyze a protein sample by subjecting it to particular reactions + + + the study of post-embryonic developmental changes + + + to deliver manually, by hand + + + to mark with a barcode + + + to tend to a bar, act as bartender + + + acyl radical or group derived from biotin + + + to boil an egg for a short amount of time so that the yolk is cooked but still soft + + + a plant (Brassica rapa subsp. pekinensis) of the mustard family, having an elongated head of overlapping, crinkled, broad-stalked leaves and eaten as a vegetable in eastern Asian cuisine + + + that has received a particular upbringing + + + to travel or convey by trolley + + + to ride on a wakeboard + + + stereoisomer of amphetamine used to stimulate the central nervous system + + + to become exhausted; to tire + + + to put out of breath + + + defecate + + + collective of diverse businesses that supplies much of the world's food + + + the state or condition of being ominous + + + the state or condition of being egregious + + + a person who is mentally or morally sick + + + coming into sight, coming forth + + + pulverized with a grater + + + deprived of air, prevented from breathing + + + something remembered, reminded of + + + kept in reserve + + + act of rendering void, invalid, or ineffective + + + act of assurance + + + performance of work in exchange for wages + + + to transport or travel by helicopter + + + the quality of being dorky + + + that gargles + + + characterized by a lisp + + + to put a diaper on or change a diaper + + + to ornament with diaper designs + + + the branch of stratigraphy concerned with the age of strata on an absolute scale (i.e. in terms of years) + + + cinematographer + + + the study of the physical structure and components of metals, typically using microscopy + + + a list or bibliography (either printed or online) of electronic works or documents relating to a particular topic + + + radiological examination of the pharynx + + + the art or process of carving or engraving especially on gems + + + on the day after tomorrow + + + sub-discipline of human geography and economic geography that deals with the spatial relationships and geographic trends within labor and political systems + + + the art of decorating wood or leather by burning a design with a heated metal point; pyrography + + + artefacts decorated using pokerwork + + + the description of the diseases of the ligaments + + + player occupying a central position in the middle of the half-back line + + + supernatural + + + extinct elephant variety with ridged teeth + + + act to skip + + + determination of the direction from which radio waves are coming + + + instrument for measuring the plasticity of a substance + + + penpal; person with whom a long-distance friendship is maintained with letter-writing + + + applicable to all of language’s varieties + + + agribusiness + + + apparatus for measuring the density of gases + + + bullock-carriage; buggy, cart + + + of the nature of a dilemma + + + producing or tending to distortion + + + condition in which there are only two suppliers of a commodity + + + cytokine that stimulates proliferation and differentiation of monocytes and macrophages + + + in cricket, player stationed behind the wicket + + + mean-spirited + + + the preposterous, absurd, risible + + + excessively hot, too hot + + + containing a single cavity + + + to deceive or outmaneuver (a defending opponent) by a feint; fake + + + to deceive or outmaneuver a defender by a feint + + + designating bottom part, section + + + a New Zealand evergreen tree, Metrosideros excelsa (family Myrtaceae) that produces a brilliant display of red (or occasionally orange, yellow or white) flowers + + + a New Zealand variety of the sweet potato + + + to declare or pronounce illegitimate + + + low-grade silver Turkish coins + + + (in Albania) king, monarch + + + to assign or give a code name to + + + riotous event, boisterous party + + + to move or travel at speed + + + church + + + relating to the medical specialty of proctology + + + inner, inside + + + karpdiagramm + + + to dance the cancan + + + diamond of inferior water, yellowish in colour + + + to miscalculate a sum + + + to act the benefactor to + + + to refresh with food or drink + + + designating a reliable or accurate firearm + + + bound to be successful or perform as expected + + + a brackish-water coastal swamp of tropical and subtropical areas that is usually dominated by shrubby halophytes and is partly inundated by tidal flow + + + to entertain a suspicion + + + to express disapproval by uttering the exclamation “tsk” + + + to infect (cell) with free viral nucleic acid + + + to introduce foreign nucleic acids into a recipient eukaryotic cell, especially physically or chemically + + + to lack certainty; to be unsure, dubious + + + to inflate insufficiently + + + to represent insufficiently + + + to free from binding or adhesive effect of glue + + + in arid environments, bands of angular gravel, grain-sorted and of a specific wavelength, running parallel to the contours + + + a pattern of alternate black and white stripes + + + to come forth + + + designating examination of fundus of eye with optical instrument + + + to write graffiti on + + + to look after a house while the usual occupants are away + + + to reduce clotting power of blood by treating with heparin + + + to check for or remove lice + + + to cover again + + + to address in a stage-whisper + + + an approach developed by Clifford Geertz in the 1970s and 1980s that views anthropology as a hermeneutic practice whose method involves writing detailed (‘thick’) descriptions of how people interpret their experience of the world + + + to betray; to disparage behind someone’s back + + + stab literally in the back, or betray + + + to confirm a boy in the Jewish faith at a bar mitzvah + + + to practice diplomacy + + + the study of cultural symbols and how those symbols can be used to gain a better understanding of a particular society + + + a national policy of treating the whole world as a proper sphere for political influence + + + to visualize again + + + to polarize again + + + to restore national status to; to refill with national identity or character + + + to transfer (a privatized industry or property) back into state ownership or control + + + a specialized focus in anthropology that studies the creation, use, and meaning of material culture for curation in a museum; studies of existing museum collections; and the study of museums as social institutions + + + an enclosure or building in which platypuses are kept, especially under conditions simulating those in which they live in the wild + + + to use or practise ventriloquism + + + to utter in the manner of a ventriloquist + + + partially refined cane sugar that has been washed and dried, is off-white, yellowish, or grayish in color, and is used in industry and food processing + + + a representation of the bark of a dog + + + synthetic chemical element with symbol Mc and atomic number 115 + + + composed of flocculi + + + a circle of people, as in a communal gathering or dance + + + of, relating to, or affecting the sacrum and ilium and their articulation or associated ligaments + + + of, relating to, or resembling the mollusk family Solenidae + + + the action or process of diminishing (transitive and intransitive); diminution, lessening, decrease, abatement + + + doctor + + + representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + + a bump; a blow. Also: a brief resonant sound, such as might accompany this + + + an act of sexual intercourse + + + artificial embankment; dam, dyke, causeway + + + embanked quay along the shore of British concession settlements in China + + + initiation of employment + + + initiate employment + + + one who plays the kazoo + + + a Levantine spice mixture made from oregano, basil, thyme, and savory, sesame seeds, and dried sumac + + + permanent or absolute location or position + + + of or relating to the moth family Pyralidae + + + a member of the phylum Mollusca; a mollusk + + + some indeterminate amount + + + connected, affiliated + + + opening allowing the passage of air out of or into a confined space + + + to improvise with a kludge or kludges + + + a snake of the family Pythonidae; a python + + + (expression of disapproval, dismay) + + + second-rate, inferior + + + a person who makes a nuisance call + + + tolerate, put up with, the act of tolerating + + + make organized, orderly arrangment, having a systematic, efficient (maybe unified) structure + + + process or act of attaching, joining, linking, including (in a group) + + + act of looking for something + + + creation + + + comprise + + + a window-frame or lattice, often fitted with cloth or paper as a substitute for crystal or glass; a window + + + a part of a naval task force + + + task force: a temporary grouping for the purpose of accomplishing a definite objective + + + sad, mournful, or wistful + + + a space within a winery, brewery, or distillery where visitors can sample the establishment's products + + + that keeps time + + + a strategy practised most commonly in primary education, but used also in secondary schools, in which learning takes place through dialogue between teacher and pupils and between pupils themselves + + + of, relating to, or characterized by dialogue + + + a miniature nocturne + + + bring with, have + + + of or characteristic of a professional author + + + consciously literary + + + correspondence between form and meaning + + + varna prožnost + + + telecommunication modality + + + to assign or attribute gender to + + + to deadlock, to form an impasse + + + to ride a mountain bike + + + act or process of obtaining, drawing (out) + + + act of killing + + + act or process of unfairly directing a negative emotion towards someone/something + + + edible leaves of dasheen or an amaranth variety + + + shared power and authority vested among colleagues + + + colleagueship; the relation between colleagues + + + the participation of bishops in the government of the Roman Catholic Church in collaboration with the pope + + + outside toilet; privy, outhouse + + + act or process of acquiring, hiring, undertaking + + + act or process of battling + + + thin, lean, skinny + + + weak, feeble, sickly + + + the other + + + the fear of snakes + + + foolish, simple person + + + young woman or girl + + + the processes and methods used to put together different components or parts to create a finished product or system + + + a topology on a set that is derived from a bornology + + + milk-drinking + + + drinking milk of another species + + + sweet potato + + + climbing a route for the first time with no prior information + + + sustain + + + keep up: maintain one's position, maintaining one's position (relatively) + + + the branch of dentistry focusing on gums and supporting structures + + + branch of geology that deals with the succession and significance of past life + + + the use of biological systems, like microorganisms or enzymes, to convert organic materials into different products or energy sources + + + biochemistry + + + biochemical + + + branch of ecology concerned especially with the structure, composition, and interrelationships of plant communities + + + vacation, taking a vacation, break (from something) + + + without excusing oneself or saying one is sorry + + + an electrophoretic strip (as of starch gel) or a representation of it exhibiting the pattern of separated enzymes and especially isoenzymes after electrophoresis + + + an instrument for measuring the degree of fermentation of a fermenting liquor + + + branch of astrology formerly concerned with the prediction of events in inanimate nature and being in part legitimate astronomical science + + + to come down, lower oneself, or arrive, lowering + + + to have (unpleasant) sex with, maybe metaphorically + + + quit + + + sign up: enroll, enter + + + connect into a network, metaphorical or otherwise + + + select a portion of a larger whole + + + a branch of bioclimatology that deals with effects of climate upon man + + + a cone whose section by a plane through the axis has an obtuse angle at the vertex + + + come even with, to catch up + + + cause something to become entangled + + + begin, start, initiate + + + the resemblance between different members of a single series of structures (such as vertebrae) in an organism + + + field of clinical and basic medical sciences that involves the study of the effects of radiation on living tissue (including ionizing and non-ionizing radiation), in particular health effects of radiation + + + an approach to the study and explanation of psychological phenomena that emphasizes philosophy, logic, and deductive reason as sources of insight into the principles that underlie the mind and that make experience possible + + + plant pathology + + + the transmission of data between two or more points without the use of physical wires or cables + + + cause to lose prestige + + + act/process of causing to go down the throat + + + act/process of arriving on the scene in a particular state, entering ranking, functioning in a certain manner + + + being overly concerned or excited by + + + the process of plying with wine + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + that learns or has the ability to learn + + + that is engaged in a course of study + + + having to do with learning + + + unintentional discovery + + + lend aid, credence to + + + carry on flirtations, affairs insincerely, esp with male subject + + + cause to be in motion, summon to arms, be in motion + + + cause to be humble + + + act of extending across space or time + + + to extend across in space or time + + + reorganize + + + expect + + + technology (now especially computer technology) used to determine or verify the identity of a person or thing + + + a relationship where one geometric entity is embedded within another, meaning the point set of one entity is a subset of the point set of the other + + + the study and application of how to handle, process, and utilize materials in powder or particulate form + + + a person who studies or practices ethnomethodology + + + enter, contribute to discussion + + + having or related to a yolk + + + the study of geological features at a microscopic scale + + + an apparatus in which fluidization is carried out + + + a combustion technology used to burn solid fuels + + + systems involving two sets of drilling equipment working in tandem to create a borehole + + + systems that inspect boreholes using two cameras + + + introduce a phosphate group into an organic compound + + + technology that utilizes sensors to detect infrared radiation + + + a catalogue of saints, or a collection of saints' lives + + + removing of data + + + medical trial, consumer trial, or similar + + + visit briefly + + + act or process of producing a new master recording to improve quality + + + Being soaked for a long time + + + an organism dwelling in sandy environments + + + The act of shortened or condensed especially by the omission of words or passages or reduction in scope. + + + The act of linking together. + + + act or process of taking back + + + move towards + + + somewhat or approximately oblong + + + the tools and systems designed to manage knowledge-intensive activities and the knowledge generated by them, focusing on the process of transforming data and information into actionable knowledge + + + the science, study, or theory of the sphere + + + the study of mycorrhizal fungi + + + the study of Basidiomycota (club fungi, mushrooms, rusts, smuts) + + + the study of airborne fungal spores + + + the study of plants that live in or near water, encompassing their ecology, physiology, and interactions with their aquatic environment + + + ship out commodities, again + + + the act of running very fast + + + similar to a chin-up + + + to talk repeatedly or continuously about something —usually used with about + + + make someone or something more attractive + + + any of a class of synthetic antibacterial drugs that are derivatives of hydroxylated quinolines and inhibit the replication of bacterial DNA + + + The act of renting or leasing + + + The act of reaching the bottom + + + of or relating to zoogeography + + + the branch of virology that deals with the arboviruses + + + obstruct, hinder with painful constriction, painfully constricting + + + inflate, swelling + + + inflate, swelling + + + a sugar alcohol (polyol) derived from xylose by reduction of the carbonyl group + + + remembered, kept in memory + + + a rock that is formed by the accumulation of fragments of volcanic rock scattered by a volcanic explosion + + + being covered with water, overwhelmed, inundated + + + avoid + + + The act of obstructing a passage + + + do perfectly + + + become immobile + + + pour + + + have no symptoms + + + not showing signs of trauma + + + cross-correlation of something (a signal?) with itself + + + The act of stabbing literally in the back, or betraying + + + bring in runs by hitting a baseball + + + the starting-point or control state of an entity, which is used for comparison + + + obligation + + + natural disaster: severe blowing snow storm + + + marsh fern: a shield fern (Dryopteris thelypteris) of the north temperate zone that has pinnatifid fronds with pinnae of uniform size + + + dance a breakdance + + + The act of dancing a breakdance + + + broken, with 'ass' intensifier + + + not having any money, with 'ass' intensifier + + + placed back to back + + + term designating a suburb or a small residential area on the outskirts of a city + + + act of providing help, adapting, or making adjustments to meet someone’s needs + + + act of enforcing more strictly + + + develop in conjuction with another developer or project + + + to grow more than one distinct cell type in a combined culture + + + co-host (as a tv show) + + + shape by forcing through a die, press or thrust out with another + + + sudden change of government, takeover + + + develop into a new species + + + internal: function as the corner part of a larger whole + + + eliminate + + + like a flat layer of bone + + + process of modification of the molecular structure (of a protein or other biological macromolecule) + + + remove gut or substance + + + the ability to deny something especially on the basis of being officially uninformed + + + remove paraffin from + + + to measure up; achieve the standard of performance necessary for success + + + to drain; to allow water to exit + + + calculate percentages of blood cells + + + constituting or contributing to making a distinction between entities + + + framecel + + + decry, express low opinion of + + + contaminate the source and the destination simultaneously + + + scale down + + + transfer radio from the source to an alternate sight + + + dig up + + + remove + + + to become pale, weaken, especially with lack of light + + + cause to fall down + + + fine needle aspiration - suck out fluid with a fine needle + + + the process of stationing troops + + + to cover with or as if with a glove + + + become/cover with glacier + + + to enact revenge + + + act of tagging along for a ride with a stranger, or metaphorical extension + + + breed together with genetic kin + + + generate within, instill + + + Being placed at intervals + + + a flavonoid, the disaccharide derivative of quercitin, containing glucose and rhamnose + + + rise + + + act of installation or establishment + + + more explicit horizontal position + + + (try to) make learn + + + Fight primarily with one's feet, often as a form of exercise. + + + lose social status, be humiliated + + + sport in which one jumps as far as possible across a sand pit + + + reflect, mimic, cast an image back + + + existing along the (vertical) center line of the body + + + post to an online journal + + + addition of a methyl group to an atom or group + + + The act of causing dissolution or destruction of cells by lysins + + + begin, start + + + crowd together too much + + + fly beyond or faster than another + + + inhibited or decreased bone marrow activity, resulting in fewer red blood cells + + + depict as being more than is actual + + + (cause to) consume too much narcotic, consuming too much drugs + + + coat to protect from corrosion + + + The act of engaging in or spreading gossip + + + dream + + + not giving a response + + + not inclined toward feeling pain easily + + + of an ethnicity not featuring 'white' skin + + + stop bothering + + + that envies + + + to go on a pilgrimage + + + reach a state of little or no change + + + surgical removal of one or more parathyroid glands + + + absorb or draw off liquid + + + remove + + + to lead with the help of a pony or another vehicle + + + orientation: the intrinsic top of the object points downward in some framework + + + Use uppercase lettering + + + not obscured, allowing a clear view + + + remove electrical ground connection (or metaphorical extension) + + + unsecure/release a boat from the dock + + + provide money + + + fail to provide enough staff support + + + to cause to become quiet + + + of the nature of or resembling slag + + + register officially in advance + + + act of declaration or prediction under or as under divine or paranormal guidance + + + surgical removal of the rectum and part or all of the colon + + + act or process of sequencing DNA using chemiluminescent enzymatic reactions + + + constituted again or anew + + + the act or process of reassigning a role or classification + + + the act or result of restoring a connection + + + implant again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + use of data from motion sensors, especially wheel rotations, to estimate a vehicle’s change in position over time + + + able to be released + + + to take place or occur again + + + supported above and not below; suspended + + + occur, take place again, occur again + + + unfading (exempt from fading/decay) + + + stalinize again + + + move backwards, rollingly + + + evasive or avoiding behavior + + + generally garbage (bad) + + + unskilled at + + + very unbeneficial, unhealthy + + + schmooze, + + + act of cutting with scissors + + + act of moving back and forth, like scissors + + + render into pieces + + + search for, to completion + + + act of defeating soundly + + + sleep away: consume a time period while asleep + + + act or process of inserting without interruption + + + describe roughly + + + act of spreading out or apart + + + The act of scattering seed for growing + + + to reclone part of a previously-cloned DNA segment into a new vector + + + act or process of fully defrosting + + + to strike or slap against (something) with a loud, heavy impact + + + act or process of using the toilet + + + to lie or turn across, contradict, or run counter to + + + act or process of rising above or going beyond the limits of + + + having no page numbers + + + number between 41 and 43 + + + wonderful + + + something to say when you have nothing to say + + + song + + + longest word + + + the number 9 + + + to evaluate again + + + person spoken to or written to + You, in the red shirt: what's your name? + + + people spoken or written to + All 20 of you forgot to do your homework. + + + anyone, one; unspecified individual or group of individuals + + + female person or animal previously mentioned or implied + + + person whose gender is unknown or irrelevant + + + indicates the composition of a given collective or quantitative noun + a group of students + + + indicates an ancestral source or origin of descent + + + links entities which are related by a form of belonging or pertinence from one to the other + + + denotes quantity + + + located within + + + moving into + + + expressed using a particular language (natural or artificial), or some other formal representation + + + enabling + + + in a relative position on the other side of a boundary + + + Any person; anybody. + Almost anyone can change a light bulb. + + + during the same time as + + + Each of the two; one and the other; referring to two individuals or items. + Both (the/my) children are such dolls. + Which one do you need? ―I need both of them. + + + Not one of two; not either; not one or the other. + Neither definition seems correct. + + + sufficient + + + an uncertain or unspecified thing; one thing + + + moving to the top of + + + in a contrary direction to + + + in physical contact with + + + in physical opposition to, or in collision with + + + in opposition to + + + unknown or unspecified person + + + denoting approval + + + meal consumed at start of day + + + add force to the ends of a long structure in a way that would stretch it + + + On board of; onto or into a ship, boat, train, plane. + We all went aboard the ship. + + + In addition, in addition to + + + with a feeling of adventure + + + get rid of, eliminate, eliminating/eliminated + + + look at, investigate + + + to examine using some kind of scoping tool + + + expression of surprise + + + expressing unbelief + + + express mild disapproval + + + No. + + + in a darkly consequential manner + + + deep purple color + + + desirable or preferred + + + face, pave with brick + + + to take on the role of a guest + + + to host someone + + + trousers often made from denim or dungaree cloth + + + prepare, fix again + + + study of ecological processes in agriculture + + + viral disease + + + branch of medicine that deals with the causes, prevention, and treatment of obesity + + + gas produced in landfills or by anaerobic digestion + + + study of biological data and sequences + + + establishment serving coffee + + + to treat as property which can be traded + + + medical device + + + vehicle subsystem + + + other item of a pair + + + relating to electrodynamics + + + related to the epicardium + + + planet not in the solar system + + + currency area within the European Union + + + currency area within the European Union + + + someone who works with fish + + + type of circuit board + + + fundamental + + + living in lakes or rivers + + + determine genotype + + + person working in geoscience + + + described using Earth coordinates + + + branch of civil engineering + + + previously agricultural region under development + + + arm-powered land vehicle + + + deeply emotional song + + + pertaining to liver or related organs + + + chemical compound active in immune response + + + inflexible + + + collection of biological life stages + + + academic degree + + + relating to a magnetosphere + + + study of malaria + + + person who does mariculture + + + electronic-mechanical + + + person who works in metrology + + + relating to microbiology + + + chemistry with tiny samples + + + pertaining to mitochondria + + + a panel discussion with only men on stage + I have a question for the manel. + + + speak at length + + + vertical hole in a glacier + + + multi-chained (for proteins) + + + person who studies museums + + + caused by or related to mycobacteria + + + type of blood disease + + + optical device for nano-scale imaging + + + fictional device + + + relating to neurosurgery + + + apply nuance to + + + type of mineral + + + pertaining to an oilfield + + + part of a vehicle + + + on a vessel/vehicle + + + in support of, going along with + + + application of orthopedic appliances + + + pertaining to otology + + + pertaining to care for outpatients + + + serve the underserved + + + lightweight nonrigid aircraft + + + one who rides a paraglider + + + scientist practicing parasitology + + + scientist who studies parasites and their biology and pathology + + + pertaining to parasitology + + + participates or willing to do so + + + relating to the oil industry + + + scientific description of rocks + + + vibrational quasiparticle + + + involving photons + + + state of being printable + + + in base 5 + + + connect again + + + one who studies sediments + + + pertaining to social and economic issues + + + process of spatializing + + + branch of medical science dealing with the mouth and its disorders + + + process of presenting a story + + + social and cultural activity of sharing stories, often with improvisation, theatrics, or embellishment + + + building and using supercomputers + + + televised fund-raising event + + + software package which automatically renders advertisements in order to generate revenue for its author + + + twenty-four hours a day and seven days a week; continuously + + + three-hundredth anniversary; tercentenary + + + study of ultrasound + + + in genetics and biochemistry, determining the structure of an unbranched biopolymer + + + cause to be in a specific order + + + discover the order of constituents + + + the whole quantity or amount + + + everything + + + everyone + + + the only thing (used for emphasis) + + + mark with a barcode + + + study of oscillations in stars + + + of noble lineage + + + device used to widen something + + + snapshot of the screen of a computer or other electronic device + + + grill + + + craft of making corsets + + + type of wooden boat + + + type of aphasia + + + application for mobile devices + + + study of chemical elements and molecules in outer space + + + person who studies books or writings + + + the history and science of books as physical objects : bibliography + + + study of the Bible and related literature + + + canopy over a church altar + + + liturgical container + + + grilled sandwich + + + action to deny access to an outlet for opinions + + + organism that consumes detritus + + + ecological approach to feminism + + + region near a rotating black hole + + + influential person who uses their strong presence and activity in social media and networks to influence particular audiences in their buying decisions (influencer marketing) + + + profession + + + reddish-brown color + + + science of interactions between geography and plant life + + + type of enzyme + + + type of house + + + former term for ecology + + + French pastry + + + early + + + way to cook pasta + + + competition type in artistic and rhythmic gymnastics + + + in a way that provides no answer + + + amazingly (in an astounding manner) + + + in a blushless manner + + + aggressively/painfully (so as to cause bruising) + + + in a changeless manner + + + without color (in a colorless manner) + + + in a consuming manner + + + Indicates enthusiastic agreement + + + clamantly/markedly (in the manner of a crying evil) + + + hurtfully + + + with argumentation + + + sex position + + + in a dreamless manner + + + without conveying any feelings/thoughts (in an unemotional manner) + + + in a fadeless manner + + + in a gormless manner + + + In a Gothic way. + + + artfully/deceitfully/treacherously (in a guileful manner) + + + in a way that makes a thing able to catch on fire + + + so as to inspire/animate + + + without causing breakage + + + In a irreprovable manner; irreproachably. + + + relative direction + + + in a luckless manner + + + anonymously, without a name + + + every so often + + + In an oracular manner. + + + this way + + + in an excessively loud manner + + + done in a fragmented fashion + + + professional work undertaken voluntarily and without payment + + + legal term + + + In a pronominal manner; as a pronoun. + nouns used pronominally + + + In a proportionable manner; proportionately. + + + arrangement of items front to back; order that allows only one entity to pass through a point at a time + + + in a sinless manner + + + through slats + + + with slowness and low energy + + + a version of "so fucking" that is used to avoid cursing + + + in a spiffy manner + + + in a stainless manner + + + in a way that causes extreme fear + + + at the present time + + + in an unconstrained manner; without constraint + + + a fire in a garbage dumpster + + + a generally messed up situation + + + slang referring to something so bad it resembles burning garbage + + + counterclockwise + + + without using wires, such as by means of radio waves + + + type of inexpensive laptop computer + + + organism capable of growing and reproducing in the cold + + + collection of galaxy groups and clusters + + + to provide a pattern for + + + times a web page is accessed + + + chemical compound + + + protein + + + RNA molecule that is capable of performing specific biochemical reactions + + + modified and decorated jacket worn in biker, metal and punk subcultures + + + activity that arranges items or activities in order of importance or time-sensitivity relative to each other + + + set of arrengements around academic tenure + + + firecracker and similar itself + + + quaternary ammonium cation + + + weaken, not quantifiable, weaken from below + + + surgically seperate from underlying structure + + + study of seasonal change + + + transition from full glacial conditions during ice ages, to warm interglacials + + + stream that runs dry in summer + + + to devest of deific condition; to ungod + + + to make lady-like + + + to render impure + + + (of toxic chemical) to become more concentrate in organisms higher up in food chain + + + to accept again + + + to turn into trash, render trashy + + + to make compact + + + to clothe + + + The act of bringing back into existence or use + + + horse breed + + + any parasitic worm which lives in lungs + + + Research strategy that crosses many disciplinary boundaries + + + type of absorption + + + quality of preferring concepts or facts one wishes to be true, rather than concepts or facts known to be true + + + Any process that results in a change in state or activity of an organism (in terms of movement, secretion, enzyme production, gene expression, etc.) as a result of detection of, or exposure to, a period of light or dark of a given length, measured re + + + chemical reaction + + + incorrect attribution; when a quotation or work is accidentally, traditionally, or based on bad information attributed to the wrong person or group + + + tumor that produces too much insulin + + + study of the biochemical and physiologic effects of drugs + + + class of enzymes + + + biophysicogeochemical process + + + area controlled by a single winery + + + salt or ester of methacrylic acid + + + particle between 0.1 and 100 µm in size + + + branch of chemistry + + + type of kidney cell + + + chemical compound belonging to a series of compounds differing from each other by a repeating unit + + + study of cells and tissues using chemical staining techniques + + + dimer with two different components + + + any loss of nerve supply regardless of the cause + + + to deprive an organ of attached nerves + + + A double-membrane-bounded compartment that engulfs endogenous cellular material as well as invading microorganisms to target them to the lytic vacuole/lysosome for degradation as part of macroautophagy. + + + program that simulates conversation + + + person elected president who has yet to take office + + + coastal wetlands + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + marked by expansion or widening + + + reduction of human social interaction in an effort to prevent the spread of infectious disease + + + name for a person from or resident in a place + + + neopronoun + + + neopronoun + + + colloquial term for giving financial support to a company or country which faces serious financial difficulty + + + mislead someone into doubting reality + + + residual water from cooking legumes, used in recipes to substitute egg whites + + + traditional outdoor game + + + vehicle typically styled after pickup truck bodies, modified or purposely built with extremely large wheels and suspension + + + to commit oneself; to have recourse to any sort of action + + + transgender + + + transsexual + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + an ancient Spanish coint + + + theory of multidimensional oppression + + + to compress in a zigzagged series of folds, like an accordion + + + a state of not engaging in relationships or marriages + + + involving or relating to a connection between a person and someone they do not know personally, for example a famous person or a character in a book + + + gender identity where a person identifies as only partly female + + + golf + + + act of removal, an end + + + act of mentioning, often in an offhand manner + + + spend money + + + new election, when regular election failed + + + process where an incumbent wins election again + + + Across or over in a slanting or diagonal direction. + + + On the side of; nearest or adjacent to; next to. + + + Regarding; concerning. + + + out of, from + + + until + + + Although; despite the fact that; even though. + Notwithstanding I was provoked, I ought not to have reacted so violently. + + + Only if (the stipulation that follows is true). + You can go to the party provided you finish all your homework first. + + + Whatever person or persons: emphasised or elaborated form of whoever. + Whosoever partakes of this elixir shall have eternal life. + + + Used for introducing the result of a fact that has just been stated; thence + The work is slow and dangerous, whence the high costs. + I scored more than you in the exam, whence we can conclude that I am better at the subject than you are. + + + Various people or things; several. + + + Used to indicate that a magic trick or other illusion has been performed. + + + Used as a command to bring soldiers to the attention position. + + + interjection used to express contempt or disapproval + + + expression of regret/sorrow + + + Goodbye, an interjection said upon parting. + + + An exclamation used to express pleasant or unpleasant mild surprise, indignation, or impatience. + Why, that’s ridiculous! + Why, how kind of you! + Why yes, that’s true. + + + A traditional Jewish greeting or farewell. + + + having the maiden name + + + moral snob + + + compulsive consumption of large quantity of negative online news + + + form of spin in which green PR or green marketing is deceptively used to promote the perception that an organization's products, aims or policies are environmentally friendly + + + branch of machine learning + + + biochemical technique + + + act or process of staining with an antibody + + + immunoassay method used for immunoreactive substances of tagging with labeled antibodies + + + type of tectonic plate + + + device used to keep a bed warm + + + before + + + name considered fitting to a person + + + to not forget, or to remember again + + + policy constraining travel + + + study of past climate based on tree ring data + + + particular climate reconstruction from tree rings + + + theory, especially during the 1970s, of imminent cooling of the Earth + + + assets that have suffered from unanticipated or premature write-downs, devaluations, or conversion to liabilities + + + Graph showing a large spike in recent centuries' temperatures resembling a hockey stick to demonstrate anthropogenic climate change + + + legal proceedings meant to address climate change through judicial proceedings + + + type of geoengineering + + + medical procedure + + + core sample of ice, typically removed from a glacier or ice sheet + + + communications field focused on bringing climate change information to a public + + + folk music from around the world + + + game in a tournament just before the final game + + + social annotation of an action as being in line with ethical norms + + + pathology + + + forest dominated by plants that shed their leaves in autumn + + + a song that has the same name as the album it is released on + + + a promoted song on a music release. common in KPOP + + + combining agriculture with photovoltaics + + + Fictional device + Landing party members always carried an equipment pack containing a tricorder and other sensor equipment, enabling them to monitor atmospheric conditions on alien worlds. + As with later tricorders, this device’s standard scan set covered meteorological, geographical, and biological data, which was recorded on a pair of memory modules situated in its upper section, which also incorporated a touch display screen. + + + an incorrect combination of a substituted word (with a similar sound to another word) with another recently coined word + + + practice of publicly shaming, rejecting, and ceasing to provide support to people perceived as problematic + + + vocative particle + + + nazari + + + the practice of abstaining from the use of animal products + + + someone with whom the speaker has a measure of emotional closeness and respect + + + symbiosis between vascular plant and fungus + + + alteration of previously established facts in the continuity of a fictional work + + + convention to represent a specific type of digital information in a specific type of file + + + A type of South American rodent + + + type of arterial thoroughfare between classification of road and street + + + a part of a rock or group of rocks that differs from the whole formation (as in composition, age, or fossil content) + + + general appearance + + + an appearance and expression of the face characteristic of a particular condition especially when abnormal + + + first meeting of two cultures previously unaware of one another + + + person who makes species-based discriminations + It wasn't as if he was speciesist, he told himself. But the Watch was a job for men. + + + any geologic material which is not native to the immediate locale but has been transported from elsewhere + + + geologic material transported from one locale to another by glacial-ice specifically, unqualified as the most common type of erratic + + + geologic material transported from one locale to another by glacial-ice + + + optical machine-readable representation of data + + + automated cooking appliance + + + having features of a human + + + fictional space combat weapon + + + two simultaneous pandemics, such as flu and COVID-19 + + + cisgender and heterosexual + + + vaccine + + + vaccination + + + to be aware of some information + + + of or relating to intersexuality + + + exhibiting intersexuality + + + a white crystalline irritant compound C₈H₆Cl₂O₃ used especially as a weed killer + + + feces + + + act of defecating + + + able to find in a Google search + + + to mention or reply to someone on social media + + + of or pertaining to detectives + + + of or pertaining to detection + + + interjection of happiness + + + any longhorn beetle of the family Cerambycidae + + + to move to an earlier date + + + to place in front of + + + I swear! + + + pertaining to act of eating a meal + + + a tall tree (Anisoptera thurifera) of the family Dipterocarpaceae + + + a European freshwater fish in the family Percidae, closely related to the perch, Sander lucioperca + + + indicating a non-occurring action or state that was conditional on another non-occurring event in the past + + + person who "bends" expected gender roles + + + video game that is played in professional competitions + + + which person is + + + any plant in the genus Hedeoma + + + any virus of the family Baculoviridae + + + any virus of the family Baculoviridae + + + fictional character with supernatural or superhuman powers dedicated to helping the public + + + (Internet slang) very cool + + + any beetle of the clade Lamiinae + + + any bacteria of the clade Alphaproteobacteria + + + any frog in the family Pipidae + + + small, benign skin growth that may have a stalk (peduncle); also called skin tag + + + basted with soy sauce and rice wine and grilled over an open fire + Home Chef provides classic dinner recipes like pork tenderloin, baked chicken, pasta dishes, and teriyaki steak. + Buffalo wings, said to have been invented in a bar in Buffalo, New York, in 1964, are among the spiciest preparations (other popular variations include teriyaki wings and honey garlic wings). + + + type of fine Kashmiri wool of a Himalayan ibex + + + machine to mow lawns + + + mellow, agreeable + + + incest + + + hall (building owned by a college or university where students live) where there are communal kitchens and fridges and so on intended to be used by students + + + a clumsy, stupid person + + + be healthy, be well + + + farewell + + + recommendation for greater sophistication or awareness: "get real" + + + ammonic + + + the plover Vanellus coronatus + + + the police (collectively) + I just blew a chase on the maameh + + + to make evident or public + + + urban slang for a half-jack + + + sorting room in a paper mill + + + in or by the fact + + + music that blends punk rock and rockabilly + + + of, resembling, or characteristic of a zebra + + + style in art and especially architecture + + + An obsolete currency of India + + + tendency in a language to treat the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + modified by humans + + + all the roots of any singular plant + + + land revenue system in British India + + + someone who one shares their bed with + + + sex partner + + + person one has a platonic friendship with, that includs sex + + + transfer of food or other fluids among members of a community through mouth-to-mouth or anus-to-mouth feeding + + + something whose slightly damaged appearance shows that it has been used many times + + + to end a phone conversation intentionally + + + a capital town for Nanumba North municipal in Ghana + + + The one that follows after this one. + Next, please, don't hold up the queue! + + + any individual living being or physical living system + + + superficial or meaningless communication lacking substantial content or significance + + + massage of the back + + + a lot + + + addiction to tobacco + + + a mammal in the family Eupleridae + + + of or pertaining to the Trochilidae (hummingbirds) + + + a member of the mammal family Elephantidae + + + promise to keep silent + + + any fish of the family Blenniidae + + + any salamander in the family Plethodontidae + + + any owl in the family Tytonidae + + + a mammal in the family Dugongidae + + + a bat in the family Molossidae + + + of or relating to the moth family Crambidae + + + officer under the Lord Chancellor whose duty it was to prepare the wax for sealing documents + + + any of several pivoted pieces forming the throat of an adjustable die used in drawing wire or lead pipe + + + any mole of the family Talpidae + + + woman, lady + + + a machine that dispenses bubblegum + + + any bird in the family Odontophoridae + + + any fish in the family Apogonidae + + + a fish in the genus Apogon + + + any salamander belonging to the family Cryptobranchidae + + + a cetacean in the mammal family Delphinidae + + + person of mixed white and Asian or PIslander ancestry + + + Of or related to fruit bats in the family Pteropodidae + + + (expressing assent, understanding) + + + (expressing surprise, doubt, joy, anger) + + + fighting, conflict + + + childlike aspect of one’s emotional experience + + + سو گھٹ سولاں + + + malillugu + + + pertaining to the journey from childhood or adolescence to adulthood + + + to look after + + + to nurse + + + the intentional performance to do a wrongful act + + + concert of classical music at which a part of the audience stands unseated for a reduced price of attendance + + + walking for show, amusement + + + a disorderly, confusing situation; a mess + + + more in addition to someone or something + + + something different to an aforementioned someone or something + + + to treat something or someone as different + + + to try to effect or influence certain people + + + an album for mounting pictures and other memorabilia of a baby and for keeping a record of their growth from infancy + + + a book intended for babies or young children + + + a book containing advice for new or prospective parents + + + hill, mound + + + type of wooden vessel + + + generally, an Australian Aboriginal ceremoial meeting + + + study of marine organisms + + + branch of biology concerned with protists + + + soil science + + + study of the influence of soils on living things, particularly plants + + + branch of tribology which studies friction phenomena on the molecular and atomic scale + + + branch of herpetology dealing with amphibians + + + branch of herpetology and paleontology dealing with fossil amphibians and reptiles + + + branch of ichthyology and paleontology dealing with fossil fish + + + a sports match that holds no significance in terms of affecting the outcome or standings of a tournament + + + branch of entomology dealing with the Odonata (dragonflies and damselflies) + + + branch of ecology concerned primarily with the species and its genetically variant subdivisions, with their position in nature and, with the controlling and ecological factors + + + the study of victims of crime + + + usually disparaging : the claim that the problems of a person or group are the result of that person or group having been victimized + + + onomastics + + + the study of heat + + + a medical science that uses infrared images of the body to diagnose problems + + + the study of games and play + + + washerman occupational class in South Asia + + + the study of the anatomy and physiology of vomiting + + + branch of biology concerned with the processes and patterns of biological evolution especially in relation to the diversity of organisms and how they change over time + + + swimming or floating in water + + + floating entirely under water + + + the study of sleep and hypnotic phenomena + + + inner bark of exogens; bast + + + neither of two persons or things + + + unaffected by or free from taboo + + + not set apart for a special use + + + an old Polish immigrant + + + the study of meteorites + + + the study of how exercise alters the function and structure of the body + + + criminology + + + branch of psychology concerned with the behavior of animals other than humans + + + folk psychology + + + comparative psychology + + + feeding on or in wood + + + dispersal of spores or seeds by animals + + + a plant distributed by living animals + + + a member of the mammal family Erinaceidae (the gymnures and hedgehogs) + + + a plant adapted to withstand or to achieve a competitive advantage from fire + + + swear to God + + + branch of biology concerned with the study of plankton + + + altering one’s course in life + + + a science that deals with actinism and photochemical effects + + + the science of remedies or therapeutics + + + the study of geological features by aerial observation and aerophotography + + + branch of medical science that studies fractures + + + the study of the language, costume, literature, art, culture and history of Albanians + + + branch of botany that deals with character, ecology, and causes of outbreak of plant diseases especially of epiphytotic nature + + + the sum of the factors controlling the presence or absence of a disease or pathogen of plants + + + pleonasm: the use of more words than those necessary to denote mere sense (as in the man he said) : redundancy + + + ecology of microorganisms + + + an ecclesiastical calendar of festivals celebrated in honor of particular saints and martyrs + + + a register of saints or outstanding religious personages + + + menologion: an ecclesiastical calendar and short martyrology of the Eastern Orthodox Church : an abbreviated version of the complete Menaion + + + the collection and study of proverbs + + + apparent or imitative homology especially between metameres + + + the scientific consideration of the remedial use of friction + + + the study of winds + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + the branch of ornithology which is concerned with birds' nests + + + the scientific study of weight + + + investigation of the supposed relation between the celestial bodies and the weather + + + the science of breeding animals and plants under domestication + + + branch of mathematics which studies topological spaces using the tools of abstract algebra + + + products, equipment, and systems that enhance learning, working, and daily living for persons with disabilities + + + theological doctrine that describes the divine nature according to positive categories + + + branch of mycology dealing with the rusts + + + crouch-backed + + + crowded, populated with people + + + the ecology of organisms and their interactions with each other; the branch of science concerned with this + + + branch of medicine dealing with the skin, its structure, functions, and diseases + + + study of structural geology + + + computer science + + + branch of pathology that deals with manifestations of disease at the cellular level + + + the study of animals in a germ-free environment + + + the raising and study of animals under gnotobiotic conditions + + + the science or study of the origin, meaning, growth, and history of the religious feasts and seasons of the Christian year + + + the study of marine animals + + + the scientific study of microclimates + + + the microclimatic character of an area + + + to drop, issue from + + + the branch of zoology which deals with slugs + + + the study of how populations change over time + + + the study of the astronomy of ancient cultures + + + the doctrine of the use of the cane in corporal punishment + + + to send a copy of a communication, especially via email + + + (among the Algonquian people) a supernatural being that controls nature; a spirit, deity, or object that possesses supernatural power + + + recent zoology: the zoology of existing animals disregarding those extinct + + + the study of the process by which animals and plants grow and develop + + + any approach to psychological issues based on the idea that mental processes can be divided into separate specialized abilities or powers, which can be developed by mental exercises in the same way that muscles can be strengthened by physical exercises + + + the branch of Roman Catholic theology that deals with the practice of virtue and the means of attaining holiness and perfection + + + contraction of a word by omission of one or more similar sounds or syllables + + + the medical science concerned with diseases of the blood and related tissues + + + the study of gramophone records + + + (informal) the art or practice of bluffing or deception + + + nonsense, rubbish; fooling, hoaxing, humbugging + + + the branch of political economy relating to the production of wealth + + + the study of the causal relations between geographical phenomena occurring within a particular region + + + the study of the spatial distribution of organisms + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + a hostile or harmful action (such as an attack) that is designed to look like it was perpetrated by someone other than the person or group responsible for it + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + the scientific study of noses + + + study of the microscopic anatomy of cells and tissues of plants and animals + + + tissue structure or organization + + + the study of hormones: endocrinology + + + the science of health; hygiene + + + a treatise on the poppy or on opium + + + a target-driven process designed to ensure the successful implementation of reforms or achievement of policy goals within government or the public sector + + + absence of purpose in nature especially as manifested in rudimentary or nonfunctional structures + + + the doctrine of purposelessness in nature + + + frustration or evasion of a normal functional end + + + a vestigial organ + + + the study of the impact an injury or incident had on a person's lifestyle + + + hedonics + + + the study of the phonology of morphemes + + + recitation of mimes + + + a collection of idioms + + + the study of the relationship between the endocrine system and various symptoms or types of mental illness + + + a branch of medicine that deals with the influence of emotional states (such as stress) and nervous system activities on immune function especially in relation to the onset and progression of disease + + + the theory and practice of utilizing new technology to develop and implement innovative educational approaches + + + sensitive to light of all colors in the visible spectrum + + + the study and treatment of speech and language problems + + + the branch of anatomy which deals with the ligaments + + + the study of the structure and operation of synapses + + + a scientific dissertation on tea + + + the study of archaeological remains by examining them from a higher altitude + + + the study of climatological conditions in the free atmosphere--that is, in atmospheric layers located at various levels above the earth's surface + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + te branch of anthropology that deals with the origins, forms, and practice of politics or political authority + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + the study of the masticatory system, including its physiology, functional disturbances, and treatment + + + the branch of biology concerned with congenital defects and abnormal formations of plants; plant teratology + + + a speech in which someone admits to the charges or problems they are accused of, while simultaneously justifying or attempting to provide excuses for them + + + the study of the physiology of the ear and hearing + + + an expert or specialist in physiological psychology + + + counter-espionage + + + the science of the production and distribution of wealth + + + to perform music using a musical instrument or instruments + + + the explicit concern with foundational, metapsychological, and philosophical questions in psychology + + + a range of philosophical and theological explorations of the idea that God may be dead + + + those aspects of meteorology that occur over, or are influenced by, ocean areas and which serve the practical needs of surface and air navigation over the oceans + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + the methods and the process used for catching or capturing the fishes for various purposes + + + characterized by whirling or rotatory movement + + + the branch of virology concerned with the study of retroviruses + + + the science or study of revolution + + + a treatise on pyrites + + + the study of crystals and crystallization; crystallography + + + that has been through the process of fermentation + + + leavened (of bread) + + + the application of technology in the agricultural and food sector + + + contraption used to catch fish alive + + + (first-person plural possessive) belonging to us + + + (third-person singular impersonal possessive) belonging to it + + + impervious to moisture or damp + + + tsirkulatsioonimudel + + + a small bedside table or stand + + + the medical specialty that studies the morphology of the macroscopic and microscopic abnormalities in biological tissues and normal or pathological cells + + + the study of the meteorological processes occurring close to the Earth's surface, including the effects of meteorology on air pollutants and the effects of pollutants on meteorology + + + the science of weapons or armor + + + the study of the complex processes of climate and glacial interaction + + + the study of mesoclimates; the climatology of relatively small areas that may not be climatically representative of the general region + + + to an extent + + + aware of, knowledgeable about + + + opposed to + + + to the greatest extent + + + aggravated; angry, annoyed, irritated + + + crazy, fun + + + surely have, should have + + + the study of historical weather patterns using radar data to understand how surface properties affect precipitation + + + a use of many languages + + + the branch of sociology that deals with political groups and leadership + + + a certain set of ethical ideals, principles, doctrines, myths or symbols of a social movement, institution, class or large group that explains how society should work and offers some political and cultural blueprint for a certain social order + + + chemical reaction used to remove color, whiten, or disinfect, often via oxidation + + + the macroscopic assessment of pathology specimens + + + a calendar or book declaring what is done every day, a day-book + + + to receive pardon + + + article structured as a list + + + rare. Apparently only attested in dictionaries or glossaries: the doctrine of, or a treatise on, the nutrition of organized bodies + + + the study or science of nutrition + + + qasoqqavoq + + + interring; enclosing, whelming + + + that catches fish + + + to release again; to reissue (especially of a film or recording) + + + release again + + + to produce together (with a partner) + + + to engage in role-playing, taking on of fictional parts + + + to eat dinner, dine + + + to put before a committee + + + to become inattentive, oblivious + + + to chatter continuously in an annoying manner + + + to shine, gleam, glitter with reddish or golden light + + + to put out of date; to make obsolete + + + to control and direct in a detailed, meddlesome manner + + + to mention name of famous or prominent person in conversation to impress others + + + the study of how people behave in groups and how their behavior differs from when they are individuals + + + the use of solar energy to generate electricity or heat + + + to inhibit or decrease normal activity of bone marrow, resulting in fewer red blood cells + + + to bring about lysis + + + to urinate involuntarily while asleep + + + to remove a sample of tissue for medical analysis + + + to occur at time later than expected + + + to not be present + + + to not be present among, at + + + to be experiencing fear + + + substance that quells or blunts the libido + + + having normal visual acuity + + + marked by facilely accurate discernment, judgment, or assessment + + + a treatise on the head + + + branch of botany that deals with desmids + + + the study of diseases of ligaments + + + short trousers, shorts + + + to fossick + + + to score with ravines + + + to hollow a ravine or cleft out of + + + to reduce to base level by erosion + + + to send an SMS message from a mobile phone + + + to subsidize something or someone + + + essential oil distilled from the flowers of the Seville orange + + + to adduce arguments, argue + + + to provide, secure, or raise with a quoin or quoins + + + mentally or morally sick + + + the branch of biology that uses computational techniques to analyze and model how the components of a biological system such as a cell or organism interact with each other to produce the characteristics and behavior of that system + + + the broomrape Orobanche purpurea of Eurasia and North Africa, which has bluish-purple flowers and is parasitic on yarrow + + + forward, at the fore + + + at the fore of, ahead of + + + deep in past time; long ago + + + that alights, descends + + + that blames + + + constrained, forced, necessitated + + + that abstains from or is deprived of food or drink + + + departing, going + + + out of each hundred + + + outdoor; out of doors + + + of, within, or for a group of related people + + + act to forget + + + state of being unconscious, oblivion + + + whiner, complainer + + + reduced to fine particles by grinding + + + professional who applies engineering principles to the study of cells and tissues, and uses these principles to control and understand cell behavior + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + a home that combines a living space with a large workshop or storage area + + + a gold ring + + + the radiographic visualization of the gallbladder after ingestion or injection of a radiopaque substance + + + dyer + + + a chemical compound (such as a drug, pesticide, or carcinogen) that is foreign to a living organism + + + photography involving the use of a camera attachment or integrated feature that produces a brief flash of intense light + + + the study of the individual, or of single events or facts + + + the practice or art of recording images with a video camera + + + a list or catalogue of video recordings + + + the use of oscillographs for recording alternating current wave forms or other electrical oscillations + + + the science of plant description; descriptive botany + + + the science or practice of transcribing speech by means of symbols representing elements of sound; phonetic transcription + + + a system of shorthand based on phonetic transcription + + + the art of representing objects in perspective, especially as applied in the design and painting of theatrical scenery + + + visual design for theatrical productions, including such elements as sets, costumes, and lighting + + + visualization of the kidney using a radiological contrast medium or radioisotope + + + the description or study of ceramics + + + of or relating to engraving or carving, especially on precious stones + + + combining form meaning "salpinx" + + + combining form meaning "fallopian tube" + + + combining form meaning "fallopian tube and" + + + combining form meaning "eustachian and" + + + the art of taking an impression of a coin or medal using sealing wax + + + writing held to be that of spirits and produced directly without a medium or material device + + + descriptive pneumatology + + + tuft or bunch of ribbon, feathers, flowers, threads of silk + + + million-millionth of a gram + + + pertaining to a plexus of veins located in the spermatic cord of the male or the broad ligament of the female + + + that bumps + + + designation of a particular kind of concrete + + + glycoproteins that stimulate the production of blood cells in bone marrow + + + of fresh water habitat; situated in still water + + + floor- or ankle-length dress + + + rocket, arugula + + + like or resembling a dragon + + + on account + + + a mess-up; a disaster + + + testicles + + + the study of animals as geomorphic agents—as in the creation and collapse of gopher tunnels + + + lady of the Sultan’s harem + + + any cross between a mandarin and a kumquat + + + a sign, such as an accent or cedilla, which when written above or below a letter indicates a difference in pronunciation from the same letter when unmarked or differently marked + + + a large Hungarian dulcimer + + + a tiler or slater of roofs + + + going on a trek + + + a market + + + torch + + + a person who is present when something is happening but is not involved; a bystander + + + (nautical) a gunner's assistant (obsolete) + + + relating to the medical specialty of proctology + + + (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + + surgical construction of an artificial opening from urinary tract + + + to turn upwards + + + to remove stitches from + + + to brace again + + + state of semi-dormancy exhibited by reptiles and amphibians in response to cold weather + + + to form or express the opposite or contrary of + + + to make over again or restore (property) to former owner + + + to supply preliminary amplification + + + to saturate to excess + + + white barley sugar or sugar candy + + + to adjoin two objects + + + transfer of a phosphate group between molecules in different compounds; act or process of exchanging phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + branch of geomorphology that studies how landforms are formed or affected by tectonic activity + + + to remove or unfasten clamp(s) from + + + to make insufficient use of + + + the condition in which people in a labor force are employed at less than full-time or regular jobs or at jobs inadequate with respect to their training or economic needs + + + the condition of being underemployed + + + to transfer genetic material into another individual + + + to transfer genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + to transfer genetic material non-reproductively, usually by horizontal gene transfer + + + to march with legs swinging sharply from the hips and knees locked (like how geese walk) + + + to accelerate the progress of; to expedite + + + to provide an active link to a website + + + to destroy by burning + + + to subject to genocide + + + to flash lightning + + + to calculate on a yearly basis + + + light a controlled fire in the path of a wildfire to gain control + + + to fail spectacularly + + + developed in a full and thorough way + + + seasonal movement of livestock (such as sheep) between mountain and lowland pastures either under the care of herders or in company with the owners + + + the branch of anthropology focused on the interactions between humans and biophysical systems + + + a small carnivorous aquatic monotreme mammal (Ornithorhynchus anatinus) of eastern Australia and Tasmania that has a fleshy bill resembling that of a duck, dense fur, webbed feet, and a broad flattened tail + + + mother tongue; first language a person adopts from their family of origin + + + heaped up, accumulated; increased by accumulation + + + in South Asia: a member of a Scheduled Caste of leather-workers; a shoemaker, a cobbler, (formerly) a saddler + + + anal sex + + + questioning, interrogation; the action of making or suggesting a queryaking of queries + + + of the nature of, or characteristic of, croup + + + a person who introduces a parenthesis; a person given to the use of parenthesis + + + happening or occurring every four years + + + consisting of or lasting for four years + + + nothing, not anything + + + to weigh in ounces + + + to despoil + + + to pour forth like a conduit or fountain + + + name of a fishing tender + + + where above mentioned + + + of or relating to the moth family Pyralidae + + + education conducted after secondary education and before postgraduate education, usually in a college or university + + + an animal that feeds on feces or fecal matter + + + a plant that captures and digests insects either passively (as the common pitcher plant or the sundew) or by the movement of certain organs (as the Venus's-flytrap) + + + a virus that attacks actinomycetes + + + the deliberate, often habitual, eating of small quantities of arsenic compounds + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + a dance routine performed by ice skaters, especially as part of competitive figure skating + + + indeterminately small in number + + + that cleans + + + anyone + + + whichever + + + however much + + + a jump in figure skating in which the skater takes off from the back outer edge of one skate and makes at least one full rotation before landing on the back outer edge of the other skate + + + ball-and-socket joint + + + that can be manured + + + mendacity: the quality of being mendacious; the tendency or disposition to lie or deceive; habitual lying or deceiving + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + to take a stereograph or stereoscopic photograph of + + + a petulant person, especially a childishly sulky or bad-tempered one + + + acknowledgement of truth + + + allowance of entry + + + natural geological depression + + + to question about matters brought out during foregoing direct examination + + + send, transport, or disseminate by courier + + + a person who causes a nuisance + + + give back + + + to remove all or most of the substance of (a tumor or lesion) + + + being in large quantities or not divided into separate units : being in bulk + + + of or relating to materials in bulk + + + French-speaking + + + the act of suggesting someone for a role + + + becoming aware + + + surveyence of opinion + + + process of establishing something + + + an abdominal pain + + + the scientific name of a nerve + + + a traveler who stays at hostels + + + (archaic) an innkeeper + + + one that lodges guests or strangers + + + the condition of having three copies of chromosome 13 that results in a syndrome characterized by severe congenital malformations including craniofacial and cardiac defects, structural brain abnormalities, and polydactyly + + + sadness, grief, melancholy, sorrow + + + systematic decline in quality of online platforms over time driven by greed + + + say for all to hear + + + a lack of skills in spoken and written language which may have a detrimental effect on a pupil's ability to learn + + + coming to a stand, waiting, continuing + + + hesitating, delaying + + + a short scherzo + + + the utilization of theories and methods from phenomenology in media research, especially those of Husserl and Heidegger + + + the study of the media as technologies which are not neutral but which transform both the world and human experience of it by amplifying or reducing phenomena through various transformational structures, as theorized by Ihde and others + + + the state of being hyperreal + + + a hyperreal quality + + + in a mediated context, an artificially created copy that is perceived as somehow more real than the real thing, or too real to be real + + + of, relating to, being, or characterized by manufacturing and especially heavy industry + + + long for, be lacking, absence noted with sadness, be unable to locate + + + an orally bioavailable, second-generation hydroxamic acid-based inhibitor of histone deacetylase (HDAC), with potential antineoplastic activity + + + standing watch over something + + + utterance or exclamation of ‘ooh—ah!’ + + + a woman, usually over 30 + + + male bird, especially a domestic chicken, having plumage resembling that of a female + + + to grow or become dark + + + to make dark, darken + + + make legal + + + convince to join + + + angry, phrasal variant: angry + + + full complement of sailors belonging to crew + + + any method of searching for oil based on a limited knowledge of geology and practiced especially by wildcat prospectors + + + pre-1900 Swedish + + + length of cotton cloth wrapped about the body + + + the study of glyptic + + + the branch of botany that deals with the Hepaticae + + + the study of pathologic conditions related to pregnancy, childbirth, and the postpartum period + + + free-climbing a route, while lead climbing, after having practiced the route beforehand + + + the branch of veterinary medicine that focuses on the study of parasites that infect animals, their life cycles, and their impact on animal health + + + pertaining to paleontology + + + the topology on a set where only the empty set and the entire set are considered open + + + a treatise dealing with the uterus + + + branch of biology concerned with the construction of mathematical models to describe and solve biological problems + + + branch of physiology concerned with the basic functional activities of living matter : protoplasmic physiology + + + theology that conceives of ultimate reality as so transcending human thought that it can be described only negatively + + + to work together + + + to prevail over or declare void + + + the bisectrix of the obtuse angle formed by the axes of a biaxial crystal + + + process of breaking (up), terminating + + + the study of how climate, particularly temperature and moisture, influences soil properties and processes over the long term + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + provide money for + + + the microscopic examination of tissue in order to study and diagnose disease + + + normal, standard, or consistent + + + talk idly + + + bring to an end + + + act of hitting or pressing (a key or a button) + + + striking a blow with a closed fist + + + deconstruct, destroy, bring an end to, defeat + + + move randomly across some scale, fluctuating + + + to make a scapegoat of, unjustly blame (and punish) someone + + + act or process of starting a habitual activity + + + act or process of occupying (space) + + + act or process of raising an issue or grievance + + + act or process of beginning an action, state, or position (non-habitual) + + + become/make clear, clean, becoming, making clean or clear + + + to take possession of + + + examine + + + act or process of being close or similar, causing to come near to or approach again + + + to place into a package again + + + a student or practitioner of methodology + + + the study of how cities modify the local climate, creating distinct conditions compared to surrounding rural areas + + + having the yolk in the centre of the egg or egg cell + + + (especially in Greece or among Greek-speaking people) an extempore lament or funeral song, usually sung by a woman; a myriologue + + + the action or occupation of performing such laments + + + act or process of providing materials or supplies (provisions) + + + an advocate or practitioner of a processual approach to a problem or discipline; an advocate of processualism + + + with confidential or sensitive information included or visible + + + in my opinion + + + the finest topology that makes a given collection of functions continuous + + + a topology defined on the set of continuous maps between two topological spaces + + + the study of somatotypes + + + a method used in cervical cancer screening and other diagnostic procedures to improve the accuracy and efficiency of cell sample analysis + + + comprehensive + + + the condition or fact of being between + + + the software and tools, including digital platforms and intelligent process automation, used to efficiently and intelligently create and deliver products and services, as well as improve speed and agility of processes across the enterprise + + + the psychology of the reader + + + Haeckel's name for: the comparison of the physiology of a mature organism to that of the (presumably) most perfectly developed organisms of its phylogenetic group + + + the theory, popularized by C. H. Dodd (1884-1973) that the eschatological passages in the New Testament refer not to a future apocalypse, but to an era which was inaugurated by Christ's presence and ministry on earth + + + the act of drooling + + + transporting an item or items that are coupled to a vehicle or pack animal(s) by means of tension elements + + + anxiety causing, distressing, disturbing + + + freeze completely + + + having been split apart + + + taking place in the middle of one's life + + + a belief system or ideology that mimics religious or theological structures but lacks the core elements of genuine theology, often serving as a substitute for or distortion of true faith; can also describe a system that adopts religious language and practices but ultimately serves a non-religious purpose or agenda + + + for your information + + + the study of Ascomycota (sac fungi) + + + to be or become equal or even + + + act of taking + + + place where people live and interact, ranging from small villages to large cities + + + to shoot with bullets + + + to make available for other use + + + to illuminate + + + of or relating to zoogeography + + + search, seek like a scavenger + + + to form (vehicles) into a laager + + + to make camp + + + the formation of mountain ranges by tectonic processes, particularly large‐scale compression and intense upward displacement + + + Being abducted + + + fan into flame + + + to make small adjustments + + + become too old for + + + act or process of combatting corruption + + + automatically measure refraction + + + put money into an investment, again, automatically + + + unabashed, blunt + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + automobile decorated as a work of art + + + draw/test blood components + + + The act of to temporarily substituting one medicine with another + + + escape + + + The act of softening up by flattery, with an aim of getting something + + + the process of starting a computer + + + move a body part in a conical motion (e.g. windmilling the arms, rolling the eyes) + + + supervise, control, with a partner + + + change form together + + + change form together + + + co-occurrence of medical conditions + + + pour concrete over + + + not recommended or advised as a course of action + + + act or process of paying a pre-determined portion of a bill that is otherwise covered (usually by insurance) + + + development of ropelike structure in tissue often after surgery + + + fissure within a crevasse + + + formation of abnormal notching around the edge (of a cell, etc) due to water loss + + + to catch crabs (the crustacean) + + + quantity, object, or property intended to be measured + + + remove foam + + + decreasing oxygen saturation in hemoglobin + + + to remove wax + + + gummy candy in the shape of a worm + + + clear to auscultation + + + The act of marking with dimples, creating dimples in or becoming dimpled + + + forming or becoming covered by a crust, forming a crust + + + cause a harmful action + + + to open using a crowbar + + + compare one set of data against another + + + reduction, depletion + + + (cause to) become dried out via an electric current + + + The act of putting in a chain + + + spatial end portion of + + + remove + + + ooze + + + cleaning with string for healthy gums, cleaning between with string + + + emit light randomly + + + artilliary/gun battle + + + to form/consist of fibrous tissue + + + cause to become visible, find + + + to loosen, wear away + + + become like a fungus + + + to brief or inform fully + + + The act of becoming/covering with glacier + + + act or process of putting deep grooves or scratches into a surface + + + surf move + + + enumerate by hand + + + be a ham, overact + + + phrasal chop sloppily + + + cause to appear + + + surgical repair of hernia + + + move more quickly + + + surgery that creates a connection between two different parts of the ileum + + + surgery that creates a connection between the ileum and the rectum + + + The act of recording an image of (using mri, x-ray, cat scan, ultrasound, etc.) + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + mutation of cells resulting in a cell line that can keep undergoing division indefinitely + + + act or process of detecting the presence of a specific antigen by the use of antibodies + + + pain in the head + + + Being mixed together + + + diminished sense of taste + + + within the abdomen + + + produce a landslide + + + good or cool + + + having knees that + + + enter on a keyboard + + + regard with contempt + + + live to the end/completion + + + pulverization of kidney stones, gallstones, or similar + + + incorrectly assign a label or attribute + + + inaccurately assign a label or attribute + + + convert into or enrich with minerals + + + fire, lay off + + + make the characteristic noise of a cat, communicating like a cat + + + The act of typing incorrectly (on a keyboard/typewriter) + + + make or become opaque, becoming opaque + + + act or process of diminishing loudness (of a sound) + + + control to too great a degree + + + having multiple foci + + + forming into an outward pouch + + + outnumber, or exceed in manpower + + + act or process of inhibiting or decreasing normal activity of bone marrow, resulting in fewer red blood cells + + + inhibitive of normal bone marrow activity, resulting in fewer red blood cells + + + poorly thought out, unworkable, inept, worthless, faulty, uncool + + + to stay overnight + + + to send by overnight mail + + + greatly over-acted + + + affected by magic + + + incorporate a nitrosyl group into another molecule + + + split into periods, assign to a period + + + in the vicinity of the rectum (may or may not include the rectum) + + + having a normal head + + + slangily hip, fly, rad, dope + + + related to comedy + + + two out of a division of three + + + angry, irritable + + + having abnormally low blood cell count + + + removal of several organs, including: the head of the pancreas, the duodenum or part of the duodenum, the bile duct, the gallbladder, and sometimes other tissue + + + attach fatty acids to a membrane protein + + + The act of turning, rotating + + + weasel out + + + arrive on unknown shore, reach land from water + + + stick out, protrude + + + unload, remove stuff + + + to undo a ban + + + acquire a tubular shape + + + act or process of gathering into folds + + + to vomit + + + fiddle around with (phrasal) + + + to teach again + + + attach living tissue onto other living tissue, again + + + act or process of putting forth again + + + to apply a label again + + + act or process of working out terms of agreement again + + + act or process of performing surgery or operating again + + + to pretend not to know something + + + of measureless depth (i.e. cannot be measured with a fathom line) + + + to inch up, such as clothing that moves up the body as one moves + + + the act of vaccinating again + + + cook + + + build or repair a road + + + move on, or as if on, skates + + + encounter + + + causing growth of dense, fibrous tissue + + + alternate expression of sell; put on sale, put up for sale + + + board on sand, like snowboarding but on a sand dune + + + weighing scales + + + act or process of sowing, planting, inoculating, or funding (as with seeds) + + + develop specific antibodies as a result of infection or immunization + + + be very apparent + + + act of moving or diverting + + + spritz, spray, squirt + + + (cause to) be more intelligent, quick, and/or stylish + + + act of supporting with or as if with a splint + + + spraypaint on a surface + + + act of looking with eyes partly closed + + + act or process of recloning part of a previously-cloned DNA segment into a new vector + + + act or process of taking a smaller sample from a larger sample + + + to kill, cause death (used to evade online content filters) + + + to find again + + + act or process of cutting or dividing across (often transversely); using a transect or moving along a straight path that runs across + + + trade off, exchange + + + the number 8 + + + speakers/writers, or the speaker/writer and at least one other person + so we believe there should be a highway leading directly from this Department to every school house in Michigan + + + speaker(s)/writer(s) and the person(s) being addressed + + + speaker/writer alone + + + dish of seasoned, skewered and grilled meat, served with a sauce + + + able to do something + + + have the permit to do something + + + put into tins + + + fire (metphorical extension of 'throw away') + + + intended to belong to, or be used by, or be used in connection with + + + with the object or purpose of + + + to the benefit of + + + to a duration of + + + in favour of + + + away from the inside + + + unspecified group + + + color + + + under; closer to the ground than + + + relation of spatial context + She found it was tucked under the desk + + + relation of heirarchy, authority, or importance + While under the supervision of his mentor + + + Every person + + + metaphysics term designating all that exists + + + clothing for the legs and lower body + + + if + + + in the inner part, spatially; physically inside + + + only under the following condition + + + no person + + + infratentorial cancer located in the lower part of the brain, a type of primitive neuroectodermal tumor + + + up to a point in time + + + artificial word for a lung disease, longest English word published in a dictionary + + + clothing item worn when a human is swimming or near water + + + object used for cooking food + + + Regardless of the place in, at or to which. + Wherever you go, I’ll find you. + + + done without thinking, in a rigid manner + + + (exclamation intended to scare) + + + (utterance expressing disdain, dissatisfaction) + + + delete + + + part of RDF; used with RDF literals to represent values such as strings, numbers and dates. The datatype abstraction used in RDF is compatible with XML Schema + + + interrupting another + + + sadly + + + can not; am/is/are unable to + + + make pretty + + + dress + + + blow wind + + + absorb or draw off liquid + + + expressing relief + + + expressing glee, excitement + + + type of spring + + + indicating strong approval + + + approximately + + + expressing surprise + + + Used to indicate pleasure or delight. + Oh goody, ice cream! + + + geological formation + + + dwindle. (no particle) + + + pattern of bars or stripes intersecting at right angles against a background color, whether symmetric or not, whether woven or printed + + + in a quirky manner + + + indicates acknowledgment + + + expression of gratitude + + + to apply teeth to something + + + to interlock + + + with little drag from pushing through air + + + chemical used in agriculture, including pesticides, fungicides, herbicides, fertilizers, etc + + + a fuel that is produced through contemporary biological processes, as opposed to fossil fuel that was produced by prehistoric bio-geological processes + + + class of chemical compound + + + indicator of a biological state or condition + + + illegal bowling technique used to get a gritty batsman out by bowling at his body + + + motion picture film camera which also serves as a projector and printer + + + study of the chemical composition of matter in the universe and the processes that led to those compositions + + + the study of snow and ice + + + glaciology + + + the science of refrigeration + + + a non-binary person: someone who is outside or beyond the gender binary, not exclusively male or female + + + dating using tree rings + + + study of woody plants + + + organism-ecology relation + + + study of adaptation of an organism's physiology to environmental conditions + + + branch of physics + + + traditionally associated with a discovery + + + organized energy + + + type of organism + + + agricultural worker + + + conversion or trending towards packing into, or transport by means of, containers + + + relating to fluids + + + charity distributing food + + + form of ice cream + + + relating to internal motion of a planetary body + + + information about geography + + + underground water + + + person with excellent eyesight + + + contact for emergency assistance + + + process of growing tissue or organ in the wrong place + + + medical condition + + + having high body temperature + + + causing immersion + + + medical diagnostic technique + + + creation of immune response + + + to make a mistake while typing on a keyboard + + + link something to an incorrect category + + + between communities + + + between cultures + + + connecting regions + + + one that cannot be defeated + + + microscopic mechanical and chemical behavior + + + material with properties determined by structure rather than composition + + + very small mold to make microparticles + + + microscopic motor + + + relating to microsurgery + + + apply a monogram + + + material with nanoscale features + + + nervous system disease + + + study of genetics related to neurological disease + + + imaging of brain function + + + ocean region near shore + + + relating to an organic compound with a metal element + + + any person + + + the scientific study of bones, esp. human skeletal remains, found in archaeological sites; the branch of archaeology concerned with this + + + bone formation + + + study of parasites + + + support for a parliamentary system of government + + + relating to phonons + + + study of light on living organisms + + + medical branch dealing with tuberculosis + + + medical specialty + + + work with a prototype + + + a science concerned with the integration of psychological observations on behavior and the mind with neurological observations on the brain and nervous system + + + medical specialty dealing with mentally-caused illness + + + pertaining to quantum mechanics + + + recovering from loss in some fashion + + + space vehicle + + + team of salespeople + + + state of having survived (continued to live) + + + use the telnet protocol to access another computer + + + anonymous web surfing tool that attempts to make activity on the Internet untraceable + + + in an abbreviated manner + + + type of building + + + similar to, reminiscent of + + + branch of medicine concerned with venereal diseases + + + in terms of, or by means of, reproduction + + + absence of a gender identity + + + wire and pulley-based transportation system + + + adaptation again + + + event in which groups of software developers work at an accelerated pace + + + branch of anarchism + + + the study of aphasia including its linguistic, psychological, and neurological aspects + + + application of cybernetics in biology + + + imitation of biological structures by artificial means + + + type of berry + + + government by corporations or corporate interests + + + art + + + craftsman fashioning tools or works of art out of various metals + + + book or electronic device for visitors to leave a note + + + type of protein + + + bonding enzymes + + + protein + + + type of guitar shaped like a lyre + + + (of speech/tone) in a bitter/sharp manner + + + in an acquiescing manner + + + in an ambisexual manner + + + third to lastly, lastly but two + + + with upward/ascending motion + + + so as to be obligatory (in a binding manner) + + + so as to convey a challenge + + + in a manner pertaining to chalk or chalkiness + + + two days after today (2nd) + + + in a deathless manner + + + without fear/reverence, boldly/presumptuously + + + By filching; thievingly. + + + done in a manner that expresses clear and visual details + + + increasingly + + + in a welcoming manner + + + vitally/intensely/vividly (in a living manner, as if living) + + + incomparably/to an unequalled degree + + + immeasurably/infinitely + + + In an operose manner. + + + in a pansexual manner + + + fenologicznie + + + in the beginning + + + So as to prolong or lengthen. + + + in a manner that can be quoted + + + no matter what happens + + + unrefined, not overly processed or complicated + + + in a smokeless manner + + + in a way relating to being spiritual + + + duchowo + + + extremely hungrily (in a starving manner) + + + in a straining manner + + + appealingly/engagingly/pleasingly + + + imprecatively, in damnation + + + the aforementioned person or thing + + + in a thrilling manner + + + annoyingly/oppressively/tiresomely + + + in a virological manner + + + in a westward direction + + + not exposed to/affected by wind (in a windless manner) + + + person with no cognitive disabilities or mental illness + + + study of orchids + + + person who advocates pseudoscience + + + one who sanitizes + + + preparation designed to remove or kill micro-organisms + + + military use of cargo ships + + + type of enzyme + + + genus of viruses + + + class of enzymes + + + a partially divergent genome, particularly in viruses + + + natural polymers of high molecular weight secreted by microorganisms into their environment + + + use of sounds other than speech to convey information + + + route again + + + to imagine again or anew + + + of, relating to, characterized by, or concerned with transformation and especially linguistic transformation + + + tree diagram used to illustrate the arrangement of the clusters produced by hierarchical clustering + + + sequence of binary digits, such as 00110010 + + + cause to become dense + + + total of arrangements, activities, and inputs that people undertake in a certain land cover type + + + science that deals with the character, source, and mode of occurrence of underground water + + + against + + + class of short biopolymers + + + to make clean or neat; to put in good order + + + to make a person appear more youthful + + + resend + + + to render brute-like + + + vengeance, payback + + + To delete or forget the address of some entity. + + + to make fine + + + to adorn, deck + + + to fix or restore something that was previously destroyed + + + layer of plant life growing above the shrub layer and below the canopy + + + disease causing abnormally positioned eyelashes + + + science of the study of plants in relation to their use by humans + + + Human disease + + + presence of more than one medical condition in a patient that may contribute to clinical progression of the primary disorder + + + point at which a system rapidly changes its behavior + + + tool used in systems development + + + the process of inserting a stent to prevent closure + + + restoration of blood flow in an ischemic organ + + + responsiveness or reactivity that largely surpasses the normal magnitude + + + medical treatment + + + sword made from diamond + + + Who ever: an emphatic form of who. + Whoever thought up that stupid idea? + + + not presenting signs, indicating of + + + traditional Scottish dish + + + Idiosyncratic substitution of a word or phrase for a word or phrase that sounds similar + + + rice used to make rice pudding + + + having the same gender identity as assigned at birth + + + propensity for further evolution + + + is the clinical study of hormone fluctuations and their relationship to human behavior + + + condition in which an arterial spasm leads to vasoconstriction + + + any chemical compound having a ring composed of at least several atoms (usually minimum of 9–14 atoms) + + + the cellular lineage of a sexually-reproducing organism from which eggs and sperm are derived + + + the genetic material contained in this cellular lineage which can be passed to the next generation + + + increase a cellular response to a molecular stimulus + + + unchanging + + + substance composed of oligomer molecules + + + any projection from the cell body of a neuron + + + protein in influenza A virus + + + vacuole to which materials ingested by endocytosis are delivered. + + + process of converting a polymer into a monomer or a mixture of monomers + + + class of chemical compounds + + + the study of vaccines + + + graphic visual representations of information, data or knowledge intended to present information quickly and clearly + + + molecule or a portion of a molecule composed of amino-modified sugars + + + virtual perimeter for a real-world geographic area + + + type of biofeedback + + + superpartner of the gluon + + + brother + + + friend + + + fun; amusement + + + مربوط به درمیان‌یاخته + + + specific way in which players interact with a game + + + The act of cross-correlation of something (a signal?) with itself + + + gender-neutral term to refer to kids + + + numeral system + + + the appearance of being lightweight and light-footed while jumping + + + an explosive device planted just below the surface of the ground and designed to detonate when trigger by the weight of one walking on or driving over the device + + + salutation of Italian origin + + + sex or reproduction between two beings that share at least one genitor + + + concept that elevates heterosexuality over non-heterosexuality + + + container for making and serving coffee + + + writer + + + faithful and genuine love + + + kill by means of mounting on cross + + + If what follows is not possible; without. + A large proportion of the females employed in other firms are said to have signified their intention of going on strike, failing a settlement. + + + Facing, or across from. + There’s a bus stop opposite the faculty entrance, right on the other side of the road. + + + Behind; toward the stern relative to some other object or position; aft of. + The captain stood abaft the wheelhouse. + + + with the exception of + Nothing was to be sacrosanct or sacred, excepting reason itself. + We've all done it, not excepting Borja. + + + away from + + + Against; contrary or opposed to; in opposition or contrast to. + + + Under, below, beneath. + Underneath the water, all was calm. + We flew underneath the bridge. + We looked underneath the table. + + + In a straddling position on. + + + Including both of (used with and). + I (can) both sing and dance. + Both you and I are students. + + + Inasmuch as; in view of the fact that. + Seeing the boss wasn't around, we took it easy. + + + Despite the fact that; although. + Though it is risky, it is worth taking the chance. + Astute businessman though he was, my brother was capable of extreme recklessness. + Actual perpetrators though they were, the criminals never admitted it in court. + + + the same + + + An expression of sorrow or mourning. + + + Exclamation of surprise, pleasure or longing. + Boy, that was close! + Boy, that tastes good! + Boy, I wish I could go to Canada! + + + Non-vulgar interjection expressing annoyance, anxiety, etc.; sugar, darn. + Oh, crud! I'm gonna be late for work! + Aw, crud! I have to start all over again! + + + Indicating surprise at, or requesting confirmation of, some new information; to express skepticism. + A: He won the Nobel Prize yesterday. + B: Really? + A: You know, I saw Oliver the other day. + B: Really? What's he been up to? + + + Thanks. + Ta for the cup of tea. + + + intended to defend against air warfare + + + give honor to, having received honor + + + work song of sailors + + + upper limit of what a biological system can produce in terms of natural resources or absorb in terms of waste + + + Criminalized activity that violates the principles of environmental justice + + + word with the same root and a related meaning + + + augmentation of intelligence through the use of information technology + + + periodic change in the Sun's activity + + + preserved physical characteristics allowing reconstruction of past climatic conditions + + + Power produced with lower carbon dioxide emissions + + + removal of investment in companies involved in extracting fossil fuels to reduce climate change + + + current long-term trend for global sea levels to rise mainly in response to climate change + + + debt owed by developed countries to developing countries for the damage caused by their disproportionately large contributions to climate change + + + social movement for climate action + + + stratospheric phenomena of Earth + + + for a time-span of three years in a row + + + completely from the United States + + + exemplar of US values + + + interval immediately after a war + + + Chloropseidae, family of small passerine birds in South Asia and Southeast Asia + + + Lulus pemeriksaan. Memenuhi standar yang berlaku. + + + condition of lacking consent + + + shortening of 'nanoscale robot' + + + God willing (used mainly by Muslims or in Islamic contexts) + + + the theory or study of moral obligation + + + the doctrine that ethical status of an action lies in its adherence to a set of rules + + + the branch of physics that deals with objects on molecular or smaller scale + + + fan of the television series Star Trek and/or derivative Works + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + availability of ecological resources + + + availability of economic resources + + + measure of the number of individuals of a non-native species introduced into a given habitat + + + structural unit of an organism that assists it in reaching the next stage in its life cycle + + + literary technique + + + relating to prison + + + of or pertaining to ornithology + + + class of vertebrates + + + person who rejects COVID-19 sanitary measures + + + to mark and save a place (especially by using a bookmark) + + + fixing to + + + going to (do something) + + + to film a vlog (video blog) + + + an antisemitic person + + + substance used to accelerate a process or chemical reaction + + + competitive team shooting sport + + + a man's anus + + + attracted to females + + + reflecting or involving gender differences or stereotypical gender roles + + + having a gender identity + + + one who is not limited to a single gender identity + + + to revert a previous ban + + + of or relating to viverrids + + + one septillionth of a second + + + practice of pretending to fall for online scams for the purpose of wasting the time of the perpetrators + + + symbol that represents disagreement or dislike + + + number that cannot be reasonably predicted + + + Any longhorn beetle of the subfamily Cerambycinae + + + drunk + + + swimming at night + + + that is at a reduced cost but lower quality + + + utilizing the 5th generation standard of cellular mobile communications + + + parent of one's spouse + + + collective term for learning opportunities and learning methods which function on the Internet + + + a symbol used in Ancient Egyptian hieroglyphy + + + كَان + + + Any beetle of the superorder Coleopterida + + + to make steady + + + any beetle of the Pyrochroidae + + + Varanus flavescens + + + noval coronavirus + + + any of a variety of transportation systems relying on cables to pull vehicles along or lower them at a steady rate, or a vehicle on these systems + + + means of cable transport in which cabins, cars, gondolas or open chairs are hauled above the ground by means of one or more cables + + + any beetle in the family Lucanidae + + + any bacterium in the clade Terrabacteria + + + Anolis carolinensis + + + Spinus psaltria + + + Carduelis psaltria + + + erotic stimulation via contact between mouth and anus + + + دوا ساز + + + incest between twins + + + coal tar + + + a set of six numbers found on a cheque book, bank card, or bank letter showing which branch or office of a bank it relates to + + + office of a university that administers the accommodation buildings that are located within an uinversity and are intended to be used by students living on campus + + + show for the public where models wear new styles of clothes, usually organized by fashion designers to showcase their clothing + Carmelita had arranged to inspect her purchases by means of a private fashion show of carefully selected ​mannikins. + + + against conservative + + + clumsy, oafish, or socially awkward person + + + of a nature relating to things + + + concerned with actual things + + + interjection meaning "rubbish," "nonsense" + + + unexpectedly sharing an unsolicited personal trauma story + + + to want something very much + + + icon associated with a particular website + + + act of having become numb + + + elastic band + + + music that blends punk rock and rockabilly + + + group of eight children delivered together at the same birth + + + a group, series, or combination of eight related items + + + in music, a group of eight notes that are to be played or sung in the same time as six notes of equal value + + + a proponent or practitioner of brutalism + + + shitty, bad, very poor quality, worthless + + + any scarab beetle of the genus Glycosia + + + any beetle in the superfamily Scarabaeoidea + + + Japanese art of flower arrangement + + + mucilage secreting hair found on some plants, specifically winter buds + + + study of ants + + + relating to iron + + + containing iron + + + iron coloured + + + made up of blobs + + + covered with blobs + + + blob-like + + + job position that supervises the production of ad campaigns, and develop plans to increase sales for their clients' + + + sedimentary rock made up of fragments of preexisting rocks + + + person who actively promotes the idea that the Earth is flat + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + resembling a bun + + + a mammal in the family Hyaenidae + + + a member of the bird family Trochilidae + + + a bird in the family Anatidae + + + any owl in the family Strigidae + + + ruler, especially one of Iran, Turkey, or India + + + Notolabrus inscriptus, even when not green in color + + + to keep someone as a platonic friend, as opposed to a romantic relationship + + + having multiple flowers of different appearances + + + wearing a pigtail; always used before a noun + + + application of an electric shock in order to restore normal heartbeat + + + a tile used in mosaic + + + a small abacus or abaculus + + + border enclosing part or the entire pattern of a mosaic + + + a small tile + + + to estrange/alienate + + + to transfer ownership of property to someone else + + + court appeal + + + female baronet + + + of or related to the bird family Phasianidae + + + silent breaking of wind + + + of or relating to sideneck turtles in the family Chelidae + + + text produced for press + + + unnecessary interruption of a woman by a man + + + walking about for amusement, entertainment; promenading + + + entertainment, spectacle, public amusement + + + wealthy + + + peak protruding from surface ice sheet + + + to exercise caution + + + having an additional economic value + + + repetition of short phrases or prayers in Islam + + + equal in value to + + + deserving of + + + to commit suicide + + + (call to someone at a distance) + + + belly + + + (expression of excitement) + + + (expression of pride) + + + (expression of surprise) + + + (expression of irritation) + + + (expression of anger) + + + (expression of regret) + + + (expression of worry) + + + (expression of shock) + + + one subjected to a beating + + + branch of botany which deals with mosses; moss biology + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + branch of zoology that is concerned with the study of mites and ticks + + + the science of the therapeutic use of baths + + + branch of entomology dealing with bees + + + branch of entomology and paleontology that deals with fossil insects + + + branch of ichthyology and paleontology dealing with fossil fish + + + the study of mills and milling + + + branch of gerontology concerned with the biological processes involved in ageing + + + the study or practice of herbal medicine + + + the science of herbs or plants; botany. Obsolete. rare + + + material constituting textile fabrics + + + the type of something soft, rich, luxurious + + + children’s slide + + + that’s mine! I want a share! + + + illegal drugs + + + the study of musical instruments + + + the study of anatomical organs + + + the study of organs (the musical instrument) + + + the study of the ecology of plant communities + + + process of bringing something up to date + + + branch of anthropology primarily concerned with the comparative study of human evolution, variation, and classification especially through measurement and observation + + + directed towards, approaching, reaching + + + a round, low neckline on a woman's shirt or dress + + + person, human being + + + Māori woman or wife + + + male monarch who takes throne during childhood + + + a person who specializes in hair and scalp care and treatment of associated conditions (such as hair loss and thinning) + + + specialization within professional psychology concerned with using psychological principles to enhance and promote the positive growth, well-being, and mental health of individuals, families, groups, and the broader community + + + branch of herpetology dealing with snakes + + + the study of bats + + + branch of mammalogy dealing with the rodents + + + the study of marine mammals + + + the study of parts and the wholes they form + + + alleq + + + psychology conceived as the study of the individual act especially for meaning and intent + + + psychology concerned with the purposive factor or force in behavior + + + branch of psychology that deals with the effects of normal and pathological physiological processes on mental functioning + + + the psychology of races and peoples : folk psychology + + + any of a genus (Dasyurus) of small spotted carnivorous marsupials of Australia and New Guinea + + + deficiency in ability to pay attention or concentrate + + + branch of zoology that deals with spiders + + + a specialist in acridology + + + the science or theory of the good or goodness + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + branch of climatology concerned with the impact of climate on agriculture + + + the study of menstruation + + + the branch of neurology that studies epilepsy + + + the science of beer production + + + the study and collection of vehicle tax discs + + + the comparative study of the customs of nonliterate peoples + + + the study of the structure or function of the sensory organs + + + the branch of zoology dealing with arthropods + + + the branch of science that deals with the composition of meteorites + + + the science of geology as applied to extraterrestrial objects and other planets + + + little + + + (gender-neutral singular pronoun in all grammatical persons) + + + the scientific study of language change over time; historical linguistics + + + (archaic): linguistics + + + (archaic): nomenclature + + + the definition and explanation of terms in constructing a glossary + + + the study of the tongue and its diseases + + + the rheological properties of a biological substance + + + the branch of rheology that deals with biological substances + + + subfield of ethnobotany that studies historical uses and social impacts of fungi + + + the science that focuses on how to protect and restore biodiversity + + + the tissue structure of an organism or part, as revealed by microscopic study + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + sub-field within archaeology that uses sociocultural and archaeological research methods to understand how archaeological sites are created by living people + + + the scientific study of the bones of the horse; osteology of the horse + + + the study or science of humor + + + humorous speech, writing, or performance + + + the branch of botany which deals with aquatic plants + + + branch of zoology dealing with the mollusks + + + the art or practice of divination + + + intense fear or dislike of bees + + + intense fear or dislike of bees + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + perspirating, covered in sweat + + + the study of mites + + + that area of knowledge that deals with the structure, development, and function of the oral tissues, their interrelationships, and their relation to other organ systems in both health and disease + + + annoyed, unhappy + + + acting or thinking wildly, aggressively + + + in a difficult situation, under severe stress + + + drunk + + + unattractive, old-fashioned + + + performing superbly + + + craving an addictive drug + + + branch of psychology that deals with the psychology of language + + + a reductionist school of psychology that holds that the content of consciousness can be explained by the association and reassociation of irreducible sensory and perceptual elements + + + the science of mineral drugs + + + a form of technology that is less harmful to the environment than the usual or current form of technology + + + the branch of zoology that deals with malacostracans or (more generally) with crustaceans in general + + + the scientific study of the viscera + + + the study of the origins of things + + + government; the science of government + + + idle or vain speaking + + + the part of moral philosophy that deals with virtue, its nature, and how to attain it + + + general physiology + + + the study of oneself + + + the pseudoscientific study of bumps on the skull; phrenology + + + similarity, likeness + + + the science of diplomacy + + + the branch of herpetology dealing with lizards + + + the branch of zoology dealing with reptiles + + + the medical science concerned with diseases of the blood and related tissues + + + cartography + + + the study of manuscripts as cultural artifacts for historical purposes + + + one who is allegedly "owned" by special interests or political groups + + + refers to any kind of deliberate plan of action + + + when lawmakers send letters to government agencies in an attempt to direct money to projects in their home districts + + + the branch of physics which studies motion; kinematics + + + natural theology as illustrated by the study of stones + + + representing things by their pictures instead of by symbols + + + the study of the human mind by means of observation and experiment, rather than by deduction from general principles + + + branch of biology which treats of the development and behaviour of a living creature as affected by its environment + + + the branch of physics that deals with the properties and phenomena of light; optics + + + lore or learning relating to the dead or to the spirits of the dead + + + a system of mythology concerned with the creation of the world + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + an anthology of gnomes (collection of general maxims or precepts) + + + gnomic writing + + + technology whose use is intended to mitigate or reverse the effects of human activity on the environment + + + a theory of ethics dealing with or based on the relation of duty to pleasure + + + a branch of psychology that deals with pleasant and unpleasant states of consciousness and their relation to organic life + + + to use weasel words : equivocate + + + to escape from or evade a situation or obligation — often used with out + + + the branch of linguistics that deals with the phonemic constitution and the phonological representation of morphemes + + + theology based on myth; theology mixed with elements of popular myth + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + the study of the minute structure of organisms + + + not aroused + + + manufacturing technique in which parts having similarities in geometry, manufacturing process and/or functions are manufactured in one location using a small number of machines or processes + + + the study of idiom + + + the study or treatment of stammering + + + a branch of seismology that deals with the records of earthquake shocks registered in or near the region of disturbance + + + the branch of pathology concerned with diseases which are attributable to the effects of climate + + + a treatise on the art of assaying metallic substances, or on certain questions in obstetrics + + + the study of tests + + + the study of galvanism + + + study of fossil footprints and traces + + + the science or study of the interactions among the members of a species, and between them and their environment + + + the study and treatment of speech and language problems + + + the study or application of psychological methods and techniques useful in learning to speak a language + + + the study of the physiological systems involved in the production of speech + + + the branch of zoology which deals with zoophytes (any animal belonging to the (former) group Zoophyta, comprising certain sessile invertebrate animals, typically with a branching or radiating structure, such as crinoids, hydrozoans, sponges, and bryozoans) + + + the study of suggestion, a branch of parapsychology originated by a Bulgarian, Dr. Georgi Lozanov + + + branch of climatology + + + the observed geographic or temporal distribution of meteorological observations over a specified period of time + + + the ecology of freshwater ecosystems + + + the study of past human cultures with an emphasis on how humans interacted with the world's oceans, lakes and river systems + + + a form of performance poetry that combines elements of performance, writing, competition, and audience participation + + + the study of birds' nests + + + the scientific study of the structure and function of the placenta + + + physiology of the digestive system + + + a branch or system of theology in which God is regarded as a being, especially the supreme being + + + metaphysics; ontology + + + a study of social problems (such as crime or alcoholism) that views them as diseased conditions of the social organism + + + study of the physiology of lactation + + + the prime approach for explanation of world climates as integrations of atmospheric circulation and disturbances + + + branch of meteorology that deals with the description of the atmosphere as a whole and its various phenomena, without going into theory + + + the application of meteorological data and techniques to industrial, business, or commercial problems + + + the branch of learning that deals with the mind or thinking + + + the study of the spiritual or distinctively human aspects of humanity + + + (occasionally) a work on the mind or thinking (now historical) + + + the physics of the climate of Earth + + + designed or planned so that people with disabilities are not prevented from using something + + + without anything such as a tax or limit that prevents trade between countries or companies + + + that which is to come; in the future + + + technology applied to the modification of reproduction in humans and various other animals + + + the scientific study of marine-life habitats, populations, and interactions among organisms and the surrounding environment + + + prose, especially of a prolix, turgid, or impenetrable nature + + + the branch of zoology that deals with crustaceans + + + such that the natural homomorphism is an isomorphism + + + hypothetical iteration of the Internet as a single, universal, and immersive virtual world that is facilitated by the use of virtual reality and augmented reality headsets + + + fermented alcoholic beverage + + + subjective feeling of a decreased body temperature + + + technology designed with the needs of the largest amount of users in mind, in other words universal design + + + ideas and images which ascribe attributes to particular ethnic groups + + + what amount? + + + plant of which the root is used to kill, paralyse, or stupefy fish + + + small building in a garden + + + a small bedside table or stand + + + a certain amount of time + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + the aspect of pathology that deals with the geographical distribution of specific pathological conditions + + + the study of artifacts, features, sites, and site complexes within the broader spatial realms--both physical and meaningful--of past human experience + + + branch of sociology that studies institutions and social relationships within and largely controlled or affected by industry + + + the study of how weather impacts health + + + false Christology; an erroneous interpretation of the life and teachings of Christ + + + the study of spatial aspects of the archaeological record as a consequence of the activities of hominins at sites and in the landscape to understand, prioritize and integrate archaeological units into social and paleoenvironmental contexts and try to establish predictive models of territorial occupation + + + the branch of science dealing with statistics; the study or use of statistics + + + the science of elements + + + logic + + + the study of the principles of animal tissues + + + a system of therapeutics based on the study of the principles of animal tissues + + + a branch of biology that deals with the origin and development of acquired characters + + + possibly have, could have + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + the study of the relationships between political, economic and social factors with environmental issues and changes + + + a discipline that combines microbiology, mathematics and statistics with the objective of creating models to describe and predict the growth or inactivation of microorganisms under a series of environmental conditions + + + that cannot be described + + + the macroscopic assessment of pathology specimens + + + part of science that deals with climate study based on the growth rings of trees + + + the science of tiroes + + + in quotations, used for Elementary knowledge + + + the branch of medical science concerned with venereal diseases + + + a type of communication that takes place over the Internet when a client initiates a transaction by requesting information from a server + + + the study of social dialects; the study of linguistic variation between social groups or classes + + + a system of interactions and actors that, together, create a sustainable and successful service or experience + + + to put a blast furnace in operation + + + be girthy, wide, dense + + + be capable of producing great force + + + that makes glad + + + to meet, assemble by prior arrangement + + + to plaster over with a cement made from shell-lime and sea sand + + + ski or pair of skis designed to skim water while wearer is towed by a motorboat + + + to make a eunuch of, castrate + + + to administer the rite of confirmation to + + + to act as a missionary, do missionary work + + + to put under oath + + + moving or inclining at an angle to that indicated by "zig" + + + marked with zones, rings, or bands of colour + + + to spray particulate matter with release of gas + + + to convert into albite feldspar + + + to impair perfection; to render imperfect + + + to weigh down too heavily, overload + + + to impair the regulation of a bodily process + + + to be in a state of suspension + + + to be on punitive leave + + + of or relating to aerobic exercise + + + of or relating to the heart; cardiovascular + + + cardiovascular exercise + + + scientific consideration of diseases arising from debility + + + the anatomy of the cormus + + + newsagent’s shop + + + to convert to a binary form by reference to a threshold value + + + method of tying fabric to dye colourful patterns into it + + + to show verbal disrespect + + + bean cake made of fried black-eyed pea flour + + + (in compounds, denoting liquid used in fragrances) + + + type of evergreen tree known for its fragrant flowers + + + a fruit juice made from rehydrated dried plums + + + to convert into rock, lithic material + + + a white glutinous edible mushroom (Armillaria mucida) that is a wound parasite on the beech + + + (of a mineral) having a small portion of a constituent element replaced by ferrous iron + + + sexual intercourse with a woman + + + a woman, or women, viewed as a source of sexual gratification + + + the human vulva + + + a brood or litter, especially of kittens + + + to order again; to purchase in advance + + + request before needed + + + clumsy, awkward + + + unwieldy; bulky or awkward + + + inept or thoughtless; boneheaded + + + organic compounds that readily evalorate + + + shaped like a sword + + + of or relating to the xiphoid process + + + the xiphoid process + + + lacking zest + + + alcheringa; dreamtime, everywhen + + + archetypal supernatural beings of the alcheringa + + + the practice of gesturing with one's cane or walking stick in order to convey a meaning + + + dish + + + taken apart, dismantled + + + someone who competes in the high jump + + + upward + + + instance of examination + + + act to grab + + + to capture, obtain, taking hold of + + + act to hint + + + that wilts + + + whinging, complaining + + + to look, feel, or act sullen or despondent + + + to be or become overcast + + + to loom up dimly + + + to make dark, murky, or somber : make gloomy + + + a toxic, yellow, water-insoluble powder, ZnCrO₄, used as a pigment + + + contriving, scheming + + + that has been estimated + + + act to laugh; instance of laughter + + + manner of speaking + + + engineering that deals with the application of design, construction, and maintenance principles and techniques to the ocean environment + + + gallbladder + + + description of skulls + + + a branch of knowledge the name of which ends in -ography + + + pertaining to a plant disease that causes a relatively constant amount of damage each year + + + emissivity + + + each of two or more populations of a species that can interbreed without a decline in fertility + + + superfix + + + variety of speech, language + + + mode of thought which considers things from a scientific viewpoint + + + city that is overdeveloped and economically non-productive + + + ester or salt of palmitic acid + + + rod of organic substance forming a supporting axis for the body of many flagellates + + + serving to warn or alarm (of colours, markings) + + + process of performing an amperometric titration + + + rope by which the buoy is fastened to anchor + + + a woman’s pigtail + + + relating to, or involving biorhythms + + + recurring cyclic variation as part of a biological system + + + trousers made of blue denim + + + collection of related media packaged and sold together in a box + + + one who writes an order for goods + + + type of passenger-carrying hydrofoil propelled by a jet engine + + + amount of money held in a bank account + + + vertically upward : in an upright position + + + the act of giving a racial character to someone or something : the process of categorizing, marginalizing, or regarding according to race : an act or instance of racializing + + + by violent means + + + under compulsion + + + change of place, position, or state + + + action of changing residence + + + putting forth strategic effort for a goal + + + impelled action + + + act or process of affecting emotionally + + + act or process of attacking + + + resembling an ogre + + + a work number assigned to a musical composition or set of compositions to indicate the order in which the composer published them + + + to give a pittance to; to provide with a (small) allowance. Chiefly in passive + + + two species of forest bird in the genus Callaeas which are endemic to New Zealand + + + a person who persistently pesters, annoys, or complains + + + small Andean stringed instrument of the lute family + + + an area which has been reseeded + + + coat worn for horseback riding + + + animal that yelps or gives a sharp shrill cry + + + within, towards the inner part + + + to go, march, step + + + to hang + + + to be truthful + + + repositioning of ureter to different location on bladder + + + cohesion of particles of solid material to form a compact mass or crust + + + process of fat infiltration + + + to furnish with timber + + + to set apart + + + to put out of existence + + + unusually comprehensive or wide-ranging legal injunction + + + to act coorperatively or in cooperation + + + to furnish or adorn with tassel(s) + + + to assist or supervise in using a toilet + + + use the toilet + + + to travel often and widely + + + to protrude through an abnormal body opening + + + to take luncheon; to eat lunch + + + to engage in log-rolling + + + poor, pathetic, innocent + + + to get in touch with me; to contact me + + + to perform a lobotomy on + + + perform a lobotomy on + + + to victimize again + + + fair and just relations between the individual and society + + + to make sensitive to ionizing radiation + + + to impose racial interpretation on + + + the egg of the ostrich + + + one-sided relationships, where one person extends emotional energy, interest and time, and the other party, the persona, is completely unaware of the other's existence + + + dark + + + decking or tricking out, personal adornment + + + chilled glass or can of beer + + + to make someone appear stupid; to make a fool out of + + + a garden (especially in an urban area) maintained by the members of a community + + + resembling a ghost + + + one who plays the kazoo + + + the action of spoiling; the stripping (a person) of his or her clothes or of his or her spoil; a stripping off or removal + + + a computing environment where technology is seamlessly integrated into everyday objects and environments, becoming virtually invisible yet omnipresent, enabling seamless interaction and communication + + + a firearm made by a private individual, in contrast to one produced by a corporate or government entity + + + a complex and utterly disordered and mismanaged situation : a muddled mess + + + figure skating especially in competition in which the skater executes skating figures or steps in an arrangement of his own devising to music of his own choice + + + an instance of recording information mechanically or electronically + + + act towards an entity in a certain manner, assumption that something has a particular attribute + + + act or process of treating medically + + + act or process of affecting a change in something by applying a substance + + + act or process of buying for someone + + + act or process of handling (especially scholarly) + + + under obligation to pay + + + to fix, tidy; to smarten up + + + relating to or resembling vampires; vampiric + + + a large South African sciaenid food fish + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + characteristic of or resembling a nincompoop; foolish, simple-minded + + + a pair of stereoscopic pictures or a picture composed of two superposed stereoscopic images that gives a three-dimensional effect when viewed with a stereoscope or special spectacles + + + annoying, troublesome, disruptive + + + help, ease, get rid of, make feel better + + + pain in a phantom limb (or other phantom body part) + + + to classify again + + + Portuguese-speaking + + + act of serving as a host + + + work out terms of agreement + + + driving around in a vehicle + + + substitute + + + giving + + + to emerge during birth + + + to appear in a clinical setting + + + unsuccessful finish in a struggle + + + to recruit by headhunting + + + the quality of being noteworthy + + + where alleles (DNA markers) occur together more often than can be accounted for by chance because of their physical proximity on a chromosome + + + a rhombic vestment usually of stiff material worn by a bishop or certain other ecclesiastical dignitaries on the right hip as a sign of authority and rank + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + the presence of a pathogenic variant that is confined to the ovaries or testes, occurring when some of the sperm cells in the testes or some of the egg cells in the ovaries carry a pathogenic variant that is not found in other cells of the body + + + to suspect + + + teaching + + + take aim at + + + a topic-defined field largely pursued by psychologists studying the mass media in academic departments other than psychology; draws on cognitive psychology, social psychology, and developmental psychology + + + the process or result of an image appearing blocky or blurry, often because individual pixels become visible + + + nearly, almost + + + (archaeology) not producing, having, or including pottery + + + implementation + + + to cheat; to refuse to pay + + + a drug that lowers blood calcium + + + containing ice + + + one who determines sex, especially of animals + + + act of separation + + + to speak indiscretely; to blab + + + to systematically decrease the quality of an online platform driven by greed + + + fractional currency + + + money, funds + + + the state of being triploid + + + build up: cause to be bigger + + + leak, let forth water sparingly, letting water through accidentally or because of damage, let forth + + + begin, cause to begin + + + journal publically and electronically, online journaling + + + use, overuse + + + woman’s breast; booby + + + the application in the evolution of an alphabet of a pictorial symbol or hieroglyph for the name of an object to the initial sound alone of that name + + + the naming of a letter by a word whose initial sound is the same as that which the letter represents + + + arachnology, the branch of zoology that studies arachnids + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + to telephone + + + provide a basis for + + + a type of topology that is defined on a fiberwise space, which is a pair (X, f), where X is a topological space and f is a map from X to a base space B + + + stereotypically masculine individual working in technology + + + free-climbing a route, while lead climbing, after having practiced the route beforehand and pre-placed protection + + + the science of fire or heat; specifically the branch of chemistry concerned with the properties and (especially analytical) use of fire + + + the study of sphagnum mosses + + + the study of the relationship between the chemical structure of a compound and its biological action + + + a collection of subsets of a set ( X ) that includes the empty set, and is closed under any unions (even infinite ones) + + + person who shares accomodations; chambermate + + + any large lizard of the Old World + + + monitor lizard + + + one versed in zymology + + + a type of topology on a directed set where a subset is open if it contains all elements greater than some point — that is, it includes a "tail" of the set + + + a field of biology that combines the disciplines of evolutionary biology and developmental biology to study the relationship between evolution and developmental processes and mechanisms + + + the study of islands + + + a study of islands + + + a disingenuous or insufficient apology : a statement that is offered as an apology but that fails to express true regret or to take responsibility for having done or said something wrong + + + appertaining, accompanying, concomitant + + + to be or place in a resting position + + + recommend, send + + + state guilt or innocence, give a plea in court, misspelling of plead?, give an answer, reply to charges, usually in court + + + broken off suddenly/cut off/curtailed + + + undergone abruption (e.g. of a placenta) + + + a branch of clinical medicine concerned with human teratology + + + given a quotient map between two spaces, the quotient topology is the topology induced by this map on the codomain + + + a quasitopology on a set X is a function that associates to every compact Hausdorff space C a collection of mappings from C to X satisfying certain natural conditions + + + exclude + + + the part of anatomy which relates to the tendons + + + technical histology concerned especially with preparing and processing (as by sectioning, fixing, and staining) histological specimens + + + the influence of word structure (morphology) on the process of translating text from one language to another + + + act/process of disposing, tearing apart + + + act of making aware + + + the study of microscopic animals + + + act of throwing randomly perhaps underhand or casually + + + the study of literacy, reading, and related psychology disciplines + + + act/process of collecting together, often to merge resources (e.g. money) + + + to make people do what one wants by using (their emotions, fears, concerns, etc.) in an unfair way + + + in unfortunate circumstances/condition + + + the application of psychological methods and results to the solution of practical problems especially in industry + + + an application of technology for psychological purposes (as personal growth or behavior change) + + + systematic arrangement of synchronous events + + + the general principles, strategies, and practices used by teachers to facilitate learning in students + + + vocalize like a dog + + + act or process of appealing, attracting, indulging, placating + + + cause to reject + + + matching a speaker's lips to an audio recording + + + a branch of medical technology that is concerned with the design, preparation, and fitting of usually non-weight bearing, highly realistic prosthetic devices (as an artificial eye or finger) to individual specifications and with the study of the materials from which they are fabricated + + + the branch of pathology dealing with the microscopic study of changes that occur in tissues and cells during disease + + + of or pertaining to autosegments + + + of or pertaining to autosegmental phonology + + + movement within the museum field that emerged in the late 20th century, emphasizing community engagement, social responsibility, and a more inclusive approach to museum practice + + + technology that transmits radio frequency signals over electrical conductors like power lines; a method of sending audio or data using the existing electrical infrastructure of a building or area + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + Sophianism, a theology or system of thought based on divine wisdom + + + phrenology of dogs + + + the science of jawbones + + + the act of changing or altering the structure, style, or form of something + + + consider fully + + + crack up: cause hilarity, causing hilarity + + + crack up: go crazy, go crazy + + + act of becoming associated with + + + fill in, to complete + + + (cause to) become dizzy + + + act or process of collecting, accruing (phrasal variant) + + + misunderstanding + + + a style in art reflecting Japanese qualities or motifs + + + an object or decoration in japonaiserie style + + + head-covering worn to protect hairstyle + + + suppressing coughs + + + a period of emotional turmoil in middle age characterized especially by a strong desire for change + + + The act of making a 'whoop' sound. + + + beating + + + earn profits + + + act of firing, the termination of employment + + + bruise, causing to become or becoming bruised + + + select only the best + + + to be full of or afflicted by + + + grab quickly away from someone + + + activity of shining boots and shoes + + + to initiate a conversation + + + bring your own bottle + + + bring your own beer + + + bring your own booze + + + bring your own bud + + + shorthand for the hull-kernel topology; a standard topology used in commutative algebra and functional analysis, especially in the study of rings and operator algebras; the topology placed on the set of ideals of a ring (often prime ideals or primitive ideals) by relating two dual notions: the hull of a set of ideals = the set of elements common to all those ideals (an intersection), the kernel of a set of ring elements = the set of ideals containing those elements + + + physician specializing in urological problems affecting women + + + the act of divulging or publishing abroad + + + (as a term of endearment) a cute person; a cutie + + + act of causing motion, act of attempting to cause motion + + + a foodstuff (such as a fortified food or dietary supplement) that provides health benefits in addition to its basic nutritional value + + + any one of a group of alcohol-soluble proteins that function as storage proteins in maize kernels + + + a zebroid that is the offspring of a zebra stallion and a horse mare + + + one billion years + + + of, relating to, or capable of speed equal to or exceeding five times the speed of sound + + + a mass of ash or other loose, solid material which travels down the flanks of a volcano and along the ground during an eruption + + + marry again + + + fight + + + The process of joining in a subordinate manner, acting as a subordinate associate + + + act of moving people, troops, or goods by air (as in a war) + + + lacking kidneys; without functioning kidneys + + + to form or be formed of angles + + + seismically inactive + + + movement, interstellar + + + tendency to avoid + + + thoroughly punish, put in place + + + to hit, completive + + + to emit, spew + + + relating to or bringing about the settlement of an issue or the disposition of property + + + emotionally detached + + + not feeling interested or involved in something + + + the quality of being disengaged; freedom from ties, engagement, obligation, or prepossession + + + a generative linguistic theory that posits that word formation is a syntactic process, not a separate lexical one + + + a refinement of the standard cohomology groups of a manifold, particularly a compact Kähler manifold, defined as a specific subspace of the total cohomology and is central to Hodge theory and the Hard Lefschetz theorem + + + process of making cancerous + + + surgical incision into the abdomen + + + parenting + + + The act of making stone like through calcification literally or figuratively + + + to be cheated, get the short end of the stick + + + to grow more than one distinct cell type in a combined culture + + + imaging exam of the colon + + + growing of a blood vessel that serves the same end as another vessel that cannot adequately supply that organ + + + To be structural configured, esp. of atoms, animals + + + simultaneously transfect with two, unrelated nucleic acids, one of which carries a marker gene + + + scare + + + scare + + + meeting place of Buddhist monks + + + Buddhist monastery + + + Being decoded, deciphered + + + remove covering of a seed + + + process of removal from a locality + + + remove feather + + + act of living in or retiring to a den + + + remove gum + + + spicy sausage made of beef and lamb, and coloured with red peppers, originally made in the French colonies of North Africa + + + (cause to) lose color + + + remove tassel + + + currycel + + + mentalcel + + + decry, express low opinion of + + + introduce american currency + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + continue dreaming + + + inclined to brawl + + + characterized by brawls or brawling + + + for use in grading/digging/ground-shaping operations + + + of great significance + + + The act of listening surreptitiously + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + Being able to induce vomiting + + + characteristic of a paticularly whiny form of punk rock + + + The act of dispersing in an emulsion + + + remove a tube from + + + cause to create an abnormal passageway + + + intentionally touch, phrasal + + + in favor of, supporting + + + work independently on temporary contracts, working independently + + + pick by hand + + + insertion of a hand (or fist) into an orifice (for example, the vagina or anus) as part of sexual behavior + + + relating to or involving the sexual practice of inserting a hand into a partner's body + + + personal pronoun + + + inaccessible place + + + building containing trophies erected by Artemisia (fl. C4 BC) in Rhodes, closed to all but a select few + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + heavy timbers forming the frame (typically left exposed, especially for decorative effect) of a house, wall, or storey, the gaps in between the timbers being filled with any of various materials such as bricks, wattle and daub, etc. + + + boarding added to a house to give a similar decorative effect + + + Shipbuilding. Each of a number of timbers in a ship's frame which do not cross the keel, but have their lower ends butted against the centreline timbers, typically used at the ends of the ship, and able to be arranged at angles other than a right angle to the keel. + + + Architecture. Each of the timbers used in constructing a half-timber building; (also) a timber used decoratively on a building to give the appearance of half-timber construction. Usually in plural + + + lose (blood) quickly + + + treat with heparin anticoagulant + + + Being linked to another thing or more things together + + + within the thorax + + + free; release from captivity, particularly with intent to harm another + + + communicate poorly, or failingly + + + communicate poorly, or failingly + + + to route incorrectly + + + printing text too small to be seen by the naked eye + + + small scale agglutination of red blood cells + + + match people together, usual romantically + + + bringing to market or open-market-style managment + + + of or relating to lysis or a lysin + + + stir up, confuse, completive + + + having only one form + + + act or process of mud, or mud-like material, and water flowing as a stream or river down a slope; mudspate; lahar + + + not tested + + + flood with too much + + + CAUSE a fit, such as in a complex model + + + coat to protect from corrosion + + + attacking with napalm + + + to oppose or deny + + + spray with mace (or similar) + + + in the vicinity of or relating to the portal vein + + + player of game in midfield position + + + organization + + + composition or writing of songs + + + experiencing partial paralysis + + + become a parasite to a host + + + to plug or cause blockage + + + zipcode + + + use the Yahoo search engine or website + + + spend the winter + + + beat + + + skype, video chat + + + not accomplished with difficulty + + + predict to be less than is true + + + set into type + + + ignore, pay no heed to + + + act of drinking or celebrating before an event or outing + + + make beforehand + + + state before another occurrence + + + to drain + + + the act or process of concentration into one location + + + inform again + + + ingest again + + + to enhance appearance (by landscaping) again + + + act or process of binding again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + hit with radiation again + + + emit or project, again + + + reassess the progression of a disease + + + check (for), examine (again), check for or examine, again + + + the act of resending again + + + splitting, developing a fissure + + + render into pieces + + + to defame, bring shame, or publicly disgrace + + + at a pace of about 120 steps per minute + + + to hold as one's own identity, regard oneself as belonging to a particular group + + + eccentric, idiosyncratic; erratic, random + + + cover with a shawl + + + act or process of ascension or descension + + + to leave quickly + + + to impale, as if on a spike or spindle + + + make a spoon-like formation (cuddle?) + + + begin to harangue + + + deflect an opponent using straight, stiff arms (maybe metaphorical) + + + to remove + + + to examine closely + + + to work remotely usually via computer + + + act or process of converting a greyscale image to a binary image + + + trail off: come to an end + + + deviating, diverting from a straight/right path (that swerves) + + + dance hall; venue for dancing + + + a person, referenced derisively; buffoon + + + a little, a small amount + + + cardinal number between 19 and 21 + + + what person + + + person or people that + It was a nice man who helped us. + + + which mode + + + the number 3 between two and four + + + single person, previously mentioned, of unknown or non-binary gender + + + group of people, animals, plants or objects previously mentioned + + + some people; someone + + + (first-person singular personal pronoun) speaker or writer of a sentence + That belongs to me, not you. + I am Ozymandias, King of Kings! + + + inanimate object or animal + + + child of unknown gender + + + referring to the situation in general + + + single, specific person + + + to be obligated + + + (word used with the present form of a verb to mark it as being an infinitive) + + + referring to a thing or things that exist + + + above, higher in altitude + + + more than a few + + + One more further, in addition to the quantity by then; a second or additional one, similar in likeness or in effect. + Yes, I'd like another slice of cake, thanks. + + + A word used to show agreement or acceptance. + + + affirmative option provided in a binary vote + + + Earlier than (in time). + I want this done before Monday. + + + spatial position in relation to two objects, on each side of the subject + + + Having been determined but not specified. + Certain people are good at running. + + + other, different + + + within the interior of something, closest to the center or to a specific point of reference + + + because + + + not including + + + person who is unrefined or unsophisticated + + + initiative to increase goat inclusion and awareness + + + device for cutting wood into small pieces + + + one of the longest single-word palindromes in the English language + + + Used in scholarly works to cite a reference at second hand + Jones apud Smith means that the original source is Jones, but that the author is relying on Smith for that reference. + + + according to the type and power of units + + + design something structural + + + to confine (usually in a small space) + + + using instruments + + + dig a hole + + + request for confirmation + + + offset of local time from UTC + + + earth region with a particular time standard + + + denoting thoughtfulness + + + Expression of awe, terror, surprise or astonishment + + + something belonging to + + + remain unsettled; wait + + + to send an SMS message from a mobile phone + + + to + + + relating to sound waves that have been electronically recorded, transmitted, or reproduced + + + dance + + + difference + + + genomic repeat analysis + + + to rouse or disturb someone + + + unpeg + + + the application of modern technology to agriculture + + + vegetable oil- or animal fat-based diesel fuel + + + study of chemical cycles of the earth that are either driven by or influence biological activity + + + one thousand million + + + type of government department in Imperial Russia, established in 1717 by Peter the Great + + + situation when futures prices are above the expected spot price at maturity + + + any bird in the family Corvidae + + + select art, food or other items for display + + + wind storm + + + burn from compression rather than a spark + + + northern region of US state + + + natural number + + + field of engineering + + + term in cell biology + + + relating to federalism + + + undergo fibrosis + + + The covalent attachment and further modification of carbohydrate residues to a substrate molecule. + + + chemical or geological term + + + study of gems + + + pertaining to geochemistry + + + branch of geology + + + interdisciplinary field + + + geographic information processing + + + swivel about a gimbal support + + + related to sugar in food + + + study of life in water + + + fluid mechanics of water + + + relating to high pressure + + + device that can be implanted + + + exchanging between different transportation modes + + + flat and thin + + + involving use of a laparoscope + + + brain disorder + + + saving lives + + + act involving rescue, resuscitation and first aid + + + symbiotic arrangement + + + study of metabolites + + + pertaining to microchemistry + + + miniaturized devices + + + having nanoscale structure + + + relating to naturopathy + + + relating to neurodegeneration + + + able to function without damaging anything + + + pertaining to oceanology + + + incorporating optical and electronic elements + + + initialism for "Laughing Out Loud" + + + travel excessively fast + + + physiology of disease causation + + + biochemical process + + + pertaining to the kinetic effects of light + + + study of creation and manipulation of photons + + + medical specialist + + + relating to a presbyter + + + medical specialty involving lungs + + + medical specialist in pulmonology + + + surgery using radiation + + + application of spectroscopy in chemistry + + + specialist in stomatology + + + line of fluid flow + + + under the sea + + + study of causes and other aspects of suicide + + + study of certain nonequilibrium systems + + + type of molecule + + + appealing to or stimulating the appetite + + + from within/the inside + + + in a manner that lasts (over a long period of time) + + + railroad track construction + + + transcending the personal + + + extremely low weight + + + receiving insufficient service + + + disconnect a latch + + + make new + + + using an item again after it has been used, instead of recycling or disposing + + + catholicos, high-ranking bishop + + + digital medium of exchange + + + person, usually a coffeehouse employee, who prepares and serves espresso-based coffee drinks + + + heraldic memorial to a deceased person + + + type of scientist + + + type of rice + + + type of house in Provence + + + historic fortified town in France + + + semiotics in a biological context + + + low quality diamond + + + data-driven chemistry research + + + person who contributed to founding an organization + + + type of guitar + + + animal adapted for running + + + organism that lives on the surface of another organism + + + promotion of the esoteric + + + printed interactive story + + + type of sauce or edible glaze + + + type of food item + + + subgenre of techno + + + rubble or broken bricks or stone used as a foundation + + + first-level administrative division in several countries + + + bond-breaking enzyme + + + cell undergoing a type of transformation + + + process of adding a methyl group + + + smallest type of automobile + + + main circuit board of a computing device + + + in an abrasive manner + + + in an abridged manner (briefly/concisely) + + + in an engrossing or riveting manner + + + in a manner of taking in/soaking up/etc. something + + + usually; generally; ordinarily; used for saying what usually happens + + + in accordance with expectations + + + 彆扭 + + + unsuccessfully/unprofitably/uselessly (without success/advantage) + + + without cause or reason + + + in a comfy way; comfortably + + + without comfort (in a comfortless manner) + + + in a conscienceless manner + + + with a creamy tint or surface; in a creamy or smooth manner + + + done in a manner that has loud and muffled sounds + + + in a dancing/capering manner + + + in a detailed way, in a way that goes through small aspects of a thing + + + in a dorky manner + + + in an envying manner + + + in a homeless manner + + + in an impolitic manner + + + with small changes over time + + + with secret machinations (in an intriguing manner) + + + gloomily + + + during the late hours of yesterday + + + with a boring delivery + + + in a lonesome manner + + + in a mistakable manner + + + with regard to a neuron or neurons + + + continuously/without interruption + + + having/expressing no passion/enthusiasm/excitement + + + following hospitalization, after one has been released from a hospital + + + in a pouring manner + + + in the manner of a psychopath + + + in a racist manner + + + in a seamless manner + + + arrangement of people or items to the side of one another, facing the same direction + + + without the ability of sight + + + extremely well + + + in a spineless manner + + + In a lively and vigorous way; sprightlily. + + + done in an elegant manner + + + with nothing on the upper body + + + in a triennial manner + + + mot pour mot + + + infectiously + Whether this mass of filth [wet house-refuse] be, zymotically, the cause of cholera, or whether it be (as cannot be questioned) a means of agricultural fertility, and therefore of national wealth, it must be removed. + + + type of psycho-active chemical + + + type of enzyme + + + range of radio frequencies + + + embedded kink in the trough / ridge pattern + + + largely empty region in a galaxy + + + type of capacitor + + + to solicit assistance from public + + + Latin phrase + + + create incentives for, motivate + + + professional who promotes, plan and writes new or existing policy regulations around politics + + + use of electronic communication for bullying or harassment + + + the microscopic examination of tissue in order to study and diagnose disease + + + in the middle of + + + site of an earthquake or a nuclear explosion + + + unable to see the big picture + + + A field of study involving the use of computer systems to perform statistical operations. + + + geometric object + + + equal + + + Indian or Pakistani dish + + + physical quantity + + + (horticulture) the art of raising plants at an earlier season than is normal, especially by using a hotbed + + + cardinal number + + + cardinal number + + + breeding different varieties + + + think about too much + + + protein + + + study of animal communication through signs + + + to make abnormal + + + to become abnormal + + + to turn into prose; to render unpoetic + + + examine closely or learn again + + + to make arid + + + to cut again; to cut a subsequent time/number of times + + + become a parasite to a host + + + less than ideal + + + a man explaining something to a woman unasked and in a condescending manner + + + act of giving the rights and/or possession of something to the person or institution in charge of its conservation + + + collection of blood and connective tissue outside the wall of a blood vessel or the heart + + + act or process of attaching a biotinyl residue + + + Protection mechanism used by plants under conditions of excess energy absorption as a consequence of the light reactions of photosynthesis. + + + person with enough information and competence to act as a source + + + recording and measuring variation in the volume of a part of the body + + + combination of the principles of supersymmetry and general relativity + + + single, closely packed layer of atoms, molecules, or cells. In some cases it is referred to as a self-assembled monolayer. Monolayers of layered crystals like graphene and molybdenum disulfide are generally called 2D materials + + + first step in the formation of either a new thermodynamic phase or a new structure via self-assembly or self-organization + + + the quality of being tremendous + + + Very large city with a total population in excess of ten million people + + + arrangement in which a woman carries and delivers a child for another couple or person + + + piece of DNA or RNA obtained by amplification or chain reactions (PCR, LCR) + + + forms of a protein produced from different genes, or from the same gene by alternative splicing + + + wetland terrain without forest cover, dominated by living, peat-forming plants + + + micron-sized bubble + + + class of modified proteins + + + class of enzymes + + + formation of muscular tissue, particularly during embryonic development + + + inject into a tissue or living cell + + + cell type that makes up cartilage + + + person who studies or applies neonatology + + + system that prevents Internet users from accessing webpage content without a paid subscription + + + breathe with difficulty + + + class of broad-spectrum antibiotics + + + device that compares two voltages or currents + + + mechanical component for transmitting torque and rotation + + + structure that uses a water wheel or turbine to drive a mechanical process + + + The act of making, digging a burrow + + + neopronoun + + + ancient coin of the Roman Republic and Empire + + + interjection used as an expression of surprise, fear, or astonishment + + + surface for nonpermanent markings + + + used to make a polite request + + + Used as an affirmative to an offer + + + an angry expression on a face + + + sequence in a video game that is not interactive, breaking up the gameplay + + + helping to commit a crime or do wrong in some way + + + Although, despite (it) being. + + + combination of two or more academic disciplines into one activity + + + pejorative term for a person expressing or promoting socially progressive views, including advocacy of feminism and civil rights + + + salutation used in the morning + + + dress in costume as a pop culture character + + + try too hard to do what another person wants, especially in a romantic relationship + + + take away funding + + + to share or reveal too much information + + + the act of causing something to happen by taking action, performing, or doing something + + + serve time (usually a sentence but could be an appointment) + + + nominal version of light verb + + + a child's chair with long legs, a footrest, and usually a feeding tray + + + restrain, delay + + + bubbling up under influence of heat; at boiling temperature + + + About, regarding, with reference to; used especially in letters, documents, emails and case law. + Re A (conjoined twins) [2000] EWCA Civ 254 + + + Without disrespect to. + + + Taking into account. + Considering the extent of his crimes, he was given a surprisingly short sentence. + + + Concerning, respecting. + + + Forth from; out of. + + + Different from; not in a like or similar manner. + The disgust I felt after watching last weekend's horror movie was unlike anything I had felt before. + + + toward the top + + + near + + + Without, except, but. + + + Among, in the middle of; amidst. + Mildred comes home from work early only to discover her husband, Robert, midst of a lewd affair with their neighbor, Gladys. + + + As soon as; when; after. + We'll get a move on once we find the damn car keys! + Once you have obtained the elven bow, return to the troll bridge and trade it for the sleeping potion. + Once he is married, he will be able to claim the inheritance. + + + When. + + + While on the contrary; although; whereas. + Where Susy has trouble coloring inside the lines, Johnny has already mastered shading. + + + Used to introduce a clause, phrase, verb infinitive, adverb or other non-noun complement forming an exception or qualification to something previously stated. + You look a bit like my sister, except (that) she has longer hair. + I never made fun of her except teasingly. + To survive, I did everything except steal. + Come any time except between ten and twelve. + + + to which + + + Relatively large but unspecified in number. + She's taking umpteen friends with her to the party. + + + Word called out by the victor when making a move that wins the game. + + + Used to express approval, joy or victory. + Lizzie has broken a world record, and she is now an Olympic medallist! – Hooray! + + + An expression showing that a requirement has been satisfied. + Keys? Check. Batteries? Check. We are all ready to go! + + + Used as a discourse marker. + “So, what have you been doing?” “Well, we went for a picnic; and then it started raining, so we came home early.” + “The car is broken.” “Well, we could walk to the movies instead.” + “I didn't like the music.” “Well, I thought it was good.” + I forgot to pack the tent! Well, I guess we’re sleeping under the stars tonight. + It was a bit... well, too loud. + + + An exclamation of respectful or reverent salutation, or, occasionally, of familiar greeting. + + + Indicates agreement with another speaker's previous statement. + "I am a great runner." "Indeed!" + + + Indicating disapproval, scoffery, irritation, impatience or disbelief. + Pshaw! I can't believe it! + + + An expression of disgust, rejection, or disappointment. + + + A radio procedure word meaning that the station is finished with its transmission and does not expect a response. + Destruction. Two T-72s destroyed. Three foot mobiles down. Out. + Welp, I got nothing else to say. Mikey out. + + + be quiet(er); stop talking or making noise, or make less noise + + + general interjection of confirmation, affirmation, and often disapproval. + + + Used to express surprise, shock or amazement. + My, what big teeth you have! + My, you’re a pretty one! + + + of, like, or pertaining to a dictator + + + field of machine learning + + + a faulty annotation + + + economic philosophy questioning growth + + + word which is not originally an acronym which is turned into one by creating a suitable phrase for it + + + type of climate model + + + digestive process in ruminants + + + power per unit area received from the Sun in the form of electromagnetic radiation + + + process of long-term carbon capture + + + assessment of relative vulnerability to climate change and its effects + + + term linking the climate crisis with environmental and social justice + + + salutation used at night + + + Greeting given upon someone's arrival + + + ellipsis of you're welcome + + + for identification to police + + + sequence of musical performances + + + pertaining to a period shortly after a war + + + previously undiagnosed medical or psychiatric conditions that are discovered unintentionally and during evaluation for a medical or psychiatric condition + + + "sub-region" or alternate superluminal travel depicted in science fiction + + + athletic event or race combining three sports, usually swimming, cycling, and running + + + A person adhering to one of several contemporary Pagan religious traditions + + + forum on Reddit + + + fail to ensure funding + + + quality of being out of place, inharmonious or not appropriate + + + an album produced in a studio + + + pastry + + + fart + + + when one is set to accept a challenge + + + when something is going ones way + + + response to sneezing + + + said about someone who controls a given area + + + ofay; usually derogatory term for a white person + + + sugared fried pastry + + + relating to the animals of a particular region, habitat, or geological period + + + preserve by freezing + + + a jar for holding water + + + document describing a nation's plan to mitigate climate change + + + ethological class; "escape traces," formed as a result of organisms' tunneling out during high sedimentation events + + + ethological class; traces of organisms left on the surface of soft sediment + + + A well in the form of a vertical hole constructed by boring + + + molecular allotrope of lithium known in the gas phase + + + fictional material in Star Trek + + + to have been fortified or reinforced using corundum + + + wireless connection + + + blue or green + + + horror-related legend or image that has been copy-and-pasted around the Internet + + + cisgender + + + someone who is cisgender and heterosexual + + + laughing my ass off + + + member of a crew + + + vaccinated + + + an actor who specializes in pornography + + + resembling the influenza disease + + + a colloquial or informal way to say goodbye or farewell + + + romantically attracted to two or more genders + + + attraction to women + + + of a person not limited to a single gender identity + + + one whose attraction to others is not limited by gender + + + mostly heterosexual but not completely + + + outdoor camping with amenities and comforts not typically had while camping + + + of or relating to elites or elitism, such as: giving special treatment and advantages to wealthy and powerful people + + + of or relating to elites or elitism, such as: regarding other people as inferior because they lack power, wealth, or status + + + at + + + an account's username on social media + + + a mention on social media + + + the at symbol + + + Any of four species of frog, all of whom make sounds similar to banjos; which live in southeastern Australia + + + drunk + + + drunk + + + drunk + + + a particular drug used to treat ADHD + + + unable to be found in a Google search + + + any beetle of the family Carabidae + + + a dish of rice, black-eyed peas, and bacon or pork + + + Sikh place of worship + + + act of sending sexually explicit messages between mobile phones + + + having a haunched back + + + process of raising a child + + + a hooded sweatshirt, jacket, or sweater + + + a European crow, Corvus corone cornix + + + the name of an insect + + + any fly of the family Phoridae + + + any lepidopteran of the family Hesperiidae + + + any insect of the clade Ditrysia + + + Cnemaspis karsticola + + + an Asian person, particularly one of a Pakistani and/or Punjabi background + + + male friend, accomplice, associate + + + a nut having an outer shell that becomes tough and dry and eventually splits open, as in the walnut and hickory + + + knife + + + type of n-gram where n is 5 + + + provide again + + + replenish with supplies + + + music genre + + + crime against property, involving the unlawful conversion of the ownership of property to one's own personal use and benefit + + + milk + + + to hit someone on the buttocks + + + children’s game + + + zebra or similar (notably equine) animal + + + a person who enjoys rain and rainy days, and who is fascinated by the sights, sounds, etc., of rain + + + a beetle of the suborder Adephaga + + + a non-lethal explosive which emits a large amount of light when detonated, temporarily blinding opponents + + + any tardigrade of the order Arthrotardigrada + + + light snack of bread, cheese, and beer eaten between meals + + + fabric with yarns tie-dyed before weaving + + + having a large penis + + + bread-like + + + a poster + + + relating to science fiction + + + someone against imperialism + + + money earned from the sale of oil + + + hybrid mandarin citrus variety + + + Correct, right + + + Japanese syllabary, mainly used for loan words and scientific terms + + + device repurposed for sexual use that was originated for an unrelated use + + + moons of moons + + + be very careful about ones actions or words + + + a rodent in the Muridae family (rats and mice) + + + rodent in the family Geomyidae (pocket gophers) + + + the number between 35 and 37 + + + the number between 20 and 22 + + + any bird of the family Troglodytidae + + + any ant in the family Formicidae + + + of, relating to, or resembling the ostrich + + + a member of the ostrich genus Struthio + + + any lizard of the family Gekkonidae + + + of or relating to the moth family Saturniidae + + + any moth in the family Crambidae + + + Any beetle in the family Buprestidae + + + Eucalyptus doratoxylon, a species of eucalyptus + + + abbreviation of 'chapter'/'church' + + + a member of the rodent family Castoridae + + + one who uses an abacus for calculation + + + type of fast moving cold weather front + + + of or relating to the mammal family Castoridae + + + implies affirmation + + + uninvite, rescind an invitation + + + any mammal in the family Tenrecidae + + + destroyed by bombing + + + forced to leave a place because of bombs + + + destroyed or severely damaged as if by bombing + + + extremely dilapidated or run-down + + + homeless through bombing + + + courtesy clerk at a supermarket + + + any salamander in the family Hynobiidae + + + of or relating to the marine mammal family Balaenopteridae + + + washing away of material by rain + + + type of briefcase + + + room in which bookings are arranged + + + wallet + + + (expressing affirmation, agreement, or admiration) + + + unnecessary interruption of a woman by a man + + + Inuit shaman + + + (first person plural reflexive pronoun) + + + impertinent; having chutzpah + + + one of two equal parts of + + + payment in kind + + + to request assistance + + + prior to a sporting season + + + Islamic creed declaring belief in monotheism and Muhammad's prophethood + + + Lesser Hajj + + + one who or that appears + + + one who formally appears (in court, etc.) + + + one who or that causes an event or occurence + + + branch of zoology that is concerned with the study of mites and ticks + + + the study of demons or evil spirits + + + belief in demons : a doctrine of evil spirits + + + a catalog of enemies + + + branch of entomology dealing with bees + + + branch of entomology concerned with Hymenoptera + + + scatology + + + pornography + + + branch of zoology dealing with copepods + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + branch of entomology that deals with Hemiptera (the true bugs) + + + study of the structure of cells + + + the study of extraterrestrial life forms + + + the study of the creation, synthesis, and manipulation of life systems + + + woven from flax + + + children’s game similar to hopscotch + + + flattened tin can used as a puck in children’s game of the same name + + + concerned, attentive + + + to make silent: deaden + + + seed of the orange fruit + + + child + + + the study of hair and scalp + + + animal pathology + + + science that deals with ferments and fermentation + + + branch of entomology that is concerned with the Neuroptera + + + geology of the ocean floor + + + the study of marine insects + + + branch of zoology concerned with worms + + + branch of zoology dealing with earthworms + + + branch of psychology that emerged during the 1950s as a response to psychoanalysis and behaviorism, that takes the approach that all people are inherently good + + + branch of psychology devoted to studying similarities and differences in cultures worldwide + + + field of psychology devoted to understanding the individual’s relationship with their community as well as how that community fits in with the larger society + + + area of psychology that centers on using psychological principles to understand consumer behavior + + + vital energy as an urge to purposive activity + + + psychoanalysis + + + a horny band or ribbon in mollusks other than bivalves that bears minute chitinous teeth on its dorsal surface and scrapes or tears off food and draws it into the mouth + + + that operates smoothly + + + triangular, with the apex at the base or pointing downward + + + soils that have a mollic horizon more than 20 cm deep and also concentrations of calcium compounds within 100 cm of the surface + + + ring-shaped Turkish bread roll + + + study of the relationship between the nervous and digestive systems + + + part of theology treating the doctrine of sin + + + scientist who studies volcanic phenomena + + + branch of meteorology that deals with rain + + + the study of the relationship between human beings and the natural world through ecological and psychological principles + + + the investigation or analysis of enigmas + + + branch of biology that deals with electrical phenomena in living organisms + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + ecology of all or part of a small community (such as a microhabitat or a housing development) + + + microbial ecology + + + the practice or study of predicting the participants in or outcomes of elimination tournaments or competitions especially in NCAA college basketball + + + the study of truth; that part of logic or philosophy which deals with the nature of truth + + + the study of algae + + + branch of zoology that deals with the amphibians + + + the science of colors + + + a wind out through a fjord + + + an examination of the bodily functions and condition of an individual + + + branch of zoology that deals with shells + + + honey (term of endearment) + + + the correlation in time of biological events using fossils + + + branch of sociology involved with comparison of the social processes between nation states, or across different types of society + + + branch of botany concerned with grasses + + + the study of how education and society influence each other + + + the study of substances that stimulate or increase menstrual flow + + + a treat on emmenagogology + + + the study of, or a treatise on, the plague or pestilential diseases + + + the scientific study of microseismic activity + + + the scientific study of mycoplasmas + + + specialist + + + the study of the institutional activities of religion (such as preaching, church administration, pastoral care, and liturgics) + + + the branch of psychology that deals with perception and the interpretation of sensory stimuli + + + the systematic study of phantasms or other illusions + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + a narrative of the miraculous deeds of a god or hero + + + the study of brambles + + + one who specializes in the study of brambles + + + a double reading or twofold interpretation (as of a biblical text) + + + the study of food + + + an interpretation of Christianity which promotes the liberation of black people from oppression, racism, and poverty + + + a psychology that emphasizes sensory experience as its object of study + + + the science or study of ferns + + + the science dealing with watercourses + + + the distribution of diseases in a geographical sense + + + the study of subterranean organisms and ecosystems + + + the study of flowers as related to their environment + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + theology illustrated or enforced by evidences of purpose in nature + + + branch of sociology dealing with the study of rural communities and the rural way of life + + + small-scale sociological analysis that studies the behavior of people in face-to-face social interactions and small groups to understand what they do, say, and think + + + the study of large-scale social systems, populations, and the broad social processes that affect them + + + the study of pathways + + + in neuroscience, the study of the interconnections of brain cells + + + the division of historical events, literature, artefacts, etc., into chronological periods + + + the study of the nervous system at the cellular (neuronal) level + + + the study of the embryology of the nervous system + + + microscopy + + + a treatise on odours + + + the study of odors + + + the study of the relationship between human beings and the climate + + + a branch of physiology that deals with secretion and secretory organs + + + the study of diseases of fish + + + J. Braid's name for: hypnotism + + + the study of snakes + + + the study of the living organisms, mainly microorganisms and microinvertebrates which live within the soil, and which are largely responsible for the decomposition processes vital to soil fertility + + + animal physiology + + + the field of study concerned with the relationship of extinct animals and animal fossils to geology + + + animal ecology + + + the art and science of healing + + + library support staff + + + the study of the physiology of blood + + + the study or use of omens; divination + + + plant physiology + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + the branch of biology concerned with congenital defects and abnormal formations of plants + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + the comparative study of inland waters as ecological systems that interact with their drainage basins and the atmosphere + + + space weather; the study of the meteorology of near-Earth space + + + the study of virginity + + + the study or practice of fishing + + + ichthyology + + + the serological study of the prevalence and distribution of a pathogen in a population + + + the science or study of toreutics + + + the application of legal requirements to measurements and measuring instruments + + + subfield of meteorology which deals with the weather and climate as well as the associated oceanographic conditions in marine, island, and coastal environments + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + the application of statistical correlation techniques to a series of meteorological observations + + + the study of the interaction between the sea and the atmosphere + + + branch of psychology applied to aspects of religious belief and behavior + + + the use of technology to assist human reproduction in the treatment of infertility + + + the study of poverty, begging, or unemployment + + + the art or practice of calculating or casting horoscopes + + + in mathematics, the étale cohomology groups of an algebraic variety or scheme are algebraic analogues of the usual cohomology groups with finite coefficients of a topological space, introduced by Grothendieck in order to prove the Weil conjectures + + + technology that avoids environmental damage at the source through use of materials, processes, or practices to eliminate or reduce the creation of pollutants or wastes + + + technology that automatically identifies and verifies the identity of an individual from a digital image or video frame + + + to make impervious to water vapor + + + (reflexive third-person singular impersonal pronoun) of its own self + + + would + + + after a certain amount of time + + + the speech of two + + + the study of streamflow hydrology and fluvial processes + + + sudden death from overwork + + + discipline within Christian theology that focuses on the study of the Holy Spirit + + + the study of spiritual beings or phenomena + + + state of being dysfunctional + + + the systematic study of folk tales, legends, and the like, esp. with regard to their origin and development + + + the branch of archaeology which deals with prehistory + + + the study of the bow in archery + + + hydrology of continental water masses + + + the sciences of oceanography, climatology, and biogeography regarded collectively (rare) + + + the geological, chemical, and other processes of the Earth regarded as interdependent and analogous to the physiological processes of a living organism + + + a holistic vision in which monetary reform, participative democracy, meaningful work, social justice, and equality are all of a piece with renewable energy, organic agriculture, protection of wildlife, recycling, and non-polluting technologies + + + list of woes; particularly long or tedious list of items + + + the branch of anatomy which treats of the fleshy parts of the body + + + a theory that a part of the animal body taken into the human system nourishes or affects a corresponding part + + + to litigate again + + + to have a difference in position regarding a decision + + + to be opposed or adverse to + + + to oppose the granting of a patent to a mining claim + + + inopportune circumstance + + + a woman’s period + + + day of a momentous event + + + instrument of the Western lute family with stopped courses considerably longer than those of a lute and with a separate nut and pegbox for a set of longer, unstopped bass strings + + + intersection of transphobia and misogyny + + + plumose + + + to bind by an oath or solemn engagement + + + to reduce to zero; to eliminate, remove, omit + + + to move or incline at an angle to that indicated by "zag" + + + to be the colour yellow, between orange and green on the visible light spectrum + + + of a geological structure or formation, to present the apparently younger side (in a specified direction) + + + (exclamation of pleasurable anticipation for the taste of food) + + + to force to walk with hands behind the back; to frogmarch + + + escort + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + to produce one or more amine groups + + + to strike out, hit + + + to cause to undergo a change of form, nature, or character + + + type of heavy coconut-milk-based stew prepared in the Caribbean; boil-up (in Belize), metagee (in Guyana) + + + to be experiencing shame + + + a discourse or treatise on cartilages + + + branch of anatomy concerned with cartilage + + + the entire body or colony of a compound animal + + + to flow in or into a canyon + + + to dig, grub about for something; to rumnage + + + to work out the pillars of abandoned claims + + + in gold mining, to undermine another’s digging + + + (of a man) to have penetrative sexual intercourse with + + + to bend a part of the body towards its dorsal surface + + + houseleek + + + of consitional allowance for the present + + + (used in borrowed French compounds) of + + + clumsiness, awkwardness, or gawkiness + + + a grumpy person who spoils the pleasure of others : killjoy, spoilsport + + + a mean-spirited, spiteful person + + + Australian aboriginal girl + + + traditional flooring of Japanese living rooms, but also temples, etc. + + + the study of the changes in flow properties that occur in certain fluids exposed to electric fields + + + person who is unwilling to settle for long in one place + + + a meal served to all guests at a stated hour and fixed price + + + a complete meal of several courses offered at a fixed price + + + a communal table for all the guests at a hotel or restaurant + + + that does, acts, performs + + + that intends; having intentions + + + that strangles + + + on account of; by reason of + + + to abandon a relationship + + + penis + + + act of giving thanks; expressing gratitude + + + inspecific name for various skin diseases + + + scab or the like formed from a skin disease + + + someone who soliloquizes + + + process of adding, deleting, or modifying genetic sequences in living cells to achieve biological engineering goals + + + a tropical freshwater fish (Paracheirodon innesi) of northern South American streams + + + a volatile poisonous pale yellow solid, OsO₄, with a pungent smell, used as an oxidizing agent and in solution to stain and fix biological material, especially lipids + + + writing or painting on or in wax + + + a quantitative description of the climate in a particular region or country; the branch of physical science which deals with this + + + examination of objects with the unaided eye + + + abnormally large handwriting + + + a diagnostic imaging technique that detects and records magnetic fields produced by electrical activity in the brain + + + a biography which gives particular emphasis to the psychological make-up or development of its subject + + + venography + + + the process of making a tracing made with a sphygmograph that records the pulse in a vein + + + anatomical description of the veins + + + the process or technique of obtaining salpingograms; visualization of a fallopian tube by radiography following injection of an opaque medium + + + description of symptoms + + + the description or study of the planet Jupiter + + + insecticide that is a stereo-isomer of dieldrin + + + a method of using pollinating insects to spread a substance that protects plants from pests and diseases + + + a pollinating insect that spreads a substance to control plant pests and diseases + + + characterized by three poles + + + adherent of transformational theory + + + phonological feature of an utterance other than the consonantal and vocalic components + + + language variety used by a particular social group or class + + + sound-producing part of an instrument + + + commodity to be or that has been exported again + + + articulated with the tongue raised towards the palate and its tip against the alveolar ridge + + + pertaining to features and relative position of mountains + + + instrument used to measure the adaptation of the eye + + + linguistic macro-system treating variants between dialects as part of a continuum + + + penetrometer + + + natural bed for oysters + + + light, loose-fitting shirt worn by men in hot climates + + + permitted, authorized; not forbidden + + + sanctified; religiously or morally permissible + + + a unit of computing information that is represented by a state of an atom or elementary particle (such as the spin) and can store multiple values at once due to the principles of quantum mechanics + + + the smallest unit of information in a quantum computer, existing in a superposition of two states (1 and 0), and settling on one state or the other only when a measurement of the state is made in order to retrieve the output of the computation + + + type of mineral + + + an ancient Greek and Roman stringed musical instrument similar to the lyre + + + a woodwind instrument of the 16th and 17th centuries, typically curved, with finger holes and a cup-shaped mouthpiece + + + belonging to, or relating to an inner-city neighbourhood + + + faithful or in tune with the culture of an inner-city neighbourhood + + + to travel or move by foot; to walk or run + + + small bowl or container + + + small pick-up truck or ute + + + formation of barm on a fermenting liquor + + + accruing of interest upon money + + + fine, grand, smart or attractive + + + good, great, excellent + + + lovely, sweet + + + sportsperson taking part in judo competitions + + + to free from schackle or fetter + + + to undo sewing of + + + to exclude (a person) with coldness and disregard + + + to make cancerous, affect with cancer + + + fourteenth century + + + to make or render artificial + + + to add over and above + + + to convert by contraposition + + + beatify + + + to overlook; to have a view of + + + to give name based on + + + to be distinct, clearly visible + + + to gain access to or acquire more detailed information + + + study of the ecology of mountains and alpine areas + + + to experience discomfort + + + to be embarrassed, ashamed + + + shaping of flint by chipping away at it + + + a visual representation of kinship relations + + + to confirm a girl in the Jewish faith at a bat mitzvah + + + to feed baby milk from a bottle + + + the eating habits and culinary practices of a people, region, or historical period + + + an economic system or activity that prioritizes gaining status and honor over the accumulation of money or material wealth + + + the destruction of a cultural or ethnic group through the subversion or eradication of its key social institutions, fabric of beliefs, and/or resource base + + + the concentration within applied anthropology that focuses on the application of anthropological research and findings to projects in community and international development + + + a person who makes, or seeks to make, proselytes or converts; (in extended use) an advocate or proponent of something + + + a literary, dramatic or cinematic work whose story precedes that of a previous work, by focusing on events that occur before the original narrative + + + any of a family (Dicruridae) of insectivorous passerine birds native to Africa, Asia, and Australia that usually have glossy black plumage and long forked tails + + + Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + + (slang) wildly excited or intoxicated + + + to set or adorn with, or as with, ouches; to spangle; to set like a jewel. Usually in past participle + + + a maker of ouches, buckles, or brooches + + + to pack closely, as sardines in a tin; to crowd, cram, press tightly + + + of or tending to procreation; procreative + + + churlish quality or state; rudeness, roughness, sullenness, harshness, miserliness + + + an event occurring every four years + + + nothing, not anything + + + zero; nil + + + coated or lined with porcelain or porcelain enamel + + + the quality or condition of being duplicitous; duplicity + + + to make a sound like that of a kazoo + + + extremely intoxicated by a drug + + + resembling a sponge in appearance or texture; spongy + + + ubiquitous + + + to cut to a steep face, to slope; also to scarp away, down + + + the gateway of a temple in southern India; often : the massive tower resembling a pyramid above the gateway + + + a firearm that is not registered or trackable; especially one that has been assembled or manufactured by the owner, particularly using 3D printing + + + not sewn + + + the act or habit of reading voraciously + + + to one another; one to the other + + + pertaining to gorgonian corals + + + that agrees; conceding or concurring + + + indicted, alleged, charged, arraigned, imputed + + + a jump in figure skating in which the skater, moving backwards, takes off from the back outer edge of one skate, makes at least one full spin in the air, and lands on the back outer edge of the same skate + + + despite, for, notwithstanding + + + Middle Eastern wheat and milk dessert dish + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + vegetarian + + + a glacial epoch or period + + + (with plural reference) your + + + not constrainable + + + base, filthy, worthless + + + not politic, expedient, or judicious; unwise + + + a type of Italian dry-cured pork salami + + + one who exaggerates or talks nonsense, especially to bluff or impress + + + the wife of a dauphin + + + act of creation + + + distortion or malformation of the fingernails and toenails + + + paying close attention to + + + deal with something + + + answer, pay attention to + + + put an address on, or speak to + + + challenge, nom/nomadj-challenging + + + provide money for + + + (architecture) having windows or windowlike openings + + + (biology) having fenestrae + + + the practice of staying in youth hostels when traveling + + + to stay at hostels overnight in the course of traveling + + + person, thing, or group that has been isolated, as by geographic, ecologic, or social barriers + + + an individual, population, strain, or culture obtained by or resulting from selection or separation + + + a language isolate + + + a preparation (such as a lotion or cream) applied to the skin or hair to prevent or relieve dryness + + + a heritable change that does not affect the DNA sequence but results in a change in gene expression + + + related to an exon + + + act or process of giving an answer, reply + + + continuing in a place + + + of or relating to agoge or agogics especially to variations in tempo within a piece or movement + + + the top half of a newspaper, visible when folded in a vendor's rack + + + throw, sending through the air, manually, projection of an object through space + + + a process in which a phenomenon is the result of multiple factors + + + having a strong position on something + + + having particular leg-positioning, when standing + + + the game of jacks; dibs, dabstones + + + using a mass spectrometer to analyze substances + + + discrimination against non-binary gender persons + + + resembling or typical of a punk + + + a synthetic mixed opioid agonist-antagonist with analgesic properties + + + have a tendency, drift + + + the position or relation of a colleague; companionship in office, etc. + + + a person who or (occasionally) thing which placates someone + + + a large edible mushroom (Boletus edulis) widely distributed in woodlands, having a thick rounded brown cap + + + to verbally abuse and emotionally manipulate someone, to give a back-handed compliment + + + to give negative feedback + + + express unfavorable sentiment about + + + to (cause to) lose moisture, desiccate + + + along + + + utterance of ‘ooh’ + + + an organism or cell having three complete sets of chromosomes + + + get together with + + + prognosticate + + + deceive, cause to believe a fabrication + + + cause to be frozen, very cold weather condition + + + you, all of you + + + you and people of your kind + + + make seem greater + + + branch of archaeology that focuses on involving local communities in the process of archaeological research, from planning and excavation to interpretation and presentation + + + a homology theory that uses pairs of cells instead of single cells, as in classical homology + + + the science concerned with the desert and its phenomena + + + the study of the physiology of muscles + + + the scientific study of the interaction between meteorology and hydrology + + + branch of theology dealing with faith + + + the science and study of the weather and its phenomena + + + (expressing compliance with an order) + + + act or process of using up; exhausting + + + the science of the physical properties of blood flow in the circulatory system + + + branch of theology that deals with the doctrinal differences of churches as found in creeds + + + the branch of psychology that studies the philosophical issues relevant to the discipline and the philosophical assumptions that underlie its theories and methods + + + to mark the skin with permanent colors and patterns + + + a branch of theology concerned with summarizing the doctrinal traditions of a religion (such as Christianity) especially with a view to relating the traditions convincingly to the religion's present-day setting + + + humbled/humiliated/degraded + + + process of making a false duplicate + + + act/process of intervening, acting as a replacement + + + needless bustle or excitement + + + fulfill + + + the science and engineering applied to meat production, processing, and preservation + + + having or relating to increased loudness or greatness + + + be in or send to (the) hospital, under care in the hospital + + + a medical doctor who specializes in diagnosing diseases by examining tissues and cells under a microscope + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + act of sneaking, hanging around in dark places + + + to enter (something) again + + + [slang] to scapegoat, unjustly blame (and punish) someone + + + visit, make use of + + + phrasal aspectual + + + a gene editing technique used to insert a specific DNA sequence into a target organism's genome, often at a precise location + + + the study of crystals and crystallization; crystallography + + + algology: the medical specialty concerned with the study and treatment of pain + + + a system of beliefs that explains natural phenomena through myths and stories involving supernatural beings or forces + + + act or process of damaging, destroying, or removing + + + a philosophical approach that shifts the focus of epistemology from a priori reasoning to empirical investigation, particularly by drawing on insights from the natural sciences + + + relating to, or employing a single system + + + a theoretical framework in linguistics that proposes that phonological features, like tone or vowel harmony, are represented on separate tiers (or levels) and can be independently manipulated and associated with segments (like vowels and consonants) + + + to the political, social, and cultural beliefs and values that migrants hold, and how these beliefs intersect with the ideologies of their host societies + + + the process to become extinct + + + the study of or a discourse or treatise on spasms + + + the study of species of organisms + + + (cause to) experience stress (phrasal) + + + the whirlpool effect of the media in relation to a particular major issue or event + + + remove, removing using water + + + turn red + + + act or process of eating small amounts of food between meals (snacks) + + + act or process of traveling by bicycle + + + sticky; overly obsessive, needy + + + to produce a new master recording to improve quality + + + die, expire, dead + + + a small traditional brightly painted wooden fishing boat used in the Ionian and Aegean seas + + + a light skiff used on the Bosporus + + + a Levantine sailing vessel + + + a diseased state : an abnormal condition + + + The act of placing in a group + + + bruise, causing to become or becoming bruised + + + cause inconvenience or discomfort + + + run_down: wear out, tire + + + "read up (on):" to study thoroughly or become familiar with by reading + + + fill with contaminants + + + fight constantly, fight!, long-standing fighting + + + constipated + + + tending to stifle enthusiasm, initiative, or freedom of action + + + class of bornology + + + the study of ghosts and related paranormal phenomena + + + the study of fungi producing cleistothecia (closed fruiting bodies) + + + the study of past human-plant interactions through the recovery and analysis of ancient plant remains + + + arm_up + + + act of using a vacuum + + + the principle of association by which people act in collective, self-organized ways in organizing their cultural life + + + the action or practice of performing a pole vault, especially as a competitor in an athletic event + + + to cut grass or grain + + + to leave stranded, left high and dry + + + remove the acetyl group from a compound + + + disgraceful, infamous + + + up again + + + process of becoming dead (as a group) bit by bit + + + an adjustable airplane seat that can be made fully reclining + + + take pleasure in + + + relating to or affected with dropsy + + + give a job to one who has been furloughed + + + to claim (as territory) + + + to preside over as a chairperson with another + + + process of fusion or stiffening by ankylosis + + + To set the angle of the planets (used in astrology) + + + The act of automatically calculating the amount of a constituent in a solution + + + being in a crossed position + + + involuntary urination while asleep + + + subject to the Bechdel test + + + to hit, completive + + + flexible + + + The process of formation of minerals via microorganisms + + + act or process of forging metal (especially iron) by hand + + + a lazy person + + + an uninformed, unsophisticated, immature person + + + a general term of abuse + + + the classification of names based on their characteristics, such as sound structure (phonology), form (morphology), grammatical function (syntax), and meaning (semantics) + + + the science and technology of handling and processing particles and powders + + + move in a small, fast increment + + + adapted to, or thriving in, a very dry or desert-like environment; capable of growing and reproducing in conditions with a low availability of water + + + referring to structures, organs, or parts related to the abdomen + + + natural disaster: wildfire in brush + + + The act of being filled + + + swelling outward; protruding + + + charge off: emit hastily(?) + + + of or pertaining to the physiological rumbling or gurgling sound from the movement of gas and fluid in the intestines + + + an abnormal narrowing or stricture of a blood vessel or other organ + + + cover completely + + + emboider with worsted yarn + + + scare + + + to create quickly and sloppily + + + performing a cone biopsy + + + restrained, lessened, (of vibrating) ceased + + + lose muscle tone or fitness, becoming less adapted to + + + The act of causing to become unclogged + + + un-install + + + remove lint + + + remove a methyl group from a chemical compound + + + able to be reshaped + + + to fart + + + to dance in an energetic manner + + + escortcel + + + gaycel + + + The act of releasing, releasing from a location (not stuff being released itself) + + + compare one set of data against another + + + medical imaging procedure using X-rays to produce cross-sectional images + + + modulate to a lower level + + + acting like a douche bag (jerk) + + + fly, hip, rad + + + pulling of a sled by dogs + + + looking after a pet dog + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + bubbling, surging, or flowing of water + + + gather, pool up (non-phrasal version of 'well_up'); upward motion of water, or as if of water, perhaps from a spring + + + expression of consent + + + expression of thoughtfulness + + + expression of disagreement + + + no + + + expression of disgust + + + cause to have feminine qualities + + + turning inside out + + + to make or become even + + + remove a tube from + + + masturbate + + + seen using a funduscope (eye exam) + + + to keep an aircraft in a hangar + + + form a dimer from two different monomers + + + becoming gray + + + suffering the residual effects of too much alcohol + + + the act of attending school at home + + + The act of searching for a new home + + + book produced prior to 1501, at the dawn of printing in Europe + + + involving the ileum and the cecum + + + cause to weaken or endanger the immune system + + + understand basic information regarding a subject + + + make or become harder, hardened + + + act or process of transferring genetic material into another individual + + + act or process of transferring genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + act or process of transferring genetic material non-reproductively, usually by horizontal gene transfer + + + connective tissue between myotomes in fish flesh + + + child of a person’s paternal uncle + + + child of a person’s brother + + + a procedure in which all or part of the rectum is removed via entry through the abdomen + + + use or employ + + + act or process of arranging in layers + + + put firmly + + + faint earth tremor, caused by water waves in oceans/lakes + + + become stone-like (but so small the naked eye cannot see) + + + occurring at different times (contrasts with recurrence: a metachronous cancer is a new, different cancer, not a recurrence of the prior cancer) + + + bringing to market or open-market-style managment + + + surgical removal of lymph nodes + + + having one stage + + + hunt a species or area to the point of damaging the herd + + + marked by or containing untrue statements : false + + + of a person, his or her lips, etc.: That tells lies + + + not belonging to a particular area + + + benign, not causing alarm + + + concert hall or theatre + + + Convert light energy into chemical energy + + + utterance of French word of negation + + + writing a play + + + make very very dry + + + use motorized transport to sail through the air via parachute or other airdrag/airgliding tool + + + (cause to) move in \/\/\/ fashion + + + torture by simulated drowning + + + separate with walls + + + wait out: endure, outlast, enduring, lasting + + + adhering to a strick no meat/no animal byproduct diet + + + not valued highly enough + + + acquire a tubular shape + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + act of official registration in advance + + + to test in advance + + + the act of reading (copy or printer's proofs) to detect and mark errors to be corrected + + + removal of all or part of the rectum + + + to gather lips into folds (as if to kiss) + + + to inflate, literally or figuratively (as with air, value, or excitement) + + + the act or practice of recording important information for future reference + + + to discuss or argue about again + + + charge with a crime again + + + the act or process of re-introducing or re-admitting + + + engrave again + + + to put into, between, or among again + + + to break a law or rule again, often after punishment or treatment; to recidivise + + + able to be removed surgically + + + the making of photocopies + + + not yet be determined or known + + + vaccinating again + + + act of causing to be in a coil + + + to approve without giving it much thought + + + cut with a saw + + + the process of forming a protective crust or cover + + + the formation of lasting signs of damage + + + to (idiomatically) die + + + to inform or provide information; to help to understand + + + act or process of removing in flaky chunks + + + to cause a narrowing or constriction of the diameter of a bodily passage or orifice + + + act or process of saturating partially or incompletely + + + incompletely saturated, not saturated enough + + + having four homologous sets of chromosomes + + + fill up completely when only partially empty + + + able to be treated (especially medically) + + + staff car + + + the number between four and six + The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + + the number 11 + + + perhaps, possibly + + + permitted to + + + Used before a verb to indicate the simple future tense in the first person singular or plural. + I shall sing in the choir tomorrow. + I hope that we shall win the game. + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + A history of public transportation in Kansas City, from cable cars to buses and beyond + + + to bring palm of hand to one’s face in ostentatious expression of dismay + + + the whole amount, quantity, or extent of + + + every member or individual component of + + + any (whatever) + + + nothing but; only + + + conditional conjunction + + + for the reason that; the fact that + + + over; higher than; further away from the ground than + + + By the length of; in a line with the length of; lengthwise next to. + Water whished along the boat as we rowed upstream. + + + on the other side of, further + + + all, each + + + not any of a group + + + in the middle of + + + in the near future + + + various + + + Yes. + —You wanna get pizza for dinner? —Yeah, all right. + + + (informal) of quality that is pleasing to human senses + + + competence to make a personal and professional development largely independent of external influences + + + greeting used when meeting someone + + + on top of + + + semi-friendly term of address (for male person) + + + to add to, lengthen + + + to get/move/remove with great effort + + + final, ultimate, coming after all others of its kind + + + chemical element with atomic number 112 + + + chemical element with the atomic number of 116 + + + expressing a desire for something to depart + + + goodbye, likely for a long time + + + cigar filled with cannabis + + + date according to fictional time measurement system in Star Trek + + + abnormal sound generated by turbulent flow of blood in an artery + + + inject liquid to force an opening for extraction of oil or gas. + + + irregular surface approximating the mean sea level + + + piece of media that has been edited and re-released + + + connected, bridgeless cubic graph with chromatic index equal to 4 + + + expression of gratitude + + + two + But the warm twilight round us twain will never rise again. + Bring me these twain cups of wine and water, and let us drink from the one we feel more befitting of this day. + + + expression of great pleasure + + + land use management system in which trees or shrubs are grown around or among crops or pastureland + + + political movement that developed in 19th-century Britain in opposition to disestablishmentarianism + + + discovery, interpretation, and communication of meaningful patterns in data + + + to connect by means of an interface + + + the use of biological molecules, structures, or processes in computing or information processing applications + + + any substance that has been engineered to interact with biological systems for a medical purpose + + + those portions of Earth's surface where water is in solid form + + + study of skin diseases + + + neurological disorder + + + the science that studies how water in all its forms links living organisms and their abiotic environment to define their function, interactions, structure, and distribution + + + natural number + + + natural number + + + science of innovation + + + state of being an entrepreneur + + + engaged in extracting + + + structural feature of Earth's geography + Crustal methods for studying geostructure are most interesting, but their discussion, if adequate, would be too lengthy to be included in this paper. + + + fast, speedily + + + branch of medicine dealing with liver and related organs + + + biological development process + + + small woodland + + + pertaining to horology + + + study of wetlands + + + pertaining to hydrometeorology + + + capable of being implanted + + + (to do with position or direction) in, on, at, by, towards, onto + + + (to do with separation) in, into + + + (to do with time) each, per, in, on, by + + + motorcycle part + + + strong start + + + start strongly + + + medical specialty dealing with the larynx + + + scientist who studies malaria + + + sea farming + + + study of electronic and mechanical systems + + + serving to remember something + + + substance harmful to microorganisms + + + relating to minerals + + + definition by periphrasis + + + involving multiple political parties + + + communication among multiple participants + + + giving rise to myths + + + building things at the scale of individual molecules + + + fiber with nanometer-scale diameter + + + particle at the nanometer scale + + + nanoscale sphere + + + study of chemistry of nervous system + + + forest with mostly oak trees + + + replace local with overseas workers + + + preventative branch of psychiatry + + + pertaining to orthopsychiatry + + + orthopedic appliance + + + pertaining to osteopathy + + + process of making measurements from photographs + + + pertaining to phycology + + + pertaining to phytopathology + + + branch of astronomy that deals with the condensed matter of the solar system and especially with the planets and their moons + + + type of quasiparticle + + + with many cysts + + + one who studies primates + + + one who profiles + + + one who proves + + + relating to or suffering from quadriplegia + + + innervate again; particularly by restoring function by supplying with nerves + + + in reference to earthquakes or other vibrations + + + study of sex + + + branch of science concerned with inferring the three-dimensional properties of objects or matter ordinarily observed two-dimensionally + + + component of a cell + + + material able to conduct electricity with no losses + + + exhibit the phenomenon of superconductivity + + + physical phenomenon + + + liquid applied to the shaved area of the face after shaving + + + plane curve, 4-cusped hypocycloid + + + a transgender person’s name before transitioning + + + characteristic of city dwellers + + + a large flightless parrot species + In captivity the kakapo is said to show much intelligence, as well as an affectionate and playful disposition. + New Zealand possesses a surprisingly large number of birds capable of flight, but many of the ground-feeders, having no natural enemies from which to escape by flying, have lost this power, and hence such examples as the weka and the kakapo. + + + to tweak or weaken a component of a game + + + to make something less effective + + + branch of biology that deals with the spread of alien species + + + having non-normative or queer gender identity and gender expression + + + gesture + + + profession + + + type of circuit board that other components attach to + + + type of politics + + + type of swamp + + + type of small boat + + + mexican dish + + + alcoholic drink typically served after a meal + + + verse with twelve syllables per line + + + house with low environmental impact + + + type of stuffed pastry + + + horse riding + + + craftsperson who creates decorative sculpted surfaces and sculptural detail for walls and ceilings in stucco + + + branch of science dealing with geology and the biosphere + + + study of geology and microbiology together + + + study of sundial construction + + + medical procedure performed outside the body + + + branch of paleontology that studies fossil footprints + + + pre-16th century book or other printed item + + + study of lichens + + + study of toxins produced by fungi + + + in an engrossing manner; suggesting great interest/full attention + + + throughout the day + + + for the length of an entire day + + + orientation of two items with fronts facing away from each other + + + emphasizes that what you are saying is true + + + with warm friendship + + + in a bisexual manner + + + in a fashion suggesting the absence of clouds + + + abrupt cessation of a substance dependence + + + musical term + + + as a possibility : in respect to a tendency or to a future eventuality + + + In a dark or dusky manner. + + + without firm basis/support/footing, aimlessly/without direction + + + in a freezing manner + + + relating to choosing, cooking, or eating good food + + + in a glistening manner + + + impiously/without God (in a godless manner) + + + in an impolitic manner; not in accordance with good policy; inexpediently + + + بِ إسم أللَه + + + in a juridical manner + + + done in manner that lacks limbs or resembles as much + (Their paintspeckled hats wag. Spattered with size and lime of their lodges they frisk limblessly about him.) + + + joylessly/humorlessly/without mirth + + + with a sense of loss + + + done in a manner that favors free markets, deregulation and devolution + + + In a prepositive position. + + + bewilderingly/confusingly (in a puzzling manner) + + + immediately + + + done in an untidy or shabby fashion + + + (manner of placement) under the tongue + + + by means of/in terms of/according to typology + + + In a vainglorious manner. + + + without speech/utterance, silently (in a voiceless manner) + + + in a weightless manner + + + whenever; at any time at all + + + In what way; how. + + + over there + + + scientist studying nervous-system hormones + + + the study of human actions and conduct + + + early stage in formation of a planet + + + type of loudspeaker + + + heavy, smooth cardboard coated with a ground that has sufficient roughness for the application of oil paint + + + abstract description of molecular features that are necessary for molecular recognition of a ligand by a biological macromolecule + + + group of methylating enzymes + + + protein in Schistosoma mansoni + + + pathogen's ability to infect hosts + + + an enzyme that occurs chiefly in cholinergic nerve endings and promotes the hydrolysis of acetylcholine + + + The sequence of reactions within a cell required to convert absorbed photons into a molecular signal. + + + In physics, a dynamic variable that can be measured + + + a small-scale two-dimensional array of samples on a solid support + + + act or process of separating an antigen from a solution using an antibody that binds to the antigen + + + An organism that thrives in extremely hot environments from 60*C upwards + + + simultaneous infection of a host by more than one pathogen + + + cellular catabolic process in which cells digest parts of their own cytoplasm + + + term + + + biome of microbes + + + to take a quantity away from or out of another + + + to move, sink, or push under + + + profession + + + process used to prevent someone's personal identity from being revealed, as a way to preserve privacy + + + carrying genetic information or being involved in the transcription or translation of proteins + + + study of biological toxins, especially animal venoms + + + study of the transcriptome + + + celebration on a day other than the person's birthday + + + to convert a substance into resin + + + parenthetical discourse expression "quote unquote" + + + to reduce to carbon + + + to make to convert to carbon + + + to divide the heavens into twelve equal parts by means of great circles + + + to render balmy + + + to display again + + + to make peace to + + + re-examine + + + to treat as an indifferentiated mass + + + Next to; beside. + The house adjacent to the school was demolished. + A notice was sent to the house adjacent the school. + + + use of an electrically heated wire or scalpel to treat hemorrhage and to ablate tumors, mucosal lesions, and refractory arrhythmias + + + group of similar haplotypes that share a common ancestor having the same single nucleotide polymorphism (SNP) mutation in all haplotypes + + + formed when a collection of nonlinear processes act together upon a pump beam in order to cause severe spectral broadening of the original pump beam + + + guidance relationship in which a more experienced or more knowledgeable person helps to guide a less experienced or less knowledgeable person + + + process that caused the matter in the universe to reionize early in the history of the universe + + + physical system that responds to a restoring force inversely proportional to displacement + + + act of quenching something + + + agents that emit light after excitation by light + + + one who provides care as an occupation + + + with respect to a given category, a more narrow category + + + in mathemaics, a category, whose objects and morphisms are inside a bigger catetgory + + + creation of copies + + + to experience orgasm + + + salt or other derivative of disulfane or organic compound having the structure RSSR (R ≠ H) + + + account of events in a particular year + + + Burst of light triggered by soundwave + + + a structure formed in a cave by the deposition of minerals from water, e.g., a stalactite or stalagmite. + + + tendency of a material to change the value of its electrical resistance in an externally-applied magnetic field + + + cell type + + + state of a system or a process in which the variables which define the behavior of the system or the process are unchanging in time + + + Membrane associated dimeric protein (240 and 220 kDa) of erythrocytes. Forms a complex with ankyrin, actin and probably other components of the membrane cytoskeleton, so that there is a mesh of proteins underlying the plasma membrane, potentially res + + + group of tetraterpenes, with four terpene units joined head-to-tail + + + The covalent attachment of a prenyl group to a molecule; geranyl, farnesyl, or geranylgeranyl groups may be added. + + + protein in Schistosoma mansoni + + + A sensory receptor that responds to mechanical pressure or distortion + + + property of a disease + + + enroachment of saline water into freshwater + + + Ice formed from frozen seawater + + + human disease + + + study of the right use of words in language + + + perovskite, oxide mineral + + + third-person singular neopronoun + + + emotionally helpless person + + + person with no limbs + + + process of writing a compiler (or assembler) in the source programming language that it intends to compile + + + production of an analysis that corresponds too closely or exactly to a particular set of data, and may therefore fail to fit additional data or predict future observations reliably + + + ability of something, especially a piece of content or information, to be found + + + romantic attraction towards person(s) of two or more genders (biromanticism) + + + person who works at a post office + + + give sexual pleasure to + + + form of interpersonal relationship + + + colleague in Swedish and Finish education systems + + + vigorous spirit or enthusiasm + + + distinctive style or flair + + + To agree with a proposition or statement after it has already been seconded. + + + in the middle of + + + in an unsuspected manner; without being suspected + + + Except; with the exception of. + + + Between. + + + From one side to the other side of; across. + The stars moved slowly athwart the sky. + + + as a result of which + + + on top of which + + + nevertheless + + + individual person as the object of his or her own reflective consciousness + + + A term of asseveration: indeed!, in truth! + + + Used to express anger, excitement, surprise, etc. + Blimey! I didn’t see that! + Blimey! Where did you come from? + + + At the end of religious prayers: so be it. + + + Form of hmm + + + interjection used to express disdain or reproach + + + An exclamation used in songs of praise or thanksgiving to God. + + + Expressing anger, annoyance or frustration. + Drat! I forgot to post these letters. + + + A common toast used when drinking in company. + + + An informal greeting. + Howdy folks, and welcome to our ninth annual chili cookoff! + + + Used after a pause for thought to introduce a new topic, question or story, or a new thought or question in continuation of an existing topic. + So, let's go home. + So, what'll you have? + So, there was this squirrel stuck in the chimney... + So, everyone wants to know – did you win the contest or not? + + + (used to emphasize the truth of a statement) + + + A mild curse or expression of surprise. + + + an exclamation meaning "long live ..." + + + long live! (battle cry) + + + Onward; a rallying cry for progress. + + + third person singular neopronoun + + + process of finding and resolving defects or problems within a computer program + + + expresses hostility + + + yes + + + word which occurs in a text more often than we would expect to occur by chance alone + + + acronym where the full form is not widely known + + + name used for a place which is not used by the people of that place + + + word with a broader meaning + + + A diagram used to represent words, ideas, tasks or other items linked to and arranged radially around a central key word or idea. + + + augmentation of intelligence through the use of information technology + + + measure to prevent an incident, disease, etc. + + + political movement + + + to pseudo-anonymize; to pseudonymize + + + organism occurring in a new habitat + + + Estimate of how an atmospheric gas affects global climate change + + + emission rate of a given pollutant relative to the intensity of a specific activity, or an industrial production process; e.g. grams of CO₂ released per megajoule of energy produced, or the ratio of greenhouse gas emissions produced to GDP + + + thresholds that, when exceeded, can lead to large change in the earth system + + + distinct layer in a large body of fluid in which temperature changes more rapidly with depth than it does in the layers above or below + + + main group of bicycle riders + + + referring to a sports game or team featuring the best players + + + heading toward an objective, forwards + + + almost finished + + + pertaining to the penultimate round of a tournament + + + official position + + + relating to oaks + + + type of household for statistical purposes + + + ordinal number for 25 + + + member of a council + + + form used to document informed consent + + + anti-pattern in voluntary communities where someone takes responsability for a task, does nothing about it and then puts it back up for grabs + + + write together + + + expression of encouragement prior to a performance + + + slang vulgar term meaning to have anal intercourse with + Cut to Dylan on all fours screaming "Harder, Faster!" as David cornholes him doggy style in the sauna. + To her surprise she realized that unlike the previous two anal poundings she had received, this one barely hurt as he cornholed her. + + + expression of gratitude + + + having no gender + + + مربوط به ربوخه + + + match, mate together, couple + + + grandchild + + + manual stimulation of a man's penis by another person + + + an attractive (cute) person + + + theoretical spacecraft propulsion system in many science fiction works, most notably Star Trek + + + hypothetical mode of transportation by warping space + + + mythical race of bulky humanoid creatures + + + attraction de parc de loisirs + + + The state of being estranged or alienated + + + village road + + + a transphobic person + + + fossil preservation process + + + the study of fossil preservation + + + fictional space flight organization + The names of Starfleet vessels can tell us a lot about the cultural traditions that were foremost in the minds of the creators of the franchise. + + + ethological class; "gardening traces," systematic burrow networks created by an organism + + + ethological clas; trace fossils that show evidence of predatory behavior + + + Star Trek weapon + A modern bat'leth is typically 116 centimeters long, composed of baakonite metal, weighing 5.3 kilograms. + Koloth, Kor, and Dax raised their bat'leths seconds later, guttural cries coming from each of them. + + + That congregate or flock together + + + type of rechargeable battery + + + act of documenting something before its official discovery + + + document providing evidence of something before its official discovery + + + overall facility for launching and/or receiving spacecraft + + + space based fascillity where spacecraft can dock + The large space hangars and space dock to­gether would enable the establishment of a standardized space maintenance process that integrates system design, in-space assembly, scheduled and unscheduled servicing, technician training, and spares management. + + + deep-fried strips of potato + + + to die + + + to add a geotag to digital content; to provide geographic information (especially locations, such as coordinates) via metadata + + + to excessively apply digital beauty filters to an image + + + romantically attracted to members of the same sex or gender + + + attraction to all genders + + + transgender with a partially or fully feminine gender identity + + + attraction not limited by gender identity + + + seriously + + + having 2 phases + + + one who resurrects + + + defecate + + + one who harasses other players in a game + + + an image macro of one or more cats + + + Any plant in the genus Chorizanthe + + + Any beetle of the subfamily Melolonthinae + + + any insect of the family Lepidopsocidae + + + drunk + + + drunk + + + unable to be found in a Google search + + + a dish of rice, black-eyed peas, and bacon or pork + + + ideogram that conveys its meaning through its pictorial resemblance to a physical object + + + element of computer graphical interface + + + somewhat more censored form of “motherfucker”, a common insult and profanity + + + the study of beetles + + + any spider in the family Sparassidae + + + Lepidochelys olivacea + + + person who works in the boiler construction or repair trade + + + whiskey with beer as a chaser + + + Sedum moranense + + + any moth of the family Tortricidae + + + any snake in the family Leptotyphlopidae + + + any reptile of the order Squamata + + + a black person + + + relating to the Lepidoptera, the butterflies and moths + + + interjection meaning "As long as you're healthy [you can be happy]." + + + creating, promoting and exploiting stars in Hollywood films + + + set of non-stellar objects in orbit around a star + + + type of n-gram consisting of one word + + + penis + + + to praise or flatter someone excessively in order to gain his or her favor; to curry favor with + + + title or position for a female inspector + + + gigantic tentacled sea monster of Scandinavian myth + + + twighlight at roosting time, light of the morning sunrise + + + excrement, dung, usually used figuratively; equivalent to general English "shit" + + + ریشمی ڈورا + + + to incorporate apparently LGBTQ characters and relationships into media with the intent of drawing an LGBTQ audience + + + small plastic particle in the environment generally smaller than 1 mm + + + スーパーセンテナリアン、110歳以上の人 + + + a half-bottle (now 375 ml) of spirit, usually sold in a flattened pocket-size bottle + + + insulting name for an Afrikaner + + + elastic band + + + made for that particular day, as in a dish in a restaurant + The soup du jour is roasted red pepper and tomato. + + + very popular or fashionable at a particular time + Long hair was the style du jour. + + + of the family Carabidae + + + the practice of tracking people online + + + (reflexive pronoun for the first person singular) + + + text messaging service component + + + person with red hair + + + made of brass + + + settlement with little or no value + + + something that is small + + + occurent three times + + + accept + + + garden or park which comprises mainly of roses + + + very conventional person who often has a lot of inhibitions + + + a person who spends as little money as possible + + + without tea + + + an evergreen Australian tree (Cupaniopsis anacardioides) of the family Sapindaceae + + + last piece of cloth left from a bale + + + a mammal in the family Herpestidae + + + rodent in the family Bathyergidae (blesmols and mole rats) + + + a rodent of the family Sciuridae (squirrels) + + + a member of the mammal family Ornithorhynchidae + + + the number between 22 and 24 + + + ritual of moving around a sacred object or idol + + + any fish of the family Acipenseridae + + + a fish of the family Percidae + + + a tree frog of the family Hylidae + + + any member of the bird family Turdidae + + + any member of the bird family Phylloscopidae + + + a mammal in the family Trichechidae + + + (almost exclusively in combinations) having thighs (when in combination, of a certain nature of thighs) + + + Sundasciurus tenuis + + + a mythical or fictional organism which some presume to be real or is presumed to be real with little evidence of its existence + + + Remigration + + + stealing livestock through driving them away + + + one who steals livestock by driving them away + + + imperfect or defective + + + faith in Islam + + + unsorted wheat flour + + + (term of affection for a beloved person) + + + Islamic expression of reverence + + + wrestle + + + any member of the bird family Picidae (the woodpeckers) + + + cyberattack intended to redirect a website's traffic to another + + + to condescend to a woman in a manner characteristic of male chauvinism + + + bundle of hay + + + literary genre + + + continue with one's activities + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + person who walks for show, amusement + + + good + + + feldspathoid mineral + + + post-larval stage in life cycle of Malacostraca + + + in heraldry, wings displayed and joined at the base + + + to be deemed valuable + + + to sign an additional time + + + branch of botany that deals with the grasses + + + branch of zoology concerned with the cetaceans + + + any of the branches of science dealing with snow or ice accumulation, glaciation, or glacial epochs + + + branch of zoology concerning the crayfishes + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + branch of entomology concerning the Orthoptera (grasshoppers, crickets, etc.) + + + a treatise on the Orthoptera + + + study of diseases of trees + + + branch of geomorphology concerned with the study of ancient topographic features now either concealed beneath the surface or removed by erosion + + + cry of “ouch,” in expression of pain or discomfort + + + study of the relations between humans and animals + + + the animal lore of a race or people + + + officer charged with the administration of the health laws + + + branch of linguistics or philosophy concerned with meaning in language + + + coffee taken at breakfast or mid-morning + + + the study of the devil or devils + + + doctrine or beliefs concerning the devil; devil lore + + + study of the interactions between the Earth's biosphere and the lithosphere + + + the study of the Sun + + + the study of heresies + + + a treatise on heresies + + + the study of horses + + + skill or expertise in horsemanship + + + (a colloquial American plural form of the second person plural pronoun) + + + aloud, audible + + + the symptom complex of a disease + + + branch of medical science concerned with symptoms of diseases + + + branch of science concerned with the study of wetlands (such as peat bogs or swamps) + + + (imprecative) damn, damnation + + + in positive contexts; different, the other of two alternatives, an additional + + + nor (with another negative, expressed or implied) + + + sharing attributes with another or with self at another time + + + Japanese silk resist-dyeing technique + + + kanat; underground channel directing water from the interior of a hill to a village + + + animal pathology + + + the study of the microorganisms (bacteria, archaea, viruses and microbial eukaryotes) in the marine environment + + + branch of zoology concerned with helminths; especially: the study of parasitic worms + + + the study of how exercise alters the function and structure of the body + + + the study of man as a psychosomatic unity + + + branch of psychology interested in personality development + + + the study of the components and constituents of consciousness specifically by introspective methods + + + of or relating to horme; specifically: purposively directed toward a goal + + + branch of psychology focusing on understanding all aspects and influences of criminal behavior, including the myriad factors that contribute to criminal actions + + + the study of paleopsychic phenomena + + + profane oath + + + connived at, tolerated + + + absolute form of a word; subject case in opposition to an ergative or relative case + + + the fusion of 2 (usually haploid) nuclei during sexual reproduction, resulting in the formation of a diploid zygote + + + according to + + + zoogeography + + + half-transitive + + + high-ranking chief; firstborn child in a prominent family + + + study of fossil plants + + + person who studies fossil birds + + + cake made with carrots + + + the study of cactus spines or euphorbia thorns grown in time ordered sequence + + + dogmas collectively; the science of dogma + + + the branch of knowledge concerned with signs, esp. in relation to thought and knowledge; the study of signs; semiotics + + + the study or description of meaning in language; semantics (Now rare) + + + the art of interpretation by signs (Obsolete. rare) + + + the science of magnets and magnetism + + + study of ecological processes in agriculture + + + the study of large-scale behavior of the atmosphere + + + the gross structures or morphology of an organism, mineral, or soil component visible with the unaided eye or at very low levels of magnification + + + the study of zygotes + + + the science of joining and fastening things together + + + the use of paradoxes + + + the science of medical remedies + + + the study of inanimate nature; science other than biology or the life sciences + + + incorrect use of language + + + the scientific study of amber + + + human morphology + + + the use of anthropomorphic language especially in application to God or a god + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + the study of humans as an agent of landscape change + + + street vendor of produce (arable goods) + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + the study of social interaction in terms of analogy with the vital processes of the living organism + + + branch of entomology that studies insects that benefit or harm humans, domestic animals, and crops + + + the use of chemistry and chemical techniques to study biological systems + + + the study of the adaptation of human societies or populations to their environments + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + branch of zoology dealing with the echinoderms + + + the practice of electrical hair removal to permanently remove human hair from the body + + + the study of reproduction + + + the scientific study of color + + + pseudoscientific alternative medicine method using colored light + + + the study of the relationship between the morphology of organisms and their ecology + + + the study of medicines derived from naturally occurring substances like plants and fungi that have been traditionally used by specific groups of people for medicinal purposes + + + the branch of physics which relates to the humidity of the atmosphere or other bodies + + + branch of zoology dealing with mammals + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + the study of the properties and effects of opium + + + the physiology of sensation and sense organs + + + a reply to an apology, especially to a written defence or justification of religious opinions + + + the branch of archaeology that deals with the apparent use by prehistoric civilizations of astronomical techniques to establish the seasons or the cycle of the year + + + the study of the chronology and periodicity of celestial objects + + + dating of sedimentary units by calibration with astronomically tuned timescales + + + the classification of human beings by body type or other morphological, physiological, or psychological characteristics + + + kind, helpful + + + the branch of theology which deals with religious truth in relation to spiritual needs. + + + the scientific study of personality; the study of the way behaviour is related to personality + + + branch of medical science dealing with the effects of drugs in populations + + + a systematic view of all knowledge + + + a philosophical theory about monads; specifically: Leibnizian monadism + + + the scientific study of sand + + + the study or science that treats of the tides + + + to overcome through subtlety and skill rather than brute force + + + to steal + + + to play a card in contract bridge + + + dialling tone, sound made after dialing on telephone + + + technology in computer systems that allows for direct access to stored items using partial contents of the item in question + + + the study of inanimate nature + + + bad choice of words, diction, or poor pronunciation + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + discussions or treatises about giants + + + positive integer equal to the sum of its positive proper divisors + + + form of medical practice based on two concepts: that a broad range of environmental chemicals and foods can be responsible for an illness in which an unlimited variety of symptoms occur in the absence of objective physical findings, pathologic abnormalities, or specific, abnormal results of laboratory tests; and that the immune system is functionally depressed by many environmental chemicals + + + toy made of rubber (often used in the bath) + + + title bestowed on a former Speaker of the House of Representatives in the United States who has left the position but continues to serve in the House as a backbencher + + + a person who is very interested in politics + + + to temporarily postpone consideration of a motion or bill + + + a strategic series of meetings, events, or visits conducted by a politician or candidate to gather input, concerns, and perspectives from constituents or specific groups + + + the form in which something was actually constructed + + + a system of knowledge or belief built around biological principles + + + the science of medicine + + + a treatise on medicine + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + the biology of plants + + + plant ecology + + + the theory and work based on the theory that trees were involved in the origin of man + + + the "science" of love + + + a branch of sociology that analyzes how individuals use everyday conversation and gestures to construct a common-sense view of the world + + + the study of how social order is produced in and through processes of social interaction + + + the scientific discipline that involves dating the events related to the formation and evolution of the Solar System and the nucleosynthesis of chemical elements using radiometric dating techniques + + + the science that considers the Earth in its relation to cosmic phenomena + + + unprofitable or fruitless enquiry; vain discourse + + + the science of machines and mechanisms + + + able to align itself automatically + + + branch of paleontology that studies fossil footprints + + + the study of mountains + + + the psychology of morality and human action, especially as a subject of philosophical study + + + common sense regarded as a science or religion + + + the anatomical study of the intestinal glands + + + (originally) the study of pathological effects induced by electricity + + + (later also) abnormal electrical activity, especially of the heart, associated with a disease or disorder + + + sacred literature or lore; the literature embodying the religious beliefs of a country or people + + + hagiology + + + Edward Hitchcock's name for the branch of paleontology concerned with "ornithichnites" or fossil footprints of birds + + + the branch of medicine that deals with the diseases of children; pediatrics + + + psychology concerned especially with resolution of the mind into structural elements + + + the study and analysis of the causes and effects of accidents + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + concept within topology + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + relating to a person who has some training in a job such as teaching or law, but does not have all the qualifications to be a teacher, lawyer, etc., or to the work that they do + + + a leg segment of an arthropod + + + creator of slam poetry or participant in a poetry slam + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + the study of the physiology of the eye and sight + + + medical specialization that involves undertaking a range of imaging procedures to obtain images of the inside of the body + + + a person engaged in or expert in marine science + + + the mathematical theory of Regge poles + + + the branch of mammalogy dealing with tigers + + + the study of friction and wear at a large scale, typically involving macroscopic systems and components + + + the study of the relationship of climate and weather to disease + + + the science that deals with the character, ecology, and causes of outbreaks of animal diseases + + + the sum of the factors controlling the occurrence of a disease or pathogen of animals + + + an interdisciplinary framework to understand the functioning of terrestrial landscapes in the climate system, combining aspects of physical climatology, micrometeorology, hydrology, soil science, plant physiology, biogeochemistry, ecosystem ecology, biogeography, and vegetation dynamics to understand the physical, chemical, and biological processes by which landscapes affect and are affected by climate + + + the branch of botanical and pharmacological science concerned with the production, properties, and use of quinine + + + the study of the physiology of the reproductive system + + + part forming the side of something, or attached at the side + + + the principle or practice of encouraging a behaviour by counter-intuitive means, such as advocating its opposite + + + the study of the venation of the wings of insects, especially as a basis for classification + + + the branch of pharmacology concerned with the development and study of radiopharmaceuticals + + + the science of metals + + + dermatology + + + the branch of zoology dealing with sponges + + + (reflexive second-person singular) that which belongs to thee + + + The action or occupation of giving speeches or presentations intended to motivate or inspire an audience + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + a person engaged in motivational research + + + philately or the study of postage stamps + + + excessive tourism + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + the science that deals with the geographical distribution of animals and plants + + + the branch of education concerned with the scientific study of instructional design and development + + + the branch of pathology that deals with physical conditions or symptoms associated with weather conditions + + + the branch of Christian theology relating to the person, nature, and role of Christ + + + the study of the plant family Compositae (or Asteraceae) + + + branch of archaeology which seeks to understand the nature of cultural change by a study of the variables which cause it, usually in a manner characteristic of "new archaeology" + + + the etiology of fevers + + + the study of saprobic environments + + + taxonomy + + + that breaks (something) + + + field that involves the study of explosives, their components, and their performance, safety, and reliability + + + of, for, engaged in, or used while hunting + + + each of a number of concentric rings in the cross section of a tree trunk, representing a single year's growth + + + phrenology + + + the study of or a treatise on worms + + + to treat with acid + + + to inject acid into a limestone or dolomitic structure order to enlarge pores in the surrounding rock + + + to flood, swell + + + to rain heavily + + + to fine for disobedience of orders + + + sukangavoq + + + to steal + + + to be a thief; to commit theft + + + three halves, 1.5 + + + be pleasant, sugar-like to the taste or smell + + + be endearing, cute + + + period of time at the end of the day + + + having assumed a title for oneself + + + to skim the surface of water on a pair of skis while towed by a motorboat + + + to alter, change + + + for a lithospheric plate to move upwards over the margin of an adjacent plate + + + to supply with caffeine + + + to destroy tissue by means of electric current + + + lead oxide mineral recognized for its rarity and difficulty identifying it + + + to convert to adinole by contact metamorphism + + + to glide across ice on skates + + + to howl or yelp as a dog + + + to alter by metasomatic processes + + + to have been executed with proper legal authority + + + to calcify organic tissue + + + to attach a biotinyl residue + + + to have as subject matter + + + to consist of essentially; to have as point or purpose + + + to be principally concerned with + + + Originally: to design or construct using biological principles. Later chiefly: to produce or modify (a substance, organism, etc.) using the techniques of bioengineering, especially genetic engineering + + + the leaves or seeds of the dill plant, especially when used dried and as a food flavoring + + + a treatise on corns, warts, bunions, and their causes + + + to make untidy + + + to watch or guard over as a warden + + + to invoke a memory + + + to back up; to reverse (a vehicle) + + + to back up; to reverse (a horse) + + + univalent radical derived by the removal of a hydroxyl group from an anomeric carbon atom in a sugar + + + broth obtained from clams + + + inferior whiskey or other strong liquor + + + a sweet, artificially colored, non-carbonated soft drink + + + an unusual or concocted drink + + + to call or summon + + + a member of a group of politically radical hippies, active especially during the late 1960s + + + a wrong start in a race + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + a tropical plant + + + the xiphoid process + + + of or resembling feces + + + repulsive + + + the branch of radiology that deals with the use of ionizing radiation to treat cancers + + + geographical knowledge as a whole; the study of this + + + any of a genus (Orobanche of the family Orobanchaceae, the broomrape family) of herbs that have leaves modified to scales and that grow as parasites on the roots of other plants + + + white, vitreous fluoride of lime, soda, and alumina; chiolite + + + that carries + + + allowed, not forbidden + + + having a tendency to proofread + + + for reason that + + + making of bets, wagering + + + (third person possessive singular; belonging to a female being) + + + administrative division of a polity headed by a governor + + + unpleasant, worthless, obnoxious + + + starchy meal ground from the dried roots of various orchids + + + the process of changing data into another format (= arrangement) so that it can be used or processed + + + to behave like a dork; to behave foolishly, in a clumsy and awkward manner + + + granular dessert ice with a sugar-syrup base + + + a specialist in tool engineering + + + of, relating to, or using neon + + + extremely bright : fluorescent + + + of or relating to a form of lighting used especially on advertising signs and consisting of glass tubes filled with neon or other gases that emit colored light when subjected to an electric current + + + a description of the ligaments of the body + + + radiographic examination of the uterine cavity and fetus following injection of a radiopaque substance into the amnion + + + astronomical photography + + + not a natural component of a particular organism or biological system + + + chromatography in which the substance to be separated into its components is diffused along with a carrier gas through a liquid or solid adsorbent for differential adsorption + + + branch of science that deals with the distribution of extinct species + + + a new system or method of writing or spelling + + + study of early modern and modern handwriting + + + deviation from a prevailing method of writing or notation + + + the systematic description of diseases + + + a description of, or dissertation on, the Egyptian pyramids + + + a printing process in which the image is created in relief on a soft plate and printed with a rotary press, used especially for printing on impervious or uneven surfaces such as commercial packaging + + + the study of people, places, and landscapes in rural areas, and of the social and economic processes that shape these geographies + + + subdiscipline of geography that focuses on everyday life and the way social groups interact with each other and the spaces in which they live + + + piece of tissue removed from body or from a plant + + + type of generator made for fast rotation on a turbine engine + + + (the) supernatural + + + measurement of angles + + + principle that perspectives and epistemology are always linked + + + anion or a salt of periodic acid + + + person who practices or embodies paternalism + + + interaction between different species in which one is harmed and the other unaffected + + + substance which counteracts the effects of alkalis + + + white fibrous capsule, especially of the testis + + + use of a drug to improve athletic performance + + + small ship’s boat used for minor tasks. + + + five-gallon container for petrol or water + + + organization drawing membership from the bar + + + back then + + + to play dance music, especially in a juke + + + to dance, especially in a juke or to the music of a jukebox + + + a branch of mathematical and physical theory that deals with the nature and consequences of chaos and chaotic systems + + + former monetary unit of Albania; one-hundredth of a gold franc + + + qindarka; one-hundredth of an Albanian lek + + + woodwind instrument; predecessor of modern clarinet + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + of an orgiastic character or tendency + + + one of a surveyor's party who carries the chain; a chain-carrier + + + chokerman + + + one that arranges the pattern chain on a dobby loom + + + a worker who ties skeins of yarn into a continuous chain for processing + + + an instrument or substance which causes a liquid to form a froth + + + taught by himself or herself without assistance + + + to render stolid + + + seasoned with cayenne; figurative spiced, hot + + + to pester, nag + + + to act like a noodge + + + cornetto + + + going on a trek + + + act to laminate + + + best/most able + + + double-breasted coat dress or coat + + + staple food made from barley-meal + + + in or into the inner part + + + being evidence of something + + + (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + + to be without sound + + + surgical removal of ureter + + + to spring up suddenly + + + to undo resolution (a previously resolved upon action) + + + removal of bunion(s) + + + to engage in commercial transaction + + + to make up (of parts) + + + to put forward, set forth + + + anathematize, anathemize + + + to lay out or expend beyond availability; to superexpand + + + to exaggerate or overstate + + + of or pertaining to tachycardia + + + subject to or afflicted with tachycardia + + + to feed swinishly or eat in a vulgar manner + + + xylose + + + in a desert landscape, a long ridge which has been isolated by the removal of rocks on either side + + + to underexpose in radiographic imaging + + + to make use of below optimum level + + + to engage in an artillery/gun battle + + + the fact, state, or experience of being Indigenous + + + to drop from an aircraft in flight + + + to introduce an alkyl radical to a compound + + + embodiment of individual creative spirit in Scientology + + + an analytical and ethnographic perspective on the cultural phenomena and social relationships that extend across nation-state boundaries + + + branch of anthropology concerned with the human mind, cognition, emotional experience, ethnopsychology, ethnopsychiatry, and enculturation + + + to repair or fill with spackle + + + a theoretical perspective in the mid-twentieth century that revived interest in evolutionism as a way to explain human social and cultural change + + + (obsolete) to follow + + + the quality or condition of being disastrous + + + a disaster; ruin + + + caproic + + + the sacroiliac region + + + the firm fibrous cartilage of the sacroiliac region + + + to fall ill with the common cold + + + relating to or denoting plants of the nightshade family (Solanaceae) + + + of, relating to, or resembling the mollusk family Solenidae + + + a mollusk in the family Solenidae + + + a nurse who specializes in providing care to infants, children, and adolescents + + + lunch bag, lunchbox + + + male genitals, especially as observed portrusing through clothing + + + (archaic) the action of despoiling; plundering, robbery + + + arrived at or known by intuition + + + a fatal degenerative brain disease of cattle, caused by a prion that can be transmitted to humans who consume infected beef + + + of, relating to, or characteristic of the phylum Mollusca + + + feeding on excrement + + + with, accompanied by; and with (associative) + + + the practice of eating insects + + + professional, technical, skilled; expert + + + a figure-skating jump with a takeoff from the back inside edge of one skate followed by one or more full turns in the air and a landing on the back outside edge of the opposite skate + + + mistakenly + + + dilated, expanded + + + peskily + + + a wave or period of unusual activity by desperadoes + + + the state or fact of being a nincompoop + + + an apparatus for pasteurizing foodstuffs + + + a contemptible or stupid person + + + vegetational formation dominated by shrubs + + + a person who is disobedient to authority + + + unhealthy-looking, sick-looking + + + recommendatory letter; letter introducing someone as worthy or suitable + + + the quality or state of being blasphemous; (also) blasphemous speech, thought, or action + + + the needle-shaped leaf of a pine tree + + + to be perplexed, to be put into a quandary + + + to write or copy out incorrectly or mistakenly + + + a gurgling sound that comes from the back of the throat of a dying person + + + surgical removal of as much of a tumor as possible + + + a French-speaking person, especially in a region where two or more languages are spoken + + + eat, use up, devouring + + + act of splitting, causing separation + + + The act of dividing a number or quantity to the operation of finding how many times it contains another number or quantity. + + + act of testing the limits of capability + + + examination + + + act or process of controlling, moderating, or curbing + + + make checkmarks + + + of, relating to, or characterized by play : playful + + + that is or has been locked + + + that has been subjected to filtration + + + a moisturizer that is used to treat vaginal dryness + + + to feel hatred + + + intend, plan, on purpose, intent + + + the act of continuing + + + harsh judgment + + + a short scherzo + + + light and airy in performance —used as a direction in music + + + high and thin in tone —used chiefly of a voice in the phrase soprano sfogato + + + resembling a topaz in color or luster + + + located above the fold on the front page of a broadsheet newspaper + + + suitable for prominent placement on the front page of a newspaper + + + located prominently near the top of the page in an electronic document (such as an e-mail or a Web page) + + + characteristic or typical of an author, especially a professional one + + + markedly literary + + + opal variety found deposited at orifices of geysers + + + a technique used in audio recording in which audio tracks that have been pre-recorded are then played back and monitored, while simultaneously recording new, doubled, or augmented tracks onto one or more available tracks + + + how real something is perceived as being and the criteria used to evaluate this + + + a wardrobe or its contents + + + a private room : bedroom + + + privy: a room or small building having a bench with holes through which the user may defecate or urinate + + + large Greek pottery vessel for mixing wine + + + cutaneous disease in sheep + + + boastful, arrogant; proud, conceited + + + carambola + + + type of bugle made from a cow horn + + + doleful, miserable, gloomy, lonely + + + get together with + + + fire, let go from employement + + + tourist + + + (expression of disappointment) + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + ship ahoy! (exclamation said when another ship is in view) + + + the science dealing with the microscopic phenomena of soils + + + the technology of radio + + + the application of X rays to industrial problems + + + the application of any form of radiation to industrial problems + + + the branch of botany that studies roses + + + act as staff for, work at (place) + + + release from blame/sin + + + the study or science of nothing + + + the science of friction, adhesion, lubrication, and wear on the length scale of micrometers to nanometers and the force scale of millinewtons (mN) to nanonewtons (nN) + + + branch of bacteriology that deals with organisms associated with or pathogenic for plants + + + a topology that contains fewer open sets than another topology on the same set + + + the study of the form, structure, and arrangement of leaves + + + camel-driver + + + (polite expletive) short for "fuck up;" to botch, make a hash of, mess or screw up + + + branch of geology that deals with topography + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + the study of the interactions between human bodies and the atmosphere + + + newcomer; fresh immigrant + + + heavy whip cut from rhinoceros or hippopotamus hide + + + pertaining to or connected with fermentation + + + a late 19th century to early 20th century American school of psychology concerned especially with how the mind functions to adapt the individual to the environment + + + being part of; included in + + + to block + + + to block + + + emphasize + + + headman of a region, community, or occupational group + + + to blunt, dull; to render obtuse + + + make available for consideration + + + act of postponing consideration of + + + the application of mesmerism to phrenology, to the phrenological organs, or to the mental faculties in general + + + the study of or theory about mathematical or occult significance in measurements of the Great Pyramid of Egypt + + + make sense of, distinguish + + + exclude + + + one who is the personification of dawdling; especially, a dawdling girl or woman + + + mortgage again + + + act/process of causing an increase (often in elevation) + + + decrease + + + change location + + + exaggeratedly publicized + + + act of removal + + + The process of a rise or leap from a surface in making a jump or flight or an ascent in an aircraft or in the launching of a rocket. + + + act of taking time off for vacation + + + act or process of increasing dramatically + + + act or process of going or leaving [similar to "getting going, hitting the road," etc.] + + + cause distance between two things + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + the application of various technologies to enhance the learning experience, encompassing a wide range of tools and platforms used for teaching, learning, and assessment + + + act/process of remaining unsettled, waiting or awaiting + + + assembling military units for deployment + + + act of typing and sending a brief, digital message + + + the study of past human activity, settlement, and environments as revealed through archaeological sites located in wetlands + + + act of uttering a moan, complaining + + + process of finding, searching + + + come up with a new idea + + + center on + + + a topology defined on a quotient space, which is obtained by identifying certain points in a given topological space + + + act of making silent + + + act of attaching firmly + + + to charm or seduce + + + the doctrine of the Logos + + + the science of words + + + the study of mineral inclusions within larger mineral grains, focusing on the information they reveal about the host mineral's formation and the broader geological environment + + + act or process of giving shelter + + + absorb sensorily, possibly with pleasure + + + act or process of teaching (especially privately) + + + the philosophical study of the mind and life, distinct from the physical body + + + (in the oil industry) in or into a well or borehole + + + a hole dug or drilled downward, as in a mine or a petroleum or gas well + + + Homology is a geometric process H that constructs finite dimensional vector spaces Hᵢ(X), for suitable X and i. Homology is linear when hᵢ(X) is a linear function of X (and hᵢ(X) ≥ 0). + + + the spatial arrangement and connectivity of atomic or molecular orbitals, particularly in the context of chemical reactions and electronic structure + + + that part of natural theology which is based on the properties and phenomena of fire + + + to the methods, tools, and techniques used to transform raw materials into finished goods or services + + + the methods and systems that enable vehicles, including aircraft, missiles, and spacecraft, to move toward their destinations + + + erroneous or incorrect psychology + + + a (suggested) name for a science of the ‘ends’ of human conduct + + + to treat someone unfairly and badly, put or leave in a bad situation + + + choose, elect, or appoint (for a specific task or purpose) + + + determine quite detailedly + + + act of bringing to a sudden halt + + + form of train incident + + + the act of stabbing + + + mess up, botch + + + the act or process of bending, changing direction, or forming an arc + + + hold a second job + + + psychological study or theory based on the classification of people or phenomena by type + + + phytogeography: branch of biogeography concerned with the geographic distribution of plant species + + + the act of division, dividing into sections + + + act or process of helping grow or develop + + + act or process of transfering data from one computer to another + + + The act of isolating + + + revise an opinion + + + to make a mess of + + + instance of shaking or trembling + + + excited, amped up + + + extract, produce + + + make/accept an oath of office or court + + + continue fighting + + + act of protest, standing outside it in order to protest + + + act or process of uttering with a groan + + + a fragment of detrital volcanic material that has been expelled aerially from a vent + + + cover with sequins literally and figuratively + + + hit the back of a car + + + to make sexual advances + + + establish, make ready in advance + + + to make peace + + + (cause to) be affected with a certain attribute + + + having been effected by the process of hindering the clotting of blood + + + preventive of nausea or vomiting + + + used to lower high blood pressure + + + to be or act like a dilettante + + + a situation where homologous traits (those shared due to a common ancestor) evolve independently in different species or populations, often due to similar environmental pressures + + + making void or erasing + + + to lift and throw (someone) to the ground, as in wrestling + + + shortened form of a word or phrase, typically created by omitting letters or syllables + + + fool + + + to push through, acting like a bull + + + put on a cassette + + + Being like stone through calcification + + + sensitive to chemo + + + develop in conjuction with another developer or project + + + surgical removal of all or part of the colon + + + exist in coiled state + + + consisting of an array of multiple boreholes drilled into the ground for a shared purpose, often used in large-scale geotechnical, geological, or geothermal projects + + + call to court + + + to schedule programming to compete with another show + + + cause one entity to span a gap + + + device for dethatching, similar to a lawnmower but with vertical rotating blades + + + The act of losing muscle tone or fitness, becoming less adapted to + + + remove the sheen + + + inhabit a den, as in hibernation + + + remove hair + + + to deprive an organ of attached nerves + + + to hurry off promptly, abandon effort, flee + + + fakecel + + + send a direct message on twitter + + + contaminate the source and the destination simultaneously + + + breeding different varieties + + + remove dust, metaphorical/phrasal variant + + + informal expression used to get attention or greet someone + + + beat, surpass + + + process of becoming covered in epithelial cells, usually during wound healing + + + (of a tumor or other abnormal mass) growing outward from tissue or organ of origin + + + name + + + to make over, or literally give face lift + + + face off: oppose, fight + + + be no longer standing + + + natural disaster: fast moving flood that comes all at once + + + to form a cleft or crack + + + The act of making fatter + + + to allow an old exception to a new regulation + + + act or process of creating a graph of a function + + + surf move + + + twirl a lightweight hoop around the body in play or exercise by rotating the hips + + + The act of to taking care of someone's house + + + surgery that creates a connection between the ileum and the colon + + + involving the ileum and the sigmoid colon + + + beginning, origination + + + graduate from a university + + + surgical removal of part of the colon + + + court ordered prohibition of a specific action + + + The act of calibrating within a set; calibrating between + + + making a bubbling noise + + + low-energy food + + + opportunity + + + displaced to one side + + + make the characteristic noise of a cow + + + forming or dividing into lobules + + + the failure to adapt properly to a new situation or environment + + + to diagnose incorrectly + + + attend to + + + very slight invasion of malignant cells into adjacent tissue + + + post to an online journal + + + create + + + be amazed + + + an annual herb (Chenopodium quinoa) of the amaranth family that is native to the Andean highlands and is cultivated for its starchy seeds which are used as food and ground into flour + + + quinoa seeds + + + regulation of osmotic pressure + + + not having given birth or laid eggs + + + to buy in excessive amounts + + + allocate too much money to some purpose + + + overbake + + + consisting of multiple layers + + + outdo + + + to leap beyond something else + + + to surpass another in trading + + + aim too far, exceed + + + being in, going to, coming from, or characteristic of the 48 conterminous states of the U.S. + + + The act of inserting names of famous people into conversation in order to seem more important + + + imaging for transverse section reconstruction of the radionuclide distribution within the body + + + describe in detail, spelling out each play + + + to make or cause to make a tinkling sound + + + near the aorta + + + surgery that creates a connection between the pancreatic duct and the jejunum + + + asleep, soundly + + + beat + + + whump, make noise + + + be straightfoward and honest with + + + not suitable for/capable of being viewed + + + not presenting new info + + + not having been indicted + + + not having a connection to ground potential (or metaphorical extension) + + + ubiquitinate + + + phrasal typing, using a typewriter + + + sounding like a drum + + + give medicine to before an event + + + situated in front of the tibia + + + looking into the future, forecasting + + + Being examined using a proctoscope + + + having no answer to give, containing no answer + + + having no possible answer, unanswerable + + + recite from a list + + + attach, again + + + concentrate into one location + + + act or process of teaching again + + + lucid clarity of being fully present and aware + + + become more intense (again) + + + to occupy again; to take possession of, settle or maintain a position in a certain place again + + + to pass again (especially into law) + + + participial verb form in the active voice + + + obtain again + + + impudent/shameless (unblushing) + + + send again + + + type again + + + (cause to) fit as necessary + + + to avoid humiliation or loss of status and respect + + + make the noise 'scrawk' + + + to make certain, secure, be assured of + + + act of presenting in a sensational manner + + + distribute to shareholders + + + depart, as a soldier + + + look inward, search for inspriation, motivation, etc. + + + compare, measure up + + + make into a stack + + + to take a smaller sample from a larger sample + + + to mix or twist together, drag in + + + thaw_out: fully defrost + + + make better by equipping with "tools" + + + touch upon: same as touch on + + + to hit or beat with a truncheon or billy club + + + mad, crazy; eccentric, unconventional, wild + + + in a futuristic manner + + + perpetrator (of a crime) + + + which thing, which object + + + the number 2 + + + the number 7 + + + playing card + + + connects at least two alternatives (inclusive) + + + thousand million + + + million million + + + list of films related by some criteria + + + gesture and internet term + + + one; any indefinite example of + An yttrium sulfate compound is generally soluble. + + + (introduces a clause which is the subject or object of a verb) + + + at any point in time + + + for a time period + + + All; every; qualifying a singular noun, indicating all examples of the thing so named seen as individual or separate items (compare every). + Make sure you wash each bowl well. + The sun comes up each morning and sets each night. + + + the number 100 + + + A large amount of. + Do you think I have much chance of catching the train on time? + After much discussion, we decided to set about the task with much enthusiasm. + Did you do much running last summer? + + + Denotes the one immediately following the current or most recent one. + Next week would be a good time to meet. + I'll know better next time. + + + after a point in time + + + not containing or using + + + in the direction of + + + some person + + + with an increase of + + + Any one out of an indefinite number of persons; anyone; any person. + Anybody will do. + Is there anybody inside? + + + at any time that + + + Introducing a basis of comparison, with an object in the objective case. + You are not as tall as my sister. + They are big as houses. + + + not containing meat + + + following/in line with a meatless diet + + + characterized by entropy; inevitably deteriorating + + + phrase used when someone is leaving + + + to eat + + + apportion; give out according to a rationing system + + + to strike with one's knee + + + cheer + + + to squeeze fruit to produce juice + + + comics created in Japan + + + having serifs + + + number between 59 and 61 + + + repository of biological samples used for research + + + type of pharmaceutical drug product + + + field of biology that examines periodic (cyclic) phenomena in living organisms + + + separate one area from another + + + database + + + organization responsible for a database + + + natural number + + + natural number + + + state of being employable + + + capability of an individual to adjust into the work labor + + + study of gene expression changes + + + the study of the mechanisms of temporal and spatial control of gene activity during the development of complex organisms + + + the study of mitotically and/or meiotically heritable changes in gene function that cannot be explained by changes in DNA sequence + + + relating to epigenetics + + + pertaining to evolution + + + animal feed made from fish + + + self-similar + + + pertaining to a genome + + + deliberate manipulation of Earth's environment + + + engineering aspects of soil and rocks + + + academic qualification + + + chemically treat with a halogen + + + pertaining to hydrobiology + + + branch of geology which deals with the relations of water on or below the surface of the earth + + + branch of science that studies distribution and movement of groundwater + + + pertaining to hydrology + + + branch of immunology that deals with the immunologic properties of blood + + + study of infection + + + zoo for insects + + + one who inspires + + + collection of instruments + + + process of blending together + + + between governments + + + between universities + + + medication administered intravenously + + + communicate with opposing party + + + sequence of events in a life + + + wave of light + + + process of creating malt + + + place where malt is created + + + microscopic bead + + + local region near a cell + + + device around 1 micron in size + + + miniature satellite + + + type of DNA sequence + + + technology for microscopic devices + + + something imitative + + + relating to myelodysplasia + + + use of nanotechnology in medical treatment + + + study of drug abuse + + + doctor specializing in nephrology + + + measurement of shape + + + use of radiation in nervous system medicine + + + made without weaving + + + pertaining to notaries + + + pertaining to coins + + + bring into a group + + + pertaining to optometry + + + pertaining to palynology + + + fly a paraglider + + + Appropriate and legitimate for its purpose. + + + method of creating electric power from sunlight + + + study of mental aspects of biology + + + with both psychological and social aspects + + + act of reanimating + + + put together again + + + rearranged structure + + + one who tries to re-establish a historical practice + + + one that recycles + + + light again + + + process of reprography + + + patterning layer in semiconductor fabrication + + + chemical produced by an organism that affects others + + + locate something in three dimensions + + + Connochaetes taurinus + + + terminal-based network protocol + + + used to warn of a falling tree + + + a South African species of palm tree + + + quality/fact of being irritating/tiresome/annoying + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + affirmative option provided in a binary vote + + + Ordering items individually + + + abjectly (in an abased/humbled/humiliated manner) + + + relating to transactions + + + to smoke using an e-cigarette + + + covered in or characterized by upholstery + + + intermediate point along a route + + + mocking sadness + + + to make robust, to turn something into a robust form + + + transduction of mechanical stimuli into neural signal + + + toxic effect on ecosystems + + + type of alcohol (chemical term) + + + political/economic philosophy + + + type of fiber + + + selfishly keeping or consuming something + Don't bogart that joint, my friend. Pass it over to me. + + + the study of cave-dwelling organisms + + + type of horseman + + + type of bread + + + Italian white bread + + + type of small village or settlement + + + anarchism based on computerized cryptography + + + algorithm used to train an artificial neural network based on the gradient of a cost function + + + study of cultural aspects of dealing with living things + + + mark used to indicate quotation in some languages + + + track and field combined competition + + + place of work for a knacker + + + intentially hostile software + + + small moon + + + type of cell found in muscles + + + In an anticipative manner; expectantly. + + + groundlessly/unjustifiably (in a baseless manner) + + + flexibly/limply (as if without bones) + + + foolishly, without thought or intelligence + + + in a manner representing something as small or less than it is + + + to a small/minute degree + + + in a manner suggesting agitation or excitement; animatedly + + + in a way causing irritation/frustration (i.e. that isn't satisfactory or what one wishes for/requires) + + + in a manner much larger than expected + + + latin phrase referring to actions taken in memory of a deceased individual or individuals + + + in an isolated manner + + + in a lesbian manner + + + in a loveless manner + + + without bounds/restrictions (in a manner without limits) + + + topological space that at each point resembles Euclidean space + + + in a meaningless manner + + + with significance (of look/tone/gesture/etc.), so as to convey meaning + + + in a persistently irritating/annoying/complaining/exhausting manner + + + these days, in the present day + + + often; oftentimes + + + In a promissory manner. + + + in a quenchless manner + + + in a rattling manner + + + in a reasonless manner + + + In a temulent manner. + + + without thanks, unthankfully + + + "besides that;" that which is beside another object + + + Across the direction of travel or length of; athwart, crosswise, obliquely, transversely. + + + done in a way that lacks resentment or ill will + + + yes + + + study of nematodes + + + plant which prefers low-nitrogen soils + + + Pluto-like object beyond Neptune + + + type of computer program + + + organism living in symbiosis + + + synchronised well + + + allocate money to some purpose + + + predominant cell type in the epidermis, the outermost layer of the skin, constituting 90% of the cells found there + + + statistical analysis of written publications, such as books or articles + + + approve of loudly + + + natural disaster: stretch of very high temperatures + + + reduction of some kind of asset for financial, ethical, or political objectives or sale of an existing business by a firm + + + to convert into agate + + + not becoming, appropriate or in accord with expected standards + + + to become sane or reasonable + + + to repay, requite + + + to select from a group or pluck again + + + certifying again + + + to launch something again or put something into operation or motion again, i.e. a company or brand; to set off or start again + + + to make trendy + + + be on all sides of, encompassing + + + horse breed group + + + someone concerned with the raising of livestock + + + assembly of microorganisms belonging to different kingdoms; part of a microbiome (which consists of the microbiota and their environment) + + + study of traditional medicine practiced by various ethnic groups + + + invest again, put money back into a project or investment + + + Scientific study of algorithms and statistical models that computer systems use to perform tasks without explicit instructions + + + degree to which overt adverse effects of a drug can be tolerated by a patient + + + parasital protein found in Leishmania major Friedlin, encoded by LmjF.36.2320 + + + cell type + + + acquired metabolic disease that has material basis in an abnormally high level of uric acid in the blood. + + + neurons which are not motor or sensory + + + degree to which a system's components may be separated and recombined + + + class of protein + + + type of photodetector based on a p–n junction + + + class of chemical compounds + + + the act or process of constituting again or anew + + + class of enzymes + + + Cytoplasmic organelles, spherical or oval in shape, that are bounded by a single membrane and contain oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). + + + class of chemical compounds + + + any of a group of galactose-containing cerebrosides found in the surface membranes of nerve cells + + + type of cell + + + tectonic plate boundary where subduction takes place + + + act or process of increasing, or causing to increase, again + + + segment of content intended for podcasting + + + former name for rutherfordium + + + macrocyclic lactone with a ring of twelve or more members + + + ability of an organism to keep its body temperature within certain boundaries + + + eukaryotic cell clone derived from an eukaryotic organism by immortalization + + + spreading and enforcing Russian language and culture in neighboring regions and among minorities in Russia + + + neopronoun + + + neopronoun + + + neopronoun + + + neopronoun + + + effigy into which pins are inserted + + + to look after child temporarily + + + Reference to physical, non-human inputs used in production to produce wealth + + + amusement park and funfair attraction + + + video game genre + + + salutation used in the evening + + + a photograph of the photographer + + + sex act and pornography genre + + + practice of or desire for intimate relationships with more than one partner, with the knowledge of all partners; consensual, ethical, and responsible non-monogamy + + + members of an online subculture who define themselves as unable to find a romantic or sexual partner despite desiring one + + + suspicious + + + homosexual + + + artwork featuring aspects of a work of fiction created by a fan + + + to cause to enter popular awareness + + + administrative territorial entity + + + cart for carrying apples + + + grandparent's brother + + + protuding abdomen, paunch + + + profane term; word considered rude or offensive + + + as; in the capacity of; acting as + + + Until. + + + : with. + + + therefore + + + at this moment + + + because + I wanted to attend the concert, for it featured my favorite band. + + + since / because + She prepared thoroughly for the meeting was crucial to her career. + + + some large quantity of something + + + which of two + + + Exclamatory response to a minor disappointment. + Shucks. It's too bad you can't make it to the party. + + + An expression of surprise. + + + Used in place of fuck. + + + used to tell someone, especially a child, to be quiet + + + requesting assistence + + + used as an exclamation to express surprise, taunting, exultation, etc. + + + Used to place emphasis upon something or someone; sometimes, but not always, when actually addressing a man. + Man, that was a great catch! + + + Nonsense! Expresses dismissal or disdain. + Fiddlesticks! It's nothing but smoke and mirrors! + + + An expression of laughter. + + + Used to acknowledge a small mistake or accident. + Oops! I left the lid off the ketchup. + + + to prioritize and sort into groups based on severity of need (usually medically) + + + common name for a genus of gastropods known under the taxonomic name Ariolimax + + + theoretical concept in sociology + + + list of web pages on a website + + + an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + + a south Indian pancake + + + augmentation of intelligence through the use of information technology + + + efficiency measure based on environmental impact + + + of an astronomical body + + + actions to limit climate change in order to reduce the risks of global warming + + + denial, dismissal, or unwarranted doubt about the scientific consensus on the rate and extent of global warming + + + market-based approach used to control pollution + + + total set of greenhouse gas emissions caused by an individual, event, organisation, or product, expressed as carbon dioxide equivalent + + + quantitative methods used to simulate climate + + + umbrella term for the study of the atmosphere + + + decrease in the pH of the Earth's oceans + + + risk resulting from climate change and affecting natural and human systems and regions + + + officer in government or business + + + involving only one sex or gender + + + differential operator in vector calculus + + + mathematical symbol + + + written document used to document consent in a standardized manner + + + set of recommendations for decision-making + + + medical research using human test subjects + + + tructure formed in a sediment by the action of a living organism (e.g. a tube, burrow, footprint, or groove made by crawling across a surface) and preserved when the sediment becomes a sedimentary rock + + + bony spines on the tip of the tail of a dinosaur + + + something ill-considered + + + class of typespecimen + + + person who rejects the efficacy or safety of vaccines + + + vegetation layer above shrubs and under the canopy + + + increasing occurrence of a species in a new habitat + + + another term for a selfie. Usually used in KPOP culture + + + last performance promoting on music shows (KPOP) + 《Goodbye Stage》 BLACKPINK (블랙핑크) - PLAYING WITH FIRE + + + act of correct identification + + + to be alive + + + fictional monster + + + The thing, item, etc. being indicated. + This is a pronoun. + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + box lyre associated with Welsh music + + + fictional technology that renders objects invisible + The first known a example of a practical cloaking device was on a Romulan bird-of-prey spacecraft that crossed the Romulan Neutral Zone in 2266. + + + science fiction weapon + + + continuity that has be retroactively applied to an existing work + + + research field concerned with information technology approaches to handling biodiversity-related data + + + alteration of calcium-rich plagiocale feldspar to fine grained aggregate of secondary sodic-rich minerals + + + ethological class; trace fossils formed as a result of grazing by organisms + + + lithium atom with a charge + + + type of Japanese candlestick pattern + + + to have been altered by corundum + + + to strengthen or fortify using corundum + + + part of a graph + + + to exchange explicit texts or images with someone + + + used to express discontent or dismay + + + used to express surprise + + + lacking romantic attraction to anyone + + + to moderate + + + (of a product) to modify + + + a video blog + + + attractive older woman; acronym of Mom I'd Like to Fuck + + + happening before a pandemic, specifically the COVID-19 pandemic + + + clade of dinosaurs containing all modern birds + + + offensive or lewd + + + gender identity where a person identifies as only partly male + + + transgender with a partially or fully masculine gender identity + + + one sextillionth of a second + + + اینٹرنیٹ تے گل بات دی چوݨ دیݨا + + + a member of the Reichsbürger movement + + + male citizen of an empire + + + drunk + + + device dispensing ink over a metal ball at its point + + + having a crooked back + + + Any organism of the clade Unikonta + + + weird, dubious, or otherwise strange + + + كَان مُمكِن + + + any toad of the clade Bombina + + + any butterfly of the family Lycaenidae + + + any protist in the clade Alveolata + + + any insect of the infraclass Neoptera + + + tartaric acid + + + to arrange to pay debt in installments + + + act of assigning a label + + + act or process of preceding, spatially or temporally, terminating at a determined point + + + a little thing + + + a text-based user interface operated from a command-line console + + + a New Zealand honeyeater, a parson bird + + + a barangay + + + having a reddish-brown color + + + made from terracotta, a hard, baked reddish-brown clay + + + any crustacean of the family Palaemonidae + + + platonic friendship including sex + + + person one has a platonic friendship with, that includs sex + + + female a person whose company one enjoys and towards whom one feels affection + + + stylistically advanced + + + ergonomics + + + one who bunkers, or one who creates a bunker + + + prepare for an immediate event about to happen + + + prepare a weapon for use + + + boat or ship suited to sailing + + + Japanese syllabary + + + vocalisation produced by canines and other mammals + + + type of formal grammar + + + to render illegitimate + + + to trick somebody + + + any even-toed, ruminant mammal in the family Camelidae + + + rodent in the family Caviidae (cavies) + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + like a troglodyte + + + like a troglodyte + + + a specialist in pedology, i.e. soil science + + + someone who studies the behavior and development of children + + + a bird in the family Struthionidae + + + of, relating to, or resembling the ostrich or related ratite birds + + + personal canon of somebody + + + medical practice concerned with feet + + + the scientific study of the morphology and physiology of the feet + + + of or relating to the bat family Molossidae + + + any cactus of the genus Mammillaria; even when not globular in shape + + + Atticora tibialis, a common South American species of swallow + + + like a toad + + + wildflower of the family Iridaceae + + + the Cape vulture + + + rhinoceros + + + shut up! be quiet! + + + cyberattack that utilizes a recently-publicized computer software vulnerability on systems which are yet to be mitigated + + + applied to molar teeth that are V-shaped, narrow at the front and rear, with a sharp apex, and with the two cusps partly or completely fused + + + of or relating to the Zalambdodonta + + + any porpoise in the family Phocoenidae + + + of or designating a person of mixed race, especially a person who is partially of East Asian, Southeast Asian, or Pacific Islander descent + + + any fruit bat in the family Pteropodidae + + + Schawarma + + + Islamic architecture style using alternating coloured bricks + + + shaft allowing light to enter a space + + + of or relating to the bird family Picidae (woodpeckers) + + + in opposition to + + + long live + + + to be honest + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + an investigation of truth in a civil law case in which the interrogation and inquiry are often accompanied by torture + + + A 'book' containing a student's overall grade + + + Inuit shaman + + + relative, someone who is part of a family + + + impertinent; having chutzpah + + + a disorderly, confusing situation; a mess + + + having something additional applied + + + landlord who rarely visits or attends to the propery he lets + + + six, six of something (often approximately) + + + to move the top of the body downwards + + + coming outside from + Preparations for their departure out of Egypt + + + dreamtime, everywhen + + + recipient of negative affect + + + branch of zoology dealing with the Crustacea + + + study of the geology of celestial bodies + + + study of the interaction between humans and other animals + + + branch of entomology dealing with the Trichoptera (caddis flies) + + + branch of herpetology dealing with snakes + + + branch of ecology that deals with the structure, development, and distribution of ecological communities + + + the study of character including its development and its differences in different individuals + + + systematic description of distinguishing or essential features; the aggregate of these + + + study of the shape of the ear + + + academic and professional field combining gerontology and technology + + + the study of waves or wave motions + + + a branch of anthropology concerned with the study of cultural institutions as distinct from the people who are involved in them + + + the study of a community or society through systematic analysis of what is thrown away as garbage; the branch of anthropology or archaeology dealing with this + + + the practice of looking through the garbage of celebrities, politicians, etc., in search of compromising or incriminating material + + + the study of vibrations and oscillations in the Sun + + + cruel, cold-hearted + + + occurring outside of daylight hours + + + one-hundred-and-twenty-fifth anniversary + + + hilarious + + + cylindrical body that is composed of parallel peripheral rods connected to the axial filaments of flagella + + + ancestor + + + that which shares attributes with another or with itself at another time + + + the branch of aerobiology that is concerned with the bacteria of the air + + + the study of sea birds + + + branch of zoology that deals with the oligochaete worms + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + branch of botany that deals with plant functions + + + the study of mental functioning and behavior in relation to other biological processes + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + a fish of the order Isospondyli + + + egg-shaped + + + consisting of a mixture of an essential (volatile) oil and a resin + + + drug addict, homeless person + + + the study of the effects of radiation upon living organisms + + + branch of biology concerned with the study of plankton + + + the study of grasshoppers and locusts (infraorder Acrididea) + + + the study of the nature of ignorance or of what it is impossible to know + + + the study of weather and use of weather and climate information to enhance or expand agricultural crops and/or to increase crop production + + + branch or school of psychology mainly based on the work of the philosopher John Locke + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + the scientific study of aponeuroses + + + the branch of meteorology which studies thunder + + + observation of the heavens as the basis of a religious system; reverence of the heavens + + + branch of biology that studies cells + + + scientific investigation of the atmosphere + + + a treatise on the atmosphere + + + the science of the universe + + + (expressing approval, emphasizing accuracy) + + + (implying alarm or threat) + + + the branch of astronomy concerned with comets. + + + the study of cyclones + + + an environmental movement and philosophy which regards human life as just one of many equal components of a global ecosystem + + + the study of the mind in relation to the electrical activity of the brain + + + of, relating to, living in, or being a controlled environment containing one or a few kinds of organisms + + + the application of scientific methods and engineering techniques to the exploitation and utilization of natural resources (as mineral resources) + + + the science dealing with the brain and its structure and function + + + the study of fungi + + + the study of or knowledge of the diseases of horses + + + the branch of pharmacology that deals with drugs acting on the immune system and, in addition, with the pharmacological actions of substances derived from the immune system + + + the study of karst and karst topology + + + branch of zoology dealing with mammals + + + branch of bryology that deals with mosses + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + to leave + + + to surpass + + + to kill + + + to humiliate, act aggresively + + + the branch of ophthalmology that deals with neural aspects of the visual system + + + the study of ostraca (potshards or limestone flakes used as a surface for drawings or sketches, or as an alternative to papyrus for writing as well as for calculating accounts) + + + the physiology of extinct and fossil organisms + + + the branch of science that deals with pests and methods of controlling and eradicating them + + + the psychological study of the passions or emotions + + + radiology + + + the scientific study of repairing disturbed ecosystems through human intervention + + + the scientific study of inorganic entities: geology, mineralogy, etc. + + + wearisome repetition of words in speaking or writing + + + the branch of psychology that focuses on how people grow and change over the course of a lifetime + + + the study of turtles and tortoises + + + the study of writing systems and orthography + + + (informal) the art or practice of bluffing or deception + + + a person or people who are unable to leave a place and are thus forced to listen to what is being said + + + to spend time doing unimportant or trivial things + + + to waste someone's time + + + to be sexually promiscuous + + + a center for monitoring electronic communications (as of an enemy) + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + the study of the time-averaged geographical distribution of cloud properties and the diurnal, seasonal, and interannual variations of those properties + + + the scientific study of human beings and populations from a biological point of view + + + the scientific study of human behavior under natural conditions especially in the context of its origin and evolution + + + the psychology of a person's own mind + + + scientific discipline that is concerned with all aspects of the Earth's structure, composition, physical properties, constituent rocks and minerals, and surficial features + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + the study of facial features + + + a treatise on diseases of the teeth + + + the branch of medicine that deals with diseases of the teeth + + + branch of histology concerned with the nervous system + + + the study of and classification of muscles with reference to their innervation + + + a treatise on electricity + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + the application of food science to the development, processing, or preservation of foods + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + a treatise on dialling + + + a victory in which one side or team wins every game, contest, etc. + + + a complete change in something + + + an election when a candidate or party achieves an overwhelming or complete victory, winning in all or almost all districts or precincts + + + not assassinated + + + the branch of psychology concerned with the study of the human mind + + + seismology dealing with records obtained at long distances + + + the branch of medicine studying the effects of psychological phenomena on the immune system; the intersection of psychology and immunology + + + sociology as it relates to psychology, or is influenced by the findings of psychology + + + the classification of mental illness + + + a treatise on fossil animal remains + + + the study of fossil animals + + + the branch of biology that deals with the formation, structure, and development of ova + + + the use of specially designed and fitted contact lenses to temporarily reshape the cornea to improve vision + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + the study of water balance components intervening in agricultural water management + + + the study of the effects of sexually transmitted disease on the skin, mucous membranes, nails, and hair + + + an applied earth science that uses hydrologic principles in the solution of engineering problems arising from human exploitation of the water resources of the Earth + + + the study of the climatic conditions of a large area + + + the study of relative abundances of nuclear species as a means of dating stages in stellar nucleosynthesis + + + a universal theology; specifically, a theology which comprehends all gods and all religions + + + a guide who helps visually impaired runners during a race + + + the study of human society; sociology + + + the study of and collecting of beer mats + + + simple or basic technology; (relatively) unsophisticated technology + + + the study of the spleen + + + the use of climate information in decision-making, impact assessments, seasonal climate forecast applications and verification, climate risk and vulnerability, development of climate monitoring tools, urban and local climates, and climate as it relates to the environment and society + + + the application of weather and climate information to problems facing agriculture and commerce + + + a branch of meteorology that uses synoptic weather observations and charts for the diagnosis, study, and forecasting of weather + + + a library staff person who is not a librarian + + + the application of the data and techniques of climatology to aviation meteorological problems + + + hypnotism + + + the branch of science concerned with the effects of drugs and other chemical substances on plants + + + the phenology of plants + + + psychological discipline that deals with individual psychology techniques applied by an individual, in order to affirm and achieve individual goals such as happiness and self-affirmation + + + archaeological survey and excavation carried out in advance of construction, other land development, or natural destruction of a landscape + + + the study of bounded sets + + + a video that integrates a song or an album with imagery that is produced for promotional or musical artistic purposes + + + a theory or science of faith + + + foolish talking; babbling + + + a monologue + + + medical field that is concerned with rational nutrition, energy and nutrient needs of the body and the ways to alter them with special diets in the treatment of particular diseases + + + the study of fools and folly + + + Adderall + + + technology designed or planned so that people with disabilities are not prevented from using it + + + the branch of mineralogy concerned with the physical properties of minerals, as distinct from their chemical composition + + + natural theology + + + to be realized in the near future + + + non-existent job posting or job interview + + + the making of false statements, lying; (also) an instance of this + + + an approach to archaeology that uses queer theory to challenge normative, and especially heteronormative, views of the past + + + the study of artillery; the practice of using artillery as a weapon + + + the study of artillery; the practice of using artillery as a weapon + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + the chemistry of metabolic processes; biochemistry + + + singular ‘they’ + + + killed by suffocation in water + + + a structure that stores transactional records, also known as the block, of the public in several databases, known as the “chain,” in a network connected through peer-to-peer nodes + + + drug user, junkie + + + act of toppling, knocking over + + + dumping of waste + + + agricultural food products as a class + + + (reflexive third-person plural pronoun) of their own self + + + analysis of the climate of a single space, or comparison of the climates of two or more places, by the relative frequencies of various weather types or groups of such types + + + the study of relationships between the structure of an organism and the function of the various parts of an organism + + + a branch of mathematics encompassing any sort of topology using lattice-valued subsets + + + branch of radiology dealing with minimally invasive treatment, which reaches the source of a medical problem through blood vessels or directly through a tiny incision in the skin to deliver a precise, targeted treatment + + + the scientific use of mineral springs and hydrotherapy for healing + + + a doctrine or theory concerning matter + + + the science or knowledge of the streets of a town or city; (now especially (colloquial and humorous)) the skills and knowledge necessary for dealing with modern urban life + + + theological theory based on the idea of process + + + an explanation for the origin of a word that is believed to be true, but is, in fact, wrong + + + the transformation of words so as to give them an apparent relationship to other better-known or better-understood words (as in the change of Spanish cucaracha to English cockroach) + + + the branch of science and technology concerned with robots + + + technology + + + the study and analysis of the evolution of a text or texts, esp. through rewriting, editing, and translation; more generally, the study of text production; textual classification + + + the theory or subject of spirit-rapping + + + to treat in the manner of Shakespeare + + + to deteriorate in quality or condition + + + type of mathematical function + + + type of scientific study + + + qaqorpoq + + + talk or gossip of a rural area + + + that occupies oneself + + + to subject to electrolysis + + + to increase the amphibolitic content of a rock + + + to regulate the body’s water content and solutes + + + to perform parathyroidectomy on + + + fine-grained albite-rich rock resulting from contact metamorphism of shales and slates + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + the practice of designing, manufacturing, using, and disposing of information technology products in an environmentally friendly way + + + to flow or wash over; to inundate + + + to convert by petrification into jasper + + + to break the law + + + bleating sound + + + to spit a lump of phlegm + + + to work as an adjunct + + + to have been made widely available, formally released + + + to have had works accepted for publication (as an author) + + + act of disturbing, disturbance + + + to make a dull or plangent sound upon impact + + + to pair or team up with another person + + + to make a rejoinder to something or someone authoritative + + + to reply (not necessarily impertinently) + + + the fly agaric toadstool, Amanita muscaria, which was formerly smeared on bedsteads to repel bedbugs + + + mineral, complex sulfate of aluminum + + + to behave in an aimless or idle manner; putter + + + fiddle with + + + sacred object, amulet + + + type of shaman and traditional executioner amongst the Arrernte people + + + hydrous fluoride mineral of calcium and sodium + + + the act or action of performing the high jump + + + joking, teasing + + + understanding, knowledge + + + deep purple-red colour, like that of Burgundy wine + + + musical instrument resembling a guitar with plucked metal strings and a scalloped body + + + close by + + + (of a person) associated, accompanying + + + that hints + + + the state of being a servant + + + a white, deliquescent crystalline compound, ZnCl₂, used as a wood preservative, a disinfectant, a soldering flux, and for a variety of industrial purposes, including the manufacture of cements and paper parchment + + + foolishly stupid: clueless + + + act to gargle + + + the fragrant wood of the root and stem of either of two shrubs (Convolvulus scoparius and C. virgatus) native to the island of Tenerife + + + a dark-gray crystalline compound, GaAs, used in transistors, solar cells, semiconductor lasers, and other semiconductor applications + + + the branch of astronomy concerned with comets; cometology + + + a treatise on comets + + + description of trees + + + the recording of tree growth by a dendrograph + + + examination of the aorta using x-rays following the injection of a radiopaque substance + + + acute febrile disease especially of swine and some nonhuman primates caused by a picornavirus + + + dislike of or prejudice towards people, cultures, and customs that are foreign, or perceived as foreign; xenophobia + + + the study of the geographical distribution of extinct or fossil animal species or populations + + + the compilation, description, or analysis of myths + + + a critical anthology of myths + + + a history or description of fevers + + + an electrotype process by which a copy of an engraved plate is obtained with a raised surface, suited for letter-press printing + + + the study of luminous atmospheric phenomena, such as rainbows, parhelia, etc.; a treatise on this subject + + + wingtip device + + + small or rudimentary wing + + + medium or membrane used for ultrafiltration + + + pertaining to tourists or touring + + + apparatus for determining the direction from which radio waves are coming + + + diseased or morally degenerate city + + + instrument for measuring the absorption of light or other radiation + + + instrument for measuring the concentration of alcohol + + + able to communicate fluently in two or more languages + + + fictional work lacking traditional elements of the novel + + + tartar deposited from wines completely fermented + + + avgas; gasoline for use in piston-driven airplanes + + + lacking mutual consent + + + pay issued retroactively + + + instrument for determining the expansion of a liquid by heat + + + unit of area equal to 10 ares + + + photoconducting substance or device + + + class of substances released into water by eggs of some aquatic animals + + + wood-eating (of certain beetles) + + + chief administrative officer + + + board bearing notice; signboard + + + relating to particles of rock that have been broken down from pre-existing rocks by erosion and weathering + + + well-mannered, good-natured + + + (of an animal) to lie on stomach with legs stretched out + + + that chokes, stops respiration + + + each week, per week; weekly + + + ritual ablution; wudu + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + conveyed by instruction + + + the fruit of the shrub or small tree Amelanchier alnifolia (family Rosaceae) + + + in expectation of, anticipating + + + electronic radio component + + + to strike, to knock + + + to bump into or against + + + to have sexual intercourse with + + + of a structure, precomposed + + + to swirl or rotate + + + to feel or search with hands; to grope about + + + to restore to a former legal status + + + to put or hold forward in opposition against or to + + + to utter (words or prayers) + + + to bring forth; to give off + + + to affect, exhibit affectation + + + to make or shape by artifice; to construct, contrive + + + to place before in position + + + decompound + + + to make (a molecular structure) into a supercoil + + + to place in a tomb + + + for a tornado storm to occur + + + to stimulate the transcription of (a gene) by binding to DNA + + + to carry out transfer of phosphate between molecular compounds; to exchange phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + exhibiting three phases + + + the use of ice-penetrating radar to investigate the thickness, roughness, motion, and debris of a body of ice, and to measure and detect crevasses and sub-ice lakes + + + to react with insufficient enthusiasm or vigor + + + to move quickly from place to place + + + to move as if by hopping + + + to provide education at home + + + to greet with a high-five + + + to boil an egg until the white and yolk are hard + + + a squat broad-mouthed usually covered jar (as of bronze, pottery, or jade) used mostly as an incense burner + + + a psychological affliction in which an individual believes his genitals or her vulva and nipples are retracting and likely to disappear + + + to express admiration or pleasure by saying ‘ah’ + + + to scrape with a curette + + + to deprive/divest of nuclear armaments + + + putting anthropology to practical use in its broadest sense, ranging from research and design to the implementation and management of an organization, process, or product + + + to present or report in a sensational, lurid, or melodramatic manner + + + to re-establish or restore blood supply to + + + any of various theories asserting the validity of objective phenomena over subjective experience + + + an ethical theory that moral good is objectively real or that moral precepts are objectively valid + + + a 20th century movement in poetry growing out of imagism and putting stress on form + + + philosophical system named and developed by Russian-American writer and philosopher Ayn Rand + + + the study of enzymes at very low temperatures + + + the quality or character of being vainglorious + + + without the use of a condom; (also) not in possession of a condom + + + olive-green + + + Originally: to utter an exclamation or sound represented by ‘ouch’. Now also: = hurt + + + the position, status, or character of a puny; junior position or status; inferiority + + + a large building used for storing farm machinery, vehicles, etc. + + + a small quantity of loosely-aggregated matter resembling a flock of wool, held in suspension in, or precipitated from, a fluid + + + a bright or dark patch on the sun + + + either of two small lobes on the lower posterior border of the cerebellum + + + substance giving butter its characteristic aroma + + + money + + + comments or explanatory notes about a recording printed on the jacket or an insert + + + a fifth anniversary + + + a period of five years + + + artillery soldier next in rank below a gunner + + + to collaborate on a design with someone else + + + of, pertaining to, or derived from intuition; of the nature of intuition + + + the place in which a person or thing is; location, whereabouts + + + an organism that feeds on mites + + + drawn, allured + + + against; in return for + + + used to, acquainted with + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + to assail or prey upon after the manner of a vampire + + + in a westward direction + + + scumbag; disreputable person + + + to pronounce with a harsh or guttural voice + + + to sing or enunciate in a throaty voice + + + to work very hard + + + utilization of computer knowledge in a clever way + + + remove pieces + + + cough + + + the wife of a dauphin + + + process of becoming prosperous + + + act of freely giving + + + unjoining, disintegration + + + causation of damage + + + engage in sexual relations, having been the recipient of sexual relations + + + greet, accept, happily permitted + + + collaboration + + + to write or record in a diary + + + to formulate a strategy + + + to make a tumult, commotion, or disturbance; to raise an insurrection, to riot + + + a gene-hunting technique that traces patterns of disease in high-risk families + + + a nutritional supplement composed of serum-derived bovine protein concentrate containing high levels of immunoglobulins (Ig), particularly IgG, with the potential to improve nutritional status + + + being alone : solitary, isolated + + + to recompense, reward; to pay for something done + + + deserted; left solitary or desolate + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + result + + + describing a type of assessment in which the learner’s current level of achievement, skill, knowledge, or understanding is assessed against their own previous level, rather than against fixed criteria or a norm + + + describing a process of learning in which the same content is covered more than once, but at an increasingly challenging level, as happens within a spiral curriculum model + + + of, relating to, or characterized by dialogue + + + depending on or exercising opinion + + + worry about, be emotionally involved with, cause anxiety about + + + indicating a particular condition or outcome. + + + a Japanese bamboo flute + + + let go + + + the act or process of macadamizing + + + a diverse range of critical, iconoclastic, and non-linear approaches to researching the historical development of media technologies and the history of ideas about them + + + the academic investigation of the mass media from perspectives such as media sociology, media psychology, media history, media semiotics, and critical discourse analysis + + + the disclosure of an inappropriate amount of detail about one's personal life + + + an ornament worn in a perforation of the lip + + + having the form of an animal + + + of, relating to, or being a deity conceived of in animal form or with animal attributes + + + jar with a human face, usually in appliqué technique, formed on the shoulder; the function of these vessels was often funerary + + + obtaining or using from a specific source + + + providing to, being the source + + + summing + + + saying + + + to inspire guilty feelings + + + move downward + + + be defeated + + + become + + + the act of occurring + + + a substance being studied in the treatment of follicular non-Hodgkin lymphoma + + + an antiviral agent used to prevent or treat cytomegalovirus infections that may occur when the body's immune system is suppressed + + + an orally bioavailable, synthetic, highly selective adenosine A3 receptor (A3AR) agonist with potential antineoplastic activity + + + well known, popular, renowned + + + cockery + + + go by + + + a dice game resembling hazard + + + uncle; nuncle + + + a fool + + + get by + + + the branch of zoology that deals with the ascidians or broadly the tunicates + + + person or animal of small size and stature + + + child + + + oops; sorry, I just let off + + + theology based on the Bible; specifically : theology that seeks to derive its categories of thought and the norms for its interpretation from the study of the Bible as a whole + + + a design where signal paths are balanced or symmetrical, often used to reduce noise and improve signal integrity, especially in audio and RF applications + + + the technology approved by legislators or regulators for meeting output standards for a particular process, such as pollution abatement + + + subfield of sociology that examines the role of culture in shaping social life, including how people create meaning, form groups, and interact with cultural expressions within institutionalized settings + + + move forward or upward + + + stretch of water where the waves break over a submerged reef + + + sea urchin + + + porcupine fish + + + to incite or urge a dog to attack or chase + + + (mathematics) of or pertaining to the fiber of a map + + + the application of methods and principles of psychology to problems of military training, discipline, combat behavior + + + free-climbing a route, while lead climbing, after having practiced the route on top-rope beforehand + + + explore, discover new places or things, searching out new places + + + botch, mess up, make a hash of, short for 'fuck up', screwed up + + + the study of human races + + + the branch of entomology concerned with fleas (Siphonaptera) + + + follow, pursue + + + the branch of paleontology dealing with ancient and fossil animals + + + to come down, lower oneself, or arrive, lowering + + + draw attention away from something, not focused on what is at hand + + + make more western (new world), make more western (European-based cultures) + + + relinquish, give up rights to + + + act or process of filling with liquid or emptying of liquid + + + act or process of moving up and down + + + monitor, watch, serve as police for, enforcing the law + + + theology based on and attainable from revelation only + + + the geological features of a given region specifically excluding superficial deposits such as clay, sand, etc. + + + the hobby of collecting sugar packets + + + act/process of discarding, throwing away, dismantling for scraps + + + the process of dwindling; gradual diminution or decline + + + the practice of diagnosing disease by visual inspection of the patient's urine; uroscopy + + + the branch of zoology concerned with quadrupeds + + + to save or relieve from + + + act of renting + + + be a landlord + + + the initial topology (or induced topology or strong topology or limit topology or projective topology) on a set X, with respect to a family of functions on X, is the coarsest topology on X that makes those functions continuous + + + the classification of lakes based on various characteristics + + + act/process of moving a fluid, or fluid-like, substance from a container, especially into another in a controlled stream + + + send a text message via cell phone + + + an expert in bryology + + + enticed, seduced, inclined to + + + relative unit of measurement used in mapping of chromosomes; one hundredth of a morgan + + + act or process of increasing incrementally + + + a system of classification that creates distinct, non-overlapping categories or "types" to represent different aspects of a phenomenon + + + act of looking intently, gazing fixedly + + + act of setting one thing atop another + + + a medical specialty that uses medical imaging techniques to diagnose and treat diseases + + + a creative person + + + with confidential or sensitive information excluded + + + type of combustion system that utilizes a circulating bed of solid particles, like sand or limestone, to burn fuel + + + concept in object-oriented programming that allows a new class (a subclass or derived class) to automatically acquire the properties and behaviors of an existing class (a superclass or base class) + + + the tools, resources, and technological systems medical professionals use to diagnose, understand, and treat patients + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + to make a sortie; to sally + + + a catalogue of saints, or a collection of saints' lives + + + to direct the course + + + (cause to) experience stress (phrasal) + + + The act of renting a place as a landlord + + + The act of renting a place as a tenant + + + contract work to an outside entity + + + an act or instance of touching up + + + to say as a quick retort; to say (a witty or sharp reply) in answer to an earlier remark + + + the act of engaging in a lively and witty exchange of retorts, or the skill of making clever and quick replies + + + the use of growth rings in trees to date when timber was felled, transported, processed, and used for construction + + + short for 'superimpose:' put one thing atop another + + + moving with a whooshing noise + + + hold a second job + + + to feed or fatten (livestock, especially sheep) on turnips + + + the study of urine or the science of the urinary system + + + the study of fungi in the Zygomycota group (bread molds, etc.) + + + manner of motion, jumping + + + having a freckled face + + + a hollow or depression in a surface; a wrinkle + + + arm strengthening exercise + + + go away + + + to perform a pole vault + + + confounded, baffled, perplexed + + + a disorder of vocal communication marked by involuntary disruption or blocking of speech (as by abnormal repetition, prolongation, or stoppage of vocal sounds) + + + The act of making flakes + + + twist (a body part) emotionally + + + the ability of a layer of a substance to absorb radiation expressed mathematically as the negative common logarithm of transmittance + + + covered with insulation, protected + + + The act of explosive air motion + + + conscious abandonment of allegiance or duty (as to a person, cause, or doctrine + + + The act of experiencing great pleasure + + + make acidic + + + well_up: gather; upward motion of water, or as if of water, perhaps from a spring + + + acquisition or development of nuclear weapons by a nation or military force + + + to resign; to withdraw or step down from one's position or occupation + + + opposed to war + + + nearby, spatially or temporally; be imminent or immediately relevant + + + the branch of geology that studies the deformation and movement of the Earth's outer layers, specifically its crust and lithosphere, along with the forces that cause these changes + + + (obsolete) slaughter + + + (archaic) the power of quelling + + + act of lifting and throwing (someone) to the ground, as in wrestling + + + an illogical situation for which the only solution is denied by a circumstance inherent in the problem or by a rule + + + label by color + + + come by: acquire + + + express two or more genes simultaneously + + + having skin with certain characteristics + + + traction opposed to another traction, used in reduction of fractures + + + act in responce to a stimulus + + + convert into a horny tissue + + + cause to precipitate together + + + act or process of causing to precipitate together + + + punish + + + surgery that creates a connection between the jejunum and a cyst for drainage of the cyst + + + to remove necrotic tissue or foreign matter (f. ex. from a wound) + + + remove mast + + + remove rat + + + The act of decreasing oxygen saturation in hemoglobin + + + goof off, screw around + + + mastocel + + + oversatiate with cuban food/culture + + + surgical birth + + + combine with a similar molecule to form a dimer + + + scale down + + + person who never laughs + + + expression of satisfaction + + + flow outward + + + capable of being elected by voters + + + to drive in the slipstream of a vehicle; draft + + + to travel in the slipstream of (someone), especially in order to overtake them + + + within the skull/vertebrae, but outside the brain/spine + + + having a normal volume of bodily fluids + + + outside of the family + + + mobilization of the lower end of the esophagus and plication of the fundus of the stomach up around it + + + enjoy, be amused by + + + surf move + + + give by hand + + + gulp all the way + + + act or process of looking until found + + + to rage around, to cause distruction + + + increase in blood pressure and pulse pressure + + + overproduce granulation tissue + + + cause to over expand, over-expanded + + + buttress or reinforcing wall + + + graphic organizer in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a story + + + The act of analyzing or identifying proteins via antigen-antibody specific reactions + + + separate an antigen from a solution using an antibody that binds to the antigen + + + stain with an antibody + + + a miniature optical disk + + + to make into a landfill, fill with garbage + + + kayak, boating + + + (cause to) emit + + + form material by mixing/massaging in repetative folding motion + + + tightly tangling, pinching, or impeding progress of + + + Fight primarily with one's feet, often as a form of exercise. + + + likely, appearing + + + secure + + + forming or dividing into lobules + + + abnormal rotation + + + to cause a meaningful change, improve; improve the world + + + purposeful attempt + + + any of several French aperitif wines flavoured with quinine + + + cinchona + + + saving money + + + to purchase an option on something + + + removal of all or part of the omentum + + + producing an abnormally small amount of urine + + + badmouthing, with intent to discredit + + + name + + + move like water in an outward direction + + + make too calm with (too much) drugs + + + inflate too much + + + graze to the point of damaging the life cycle of vegetation + + + excessively express a gene by producing too much of its effect or product + + + categorize something as a pathology + + + to become more like a southern region + + + a specialist in photolithography + + + destroy tissue with an intense laser beam + + + act of wishing that someone lacked a particular superior quality/achievement/possession of theirs + + + be miserly; avoid spending money + + + blow the whistle on; alert the authorities or public of wrongdoing + + + to take quickly + + + use the WhatsApp to message + + + hold, support weight + + + removal of all or part of the vagina + + + upgrade; make higher-end + + + lift spirits + + + not able to be dislodged + + + cut beforehand + + + add fertilizer beforehand + + + make beforehand + + + preliminary stages to a production + + + to schedule ahead of time + + + conduct a preliminary screening (weeding out) process + + + affix a signature in advance + + + to put into a specific mental state (usually excitement or gullibility) + + + excited or deceived + + + challenge again + + + act of reexamination + + + the act or process of showing again + + + the act or process of putting something somewhere, again + + + act of attestation to the truth of, again + + + find again, notice again + + + call on the phone, again + + + make a corporation again + + + re-introduce or re-admit + + + the process of restoring function by supplying with nerves + + + operative value/efficacy/efficiency, vigor/energy + + + interview or be interviewed again + + + to offer again + + + by night, in the night, overnight + + + to populate (something) again + + + to put a price on something, again + + + the picking of pockets + + + invite, again + + + relating to rhizomes + + + the act of re-supplying with vessels to conduct fluid + + + removal of one or both ovaries and one or both Fallopian tubes + + + characterized by quirks; quirky + + + divide a cavity by means of a partition + + + sign_off: give stamp of approval + + + showing off + + + denigrate, insult + + + football player, footballer + + + dab, apply a gloppy substance, onomatopoetically + + + act of running at top speed + + + squaredance + + + to insert a stent to prevent closure + + + make a short visit + + + to assume (something) as given, fail to appreciate something + + + to discover bit by bit; to extract, obtain, or pry/prise; to get out + + + event or party, especially one featuring dancehall reggae or ragga music + + + the process of literally or figuratively sloppily chopping + + + the act of giving a response or reply + + + at what time, in which moment + + + at which, on which, during which + + + cardinal number + + + number between eleven and thirteen + + + type of website that visitors can easily and quickly edit + + + ostensible substance coined to trick someone into asking 'what's up, dog?' + "Umm, is it me or does it smell like up-dog in here?" / "What's up-dog?" / "Nothin' much what's up with you?" / "Oh, oh, wow! I walked right into that. Oh, that's brilliant!" + + + male person or animal already known or implied + + + person whose gender is unknown or irrelevant + + + word used by Donald Trump in a tweet, presumably a typo of “coverage” + Despite the constant negative press covfefe + + + placed above + + + mathematical model combining space and time + + + The (thing) here (used in indicating something or someone nearby). + This word is a determiner. + + + The known (thing) (used in indicating something or someone just mentioned). + + + The known (thing) (used in indicating something or someone about to be mentioned). + + + A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + + (of a time reference) Designates the current or next instance. Cf. next. + + + through the means of + + + near to + + + of a kind + + + English function word + + + The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. + That pronoun is different with this determiner. + + + target of an action + + + indicating a location for an event + + + every person, everyone + + + concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + + absence of anything, vacuum + + + item(s) that are separate and distinct from the item(s) under consideration + + + philosophical, psychological and anthropological concept that refers to the opposite of one's own identity + She and others were disappointed in the results of the election + + + up to a certain point in time + + + according to + + + no matter what; for any + + + anything that + + + More than one (of an indeterminate set of things). + Various books have been taken. + There are various ways to fix the problem. + You have broken various of the rules. + + + all over + + + from one end to the other + + + in view of all the circumstances or conditions + + + as a whole : generally + + + with everyone or everything taken into account + + + physical sensations caused in the mouth by a substance, e. g. food or drink + + + flying insect typically within the Diptera family + + + of poor or inferior quality + + + greeting of non-binding nature + + + With one’s legs on either side of. + The boy sat astride his father’s knee. + + + Except, other than, besides. + He invited everyone to his wedding bar his ex-wife. + + + phrase used when someone is leaving + + + container for a set of identifiers + + + make fuzzy, wooly, not having hard edges + + + expression of surprise or disbelief + + + chemical element with atomic number 113 + + + English archaic personal pronoun + Thou shalt not steal + + + that is perfect; that is it + + + claiming success or a win + + + remove ink + + + Used as an expression of agreement with what another person has said, or to indicate that what they have said equally applies to the person being addressed. + I'm really busy today! —Ditto! + + + number between 49 and 51 + + + anthropomorphized animal + + + НДС + + + small plate used to hold Eucharistic bread which is to be consecrated during the Mass + + + of or resembling pork; piglike; fleshy, obese + + + computer programming + + + time off at home or in one's local community + + + Synthetic ultralight material + + + Someone who rides a bicycle + + + Someone who rides a motorcycle + + + plastics derived from renewable biomass sources + + + polymer produced by a living organism + + + a set of preventive measures designed to reduce the risk of transmission of infectious diseases + + + treatment of diseases with biological materials or biological response modifiers + + + type of radiation therapy + + + wildfire happening in the bush + + + natural disaster: wildfire in bush land + + + A lysosomal storage disease characterized by the abnormal accumulation of cystine in the lysosomes. It follows an autosomal recessive inheritance pattern and has material basis in mutations in the CTNS gene, located on chromosome 17. + + + non-binary: outside or beyond the gender binary; not exclusively male or female + + + quality of being ready to deploy + + + land with little water + + + branch of physiology + + + a science that deals with the practical application of electricity + + + set on fire + + + study of music in cultures + + + medical condition + + + stream or spray upward + + + provide with a function + + + systematically eliminate a population + + + genetically harmful + + + science relating to the Earth or planets + + + graphical user interface element that allows the user to select or unselect an item + + + shiny coating on an object + + + process of coating with a glaze + + + glass part of a wall or window + + + rising support + + + misplaced organ or tissue + + + highest part of a hill + + + pertaining to hydrology + + + a branch of dentistry dealing with dental implantation + + + between cells + + + pertaining to karma + + + highest part of a lake + + + relating to macula + + + medical condition with too many mastocytes + + + blood flow through smallest vessels + + + engineering of microscopic devices + + + funding for low-income entrepreneurs + + + create small particles with a micromold + + + small-scale mineral structure + + + involving multiple academic disciplines + + + useful for multiple purposes + + + having multiple layers + + + engaging multiple forms of communication + + + science or profession of museum organization and management + + + study of matter at near atomic scale + + + science of drug effects on the nervous system + + + not containing iron + + + type of fabric + + + process by which cancer begins + + + branch of pharmacology + + + harden by exposing to light + + + found in a river bank or bed (minerals) + + + plasmon analogue of electronics + + + to carry over a portage + + + to move gear over a portage + + + pertaining to primatology + + + artificial body part replacement + + + undergo pyrolysis + + + study of radioactivity in Earth’s ecosystems + + + return to circulation + + + (cause to) go around again + + + reproduction of graphics + + + happy + + + to act as a steward for : manage + + + to perform the duties of a steward + + + make ready + + + Japanese pornographic animation, comics, and video games + + + orphan software + + + from the beginning + + + narrative technique of beginning a story at the beginning of the events + + + provision of tools + + + an image file in the Graphics Interchange Format file format + + + any short animated image without sound, regardless of file format + + + at what time. + + + at such time as + + + at the time of the action of the following clause + The show will begin when I get there. + + + conjunction + + + relating to students receiving postsecondary education and not yet graduated + + + study of the flow of urine + + + pertaining to urology + + + an enclosure where kakapo are kept + The second kakaporium (Figure 2) is also on a gentle slope on the north-east corner of the remnant forest, and is an open plan design. + Sometimes called the kakaporium, the pen was safe and stoat-proof. + + + anything (sometimes indicates the speaker doesn't care about options) + + + ability of an item to be used repeatedly before discarding + + + use of existing assets in some form within the software product development process + + + type of fossilization + + + behind a paywall; requiring payment to be accessed + It seems ironic that scholars working outside universities may be able to afford to publish only in paywalled academic journals that they are unable to read. + + + type of mineral containing arsenic + + + implement for sprinkling holy water + + + male Buddhist monk + + + type of rice cake + + + branch of zoology that deals with the Bryozoa + + + type of pasta + + + type of bacterial toxin + + + folded pizza + + + application of information technology in chemistry + + + scientist studying algae + + + game usually played on a table or other flat surface + + + product for tabletop game + + + organism that maintains its body temperature + + + type of old snow atop glacial ice + + + herbiovre eating low-growing plants + + + Russian log hut + + + very small sovereign state + + + detailed microscopic state of a physical system + + + policy of having one’s cake and eating it too + + + in an accepting manner + + + specifically for letters: referring to or naming in a manner that uses the letter itself at the start of the reference or name + + + event that happens with probability one + + + similarly, in response; correspondingly + + + as if an artist were doing something + + + in a manner suggestive of something being baked + + + unfathomably/endlessly/inexhaustibly + + + in a bustling manner + + + without charm (in a charmless manner) + + + doing without emotion or feeling + + + in a curable manner + + + destroying the looks of something + + + a monosyllabic word or form that is added as a suffix to another word and cannot stand by its own + + + like an inscription in the beginning of a book or over the entrance to a building + + + honestly and without cheating or lying + + + in a fathomless manner + + + time period of two weeks + + + shamelessly/brazenly + + + in a manner without a hat + + + very, a lot, with intensity + + + in an ironic or sarcastic manner + + + one acting unhelpfully/insensitively/tactlessly (not considering the consequences of their actions) + + + disgustingly/foully/repulsively/shockingly + + + quality of fictional events which are not seen, but merely heard by the audience or described or implied by the characters + + + in a circle/ring/spherical form, round about + + + so as to be without equal (in a peerless manner) + + + identifying textual reference, cross-referencing + + + in a quarrelsome manner + + + in a rootless manner + + + done in a brilliant, clever or skillful manner + + + in a shiftless (e.g. lazy/indolent) way + + + in a spiritless manner + + + now, immediately + + + in a toothless manner + + + in a trackless manner + + + in accordance with that which is true + + + in a ubiquitous manner + + + in a venturesome manner + + + How, or in what way. + Wherein did I misspeak myself? + + + foolishly/stupidly + + + study of ancient water courses + + + study of hydrological features at periods in the historical, prehistoric, or geological past + + + water-based motor sport + + + landmass containing more than one continent + + + type of small car + + + collective organism composed of many individuals + + + release of a product from its manufacturing facility + + + chemical compound + + + infraspecific name + + + Zika virus protein found in isolate Zika virus/A.taylori-tc/SEN/1984/41671-DAK + + + cell type + + + protein + + + protein + + + protein + + + Describe or represent in terms of a parameter + + + study of the evolutionary history and relationships among individuals or groups of organisms; application of molecular - analytical methods (i.e. molecular biology and genomics), in the explanation of phylogeny and its research + + + vibrations with frequencies lower than 20 hertz + + + form of a fungus + + + a publication's editorial leader who has final responsibility for its operations and policies + + + denied recognition + + + to fill with alacrity; to energize, invigorate + + + to moisten (a thing) + + + to wet lips or throat with drink + + + to form skin + + + to make stupider + + + to cause to suffer loss of money, property, or reputation + + + to make to resemble jazz + + + to form a salt + + + convert into or enrich with silica + + + establish again + + + to yield tribute + + + to pay as tribute + + + (indicating movement, direction towards a place) + + + before, until (indicating relation to a position in time) + + + (indicating application of or benefactive relationship with) + + + multi-purpose mobile device + + + practice of spinning wheels while keeping vehicle stationary + + + emotionally and physically drained beacuse of any task + + + person listed in the author list of a creative work + + + pliable transparent plastic material + + + property of that materials that exhibit both viscous and elastic characteristics when undergoing deformation + + + use of chemical compounds to prevent the development of a specific disease + + + the nanostructure of a biological specimen that can be viewed with ultramicroscopy or electron microscopy + + + the process of one or more receptors activating another + + + chemical reaction + + + double layer of closely packed atoms or molecules + + + class of chemical compounds + + + periodic structure of layers of two or more materials + + + peripheral system disease that is characterized by damage affecting peripheral nerves (peripheral neuropathy) in roughly the same areas on both sides of the body, featuring weakness, numbness, pins-and-needles, and burning pain + + + Process of active transport by which a cell secretes intracellular molecules contained within a membrane-bound vesicle + + + atom that has excess nuclear energy, making it unstable + + + ideograms used in electronic messages and web pages + + + those who use telecommunications technologies to earn a living and, more generally, conduct their life in a nomadic manner + + + application of ultrasound + + + Process of a disordered system forming organized structures without external direction. + + + addition of a sulfate group to a molecule. + + + A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one cell to that of an adjacent cell. + + + Embryological process + + + class of chemical compounds + + + class of enzymes, type of hydrolase + + + the time period during which a specific antibody develops and becomes detectable in the blood + + + physician who treats critically ill patients in the ICU + + + physical damage to body tissues caused by a difference in pressure + + + cell line derived from cancer cells + + + Clipping of promotion. + + + that is made cognizant of/realized + + + (derogatory) person born in the United States to non-citizen parents + + + hybrid instrument designed as a cross between the Dobro-style guitar and the banjo + + + a school for training in various arts of self-defense (such as judo or karate) + + + regular non-binary companion in a platonic, romantic or sexual relationship + + + hatred, irrational fear, prejudice, or discrimination against transgender people + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + an annoying, contemptible, or inconsequential person + + + The practice of making unverified or misleading claims which misrepresent the appropriate level of human supervision required by a partially or semi-autonomous product, service, or technology. + + + wood from a beech tree + + + able to be received; which has the ability to be received + + + Sekai no Owari single + + + swimming while breathing through a snorkel + + + elect again to the same position + + + From the higher end to the lower of. + The ball rolled down the hill. + + + regarding; considering + I wrote to him respecting the proposed lawsuit. + + + While waiting for something; until. + Pending the outcome of the investigation, the police officer is suspended from duty. + + + Across, athwart. + + + in addition to what has been said previously + + + in another way + + + or else + + + wherever + + + In advance of the time when. + Brush your teeth before you go to bed. + + + What place. + Where did you come from? + Where are you at? + Where are you off to? + Where you off to? + Do you know where you came from? + + + whatever person + + + look, see, behold . + + + No! Not at all! + + + (expression of strong feeling) + + + An exclamation yelled to inform players a ball is moving in their direction. + + + an imitation or representation of the grunt of a pig + + + An exclamation to invoke a united cheer: hip hip hooray. + + + A liturgical or variant form of hallelujah. + + + Ellipsis of stand fast, a warning not to pass between the arrow and the target. + + + Indicating surprise, pity, or disapproval. + Dear, dear! Whatever were they thinking? + + + A mild expression of annoyance or exasperation: bother! + + + Expressing good wishes when greeting or parting from someone; hello; goodbye. + + + Expressing exasperation. + We're being forced to work overtime? Oh, brother! + + + no longer in vogue + + + disruption caused by a disagreement or misunderstanding + + + heritage related to sounds, smells, etc. + + + name considered ill-suited + + + code name + + + name consisting of only one word + + + political movement + + + hypothesis + + + cylindrical section of a naturally occurring substance, usually obtained by drilling with special drills into the substance. + + + Energy usage that meets the needs of the present without compromising the needs of future generations + + + economy based on low carbon power sources + + + global cooling phenomena + + + capacity of a socio-ecological system to maintain function during climate change + + + natural reservoir that stores carbon-containing chemical compounds accumulated over an indefinite period of time. + + + archaic Greek letter + + + sensation that an event has been experienced in the past + + + asian motorbike + + + someone that asserts that the 2001 terror attacks are at the center of a conspiracy + Despite Maxwell’s efforts, the truthers doubled down, more certainthan ever that there was a conspiracy afoot. + At the Eastern Bloc coffee shop, we sat through a few revolutions of customers stopping to eat and talk and laugh, and Charlie seemed to feed off of it, raising his voice so that bystanders could easily hear him explain from within a cloud of American Spirit cigarette smoke why he was no longer a truther. + + + someone who is convinced that a powerful conspiracy is actively hiding the real facts regarding a significant topic or event from the general public + + + personalized character created by the furry fandom + + + attack from the air + + + state or condition of being unsentimental + + + a file that uses the jpg file format + + + potato + + + potato + + + attribute in video game representing the health of a game character + + + Virtual reality device in Star Trek + + + to alterate a previously established facts in the continuity of a fictional work + It was in the development of this sequel—the more mature epic fantasy The Lord of the Rings—that Tolkien began to retcon certain events from The Hobbit. + + + the practice of alterating previously established facts in the continuity of a fictional work + Retconning has been made most explicit in the imaginary worlds of the superhero "universes" found in comic books published over the past seventy-five years by DC Comics and Marvel Comics. + + + a South American rodent + + + a despicable person + + + a contemptible person + + + baseball position + + + fine mica mineral; commonly occurs as alteration mineral of orthoclase or plagioclase feldspars in areas subjected to hydrothermal alteration + + + special consideration to individuals solely on the basis of their species membership + + + silly, foolish + + + parameter used to control machine learning processes + + + species occurring outside its native range + + + a member of Generation Z + + + a female breast + + + reluctant to wear face masks during a disease outbreak + + + skeptical of the usefulness of face masks + + + attempting to trick a person into revealing information + + + abbreviation consisting of the first letters of words + + + member of the Afrotheria clade of mammals + + + nothing of value, emphatically nothing + + + attracted to both the same and opposite sex or gender + + + condition where a person differs from normal male or female physical characteristics + + + three-dimensional + + + of or relating to a lynx + + + sharp-sighted + + + one who vapes + + + a trucking rig consisting of a tractor and a trailer and typically having eighteen wheels + + + outdoor camping with amenities and comforts not typically had while camping + + + extremely good or impressive + + + smartphone sold by Apple, Inc + + + laughing out loud + + + a single piece in the game of milk caps + + + drunk + + + able to find in a Google search + + + the point on the compass or the direction midway between east and southeast + + + fifth-generation + + + 5th generation of cellular mobile communications + + + collective of users of a service + + + any weevil in the family Curculionidae + + + any bird of the family Acanthizidae + + + any insect of the clade Heteroneura + + + Anolis carolinensis + + + any moth of the clade Pterophoridae + + + an instance of someone buying many things in a short period of time + + + naturally-occurring retinol (vitamin A) precursor obtained from certain fruits and vegetables with potential antineoplastic and chemopreventive activities + + + official postnominal title + + + designating lesbians and gay men collectively + + + of or relating to lesbians and gay men + + + designating lesbians, gay men, and bisexuals collectively + + + of or relating to lesbians, gay men, and bisexuals collectively + + + in plural form, lesbians and gay men collectively + + + in plural form, lesbians, bisexuals, and gay men collectively + + + class of yellow or white flavonoid pigments found in plants + The yellow comes from anthoxanthins, powerful protectants against free-radical damage. + The variety of anthoxanthins is greater than that of anthocyanins, and new anthoxanthins are continuously being discovered. + + + تحریکِ التواء + + + a special group of people, a committee, a delegation, etc. + + + worthless, bad, horrible, untrue + + + person who attends to customers by serving them food and drink + + + having a sexual orientation that changes over time + + + Marxist term to describe the underclass + + + condiment made typically of peppers, pickles, grated coconut, salt fish, or fish roe + + + insulting and racist term of address or reference to an Indian man + + + insulting generic name given to an Indian trader or hawker, particularly a vegetable-hawker + + + building or room where computer servers and related equipment are operated + + + electricity + + + elastic band + + + brownish-red clay that has been baked and is used for making things such as flower pots, small statues, and tiles + + + reddish-brown color + + + a hybrid between a zebra and any other equine + + + related to or resembling a zebra + + + of or among the highest rank, level, importance, or quality + + + relating to or in the style of brutalism + + + used to describe a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + one who wields something + + + the revival of the policies and practices of Brezhnevism + + + corundum; ruby or emerald mineral + + + collection of records, documents or works + + + having great girth + + + To look through something very quickly, roughly, or energetically + + + someone who is a foreigner in Japan + + + pseudoscientific alternative medicine method using colored light + + + used to wish someone the best of luck and that events will turn out in favorably + + + any mollusc of the class Monoplacophora + + + a mammal in the family Mephitidae + + + marine mammal in the seal family Phocidae + + + a mammal of the family Tachyglossidae + + + any toad in the family Bufonidae + + + any frog in the family Dendrobatidae + + + of, relating to, or resembling the ostrich or related ratite birds + + + a mammal in the family Orycteropodidae + + + having partially, noticeably distinct, or fully white-colored thighs + + + heavy steel ball used for demolishing buildings + + + nearby, next to + + + a member of the bird family Columbidae + + + square section or area, sometimes containing an inscription + + + of or relating to moles in the Talpidae + + + Conversion into a xanthate. + + + Japanese rice ball + + + chewing gum that can be blown into bubbles + + + pop or rock music having simple repetitive phrasings and intended especially for young teenagers + + + house made of brick + + + attractive/curvaceous woman + + + marinering + + + demographic segment + Mary is a soccer mom. + + + in cricket, ball which breaks from the leg (to a right-handed batter) + + + master, especially of music in South Asia + + + tax on business of selling liquor in India + + + physical and chemical changes undergone by sediment after deposition + + + of a manner of Jewish religious practice that is considered to be intermediate between the Conservative and Orthodox movements in liturgy, observance, etc. + + + megalopae; stage in the life cycle of crustaceans in the Malacostraca class + + + to think something is good, agreeable + + + emerald + + + amount of attention received by audio media + + + insect possessing wings + + + swamp-dwelling creature in south-eastern Australian aboriginal mythology + + + small sack for carrying things + + + ablution, abdest + + + branch of medicine that deals with the nose and its diseases + + + branch of entomology dealing with wasps + + + branch of herpetology dealing with snakes + + + (indicates immanent occurrence of action) + + + study of fossil footprints and traces + + + scientific study of dreams + + + branch of pharmacology dealing with cinchona and its derivatives + + + the study of the organization of the egg especially with reference to localization of subsequently developed embryonic structures + + + the science of the fundamental morphology of organisms, which aims to describe in mathematical terms the stereometry and symmetries of organic forms; the features of organisms so studied. Now chiefly historical + + + branch of zoology dealing with mammals + + + branch of veterinary medicine concerned with veterinary obstetrics and with the diseases and physiology of animal reproductive systems + + + branch of medical science dealing with the structure and function of glands and lymphoid organs + + + the study of the devil or devils + + + doctrine or beliefs concerning the devil; devil lore + + + the study of cats + + + alkaline abrasive used to remove paint + + + to say ’amen’ to; to endorse an utterance of another + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + wild soursop, mountain anona + + + in imprecations, damnation + + + study of animal diseases + + + the study of marine viruses + + + the study of bacteria in marine environments + + + the systematic attempt to account for such psychological variables as temperament and character in terms of bodily shape and organic function + + + the study of the ego especially with regard to mechanisms of defense, transference, reality-testing, and attainment of the ego ideal + + + the study of the mind and behavior of different peoples through analysis of the human factors involved in their cultural and technological development + + + the mental traits common to or characteristic of a people + + + a membrane-bound storage structure, containing protein and lipid, that is found in large numbers in the cytoplasm of the eggs of all animals except mammals + + + membrane-bound disc containing high concentrations of yolk found in eggs + + + stay still (for a moment); exclamatory expression + + + seemly, proper, fitting + + + in birds, applied to feet in which two toes point forwards, and two to the rear + + + an altitudinal belt of stunted and often prostrate trees, found between the upper limit of tall, erect trees growing in forest densities (waldgrenze; timber-line) and the extreme upper limit of tree growth (the species limit or baumgrenze) + + + consitent of, having been created from + + + the study of the planet Mars + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + prepared only with ingredients from animals whose lungs contained no forbidden adhesions on the outside of their lungs + + + branch of climatology concerned with the impact of climate on agriculture + + + the study of emblems + + + the study of endemic diseases + + + the study or collection of knives + + + on or characterized by a relatively small or detailed scale + + + the study of rivers + + + branch of knowledge dealing with vitamins, their nature, action, and use + + + vital energy units according to Reich's theories + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + the science of geology as applied to extraterrestrial objects and other planets + + + investigation of the supposed relation between the celestial bodies and the weather + + + the systematic use of the fingers and hands as a means of communication; a manual alphabet + + + branch of anatomy concerned with joints + + + process for strengthening steel alloys + + + kind of hard steel obtained with the homonym process + + + important + + + preparing or about to do something + + + finger spelling + + + the technique of communicating by signs made with the fingers + + + the study of a culture's system of classifying knowledge (such as its taxonomy of plants and animals) + + + branch of physiology concerned with the function and activities of tissues + + + structural and functional tissue organization + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + the study of fires and fire regimes in global forest, prairie, shrubland, chaparral, meadow, and savannah ecosystems + + + the study or description of the history or genealogy of heroes + + + a history of or treatise on heroes + + + the study of the membranes of cells and cell structures + + + branch of biology concerned with the study of organisms as individuals + + + the study of mythological nymphs + + + the branch of toxicology dealing with toxicity to the nervous system + + + non-finite + + + company for which members’ responsibility for debt is legally limited to the extent of their investment + + + the study of the origin of surnames + + + the study of biological substances or processes with the aid of antigens or antibodies labeled with a radioactive isotope + + + the study of plant diseases and their causes + + + the branch of zoology dealing with sponges + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + opposition to theology + + + the science of botany + + + divination by plants + + + the branch of botany which is concerned with the study of fruits + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + the study of turtles and tortoises + + + the study of those things that determine the highest good or best way of life for humankind + + + the microscopic study of cells shed or obtained from the body especially for diagnostic purposes + + + the study of chaos and chaotic systems + + + the branch of cytology devoted to study of the chromosomes + + + refers to the careers of politicians who have experienced a significant decline of their political influence and electoral viability + + + branch of sociology concerned with the modes of recurrent social relationships (as competition, division of labor, supraordination, and subordination) that are conceived to exist in any type of human association + + + the part of logic dealing with the establishment of criteria + + + the feeding habits of an animal or animals + + + the study of lighthouses and signal lights + + + plant ecology + + + a scientific treatise on pores or porous bodies + + + the branch of ornithology concerned with the incubation of eggs and rearing of young + + + the application of psychological principles to the problems of vocational choice, selection, and training + + + the study of the actions and thought processes of both the individual members of a crowd and a crowd as a collective social + + + in mathematics, especially functional analysis, a bornology on a set X is a collection of subsets of X satisfying axioms that generalize the notion of boundedness + + + the study of how individuals interact with and respond to the environment around them, and how these interactions affect society and the environment as a whole + + + the study of sociopaths and the disorder known as antisocial personality disorder + + + theology founded on or fundamentally influenced by speculation or metaphysical philosophy + + + the study of air motion in the Earth's atmosphere that is associated with weather and climate + + + phonemics + + + في الأول + + + linguistics + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + space weather; the study of the meteorology of near-Earth space + + + the study and practice of instructional endeavors for and about aged and aging individuals + + + the study of the changes in the learning process caused by old age + + + the love of fables or stories + + + the study of the various forms of social structure and the changes that govern or take place in them + + + theanthropism + + + a range of philosophical and theological explorations of the idea that God may be dead + + + a roll or register of traitors + + + the study of the relationship between natural geological factors and their effects on human and animal health + + + subfield of meteorology generally restricted to that part of meteorology not explicitly devoted to atmospheric motions; usually deals with optical, electrical, acoustic, and thermodynamic phenomena of the troposphere, its chemical composition, the laws of radiation, and the physics of clouds and precipitation + + + the representation of the climate of a region by the frequency and characteristics of the air masses under which it lies; basically, a type of synoptic climatology + + + omvendelsesterapi + + + degeneration of body’s immune system; immunodeficiency + + + vacuous chatter, mere talk + + + a treatise on fevers + + + the description or classification of fevers + + + the doctrine or consideration of the bursae mucosae + + + a Grothendieck topology on the category of schemes which has properties similar to the Euclidean topology, but unlike the Euclidean topology, it is also defined in positive characteristic + + + type of evergreen shrub + + + the branch of medical science concerned with diet and nutrition; dietetics + + + opposed to technology or technological change + + + the subdivision of the science of hydrology that deals with the occurrence, movement, and quality of water beneath the Earth's surface + + + (first-person singular possessive) belonging to me + + + (third-person plural possessive) belonging to them + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + ability to remember and learn association between unrelated objects + + + to associate with, join forces with + + + to understand, join in; to accept the party line + + + to enjoy oneself + + + to have sexual intercourse + + + technology related to the exploration of and activity in space, and with the development of satellites, rockets, etc. + + + the study of squalor, especially as a supposed science + + + the science or theory of poetic meters + + + a sub-discipline of military tactics and passive and active electronic countermeasures, which covers a range of methods used to make personnel, aircraft, ships, submarines, missiles, satellites, and ground vehicles less visible (ideally invisible) to radar, infrared, sonar and other detection methods + + + that does not get tired + + + process where unique economic goods become interchangeable in the eyes of consumers + + + technology to protect products and operators from contamination + + + term for that branch of anatomy which treats of the nature and structure of membranes + + + practice of criticizing a woman or gay men who lives their sexuality in a different way to what is socially expected + + + a combination of theology and mythology + + + the techniques of deception and manipulation employed by a dominant group (esp. a white majority) to disempower a weaker one (esp. a black minority) + + + innovative techniques or technology, especially for recording or performing music + + + a figurative mode of speech or writing + + + a mode of biblical interpretation stressing a moral meaning inhering in the metaphorical character of language + + + a treatise on or compilation of tropes + + + the study of vermin + + + a field of study and practice that focuses on how industry can be developed or restructured to reduce environmental burdens throughout the product life cycle (extraction, production, use, and disposal) + + + the study of material and energy flows through industrial systems + + + tother + + + that thirsts; thirsty + + + water impregnated with salt; seawater + + + characteristic of the hand on the right side of the body + + + thirty minutes + + + one that yaps (of a dog or person) + + + гардиш кардан + + + to ride a tricycle (three-wheeled velocipede) + + + to make potential; give potentiality to + + + to convert into potential energy + + + to perpetrate feloniously + + + to crop with wheat + + + foolish, mistaken (used as a general negative) + + + to expose (someone) + + + resembling a thug in behaviour or appearance; tough, hardened + + + to reduce magnification of view + + + to measure the quality or extent of + + + to perform quantitative analysis on + + + to express in numerical terms + + + to subject to thyroidectomy + + + to be made envious, covetous + + + to have an ability; to have means, capacity, or qualification for + + + to inject a substance into a microscopic object + + + to communicate via modem + + + to perform multiple tasks concurrently + + + social psychology field that studies how groups of people behave differently than individuals; also known as crowd psychology or mob psychology + + + branch of zoology dealing with entozoa, internal animal parasites + + + to put forward as a suggestion or proposal + + + to belch, vomit forth + + + to experience fear, apprehension towards + + + to be experiencing anger + + + a person who approaches biology from the point of view of an engineer; an expert or specialist in bioengineering + + + boskru + + + of a liquid, to accumulate forming a pond (especially by being obstructed) + + + to come to an impasse, standstill, stalemate + + + to be or behave like a busybody; to meddle, pry + + + good, excellent, cool + + + to add a glycosyl group into a molecule or compound + + + juice extracted from a pomegranate + + + sweet sap from date palm + + + juice extracted from a prune + + + (of a mineral) having a small portion of a constituent replaced by ferric iron + + + interjection used to express surprise, anger, or extreme displeasure + + + bush bean, bush cucumber + + + Australian aboriginal boy + + + bush onion, nalgoo + + + the theoretical study of metaphysical, logical, divine, or human laws + + + to whom immunity has been granted + + + that holds + + + that wraps, covers + + + that is resident, that resides + + + walking or moving with a slouch + + + relating to or of scandium + + + with regard to + + + rough, unpolished board + + + response of untruth + + + device for drying hair by blowing heated air over it + + + egret, heron + + + one who makes tents + + + lacking a servant + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + manga or anime intended primarily for boys (usually used before another noun) + + + the study of the spatial and temporal distribution of fossil organisms, often interpolated with radiometric, geochemical, and paleoenvironmental information as a means of dating rock strata + + + a bibliography with biographical notes about the author or authors listed + + + a history or description of printed maps + + + a bibliography of maps + + + the art of engraving on copper + + + description of the skin + + + the writing of something in one's own handwriting + + + autographs considered as a group + + + the writing of glosses or commentaries; the compiling of glossaries + + + the conditions and processes occurring in oceans in the past; the branch of science that deals with these + + + the art of decorating wood by burning a design with a heated metal point + + + aviation gasoline; gasoline for use in piston-driven airplanes + + + one who distills + + + tenth power of a million + + + measurement of galvanic currents + + + occurring within a vessel of an animal or plant + + + soil rich in iron, alumina, or silica formed in humid, high temperature tropical woodland environments + + + to (attempt to) influence legislation, advocate for + + + ask a favor, ask a request, ask for + + + house officer working in surgery + + + elected house of legislature + + + black tinged with blue + + + خَارِج + + + to monitor or select information; to control access to something + + + a wind instrument consisting of a mouthpiece and a small keyboard controlling a row of reeds + + + to make a denizen of; grant rights of residence to + + + cithara + + + to save again + + + energy, spirit; pep + + + brevity of speech + + + shortened or condensed phrase or expression + + + idiot + + + mixture of various kinds of grain sown together for feeding cattle + + + splenic apoplexy in sheep + + + failing to win + + + to increase or cause to increase in size + + + an act of haunting, especially : visitation or inhabitation by a ghost + + + to tell, impart + + + transfer + + + to face self-assuredly + + + to render fanatical + + + to set forth in words, declare + + + to postpone again + + + to doze + + + staying in a dorm + + + to heat to relatively high temperature + + + knowledgeable, skilled + + + to incline towards; to deal in + + + clay whose structure collapses completely on remoulding, and whose shear strength is thereby reduced to almost zero + + + to remove restrictions or limitations; to detruncate + The TAA Study begins with a fixed amount of ammunition and equipment and then unconstrains the support force structure to determine what units are required. + + + to supply with fewer employees than required + + + to split or break up into fission products + + + split into smaller parts + + + to seek a house to buy or rent + + + an interdisciplinary field that studies how individual psyches and subjectivities interact with, express, and transform socio-cultural meanings, practices, and institutions + + + a partially refined, light brown granulated sugar from which most of the molasses has been removed + + + a theater company that presents and performs a number of different plays or other works during a season, usually in alternation + + + administrative unit of feudal England + + + one of two bird species, formerly regarded as conspecific: western olivaceous warbler, Hippolais opaca; eastern olivaceous warbler, Hippolais pallida + + + (slang) out of one's mind; crazy + + + (slang) wildly enthusiastic + + + (slang) homosexual + + + a clasp, buckle, fibula, or brooch, esp. one set with precious stones, for holding together the two sides of a garment; (hence) a clasped necklace, bracelet, or the like. Also, in later use: a buckle or brooch worn as an ornament; (more generally) a gem, jewel, or precious ornament + + + (obsolete) the gold or silver setting of a precious stone + + + (obsolete, rare) an abscess; a carbuncle; a sore + + + (obsolete, rare) a wound + + + to drive mad, to infuriate, to make someone very irritated, angry, or annoyed + + + resembling flocculi + + + minutely floccose + + + the ten percent of earnings or produce that is to charity + + + the state or quality of being blobby + "Good gracious, look there!" and we looked there, and where we were to look was the lowest piece of the castle wall, just beside the keep that the bridge led over to, and what we were to look at was a strange blobbiness of knobbly bumps along the top, that looked exactly like human heads. + + + happening once every five years + + + consisting of or lasting for five years + + + a blow to the head + + + a hollow thud + + + a state of sudden and extreme fatigue often experienced when participating in endurance sports, especially bicycling + + + an act of sexual intercourse + + + non-existent + + + an agreement, an act of support + + + pizza + + + any of a group of degenerative diseases of the brain characterized by the progressive formation of vacuoles in the cells of the cerebral cortex + + + a bookworm: a person unusually devoted to reading and study + + + an insect or other organism that eats wood + + + to perform a free skate in a figure skating competition + + + (introduces restrictive relative clause) + + + having the characteristics of a gorgon; hideous, repulsive + + + a man who explains something to a woman in a condescending way that assumes she has no knowledge about the topic + + + in figure skating, a toe jump that takes off from a back inside edge and lands on the back outside edge of the opposite foot + + + reaching the stomach via the nose + + + relating to or resembling vampires + + + the quality of being constrained; constraint + + + of or relating to the snake family Pythonidae + + + fiercely competitive + + + a jack ladder having a V-shaped trough up which logs are drawn by a jack chain + + + Italian bacon that has been cured in salt and spices and then air-dried + + + nonsensical, absurd, pointless + + + second-rate, inferior + + + very angry, furious + + + smooth: pleasant, affable, polite; seemingly amiable or friendly; having a show of sincerity or friendliness + + + act of running away + + + act of causing fright + + + bitch and moan, express dissatisfaction, problem, concern, complaint + + + regular undertaking of a task + + + the acetate salt of a synthetic long-acting cyclic octapeptide with pharmacologic properties mimicking those of the natural hormone somatostatin + + + a long-acting synthetic analog of somatostatin that is a cyclic octapeptide, is administered especially by subcutaneous injection in the form of its acetate, and is used to treat acromegaly and to treat severe diarrhea associated with metastatic carcinoid tumors and vipomas + + + a genetic disorder caused by having an extra chromosome 18 in some or all of the body’s cells + + + the fact of something having objective reality + + + relation to, involvement + + + relation to, involvement + + + act or process of saying + + + arriving at an endstate + + + come into opposition + + + come into opposition + + + to examine carefully, review + + + domestic spinning wheel + + + realism in art characterized by depiction of real life in an unusual or striking manner + + + realistic in art characterized by depiction of real life in an unusual or striking manner + + + a technique of mass spectrometry that uses a particle accelerator to bring a small amount of the sample to be analyzed to high velocities + + + hellish, infernal, devilish + + + being nearby + + + quickly, fast + + + cancer that forms in tissues of the gallbladder + + + (in computing) to copy text and replace it elsewhere + + + provide direction, provide instruction/guidance (not cardinal directions!) + + + Nyctereutes procyonoides + + + a large wild edible brownish boletus mushroom (Boletus edulis) + + + to hasten, hurry up + + + cause to be available + + + native of South Sea Islands (especially one employed on Queensland sugar plantations) + + + native Hawaiian + + + characterized by tune or melody + + + purgative drug obtained from certain convolvulaceous plants + + + goldfinch + + + tool-dresser + + + engineering student + + + sound of spitting + + + person whose eccentric or foolish behaviour can be exploited to amuse onlookers + + + to hoax, deceive, hoodwink + + + canned beef + + + the application of organized knowledge and skills in the form of devices, medicines, vaccines, procedures, and systems developed to solve a health problem and improve quality of lives + + + the study of the physical characteristics of aquatic ecosystems + + + the conversion of organic materials (such as wastes) into an energy source (such as methane) by processes (such as fermentation) involving living organisms + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + neoorthodoxy especially in its pessimistic view of human nature that holds that humans and all human institutions are inevitably confounded by their own inner contradictions and that the resultant crisis forces humans to despair of their own efforts and possibly to turn to divine revelation and grace in faith + + + the lore of hotels and inns + + + the scientific study of the principles of zymotechny + + + predigested by means of zymin + + + characteristic of or relating to personalism, a philosophical movement that stresses the value of persons + + + of or relating to an idiosyncratic mode of behaviour or expression + + + put or reput x into y, putting x into y with a syringe + + + to hit, with words or a bat (etc) + + + to remove or obtain + + + the medical specialty focused on the diagnosis, treatment, and prevention of infectious diseases + + + to break off/sever/interrupt suddenly/curtail + + + the study of manuscripts, encompassing their history, physical characteristics, and cultural significance + + + the scientific study of psychological reactions + + + theology based on and attainable from revelation only + + + the study of the sociology of reading + + + the study of the microbiology of soils + + + the study of the geology of soils + + + in an absconded manner + + + mortgage again + + + act/process of removing or releasing (usually a fluid), emptying, unfilling, depleting + + + that acquiesces (assenting/compliant) + + + to cut or tear with or as if with the teeth, nom/partitive-quant + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + an expert or specialist in the study of Creole languages + + + the branch of linguistics concerned with the study of Creole languages + + + act or process of supplying with feathers, making ready for flight + + + raise a baby bird until it can leave the nest, and metaphorical development extension + + + (often capitalized) an American soldier of the Revolution in the Continental army + + + a piece of Continental paper currency + + + the least bit + + + an inhabitant of a continent and especially the continent of Europe + + + a native of the continental United States living or working in Puerto Rico or the US Virgin Islands + + + engagement in a 1-on-1 (one team, or one person, etc)direct contest + + + the methods and systems used to connect electronic components, enabling the flow of data and power between them + + + to encourage + + + field focused on developing computer systems that can understand, process, and generate human language + + + a topology defined on a subset of a topological space, where the open sets of the subset are created by intersecting the open sets of the original space with the subset + + + a political principle that emphasizes the importance of a nation as the fundamental unit of social life and political organization + + + branch of optical technology that focuses on the application of light and its fundamental unit, the photon, in various technologies + + + you only live once + + + the use of another entity's intellectual property (IP), like patents, copyrights, or trade secrets, through a contractual agreement where the owner (licensor) grants permission to a user (licensee) + + + a topology defined on a partially ordered set, where the topology is generated by the subbasis consisting of sets of the form (←, a) and (a, →) for a ∈ P + + + the methods, tools, and systems used to create, improve, and manage products, from physical goods to digital services + + + move forward quickly, like on a media player + + + act of going on and on, talking nonsensically + + + fill up, load + + + to bark or speak sharply, shrilly, or snappishly + + + start_over: once more, from the top + + + bleed to death + + + the quality or condition of being tremulous + + + opposite to or directly away from the apex + + + acquire, make (money) + + + print, generally on a computer printer + + + completive + + + a type of organizational technology characterized by a sequential interdependence of tasks or processes + + + the action of recognizing a voice; the process of, or a facility for, identifying a speaker from his or her voice; specifically, the analysis or interpretation of speech sounds, especially by computer; computer analysis and matching of the distinctive characteristics of a particular human voice + + + the study of chytrids, primitive aquatic fungi + + + act or process of estimating by extending known information + + + 'it seems to me', 'i think ___' + + + The act of copying + + + set of non-stellar objects in orbit around a star + + + remove the acetyl group from a compound + + + act or process of making hot or hotter + + + to put on or wear formal or fancy clothes, to decorate, wearing formal clothes/adornments + + + a dipolar ion + + + obstruct, hinder with painful constriction, painfully constricting + + + irritable due to hunger + + + composed chiefly of rock fragments or particles of volcanic origin, such as pumice, obsidian, or volcanic ash + + + any of a group of small, usually rectangular plots of land used for sampling the occurrence of species or of archaeological artifacts + + + a piece of type metal lower than the raised typeface, used for filling spaces and blank lines + + + (cause to) become acid + + + exit again + + + The act to cause confusion + + + The act of infecting with a parasite whose entire lifecycle is lived in a single host + + + perform an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + attach tightly + + + die, fall out of competition + + + technology that combines a fluxgate magnetometer with a triaxial configuration + + + having three axes + + + a minimally invasive medical procedure that uses argon gas to stop bleeding in various parts of the body + + + term designating the point in time or space at which something starts or originates + + + to cease + + + removal of part or all of the cecum + + + act or process of continuation + + + process of falling like water, flowing downwards + + + name + + + to anger, irritate + + + parallel and pointing/polarized in the same direction + + + occur together in the same cell + + + process coal into coke + + + act as a host, with a partner + + + chewy, gelatin-based candy + + + approach + + + set pen to paper + + + form of assault + + + act or process of using a curette to remove unwanted tissue + + + act of swearing, using foul language + + + remove accent + + + loss of physiological or psychological compensation + + + cause to become unclogged + + + remove husk + + + to (cause to) deteriorate mentally + + + remove flea + + + The act of taking away funding + + + lose glacier-cover + + + be sufficient, measure up + + + to remove worms + + + cemetery + + + ethnicel + + + act for a cause, in (or like in) holy war + + + separate + + + do not intubate + + + procrastinate, be very slow in doing + + + irrigating some part of the body (usually the vagina) + + + dope_up: dose with narcotics + + + stop by + + + natural disaster: sever blowing dust + + + young black man, esp. one who deals drugs on the street + + + expression of hesitation + + + expression of thinking + + + expression of acceptance + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + normal, reasonably positive mood + + + ungainly movement + + + obscene gesture: give the finger + + + make shorter; make to appear to be receding + + + procrastinate; play around + + + go out to eat frozen yogurt + + + act or process of providing geographic information (especially locations, such as coordinates) via metadata + + + remove gills + + + a position in which the dancer, facing diagonally toward the audience, extends one leg in the air to the side with the arm of the same side raised above the head and the other arm extended to the side + + + a two-handed card game which is played with a 32-card pack and in which each player is dealt 5 cards and has the right to replace any or all of them before play can begin, the object being to win at least 3 tricks in a given hand + + + (in ballet, of the legs) held wide apart with an oblique side extension of one foot and the same arm + + + to make or make appear historical + + + to take care of someone's house + + + Being actually living forever + + + Being eternally remembered, perhaps with veneration + + + cells being mutated and resulting in a cell line that can keep undergoing division indefinitely + + + take into the body, as food, drink, air + + + deficiency of phosphates in the blood that is due to inadequate intake, excessive excretion, or defective absorption and that results in various abnormalities (as defects of bone) + + + having a tube inserted (usually into a bodily passage or hollow organ) + + + be leftover; cause something to remain after a larger activity + + + become thick and leathery as a result of rubbing or scratching, become thick and leathery + + + wear out, ruin + + + act of making greater or bigger + + + severe headache often accompanied by nausea and disturbed vision + + + act of incorrect judgment + + + to measure with a metering device + + + saving money + + + to lubricate + + + oar + + + to bind or obligate beyond capacity + + + name + + + having multiple members + + + cause too much of an increase + + + to sell more than can be delivered + + + read again more closely, interperate to a greater degree + + + to plant too abundantly + + + project over the edge of something, in a cantilevering manner + + + reduce indebtedness + + + to not have + + + attacking with napalm + + + suffused or permeated through or over something + + + in the vicinity of a nerve or nerves + + + having a normal activity level + + + that dances + + + language + + + in the vicinity of the vagina (may or may not include the vagina) + + + Describe or represent in terms of a parameter + + + to pair with something else + + + Carry with oneself, as with a gun + + + to lose courage to do something + + + rummage, look for idly + + + an upward blow to opponent's chin + + + not able to be won + + + unable to be surgically removed + + + not ground up + + + in a panicked manner + + + add fertilizer beforehand + + + person with Asperger's syndrome + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + to incubate (as a cell or a culture) prior to a treatment or process + + + pick out beforehand + + + pleasing/agreeable/acceptable + + + to put or enclose in a case, again + + + conquer again + + + show again + + + begin again + + + to bind again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + to make famous + + + exactly that; in itself + + + sample again + + + personally unattractive (destitute of charms) + + + brazen/shameless (with reticence/shame/humility absent) + + + reinforce or support again with proof + + + to designate an area for a new purpose; to change zoning + + + wind backwards, perhaps as a cassette, back to the beginning state + + + to remove the rind + + + able/possible to not be spent + + + able to be rescued from peril + + + able to be collected, accrued + + + to save, put away + + + spend money on, splurge + + + say flippantly or quickly, phrasal + + + (cause to) back off, withdraw + + + located under the pleura + + + to affix with tape [completive] + + + act of walking quietly on one's toes + + + touch upon: same as touch on + + + forming trabeculae + + + the act of forming a trabeculae + + + the act or process of gently falling into a dreamy state (often sleep) + + + the act or process of taking out everything in ones path, such as with a car or weapon + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + a fragrant, dark and resinous wood used in incense, perfume, and small hand carvings, formed in the heartwood of Aquilaria trees after they become infected with a type of Phaeoacremonium mold, P. parasitica + + + having no page numbers + + + initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + + what place + + + the number 4 between three and five + + + playing card + + + the number 6 + + + data about data + + + In addition to; as an accessory to + + + (used to show disagreement or negation) + + + to move inside of (something) + + + item(s) that are separate and distinct from the item(s) under consideration + + + at least one item of a set + + + Any object, act, state, event, or fact whatsoever; a thing of any kind; something or other. + I would not do it for anything. + + + what person’s + + + person’s … that + + + At or to the back or far side of. + The children were hiding behind the wall. + Behind the garage needs clearing asap. + The sun went behind the clouds. + Look behind you! + I hide behind you in hide and seek. + Behind the smile was a cruel intention. + All my problems are behind me. + + + hand-operated tool for cutting + + + enjoyable + + + in all associated places + + + period of the day after 12:00pm and before approximately 6:00pm, depending on the time of sunset and time of year + + + human whose profession is bricklaying + + + through + + + at any time + + + unless + + + Side by side with. + + + Below. + + + individual change made to a document + + + advertising term + + + along an equator + + + in an insightful fashion + + + while + + + indicating sudden understanding + + + Expressing contempt, disgust, or bad temper. + + + like a fairy, or related to fairykind + + + express uncertainty or hesitation + + + traditional maritime greeting + + + synthetic chemical element with symbol Ts and atomic number 117 + + + former stronghold or villa in the province of Groningen, Netherlands + + + business enterprise established for the processing of animal milk + + + the process by which individual access to a computer system is controlled by identifying and authenticating the user through the credentials presented by the user + + + the credentials required during the login process + + + construction equipment used to lay asphalt + + + remove cap + + + To pass (time) idly. + I whiled away the hours whilst waiting for him to arrive + + + a process of deterioration + + + study of the structure and function of the mechanical aspects of biological systems + + + branch of discrete mathematics + + + branch of cell biology + + + medical specialty + + + medical specialist in diabetes + + + natural number + + + human disease + + + study of changes in the epigenome + + + film genre + + + about limb: with three toes + + + about animal: with limbs with three toes + + + sport + + + traditional culture + + + business providing food + + + pertaining to foraminifers + + + process of providing with a function + + + chemical process + + + science of dating rocks + + + particular geological dating method + + + lining + + + material used in vacuum systems + + + overuse + + + power from hydroelectric sources + + + branch of biology dealing with immune systems + + + medicine working through immune system + + + to make a mistake while typing on a keyboard + + + done in an interactive manner + + + cell life cycle phase + + + vigorously + + + study of lymphatic system + + + large globulin found in blood + + + medical condition with too many macroglobulins + + + broadly accepted + + + common current thought of the majority + + + person from the Middle Ages + + + pertaining to metabiosis + + + microscopic pore + + + pertaining to microstructure + + + microscopic system, or with microelectronic parts + + + type of particle filter + + + event involving powered vehicles + + + using multiple channels to communicate + + + structure with multiple distinct layers + + + looking at a range of different spectral wavelengths + + + pertaining to fungi + + + material with nanometer-scale structure + + + nanometer-scale pore in a membrane + + + one who naps + + + machine used with textiles + + + field combining neuroscience with economics + + + domain of human thought + + + relating to ophthalmology + + + study of optics and electronics together + + + optoelectronics + + + formation of organs + + + study of dust, spores, etc. + + + type of system of government + + + branch of agriculture + + + branch of dentistry that deals with diseases of the supporting and investing structures of the teeth including the gums, cementum, periodontal membranes, and alveolar bone + + + branch of chemistry + + + physiology of disease or injury + + + study of plant diseases + + + study of detection and measurement of radiant energy + + + study of sediments + + + every 150 years + + + mathematical structure + + + science of applying telecommunications + + + using telecommunications to provide medical assistance + + + ocean phenomenon + + + Name for a person who pursues high-quality or realistic audio playback + + + a small amount + + + from without/the outside + + + in an abashed manner + + + pertaining to the troposphere + + + convert waste into a higher quality product + + + pertaining to volcanology + + + natural phenomenon on Mars + + + land unmodified by humans; natural land + + + make a sweeping rotating motion + + + furniture component, top of a table + + + fat cell + + + type of chemical compound + + + fictionalized autobiography + + + type of food dish + + + photon from a biological source + + + type of mineral + + + type of protein + + + reddish-orange color + + + create a cross-reference + + + compare distinct sources + + + one who studies cybernetics + + + dancing as a sport + + + process of removing methyl groups from a molecule + + + type of enzyme + + + protein + + + protein + + + protein + + + protein + + + Japanese alcoholic beverage + + + type of large edible berry + + + philosophical inquiry into nature of philosophy + + + writer on music and musicians + + + with bitterness or severity + + + additionally, to a pronounced degree + + + done in a manner related to walking + + + in an animating manner, so as to give life/inspiration/enlivenment/encouragement + + + with care (in a careful/caring manner) + + + internationally + + + some time ago + + + genuinely, sincerely + + + all over the place + + + extremely/very much + + + in regard to world-wide political implications + + + with grief, usually during a bereavement period + + + without adequate reason/cause + + + without guilt (in a guiltless manner) + + + without luck/good fortune, unfortunately/unhappily + + + smoothly, without hindrance/difficulty + + + using holography + + + in a homosexual manner + + + in an imperturbable manner; without being mentally perturbed or agitated; calmly, composedly + + + unable to be extinguished + + + in a monarchical form/manner + + + From the title of the cult 1962 Italian documentary film Mondo cane, Italian for "A Dog's World", from mondo (“world”) and cane (“dog”). The film featured bizarre scenes, leading to English use of mondo as an adverb meaning "very, extremely" in mock-Italian phrases like mondo bizarro. + + + without consent, not consenting + + + doing too much to prevent harm to another (usually a child) + + + occurring over a period spanning winter + + + in a pathophysiological manner + + + in a penniless manner + + + In a recalcitrant manner. + + + in a regardless manner + + + by sacrifice, in sacrifice + + + In a scenographic manner. + + + In a manner only partially related to logarithms + + + in a manner that teaches wisdom + + + sonorously/imposingly (so as to emit/cause a sound) + + + used for making one's criticism of someone or something seem less strong + + + before, previously + + + in a transformational manner + + + in a trifling manner/degree + + + done in a manner that produces a quavering or warbling sound + + + in an unwholesome manner + + + distressingly (in an upsetting manner) + + + in a verisimilar manner + + + with good intent + + + person who works on nanotechnology + + + person who practices palynology + + + specialized scientist studying palynology + + + branch of genomics concerned with developing pharmaceuticals + + + approach to classification of organisms + + + resistor that changes with light level + + + organism that feeds on plankton + + + version of a solid with a particular crystal layer stacking sequence + + + book containing rules + + + state of not being a citizen of any country + + + type of large star + + + device that produces modulation + + + the measurement of cell characteristics + + + the process of removing one or more phosphoric (ester or anhydride) residues from a molecule. + + + A vesicle-mediated transport process in which cells take up external materials or membrane constituents by the invagination of a small region of the plasma membrane to form a new membrane-bounded vesicle. + + + set of all RNA molecules in one cell or a population of cells + + + study of measuring and analysing science, technology and innovation + + + written prose piece in a publication expressing the opinion of an author or entity + + + individual's or a group's human demand on nature + + + method to avoid unsolicited products or advertisements + + + organism that prefers higher temperatures + + + process of adding salt + The team identified sources of ground-water salinization and found that sea-water intrusion was the main mechanism. + + + act of adding moisture to + + + cardinal number + + + class of enzymes that cleave phospholipids + + + a diagnostic endoscopic procedure that visualizes the upper part of the gastrointestinal tract down to the duodenum + + + reduce a cellular response to a molecular stimulus + + + to tonicize + + + to turn into horn + + + to pack again + + + to make a dunce of; render stupid, slow-witted + + + to make rancid + + + to subdivide a classification into subordinate classifications + + + to turn into chyle + + + to produce chyle + + + change of economy, especially of energy industries, towards lower carbon dioxide emissions + + + natural soil-forming process + + + economy based on low carbon power sources + + + call for, require, justify + + + a monument made of stone + + + person whose profession is study and research + + + electrophysiological monitoring method + + + disease + + + virus + + + act or process of making illegitimate + + + abnormal retention of fat (lipids) within a cell or organ + + + process using extreme cold to destroy tissue + + + pure quantum state unchanged by a certain operator + + + unblur a digital image + + + measurement method using interference of waves + + + nanomaterial + + + a billionth of a rod (equivalent to 5.029 nm) + + + long unbranched polysaccharides consisting of a repeating disaccharide unit + + + social distancing measure + + + elevated level of gene expression + + + infection by the same infectious agent following a recovery + + + orthodontic headgear + + + a mask or protective covering for the face or part of the face + + + a covering (as of polypropylene fiber or cotton fabric) for the mouth and nose that is worn especially to reduce the spread of infectious agents (such as viruses or bacteria) + + + a device usually covering the mouth and nose to facilitate delivery of a gas (such as a general anesthetic) + + + a covering typically attaching to the front of a helmet that consists of a hard, clear material (such as polycarbonate) or a cage of metal (such as steel or a titanium alloy) and is worn to protect the wearer's face from injury + + + or face mask penalty (American football): a penalty imposed on a player for grabbing and pulling an opponent's face mask during play + + + abnormally low level of oxygen in the blood + + + ejaculate, orgasm + + + the formation of ozone (O₃) in the earth's atmosphere + + + the treatment or combination of a substance or compound with ozone + + + production of spores in biology + + + any phosphatidylinositol that is phosphorylated at one or more of the hydroxy groups of inositol + + + protein encoded by an oncogene + + + class of chemical compounds + + + protein devoid of its characteristic prosthetic group or metal + + + identifier for a person in a computer system + + + droplets in the microlitre range + + + protective suit against chemical, bacteriological, and nuclear risks + + + The act of impairing a physiological regulatory mechanism + + + a military order to cease firing + + + a suspension of active hostilities + + + offshore rise of water associated with a low pressure weather system + + + InterPro Family + + + agent that carries and transmits an infectious pathogen into another living organism + + + neopronoun + + + neopronoun + + + neopronoun + + + pronoun used in place of he, she or singular they + + + person who does not experience sexual attraction + + + village + + + play-through of a video game performed as fast as possible + + + currency of Madagascar + + + one unduly fearful of what is foreign and especially of people of foreign origin + + + to betray by contradicting prior agreement + + + something revelatory + + + web content whose main goal is to entice users to click on a link to go to a certain webpage or video + + + scale or full-size model of a design or device, used for teaching, demonstration, design evaluation, simulation, promotion, and other purposes + + + point-to-point communications link + + + study of the past + + + brother + + + friend + + + person who designs, builds, programs, and experiments with robots + + + period with lack of sexual arousal + + + set of alphabetic and numeric characters + + + part of stage lighting + + + grandparent's sister + + + A minor miscellaneous item. A food item eaten as an accompaniment to a meal; a side dish; also, such an item eaten on its own as a light meal. + + + Electric bus that draws power from dual overhead wires + + + sew on as decoration + + + to drench with a liquor and ignite + + + to fry (food, such as small pieces of meat or vegetables) in a small amount of fat + + + In favor of. + He is pro exercise but against physical exertion, quite a conundrum. + + + In the midst or middle of; surrounded or encompassed by; among. + + + Instead of; in place of; versus. + + + unless; except + + + Introduces the first of two (or occasionally more) options or possibilities, the second (or last) of which is introduced by “or”. + Either you eat your dinner or you go to your room. + You can have either potatoes or rice with that, but not both. + You'll be either early, late, or on time. + Either you'll finish your homework or you'll be grounded you home. + + + Not either (used with nor). + Neither you nor I likes it. + + + Whatever. + Whatsoever you seek, you will find. + + + That which was previously mentioned; that. + I'll become a loyal friend and remain so. + If that's what you really mean, then just say so. + You may need to refer to litigation as a procedure, and when you have done so, you can say a matter is "in litigation". + + + Which ever; emphatic form of 'which'. + Good heavens! Whichever button did you press to make that happen?! + + + Hold fast!; cease!; stop! + + + A cry of praise or adoration to God in liturgical use among the Jews, and said to have been shouted in recognition of the Messiahship of Jesus on his entry into Jerusalem; hence since used in the Christian Church. + + + Oops. + + + A statement of defiance + ‘Guess what, I've won the pools!’ ‘Never!’ + + + A mild expletive, expressing disbelief or dismay + Didn't you have a concert tonight? —Shoot! I forgot! I have to go and get ready… + + + goodbye + + + Used to gain someone's attention before making an inquiry or suggestion + Say, what did you think about the movie? + + + An expression of mild surprise. + + + A spontaneous expression of delight or joy. + Whoopee! I won! + + + Okay; all right. + + + expression of pain + + + local set of atmospheric conditions + + + intentional killing or other violent deaths of females (women or girls) because of their gender + + + und/oder + + + pseudonym + + + name of a person + + + name used for a place which is used by the people of that place + + + difficult situation or complex health system that affects humans in one or more geographic areas + + + part of the large-scale ocean circulation that is driven by global density gradients created by surface heat and freshwater fluxes + + + having net zero carbon emissions + + + making lifestyle choices to reduce the greenhouse gas emissions resulting from consumption decisions + + + measurement of how much temperature will rise given an increase in CO2 + + + reduction in emissions of carbon dioxide or greenhouse gases made in order to compensate for or to offset an emission made elsewhere + + + benefits created by nature, forests and environmental systems + + + hookworm disease caused by Ancylostoma hookworms + + + fictional device + The captain tapped her combadge. + "Only Equinox crew on board now," Max confirmed, checking the bioscans from encrypted combadges all over the ship. + Constructed from a crystalline composite, the combadge had a signal range restricted to approximately 500 kilometers when beyond the range of a starship. + + + granting of permission by an ethics board (typically for research) + + + identifier used for an act of approval + + + type of lawn game or sport in which players toss beanbags toward a slanted platform with the aim of passing the beanbag through a hole in the center of the platform + When you think of cornhole, visions of tailgating, beer-drinking, and backyard picnics come to mind. + + + vulgar slang term for the anus + When Mike pumps a creampie into Anna's cornhole, she collects the cum in a cocktail glass and swallows it. + + + Unwanted pre-installed software + Here's all the crapware that comes with new Windows 8 PCs. + Though I hope Microsoft always allows Windows users to install desktop software, the best way fend off crapware is to also provide a controlled environment, such as the Windows Store, for users who want it. + + + to express contempt or impatience + + + to express contempt for or make light of + + + thong visible over trousers or similar + + + graze to the point of damaging the life cycle of vegetation + + + a live online educational presentation + + + compartment in a ship used for medical purposes + + + to the degree or extent indicated. + We only have this much water. + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + to redistribute the heat in bath water + + + crushed green tea leaves + + + bag containing crumbled tea leaves that is soaked in water to make tea + + + place scrotum into one's mouth + + + appearing to have zones of color/texture/etc. + + + meal which combines breakfast and dinner + + + ethological class; trace fossils formed as a result of organisms disturbing sediment for food + + + ethological class; structures which were created by organisms for breeding purposes + + + ethological class; evidence of organisms moving at the front + + + individual member of the Xenophyophorea clade of protists including some of the largest known single-celled organisms + + + printing that goes beyond the edge of the sheet before trimming + + + attractive male person + + + when something does not go your way + + + when you are surprised + + + when you see something you are impressed by + + + when you realize something profound + + + pictorial depiction in an online chat + + + carved pumpkin or other gourd, used primarily during Halloween + + + video recording of a stage performance by a fan in the crowd + + + gender identity that is typically associated with concepts that are not entirely related to gender + + + a bird + + + a bird-like creature + + + set in the 19th century, featuring steam-powered machinery and related technologies extrapolated from the science of that era + + + one who films and/or edits vlogs (video blogs) + + + romantically attracted to members of the opposite sex or gender + + + romantically attracted to people regardless of sex or gender + + + attracted to experiencing bisexuality + + + attracted to people regardless of gender + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + electronic cigarette + + + variable that statistically affects the relationship between other variables + + + you; person spoken to or written to + + + anyone, one; unspecified individual or group of individuals + + + abbreviation of love + + + abbreviation of romantic love + + + método de entrada + + + Any beetle of the taxon Cerambycidae + + + any beetle of the subtribe Coptomiina + + + drunk + + + drunk + + + drunk + + + to cancel a subscription + + + Antennarius pictus + + + the quality or state of being exclusive + + + exclusive rights or services + + + Gampsonyx swainsonii + + + a language with no genetic relations + + + oh my God + + + Crinifer zonurus + + + any fly of the family Dolichopodidae + + + any insect in the clade Eulepidoptera + + + any bacterium in the class Actinobacteria + + + any bacterium in the phylum Actinobacteria + + + Boiga irregularis + + + make space available + "Getting people out of hospital on time is more important than ever," said Helen Whately, minister for care. "It's good for patients and it helps hospitals make space for those who need urgent care." + Some residents believe it may have been the result of a crude attempt to clear forest land and make space for building projects, but police are yet to determine a cause. + Wards have been emptied to make space for Covid patients + Due to a slump in construction and high production costs, the timber industry in Zimbabwe has been struggling to survive. To make things worse, illegal miners in some of the country's forests have been chopping down trees to make space for their own operations. + + + any gelechoid moth in the family Coleophoridae + + + fictional dish named by listing ingredients + + + like a corymb + + + small, benign skin growth that may have a stalk (peduncle); also called achrochordon + + + a person who is transgender + + + to sweat + + + one who flatters a supervisor, or superior, in order to get special attention + + + fund offered to students who are struggling with their finances and need help + + + something chosen by hand + + + something chosen out of a larger set or whole + + + sexually attracted to more than one sex or gender + + + participle + + + people + + + any beetle of the genus Caccobius + + + agent noun of warp; one that warps + + + any enzyme that initiates methylization + + + to use a flashbang/flash grenade + + + using little effort to do something + + + the monitoring of someone by taking photographs + + + learned man in Indian classical tradition + + + aggregation of dust particles + + + സാമൂതിരി + + + (disparaging) promiscuous + + + (relexive pronoun for the second person) that which belongs to you + + + small street, often in an old or poor neighborhood of a city + + + having leaves like those of a willow; attributive element in the common names of plants + + + dial of a watch + + + jewelry used on the body + + + poke a hole in, go through such a hole + + + one who takes part in cosplay + + + person promoting conspiracy theories + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + subgenre of hip hop + + + marine mammal in the fur seal and sea lion family Otariidae + + + a rodent of the family Erethizontidae (New World porcupines) + + + any tapeworm of the family Taeniidae + + + any bird in the family Falconidae + + + professional who treats foot ailments + + + of or relating to the insect family Thripidae + + + a fundamental; a foundational or integral aspect of something + + + Any fly in the family Syrphidae, which hover in place and visually resemble bees or wasps + + + bench located in front of the chancel + + + of or relating to the mammal family Viverridae + + + accidie + + + swindle, dupe or manipulate to obtain a wrongful advantage + + + complain loudly or shout + + + a bird of the family Paradisaeidae + + + any bird in the family Podicipedidae + + + any reptile of the family Chelidae + + + mutual yielding; concessions, compromise + + + to use arms and legs to stay afloat in place in water + + + wrestle + + + to use a pickaxe + + + kitchen garden + + + a disorderly, confusing situation; a mess + + + republic by popular mandate + + + for or by the general public + + + plundering expedition, raid + + + associated with humans but not domesticated + + + time prior to a sporting season + + + title of Islamic martyr + + + non-legal return of refugees and immigrants across the border + + + one who is chased + + + study of narrative and narrative structure + + + the branch of medicine dealing with the intestines + + + the branch of zoology dealing with the ants + + + hymnody (hymn singing and writing) + + + the study of hymns + + + branch of entomology that deals with the Isoptera (termites) + + + decisive match in a series + + + study of the occurrence, transportation, and effects of airborne materials (such as viruses, pollen, or pollutants) + + + the study of the Holy Shroud of Turin, in which the body of Christ was reputedly wrapped + + + the study or investigation of crop circles + + + the study of dogs and other canines + + + branch of dendrology dealing with the gross and the minute structure of wood + + + the study or practice of herbal medicine + + + likely to cause one to laugh + + + the study of sleep + + + study of the organization and function of committees + + + committees and their practices considered collectively + + + system of administrative and expert committees within the European Union + + + (linking a destination, subject of approach) + + + charisma, charm + + + orange grown for commercial consumption containing seeds, as opposed to seedless oranges + + + village + + + the study of intonation in speech + + + study of psychology applied to sports + + + study of psychology applied to sport + + + branch of entomology that is concerned with the scales, mealybugs, and other members of the superfamily Coccoidea + + + in naming an animal, having a long tail + + + be courageous, unafraid + + + applied to organisms whose presence in a given habitat is transien + + + producing fermentation + + + be of recent age + + + a form intermediate between a worker and a queen which occurs in some ant species + + + a worker or soldier ant that develops female characteristics especially as a result of the attack of parasitic worms + + + no + + + hair turned white with aging + + + device to store spent espresso grounds + + + a specialist in orthopterology + + + the study of pollen grains and spores (palynomorphs) in the atmosphere + + + branch of theology dealing with the doctrine of evil + + + the study dealing with specialized problems of cities + + + branch of meteorology that deals with the relationship of weather and climate to crop and livestock production and soil management + + + crystallography + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + the subfield of ecology that deals with the study of relationships between organisms and their environment at large spatial scales + + + protein that is rich in phosphorus + + + theological doctrine that describes the divine nature according to positive categories + + + a theology that instead of beginning with the philosophy of religion takes as its content the gospel as given by biblical theology and presents it directly in systematic form + + + the branch of pharmacology that deals with the use of drugs in the treatment and prevention of disease + + + the branch of science concerned with the action of frost and freezing water on the structure and properties of the ground + + + branch of mycology dealing with the rusts + + + little + + + irksome, annoying, irritating + + + period during which a draught animal is yoked + + + form of mugging involving assailant wrapping arms around victim’s neck from behind + + + the study of bridges and naturally occurring arches or bridge-like structures + + + lore dealing with ghosts + + + the study of ghosts and ghostlore + + + a Haeckelian branch of morphology that regards an organism as made up of other organisms + + + the universal organizational science + + + the branch of physiology which treats of pregnancy + + + study of handwriting + + + the study of or knowledge of pathological conditions of the horse + + + the branch of zoology that studies insects + + + branch of anatomy dealing with the fundamental tissues and fluids of the body + + + having unrequited desire + + + despondent, depressed + + + badly ill, injured + + + not having a weapon + + + lacking funds to acquire drugs + + + the study of words and expressions having similar or associated concepts and a basis (as social, regional, occupational) for being grouped + + + branch of immunology that studies the interaction of the immune and nervous systems + + + the branch of limnology that deals with the conditions and processes occurring in lakes in the geological past + + + one who or that which brings + + + the science that deals with atmospheric dust and its effects on plant and animal life + + + exhausted + + + pregnant + + + delicious + + + use of more words than are necessary; redundancy or superfluity of expression, pleonasm + + + the branch of anatomy that deals with the pelvis + + + the study of manuscripts of ancient literature, correspondence, legal archives, etc., preserved on portable media from antiquity, the most common form of which is papyrus, the principal writing material in the ancient civilizations of Egypt, Greece, and Rome + + + branch of medical science concerned with symptoms of diseases + + + the study of or a treatise on beards + + + the science which treats of the origin and character of springs + + + handgun + + + filthy talk + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + the study and description of the movements of dancing + + + the study of bile and the biliary organs + + + a description of what relates to the bile and biliary organs + + + the study of bile and the biliary organs + + + the investigation of urban spatial structure by factor analysis + + + a branch of theology dealing with the interpretation or explanation of scripture + + + the branch of chemistry which deals with salts + + + the sociological study of race by anthropological methods (as in the theories of Lapouge) as a means of establishing the social superiority of dolichocephalic peoples + + + the study of sacred buildings + + + the study or investigation of miasmas + + + the science that deals with the effects of weather and climate on living beings + + + the art or science of cookery + + + the narration or study of history + + + the anatomical study of the pharynx (obsolete) + + + a branch of medical science concerned with the pharynx and its diseases + + + of or relating to the form, arrangement, and structure of rock masses of the earth's crust resulting from folding or faulting + + + the study of apes + + + a branch of the life sciences dealing with neurosecretion and the physiological interaction between the central nervous system and the endocrine system + + + the scientific study of clouds + + + a branch of laboratory technology dealing with diagnostic cytology + + + a great speech or discourse + + + the study of the macrocosm + + + the study of ecological microcosms + + + the scientific study of mummies + + + not apportioned + + + boasting or vaunting speech + + + a religious belief among some Charismatic Christians that financial blessing and physical well-being are always the will of God for them, and that faith, positive scriptural confession, and giving to charitable and religious causes will increase one's material wealth + + + the science of defining technical terms + + + a branch of hydrography that deals with the relations of mountains to drainage + + + a branch of hydrography that deals with the relations of mountains to drainage + + + the study of human behavior in the workplace + + + the branch of science that deals with the neurology of animals and humans of the historical, prehistoric, or geological past + + + the field of study concerned with sound design and the use of technology in musical composition and performance + + + field of science that involves redesigning organisms for useful purposes by engineering them to have new abilities + + + the scientific study of the diseases of animals + + + the branch of zoology which deals with cephalopods + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + the bioclimatology of plants + + + lore about parsons + + + the speech of parsons, preaching + + + one that conforms to rules or the law + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + of or relating to the cosmos, the extraterrestrial vastness, or the universe in contrast to the earth alone + + + of, relating to, or concerned with abstract spiritual or metaphysical ideas + + + characterized by greatness especially in extent, intensity, or comprehensiveness + + + the study of climates of small, confined spaces such as caves or houses + + + radiology of the teeth and jaws + + + persuasive or seductive speech or argument; sophistry + + + the science or study of political parties + + + the doctrine of the divine direction of nature to an appointed end + + + a type of micro-level case study research that examines a case in its socio-historical context, using mainly original sources + + + technologies that support the storage, retrieval, processing and dissemination of information necessary for the efficient and effective operation of libraries in meeting the information needs of their users + + + the calibration and testing of instruments used in the field of health + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + the study of the tropical atmosphere + + + the study of runes or runic writing + + + the study of the physiology of the kidney + + + unpleasant, dirty, disgusting + + + piffling; second-rate + + + the study of comparability and traceability of chemical and biological measurements to ensure the reliability of results + + + the study of the use of puns + + + type of macaw with distinctively red upper body and green wings + + + the science of first principles + + + a general term for a sequence of abelian groups, usually one associated with a topological space, often defined from a cochain complex + + + to inquire, to interrogate + + + malodorous, stinky + + + (second-person singular possessive) belonging to thee + + + of or related to lexemes + + + protagonist or leading role in a fictional work + + + a field within applied climatology that studies the effects of weather and climate on industrial operations + + + an approach to archaeology that builds out of post‐processual thinking as a simple reaction to processual archaeology and instead sees interpretation as a creative process + + + the branch of science that deals with the structure of living cells; cytology, histology + + + the study of measurement and control in sports + + + the study or subject of the Hebrew accents + + + (third-person singular masculine personal possessive) belonging to him + + + prebiological conditions and processes; the branch of science concerned with these + + + of or relating to a legal process + + + functional, operational + + + a network structure that resembles a tree, with a central node (the "trunk") and multiple child nodes that branch out from it + + + opposite participant in a legal or financial transaction + + + in soccer, any of various electronic or digital systems used to determine whether the ball has crossed the goal line, and hence to assist officials in deciding whether or not a goal has been scored + + + activity of humiliating someone + + + impel through shame, assign shame as punishment + + + term coined by Jean-Philippe-Arthur Dubuffet (1901-85) for a kind of painting created by him, composed of minute drops of paint entirely covering a flat surface + + + the study of local climates, or topoclimates, which are climatic features caused by the interplay of topography, water, soil, and land cover + + + of a plant, growing on waste ground + + + the scientific study of blindness + + + the study or science of nutrition + + + knowledge or study of sermons + + + sermonizing: the preaching of sermons + + + sermons collectively + + + time in which one’s child, partner, etc., receives one's undivided attention + + + license allowing a person to operate a vehicle + + + to treat with sulphur + + + to make geological researches + + + to disperse a clay suspension, reducing its tendency to settle and viscosity + + + be fed up with + + + condition of thirst; desiring of a drink + + + to grieve, sorrow for + + + very distant + + + filled to capacity, completely full + + + to designate again; to reinstate designation + + + abandoned house used for drug storage or processing + + + field of study that examines how social processes lead to some people being victimized more than others + + + to make a sharp, high-pitched noise, especially as passing rapidly through the air + + + to deposit alluvium on + + + to form a fungoid growth + + + to perform oophorectomy on + + + to excise the spleen of an animal or person + + + to fish through holes made in ice + + + to impoverish, inflict misery upon + + + to cause immunosuppression of an organism; to suppress immune function + + + an explicitly third-person, scientific approach to the study of consciousness and other mental phenomena + + + to perform a backward somersault + + + over the top of; over + + + in the assemblage of + + + to dance ballet + + + to speak, say, tell + + + to have black colour + + + to forge metal (especially iron) by hand + + + to break into a safe + + + to work as a pimp + + + the part of physiology and pathology which deals with the bile + + + to ruin, spoil, make a mess of + + + to embed amongst or between + + + to make into boulders + + + to climb boulders + + + to regulate temperature, especially body temperature + + + to convey by van or caravan + + + the study of ichneumon wasps + + + any of a large family (Ichneumonidae) of brown or black hymenopterous insects that have a slender body and long ovipositor and whose larvae are parasites of the larvae and pupae of various insects + + + to ascertain, allow for, or indicate the tare of + + + musical instrument of the lute family + + + at a distance from + + + a small three-masted Mediterranean vessel with both square and lateen sails + + + to catch or try to catch lobsters + + + to divest or deprive of power conferred + + + to bungle or botch + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + powerful feudal territorial lord in pre-modern Japan + + + classical Japanese dance-drama + + + sacred ritual with object of increasing the totemic species of a clan + + + the study of communication, including such fields as semiotics, audiology, and speech pathology + + + the study of the body's metabolic response to short-term and long-term physical activity + + + the study of the changes in flow properties that occur in certain fluids exposed to magnetic fields + + + tetragonal aluminosilicate mineral and chloride of sodium and beryllium + + + silicate of glucinum and manganese, occurring in regular tetrahedral crystals + + + mineral with tetrahedral silicate crystal structure + + + the state of being feral + + + adorned with figures of needlework + + + that has received an invitation + + + later on + + + see you later + + + act to commit + + + making of an exit + + + أبو قِردَان + + + someone who soliloquizes + + + a vaginal artery (Obsolete. rare) + + + action of love; affection + + + Turtur + + + description of the skin + + + a writing or treatise on dogs + + + tending to cause encephalitis + + + the measurement of the magnetic fields associated with the electrical and mechanical activity of the heart + + + branch of geography that deals with the figure and motions of the earth, its seasons and tides, its measurement, and its representation on maps and charts by various methods of projection + + + wood engraving, especially of an early period + + + the art of printing texts or illustrations, sometimes with color, from woodblocks, as distinct from typography + + + the study of the geographic distribution of plants + + + the phytogeographic features of a region + + + a description of the moon's surface + + + an imaging technique in which the output is produced by the coupling of two types of field (electromagnetic and magnetic) + + + characterized by exclusivism + + + very large or fast jet aeroplane + + + powerful jet engine + + + dramatic work in which psychological elements are the main interest + + + that pollutes; that causes environmental pollution + + + style of painting using pointillism to achieve a more formal composition + + + protuberance of the outer ear; thicker part of the antihelix + + + condition produced by overuse of bromine or a bromide + + + instrument for measuring logarithmic decrement of oscillatory circuit + + + removal of a security from official register + + + a nucleus of the optic thalamus + + + pollination by agency of water + + + machine for separating the hulls from seeds + + + keyed viol, a musical instrument + + + production of ketone bodies + + + engaged in courtship + + + not disclosing one's true ideology, affiliations, or positions + + + intended not to attract attention : stealthy + + + aving or providing the ability to prevent detection by radar + + + (medical) involving or caused by an asymptomatic or presymptomatic infectious individual : silent + + + having a heart + + + the study of how human diet, nutrition, and subsistence are influenced by social, cultural, historical, ecological, and evolutionary factors + + + the best, most exciting + + + the frequency of marriage within a population, usually expressed as a marriage rate + + + a mayfly used as fishing bait + + + African musical instrument of the lamellophone family + + + membranous lining in insects and arachnids + + + to grow more than one distinct cell type in a combined culture + + + that which is eaten + + + to go to the gallows, to be hanged + + + the idea that the present is haunted by the metaphorical "ghosts" of lost futures + + + musical genre that took hold in the early aughts that evokes cultural memory and aesthetics of the past + + + to take with; to have accompanying + + + to force or barge one’s way into (a place or event) + + + crash, slam or invade, possibly unexpectedly + + + rumbling noise produced by movement of gas through intestines + + + to expect, regard as likely to happen + + + to interpose in one’s authority + + + to officially or legally make over, convey, assign, grant + + + to place or set upon something + + + anathema; curse; denunciation, condemnation + + + to place against, set in opposition to + + + to presuppose, assume beforehand + + + to endow with a benefaction + + + situated or occuring above the clavicle + + + to give an additional name, title, or epithet to (a person) + + + to take turns doing something with someone + + + to put into the possession of trustee(s) + + + to act as a trustee + + + to bind ubiquitin to (a protein) + + + depression on the upper part of a pock on the skin + + + Egyptian dancing-girl + + + to unfasten, loosen; to undo from fixed state + + + a small cavity in a rock or vein, often with a mineral lining of different composition from that of the surrounding rock + + + to experience enjoyment, amusement, entertainment + + + to sew by hand + + + to feed by hand + + + to remove social stigma associated with + + + a theory of ethnicity emphasizing that ethnic groups are created on the basis of enduring ("primordial") biological, linguistic, or geographic relationships + + + the branch of anthropology that studies human economic activities throughout the world + + + to re-establish priorities for + + + semblance of interpersonal exchange whereby members of an audience come to feel that they personally know a performer they have encountered in mass media + + + any of various herbivorous dinosaurs (family Hadrosauridae) of the Late Cretaceous having the jaw elongated into a snout that resembles a beak : hadrosaur + + + a polemical argument; a diatribe, a polemic. Usually in plural + + + synthetic chemical element with symbol Og and atomic number 118 + + + an undersized, slight person; a person lacking in strength, weak, feeble + + + colored stoneware with raised white decoration + + + the fishing fleet for sardines + + + a person who or thing which procreates; a parent; a creator + + + best friend + + + one that debunks + + + representing a brief resonant sound, as of a blow + + + worthless, useless + + + the buttocks; the anus + + + in computing, that which can be read but cannot be changed by a program + + + the fact or condition of occupying a certain place or position; the place in which a person or thing is; location + + + a place, a location; (also) position, location + + + feeding on insects + + + the action or process of a bacteriophage + + + to unsay or retract something sworn + + + later or vertical movement of material in solution or suspension through soil + + + a person who engages or participates in figure skating, especially competitively + + + a freestyle competition with no required elements, in which skaters perform an original program of jumps, spins, sequences, etc., to music of their choice + + + a person who performs a free skate in figure skating + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + among a group of two or more + + + paid with paper currency + + + a figure skating jump in which the skater takes off from the back outside edge of one skate, makes at least one full turn in the air, and lands on the back outside edge of the same skate + + + clever, wise + + + relating to or resembling vampires + + + the quality of being unconstrained + + + nincompoops as a class + + + person regarded as socially inadequate, unfashionable, contemptible + + + the act of assigning a criminal punishment + + + act of objecting to something or participating in a protest + + + manner of speaking + + + a type of mozzarella cheese made from the milk of Italian Mediterranean buffalo + + + state that has the highest authority over a territory + + + of or relating to the moth family Arctiidae + + + a miserable person + + + Stiefmutter + + + an unwanted and unsolicited telephone call + + + necrosis of a tooth + + + gift giving, often as a fulfillment of a request + + + to draw again + + + a container, typically a rectangular or square structure, used to grow plants in a controlled environment, often outdoors + + + (expression to persuade, garner attention) + + + clothes custom-made for sale + + + an ancient Mediterranean and Near Eastern earthen vessel with small cups around the rim or fixed in a circle to a central stem + + + working (of something) + + + musical instrument that creates sound through the vibration of air without the use of strings or membranes + + + to reduce risk + + + assumed (of a setting) + + + a combination of nine instruments or voices + + + a musical composition for nine instruments or voices + + + rolling pin + + + in advertising and web design agencies, the person who acts as the intermediary between the agency and the client, whose job is to interpret the client’s brief and manage the process of its realization + + + a noncommercial often homemade or online publication usually devoted to specialized and often unconventional subject matter + + + fast-forwarding through commercials on recorded media during playback + + + the practice among television viewers of rapidly changing from one channel to another using a remote control device, especially during commercial breaks + + + the mass production of identical copies of a text using technological means (i.e. printing) + + + a television show or series that tells a story in a predetermined, limited number of episodes + + + a comic book series that tells a self-contained story in a limited number of issues, usually between two and eight + + + (sports) a short series of performances or athletic contests + + + the high redundancy of broadcast codes associated with structurally simple, formulaic, and repetitive texts + + + a technique used in broadcast programming whereby an unpopular television program is scheduled between two popular ones in the hope that viewers will watch it + + + the use of technology that stimulates the senses of touch and motion, especially to reproduce in remote operation or computer simulation the sensations that would be felt by a user interacting directly with physical objects + + + the perception of objects by touch and proprioception, especially as involved in nonverbal communication + + + person who takes part in a game + + + the sport or activity of riding a mountain bike + + + a synthetic cannabinoid and dibenzopyrane derivative with anti-emetic activity + + + musician, singer; provider of music + + + a pastelike mixture of apples, nuts, cinnamon, and wine used during the seder meal on the Passover and symbolic of the clay from which the Israelites made bricks during their Egyptian slavery + + + utterance of ‘ah’ + + + act/process of amounting to, coming to, calculating, or computing arithmetic mean (usually mean, median, or mode) + + + experiencing or having an average + + + give legal rights to property + + + to impose or command, imposing, commanding, deciding, telling + + + my (in colloquial dialectal use) + + + the study of alphabetic systems of writing + + + tthe methods and processes used to join different components together to create a complete product + + + the science and engineering involved in designing, developing, and applying devices called actuators + + + to say or shout something loudly + + + to sing something loudly + + + of or like fibrils or fibers + + + of or exhibiting fibrillation + + + having the color of the element copper + + + made of copper + + + engage in a battle with someone + + + the study of physiology at a microscopic scale + + + biochemical + + + the study of the relationships between plants and climate, including the impacts of climate on plants and how plants, in turn, affect climate + + + branch of geology concerned with the study of rock layers (strata) and layering (stratification) + + + the study of witches or witchcraft + + + organismic psychology that emphasizes the self or the individual personality + + + one who has hair cropped short + + + the study of the plant genus Theobroma, cacao, and chocolate + + + in an abrupt manner (suddenly/without warning) + + + a bisector; specifically : a line bisecting the angle between the optic axes of a biaxial crystal + + + make available for consideration + + + postpone consideration of + + + the study of the Earth's atmosphere and oceans using data obtained from remote sensing devices flown onboard satellites orbiting the Earth + + + that has escaped/is a fugitive + + + the study of the significant influence of climate on many aspects of commerce and industry + + + lose, come to not have + + + act/process of poking with sharp object (perhaps fatally), metaphorically trying something + + + removal of innards + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + act of talking aimlessly + + + The act of moving aimlessly from place to place + + + the act or process of making something active again + + + process or act of making less effective, not sharp + + + departed from a straight path + + + moment when an institution starts operating after a closure + + + addition or administration of a substance + + + measuring an appropriate amount of chemical for a given purpose + + + feeding of babies and young children with milk from a woman's breast + + + pique one's interest + + + to pair, combine, compare + + + faint, pass out + + + act or process of making higher, increasing, raising + + + that makes a sign or signs; that signs or is authorized to sign + + + technologies that support individuals in performing tasks or improving their overall performance, particularly those with disabilities or those needing assistance to live more independently + + + a genetic engineering technique used to disable or remove a gene from an organism's genome, typically to study its function + + + act of displaying something proudly + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + technology that radically alters the way something is produced or performed, especially by labor-saving automation or computerization; an instance of such technology + + + to leave out, not experience, fail to take advantage of + + + to submit or give something + + + the integration of various functionalities into glass surfaces, transforming them beyond traditional windows and partitions + + + a practitioner of anaplastology + + + the study of a single, unified sound system within a language, rather than comparing it to other systems + + + to cause (a solid) to behave like a fluid, as by pulverizing or by suspending pulverized particles in a moving gas + + + to suspend (something, such as solid particles) in a rapidly moving stream of gas or vapor to induce flowing motion of the whole + + + technology that extracts heat from the earth by circulating a working fluid through a closed loop within a borehole, typically in geothermal or oil/gas wells + + + (in the oil industry) used, occurring, or performed in a well or borehole + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + one who uploads or uploaded + + + a program that uploads + + + (cause to) become flat + + + divvy up + + + act or process of bullying + + + transformation of one tissue into another + + + abnormal replacement of cells of one type by cells of another + + + A small town; a town of very modest size, typically smaller than an average town but larger than a village. + + + The act of accumulating + + + The act of approaching. + + + wrongly or badly informed; deceived + + + wind down: come/bring to a stop + + + endure, last through + + + play to: butter up to, try to please + + + blackout drunk + + + the classification of libraries based on their function, user group, or other defining characteristics + + + The act of sprinkling lightly + + + one who delves, as a tiller of the ground, or excavator + + + remove armed forces, removal of military presence + + + The act of working on more than one task at once + + + act of dipping (as with ladle or hand) + + + an enzyme that originates from an extremophile, an organism that thrives in extreme environments like high temperatures, acidity, salinity, or low temperatures + + + provide with context + + + a condition in which the secretion of mucous is diminished + + + police officer in the Republic of Ireland + + + The act of causing something to become yellow + + + a floating hotel, permanently moored at one location + + + act or process of supporting, substantiating, being a foundation + + + variation on sense two above, enter into a contract with an outside party + + + advance diet as tolerated + + + able to be awakened, stirred up + + + pave, cover with asphalt + + + politically opposed to Bashar al-Assad + + + The act of sorting into groups categorically + + + having no opening + + + be prevented from coagulating + + + act of performing an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + intensify effort, exert pressure on + + + small African fox, Vulpes zerda + + + act or process of bird-watching + + + susceptible to blanching + + + lazy, inefficient + + + to squash or mash + + + to press or force (someone or something) into a small space + + + the scientific study of children; pedology + + + the field of meteorology that uses fundamental laws and principles of physics and mathematics to understand, analyze, and model the atmosphere + + + a device used to indicate the direction and intensity of the magnetic field (as on a planet) + + + capable of being quelled + + + common name for a freshwater fish (genus Hiodon) known for its large, shiny, golden eyes + + + buckle up: prepare for the worst + + + fasten one's seatbelt + + + to place or store in a cellar + + + form cavities in tissue or organs + + + act of holding together very tightly + + + to cut, cut off, or cut out + + + surgery that creates an artificial connection between two non-contiguous parts of the colon + + + involving the colon and the anus + + + establish with another + + + expression of two or more genes simultaneously + + + amend text with a partner + + + a topology on a space that is the most suitable or standard one for its given context, often arising from a more fundamental structure like a metric or an order, or by making certain naturally defined maps continuous + + + removal of the urinary bladder and the prostate + + + remove burrs + + + process of degrading and destroying the myelin sheath covering nerves + + + remove flesh + + + remove germ or oil + + + remove a phosphate group from an organic compound by hydrolysis + + + branch at a wide angle + + + accumulation and sinking + + + bending or hanging downwards + + + act in a manner that causes others to pay attention + + + cool, stylish, excellent + + + be oriented with the face pointing down in some framework + + + The act of falling back, relying on in emergency + + + (cause to) be enclosed or blocked out + + + vpc version of fly.03, hit a fly ball + + + inject liquid to force an opening for extraction of oil or gas. + + + mark with freckles + + + add/request as a 'friend' on social media + + + destroy tissue with a high-frequency electric current + + + spontaneously grow fungus + + + act or process of allowing an old exception to a new regulation + + + go to the gym + + + to place back in a holster + + + act or process of rendering humid or moist + + + to undergo hyaline degeneration or become hyaline + + + process of becoming severely inflamed + + + to exist within, especially as a spirit or driving force + + + variety of aubergine with purple and white stripes + + + spider + + + surround with land + + + make lanes out of a certain area or space + + + act or process of translation, shifting diachronically into Latin + + + forming or dividing into lobules + + + not suited or properly adapted + + + abnormal formation + + + inaccurately assign a label or attribute + + + very slight invasion of malignant cells into adjacent tissue + + + cause to be married + + + The act of swarming, driving away (perhaps a predator) as a group + + + removal of an organ's mucous membrane + + + regulation of osmotic pressure + + + Observe with attention + + + move slightly + + + add material to the boundaries of a shape/form + + + overwhelm with (military) force + + + spend the winter + + + to pledge too much + + + inflate too much + + + hunt a species or area to the point of damaging the herd + + + make poor + + + in or to the continental U.S. + + + stomach ache + + + The act of incorporating a nitrosyl group into another molecule + + + act of splitting into periods, assigning to a period + + + unable to examine by feel + + + not happening repeatedly + + + remove small pieces from + + + sweetheart, darling, beloved one + + + to decorate a floor with parquetry (inlaid woodwork) + + + flog + + + determine and perform necessary medical course of action + + + (hyper-gendered) act as female staff for, work at + + + drone on about something trivial + + + ride a sailboard + + + the color white-tan + + + warm slightly + + + enclose with walls + + + the snowboarding of waterskiing + + + violet in color + + + surgery that connects two parts of the same ureter + + + not welcome + + + unsettle, destabilize + + + cause to be in the required condition beforehand + + + drink or celebrate, before an event or outing + + + to incubate (as a cell or a culture) prior to a treatment or process + + + entity at a pre-medical school level + + + in favor of war + + + talk about again + + + the process of implanting again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + groundlessness (quality/fact of being without underlying basis/foundation) + + + find a new home for + + + to look at again + + + to perform surgery or operate again + + + the act of hitting with radiation again + + + the act of emitting or projecting, again + + + look at again; review another time + + + smooth, characterized by absence of hindrance/difficulty + + + travel again + + + behind the pubis + + + cast ballot again + + + the act of casting ballot again + + + roll on the floor laughing + + + scout, investigate + + + act of investigation, scouting + + + without having to pay or be penalized + + + the act or process of cutting, shaping, or forming scallops + + + in a way that is marked by unusual, odd, or peculiar habits, traits, or behaviors, often in a charming or whimsical manner + + + make a shushing noise to encourage someone to be quiet + + + act or process of checking in + + + to inform, make information known + + + the act or process of sleeping until some effect is no longer felt, particularly that of alcohol, medication, or a short-term malady + + + stall off: delay, intensive of stall.01 + + + p-value + + + to stop doing something; pause an activity, perhaps to look at the big picture + + + delusional + + + diff --git a/extensions/wikidata-lexemes/output/eo.xml b/extensions/wikidata-lexemes/output/eo.xml new file mode 100644 index 00000000..2e53317d --- /dev/null +++ b/extensions/wikidata-lexemes/output/eo.xml @@ -0,0 +1,1791 @@ + + + + + + + + + + it + + + + + + + triapersona plurala pronomo + + + + + + six + + + + + + hundred + + + + + + not; negation word + + + + + + the number 13 + + + + + + the number 17 + + + + + + the number 20 + + + + + + the number 24 + + + + + + the number 31 + + + + + + the number 37 + + + + + + the number 38 + + + + + + the number 43 + + + + + + the number 45 + + + + + + the number 46 + + + + + + the number 56 + + + + + + the number 58 + + + + + + the number 86 + + + + + + the number 93 + + + + + + + + + my + + + + + + relatif à l’abbé + + + + + + hello + + + + + + natura nombro + + + + + + + single person, previously mentioned, of unknown or non-binary gender + + + + + + + proposed second-person plural pronoun + + + + + + three + + + + + + five + + + + + + ten + + + + + + yes + + + + + + denotes diminution of degree + + + + + + makes transitive verbs out of intransitive ones + + + + + + -ly, used to form adverbs + + + the ending for correlatives of place + + + + + + according to, in accordance with, per + + + + + + no + + + + + + the number 25 + + + + + + the number 27 + + + + + + the number 28 + + + + + + the number 39 + + + + + + the number 48 + + + + + + the number 57 + + + + + + the number 59 + + + + + + the number 67 + + + + + + the number 75 + + + + + + the number 81 + + + + + + the number 82 + + + + + + the number 83 + + + + + + the number 87 + + + + + + the number 89 + + + + + + the number 99 + + + + + + the number 300 + + + + + + the number 500 + + + + + + the number 800 + + + + + + + + + hers + + + + + + + + + one's; your (generic) + + + + + + número cardinal; el número 0 + + + + + + woe + + + + + + + proposed gender-neutral third-person singular pronoun + + + + + + loko, kies kialo estas la radiko + + + + + + denotes qualities + + + + + + or + Ĉu vi volas kafon aŭ teon? + + + + + + thousand + + + + + + the number 29 + + + + + + the number 35 + + + + + + the number 49 + + + + + + the number 52 + + + + + + the number 65 + + + + + + the number 66 + + + + + + the number 85 + + + + + + + + + your (plural) + + + your (singular) + + + + + + division (usually binary) applicable to many organisms + + + + + + pfui + + + + + + afikso por indiki inan sekson + + + + + + with + + + + + + + second-person singular pronoun + + + + second-person plural pronoun + + + + + + the + + + + + + something made from or possessing the quality of + + + + + + used to denote substandard degree, lack of quality, or inferiority + + + + + + in + + + into + + + + + + and/or + + + + + + the number 12 + + + + + + the number 19 + + + + + + the number 23 + + + + + + the number 34 + + + + + + the number 54 + + + + + + the number 61 + + + + + + the number 68 + + + + + + the number 70 + + + + + + the number 96 + + + + + + + + + their (singular they) + + + + + + + he; third-person masculine singular pronoun + + + third-person singular pronoun regardless of gender + + + + + + and + + + + + + + uncommon second-person singular pronoun + + + + + + + + proposed third-person feminine plural pronoun + + + + + + persono karakterizata per tio, kion esprimas la radiko + + + aliu vivanta estaĵo karakterizata per tio, kion esprimas la radiko + + + + + + a person who belongs to a profession occupied with + + + + + + eight + + + + + + an instrument, a tool for performing the action of the root + + + + + + the number 32 + + + + + + the number 41 + + + + + + the number 44 + + + + + + the number 63 + + + + + + the number 74 + + + + + + the number 79 + + + + + + the number 84 + + + + + + the number 98 + + + + + + the number 700 + + + + + + + + + your (singular) + + + + + + + + + its + + + + + + oh + + + + + + + nobody + + + + + + ici + + + + + + + I; first-person singular pronoun + + + + + + + proposed third-person masculine pronoun + + + + + + kuna kolekto de samspecaj iuj, sen specifa nombro + + + + + + infano aŭ junulo de besto, speco de homo, aŭ vegetaĵo + + + offspring + + + + + + relatif à la volonté + + + + + + four + + + + + + seven + + + + + + sistemo de kredo, doktrino, principoj, agoj + + + + + + the number 15 + + + + + + the number 18 + + + + + + the number 21 + + + + + + the number 33 + + + + + + the number 72 + + + + + + the number 77 + + + + + + the number 80 + + + + + + the number 91 + + + + + + the number 92 + + + + + + the number 95 + + + + + + the number 97 + + + + + + the number 600 + + + + + + relatif aux aberrations + + + + + + relatif au mouton + + + + + + fleksa interfikso kiu signifis ajna ago + + + + + + than + + + + + + + she + + + + + + but + + + + + + denotes augmentative of degree + + + + + + la spaco aux dauxro inter du aferoj + + + + + + the number 16 + + + + + + the number 22 + + + + + + the number 30 + + + + + + the number 42 + + + + + + the number 47 + + + + + + the number 50 + + + + + + the number 51 + + + + + + the number 60 + + + + + + the number 73 + + + + + + the number 88 + + + + + + the number 90 + + + + + + + + + his + + + + + + io, kiu estas efika, akceptebla, aŭ konsentinda laŭ difinitaj normoj, reguloj, aŭ kriterioj + + + + + + the number 1 + + + + + + montras ke vorto estas substantivo + + + + + + + we; first-person plural pronoun + + + + + + nine + + + + + + la du seksoj kune, speciale ĉe radiko enhavanta masklan sencon + + + je la ununombro, senseksa signifo de virseksa radiko + + + + + + denota arte, ciencia o técnica + + + + + + from + + + of + + + by + + + + + + sufikso kiu prezentas la plenumanton de farado (aktiva participo) + + + + + + près de + + + + + + the number 11 + + + + + + the number 14 + + + + + + the number 26 + + + + + + the number 36 + + + + + + the number 40 + + + + + + the number 53 + + + + + + the number 55 + + + + + + the number 62 + + + + + + the number 64 + + + + + + the number 69 + + + + + + the number 71 + + + + + + the number 76 + + + + + + the number 78 + + + + + + the number 94 + + + + + + the number 200 + + + + + + the number 400 + + + + + + the number 900 + + + + + + + + + our + + + + + + + + + their + + + + + + + + + the subject's; his/her/its/their own + + + + + + sufikso signifanta parto de tutaĵo + + + + + + something filled with, a container or box for + + + a country inhabited by, or associated with, an ethnic group + + + a tree bearing a fruit + + + + + + something + + + + it + + + triapersona plurala pronomo + + + six + + + hundred + + + not; negation word + + + the number 13 + + + the number 17 + + + the number 20 + + + the number 24 + + + the number 31 + + + the number 37 + + + the number 38 + + + the number 43 + + + the number 45 + + + the number 46 + + + the number 56 + + + the number 58 + + + the number 86 + + + the number 93 + + + my + + + relatif à l’abbé + + + hello + + + natura nombro + + + single person, previously mentioned, of unknown or non-binary gender + + + proposed second-person plural pronoun + + + three + + + five + + + ten + + + yes + + + denotes diminution of degree + + + makes transitive verbs out of intransitive ones + + + -ly, used to form adverbs + + + the ending for correlatives of place + + + according to, in accordance with, per + + + no + + + the number 25 + + + the number 27 + + + the number 28 + + + the number 39 + + + the number 48 + + + the number 57 + + + the number 59 + + + the number 67 + + + the number 75 + + + the number 81 + + + the number 82 + + + the number 83 + + + the number 87 + + + the number 89 + + + the number 99 + + + the number 300 + + + the number 500 + + + the number 800 + + + hers + + + one's; your (generic) + + + número cardinal; el número 0 + + + woe + + + proposed gender-neutral third-person singular pronoun + + + loko, kies kialo estas la radiko + + + denotes qualities + + + or + Ĉu vi volas kafon aŭ teon? + + + thousand + + + the number 29 + + + the number 35 + + + the number 49 + + + the number 52 + + + the number 65 + + + the number 66 + + + the number 85 + + + your (plural) + + + your (singular) + + + division (usually binary) applicable to many organisms + + + pfui + + + afikso por indiki inan sekson + + + with + + + second-person singular pronoun + + + second-person plural pronoun + + + the + + + something made from or possessing the quality of + + + used to denote substandard degree, lack of quality, or inferiority + + + in + + + into + + + and/or + + + the number 12 + + + the number 19 + + + the number 23 + + + the number 34 + + + the number 54 + + + the number 61 + + + the number 68 + + + the number 70 + + + the number 96 + + + their (singular they) + + + he; third-person masculine singular pronoun + + + third-person singular pronoun regardless of gender + + + and + + + uncommon second-person singular pronoun + + + proposed third-person feminine plural pronoun + + + persono karakterizata per tio, kion esprimas la radiko + + + aliu vivanta estaĵo karakterizata per tio, kion esprimas la radiko + + + a person who belongs to a profession occupied with + + + eight + + + an instrument, a tool for performing the action of the root + + + the number 32 + + + the number 41 + + + the number 44 + + + the number 63 + + + the number 74 + + + the number 79 + + + the number 84 + + + the number 98 + + + the number 700 + + + your (singular) + + + its + + + oh + + + nobody + + + ici + + + I; first-person singular pronoun + + + proposed third-person masculine pronoun + + + kuna kolekto de samspecaj iuj, sen specifa nombro + + + infano aŭ junulo de besto, speco de homo, aŭ vegetaĵo + + + offspring + + + relatif à la volonté + + + four + + + seven + + + sistemo de kredo, doktrino, principoj, agoj + + + the number 15 + + + the number 18 + + + the number 21 + + + the number 33 + + + the number 72 + + + the number 77 + + + the number 80 + + + the number 91 + + + the number 92 + + + the number 95 + + + the number 97 + + + the number 600 + + + relatif aux aberrations + + + relatif au mouton + + + fleksa interfikso kiu signifis ajna ago + + + than + + + she + + + but + + + denotes augmentative of degree + + + la spaco aux dauxro inter du aferoj + + + the number 16 + + + the number 22 + + + the number 30 + + + the number 42 + + + the number 47 + + + the number 50 + + + the number 51 + + + the number 60 + + + the number 73 + + + the number 88 + + + the number 90 + + + his + + + io, kiu estas efika, akceptebla, aŭ konsentinda laŭ difinitaj normoj, reguloj, aŭ kriterioj + + + the number 1 + + + montras ke vorto estas substantivo + + + we; first-person plural pronoun + + + nine + + + la du seksoj kune, speciale ĉe radiko enhavanta masklan sencon + + + je la ununombro, senseksa signifo de virseksa radiko + + + denota arte, ciencia o técnica + + + from + + + of + + + by + + + sufikso kiu prezentas la plenumanton de farado (aktiva participo) + + + près de + + + the number 11 + + + the number 14 + + + the number 26 + + + the number 36 + + + the number 40 + + + the number 53 + + + the number 55 + + + the number 62 + + + the number 64 + + + the number 69 + + + the number 71 + + + the number 76 + + + the number 78 + + + the number 94 + + + the number 200 + + + the number 400 + + + the number 900 + + + our + + + their + + + the subject's; his/her/its/their own + + + sufikso signifanta parto de tutaĵo + + + something filled with, a container or box for + + + a country inhabited by, or associated with, an ethnic group + + + a tree bearing a fruit + + + something + + + diff --git a/extensions/wikidata-lexemes/output/es.xml b/extensions/wikidata-lexemes/output/es.xml new file mode 100644 index 00000000..0de1501e --- /dev/null +++ b/extensions/wikidata-lexemes/output/es.xml @@ -0,0 +1,2167 @@ + + + + + + + + + + + + a(n), indefinite article + + + + + + Preposición que indica el origen o inicio de una actividad, tanto en sentido locativo, como cronológico. + + + + + + circunstancia bajo la cual algo se realiza + + + + + + indica el fin o término de una actividad en sentido locativo + Se extiende desde el océano Glacial Ártico hasta el Antártico. + + + indica el fin o término de una actividad en sentido cronológico + Se mantuvo activo publicando artículos hasta su muerte. + + + indica el fin o término de una actividad en sentido cuantitativo + Los motores de gasolina abarcaban hasta 2 litros. + + + + + + + tercera persona neutral + + + + + + de forma opuesta + + + + + + + de forma opuesta + + + + + + + casi no + Apenas si podía mantenerse en pie. + + + + + + al mismo tiempo que + + + + + + de cualquier manera + + + + + + introduce una excepción + Estoy siempre en Madrid, menos en las vacaciones. + + + + en la operación aritmética de la resta indica sustracción + Tres menos dos son uno. + + + + + + por su parte + + + + + + por tu parte + + + + + + en algunos casos + + + + + + de forma intempestiva + + + + + + + a gran distancia + + + + + + + + + de forma general + + + + + + + este lado de; la parte más cercana de; delante de + + + + + + introduce una frase que contradice o contrasta con lo antecedente + + + + + + + + + ese otro + + + + + + con la condición o función de + + + + + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + + + + + + + se usa para expresar ira, frustración o desagrado + + + + + + + + + let’s go! + + + + + + indica que la ubicación es al lado o al borde de algo + + + + + + + igennem + + + + + + palabra que introduce una oración subordinada sustantiva + Es necesario que estudie. + + + elemento de frases comparativas + Su casa es más grande que la mía. + + + + + + pronombre personal en primera persona del singular + + + + + + a causa de + + + para que + + + + + + + pronombre personal en primera personal plural + + + + + + + second-person plural pronoun + + + + + + introduce un impedimento + + + pero; usada para contraponer algo + + + + + + en vez de + + + + + + + + de forma opuesta + + + + + + inmediatamente después + En cuanto deje de llover, saldré a comprar. + + + + + + durante toda una vida + Mantuvo su promesa de por vida. + + + + + + en consecuencia + + + + + + por mi parte + + + + + + opuesto a algo o alguien + + + + + + por el contrario; introduce una idea o frase que contradice y se prefiere a otra previa + No temo los peligros, antes los busco. + + + + + + que ocurre en la vida real, aunque no esté legislado + + + + + + + pronombre en tercera persona femenina + Ella comentó que el mayor miedo que tenia se hizo realidad cuando contrajo el virus mientras vendía comida. + Ella comentó sobre las historias, los mitos y las cosmovisiones de los pueblos indígenas de la Amazonía y sus vínculos con las luchas por la autodeterminación y la preservación de los territorios ancestrales. + + + + + + indica una posición inferior + Debajo de nuestra ventana está el jardín + + + + + + + expresión con la que se da término a un tema o discusión + + + + + + voz o grito usado para llamar o animar al combate + + + + + + + el cual; los cuales; hace referencia a una persona o personas ya referidas anteriormente + El actual arzobispo, quien fue entronizado en la catedral de la ciudad. + En 1648 llegaron los primeros pobladores, quienes le dieron su actual nombre. + + + hace referencia a una persona o personas de forma general, sin haber sido referidas anteriormente + Deben revisarse correctamente o de lo contrario quien salga electo no tendrá ninguna legitimidad. + + + nadie que; alguien que + No consiguió encontrar quien le entendiera. + + + + + + invita a repetir lo dicho o a explicarlo + + + indica enfado + + + indica asombro o sorpresa + + + + + + de forma suave + + + + + + forma de montar a caballo, con ambas piernas hacia el mismo lado del animal + + + + + + + de forma audible, lo suficientemente fuerte para que otras personas puedan oír claramente + + + + + + se usa para pedir socorro + + + + + + utilizado para despedirse + + + + + + + utilizado para despedirse + + + + + + + (expression of pain or pleasure) + + + + + + indica una posición inferior + Bajo nuestra ventana está el jardín + + + + indica subordinación o dependiencia + Las tropas bajo su mando + + + indica la ubicación dentro de un periodo de tiempo + Bajo la última dinastía de los faraones + + + indica inclusión dentro de un grupo + Bajo las diversas formas de la esgrima, prefiero el florete por su velocidad + + + indica ocultamiento + Bajo su disfraz de mendigo, salió el rey a conocer la opinión de Bagdad + + + indica una opinión o punto de vista + Bajo nuestro punto de vista + + + + + + indica oposición + + + indica la dirección del movimiento + + + + + + indica la dirección del movimiento con relación a su destino aparente o real + El avión despega y se eleva hacia el cielo. + + + indica la orientación + En la ventana que está hacia el norte. + + + cerca de; alrededor de; indica proximidad espacial + Hicimos un alto en nuestro viaje, hacia el kilómetro 50 de la autovía. + + + cerca de; alrededor de; indica proximidad temporal + Aquí se come hacia las cinco de la tarde. + + + + + + + indica el tiempo en oraciones sin verbo + Cuando joven, tenía buena memoria. + + + + + + introduce una contraposición + + + + + + + se usa para introducir una oración que expresa la conclusión o consecuencia de lo antedicho + + + se usa para expresar sorpresa + + + + + + al mismo tiempo que + + + + + + + al mismo tiempo que + + + + + + + introduce una contraposición + + + + para añadir elementos a una declaración + + + + + + + aproximadamente + + + + + + algunas veces + + + cada cierto tiempo + + + + + + + quizás + + + + + + de forma intempestiva + + + + + + + de forma inmediata + + + + + + + a gran distancia + + + + + + evidentemente + + + + + + + + sin cuidado + + + + en cualquier caso + + + + + + + + sin cuidado + + + + en cualquier caso + + + + + + + + de forma igual + + + + + + just in case + + + + + + se emplea para expresar sorpresa, dolor, desaprobación, etc. + + + + + + con grandes dificultades y obstáculos + + + + + + + frase común utilizada para introducir una narración de acontecimientos pasados, normalmente en cuentos de hadas y cuentos populares. + + + + + + casi + + + + + + + pronombre personal, tercera persona singular neutra + + + + + + + and; joins words and equal sentence parts together + + + + + + indica el medio empleado para hacer algo + Comer con cuchillo y tenedor + + + en compañía de + Antonio está con Felipe + + + combinado con un infinitivo actúa como gerundio + Con pelearse no se arregla nada + + + a pesar de, indica un contrasentido o contraposición + Con llevar tantos años en la empresa, aun no lo ascienden + + + contenido o adherencia + Una moto con un sidecar + + + + + + according to + + + + + + + + + cantidad o número escaso + Vinieron pocos de sus compañeros de clase. + + + cantidad insuficiente + No fueron pocas las oportunidades que tuvo en la vida. + + + pocas personas + Hoy en día, pocos confían en los políticos. + + + pocas cosas + Poco de lo que dijo tenía sentido. + + + + + + palabra que introduce una oración relativa y conecta a un antecedente + Compró la casa que quería + + + + + + + indica diferencia, separación o alternativa + Ganar o perder + + + + + + introduce una excepción + + + + + + + self + + + + + + inmediatamente después de que + + + + + + + + de pronto + + + + + + de forma simultánea + + + + + + + de forma reiterada + + + + + + de forma simultánea + + + + + + + de forma prematura + + + + + + en voz baja + + + + + + de forma inmediata + + + + + + + en el acto, en ese mismo momento + + + por el hecho mismo + + + que se impone la pena en el momento mismo del delito + + + + + + que se habla en tono grandilocuente + + + que se dice como persona de autoridad + + + + + + anteayer, en el día anterior a ayer + + + + + + en el día posterior al de mañana + + + + + + + en cualquiera de los días comprendidos entre el lunes y el viernes, ambos incluidos + + + + + + de forma proporcional + + + + + + variante de la preposición "por", utilizada en fórmulas de juramento + + + + + + voz emitida por la oveja o el cordero + + + + + + fijamente + + + + + + inmediatamente después de que + + + + + + + + conjunción disyuntiva usada sólo frente a las palabras comenzadas por el fonema /o/ + + + + + + of, concerning, about + + + from, away from, down from, out of + + + + + + en medio de, indica ubicación en medio de otras cosas + + + + + + + a mía, a mío + + + + + + + + pronombre personal, tercera persona singular masculina + + + + + + también + + + + + + mientras estuvo con vida + No se arrepintió de nada en vida. + + + + + + en consecuencia + + + + + + eternamente, indefinidamente + + + + + + así + + + + + + cada cierto tiempo + + + + + + + en vez de + + + + + + + + a gran distancia + + + + + + evidentemente + + + + + + + + así + + + + + + indica una negación categórica + + + + + + + expresión de saludo utilizada entre dos o más personas de trato familiar, sin importar el momento del día ni las circunstancias + + + + + + con destino a; en dirección a; hacia + + + + + + forma de montar a caballo, con ambas piernas hacia el mismo lado del animal + + + + + + + forma de montar a caballo, con una pierna a cada lado del animal + + + + + + + en exceso, con abundancia innecesaria + + + + + + de forma recia + + + + + + por favor + + + + + + forma de montar a caballo, con una pierna a cada lado del animal + + + + + + + usado para detener los caballos + + + + + + indica el procedimiento o la forma como se hace algo + Se le extrajo su tumor mediante una cirugía. + + + + + + indica la ausencia, carencia o falta de algo + Me he quedado sin ánimo para competir. + + + indica exclusión + Fuimos todos, sin nuestras esposas. + + + indica negación delante de un verbo en infinitivo, equivalente a "no" delante del gerundio + Sin haber descansado. + + + + + + por el contrario + + + + + + en lugar de + + + + + + + + + completamente + + + + + + introduce un ejemplo + + + + + + para contraponer una afirmación tras una negación + No fue culpa de Pedro, sino de Manuel + + + para añadir elementos a una declaración + No solo fue cortés, sino también amable y servicial. + + + + + + + designa a la persona a quién se dirige el hablante o enunciador de la frase, es decir, a la segunda persona del singular, usado cuando tiene función de dativo o acusativo + + + + + + designa al hablante o enunciador como sujeto de la frase, es decir, a la primera persona del singular, usado cuando tiene función de dativo o acusativo + + + + + + inicia una coordinación copulativa + Tanto el perro como el gato esperaban ser alimentados. + + + + + + con oposición de + + + + + + + en cualquier caso + + + + + + + + de forma general + + + + + + + cerca de; alrededor de; indica proximidad temporal + La institución fue abolida circa 1453 y restaurada en junio de 1655. + + + + + + + indica que la ubicación es al lado o al borde de algo + + + + + + + expresa malestar, inquietud, disgusto o enojo + + + + + + de una vez, de golpe + + + + + + cuando más; a lo más + + + + + + + palace + + + castle + + + + + + delante de; frente a + El partido debía enfrentar a los Países Bajos ante Francia. + + + en presencia de + Tengo que comparecer ante el juez. + + + comparado con + El conflicto bélico no fue tan violento ante los anteriores. + + + + + + aunque + + + o + + + + + + pronombre personal en segunda persona singular + + + + + + + Formal second-person address form + + + + + + excepto + + + + + + en vez de + + + + + + + + + con la condición o función de + En calidad de presidente, dirimió la disputa. + + + + + + + + + + refiere al objeto directo de tercera persona cuando éste ya es conocido + Yo bebo agua -> Yo la bebí. + Come el bocadillo en tu descanso -> Cómelo en tu descanso. + + + + + + expresa deseo de que algo suceda + + + + + + + inmediatamente después de que + + + + + introduce una comparación + + + + + + For always + + + + + + próximo a + + + + + + de ninguna manera + + + + + + indica una negación categórica + + + + + + + solamente + + + + + + (contracción de la preposición “de” y el artículo “el”) + + + + + + conjunción consecutiva; entonces; por tanto; por consiguiente + + + + + + voz que se usa para espantar a algunos animales, como a un perro o a un gato + + + + + + box + + + + + + a gran distancia + + + + + + evidentemente + + + + + + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + + + + + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + + + + + + + de forma injusta + + + + + + to (destination of action) + + + + + + + + + + artículo determinante + + + + + + debajo de + + + + + + introduce una condición o suposición + + + + + + indica causalidad + + + señala continuación + + + + + + expresa deseo de que algo suceda + + + + + + + con oposición de + + + + + + + ninguna persona + + + + + + interjección que expresa sorpresa o contrariedad + + + + + + oblicuamente + + + + + + por favor + + + + + + de forma excesiva + + + + a(n), indefinite article + + + Preposición que indica el origen o inicio de una actividad, tanto en sentido locativo, como cronológico. + + + circunstancia bajo la cual algo se realiza + + + indica el fin o término de una actividad en sentido locativo + Se extiende desde el océano Glacial Ártico hasta el Antártico. + + + indica el fin o término de una actividad en sentido cronológico + Se mantuvo activo publicando artículos hasta su muerte. + + + indica el fin o término de una actividad en sentido cuantitativo + Los motores de gasolina abarcaban hasta 2 litros. + + + tercera persona neutral + + + de forma opuesta + + + de forma opuesta + + + casi no + Apenas si podía mantenerse en pie. + + + al mismo tiempo que + + + de cualquier manera + + + introduce una excepción + Estoy siempre en Madrid, menos en las vacaciones. + + + en la operación aritmética de la resta indica sustracción + Tres menos dos son uno. + + + por su parte + + + por tu parte + + + en algunos casos + + + de forma intempestiva + + + a gran distancia + + + de forma general + + + este lado de; la parte más cercana de; delante de + + + introduce una frase que contradice o contrasta con lo antecedente + + + ese otro + + + con la condición o función de + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + se usa para expresar ira, frustración o desagrado + + + let’s go! + + + indica que la ubicación es al lado o al borde de algo + + + igennem + + + palabra que introduce una oración subordinada sustantiva + Es necesario que estudie. + + + elemento de frases comparativas + Su casa es más grande que la mía. + + + pronombre personal en primera persona del singular + + + a causa de + + + para que + + + pronombre personal en primera personal plural + + + second-person plural pronoun + + + introduce un impedimento + + + pero; usada para contraponer algo + + + en vez de + + + de forma opuesta + + + inmediatamente después + En cuanto deje de llover, saldré a comprar. + + + durante toda una vida + Mantuvo su promesa de por vida. + + + en consecuencia + + + por mi parte + + + opuesto a algo o alguien + + + por el contrario; introduce una idea o frase que contradice y se prefiere a otra previa + No temo los peligros, antes los busco. + + + que ocurre en la vida real, aunque no esté legislado + + + pronombre en tercera persona femenina + Ella comentó que el mayor miedo que tenia se hizo realidad cuando contrajo el virus mientras vendía comida. + Ella comentó sobre las historias, los mitos y las cosmovisiones de los pueblos indígenas de la Amazonía y sus vínculos con las luchas por la autodeterminación y la preservación de los territorios ancestrales. + + + indica una posición inferior + Debajo de nuestra ventana está el jardín + + + expresión con la que se da término a un tema o discusión + + + voz o grito usado para llamar o animar al combate + + + el cual; los cuales; hace referencia a una persona o personas ya referidas anteriormente + El actual arzobispo, quien fue entronizado en la catedral de la ciudad. + En 1648 llegaron los primeros pobladores, quienes le dieron su actual nombre. + + + hace referencia a una persona o personas de forma general, sin haber sido referidas anteriormente + Deben revisarse correctamente o de lo contrario quien salga electo no tendrá ninguna legitimidad. + + + nadie que; alguien que + No consiguió encontrar quien le entendiera. + + + invita a repetir lo dicho o a explicarlo + + + indica enfado + + + indica asombro o sorpresa + + + de forma suave + + + forma de montar a caballo, con ambas piernas hacia el mismo lado del animal + + + de forma audible, lo suficientemente fuerte para que otras personas puedan oír claramente + + + se usa para pedir socorro + + + utilizado para despedirse + + + utilizado para despedirse + + + (expression of pain or pleasure) + + + indica una posición inferior + Bajo nuestra ventana está el jardín + + + indica subordinación o dependiencia + Las tropas bajo su mando + + + indica la ubicación dentro de un periodo de tiempo + Bajo la última dinastía de los faraones + + + indica inclusión dentro de un grupo + Bajo las diversas formas de la esgrima, prefiero el florete por su velocidad + + + indica ocultamiento + Bajo su disfraz de mendigo, salió el rey a conocer la opinión de Bagdad + + + indica una opinión o punto de vista + Bajo nuestro punto de vista + + + indica oposición + + + indica la dirección del movimiento + + + indica la dirección del movimiento con relación a su destino aparente o real + El avión despega y se eleva hacia el cielo. + + + indica la orientación + En la ventana que está hacia el norte. + + + cerca de; alrededor de; indica proximidad espacial + Hicimos un alto en nuestro viaje, hacia el kilómetro 50 de la autovía. + + + cerca de; alrededor de; indica proximidad temporal + Aquí se come hacia las cinco de la tarde. + + + indica el tiempo en oraciones sin verbo + Cuando joven, tenía buena memoria. + + + introduce una contraposición + + + se usa para introducir una oración que expresa la conclusión o consecuencia de lo antedicho + + + se usa para expresar sorpresa + + + al mismo tiempo que + + + al mismo tiempo que + + + introduce una contraposición + + + para añadir elementos a una declaración + + + aproximadamente + + + algunas veces + + + cada cierto tiempo + + + quizás + + + de forma intempestiva + + + de forma inmediata + + + a gran distancia + + + evidentemente + + + sin cuidado + + + en cualquier caso + + + sin cuidado + + + en cualquier caso + + + de forma igual + + + just in case + + + se emplea para expresar sorpresa, dolor, desaprobación, etc. + + + con grandes dificultades y obstáculos + + + frase común utilizada para introducir una narración de acontecimientos pasados, normalmente en cuentos de hadas y cuentos populares. + + + casi + + + pronombre personal, tercera persona singular neutra + + + and; joins words and equal sentence parts together + + + indica el medio empleado para hacer algo + Comer con cuchillo y tenedor + + + en compañía de + Antonio está con Felipe + + + combinado con un infinitivo actúa como gerundio + Con pelearse no se arregla nada + + + a pesar de, indica un contrasentido o contraposición + Con llevar tantos años en la empresa, aun no lo ascienden + + + contenido o adherencia + Una moto con un sidecar + + + according to + + + cantidad o número escaso + Vinieron pocos de sus compañeros de clase. + + + cantidad insuficiente + No fueron pocas las oportunidades que tuvo en la vida. + + + pocas personas + Hoy en día, pocos confían en los políticos. + + + pocas cosas + Poco de lo que dijo tenía sentido. + + + palabra que introduce una oración relativa y conecta a un antecedente + Compró la casa que quería + + + indica diferencia, separación o alternativa + Ganar o perder + + + introduce una excepción + + + self + + + inmediatamente después de que + + + de pronto + + + de forma simultánea + + + de forma reiterada + + + de forma simultánea + + + de forma prematura + + + en voz baja + + + de forma inmediata + + + en el acto, en ese mismo momento + + + por el hecho mismo + + + que se impone la pena en el momento mismo del delito + + + que se habla en tono grandilocuente + + + que se dice como persona de autoridad + + + anteayer, en el día anterior a ayer + + + en el día posterior al de mañana + + + en cualquiera de los días comprendidos entre el lunes y el viernes, ambos incluidos + + + de forma proporcional + + + variante de la preposición "por", utilizada en fórmulas de juramento + + + voz emitida por la oveja o el cordero + + + fijamente + + + inmediatamente después de que + + + conjunción disyuntiva usada sólo frente a las palabras comenzadas por el fonema /o/ + + + of, concerning, about + + + from, away from, down from, out of + + + en medio de, indica ubicación en medio de otras cosas + + + a mía, a mío + + + pronombre personal, tercera persona singular masculina + + + también + + + mientras estuvo con vida + No se arrepintió de nada en vida. + + + en consecuencia + + + eternamente, indefinidamente + + + así + + + cada cierto tiempo + + + en vez de + + + a gran distancia + + + evidentemente + + + así + + + indica una negación categórica + + + expresión de saludo utilizada entre dos o más personas de trato familiar, sin importar el momento del día ni las circunstancias + + + con destino a; en dirección a; hacia + + + forma de montar a caballo, con ambas piernas hacia el mismo lado del animal + + + forma de montar a caballo, con una pierna a cada lado del animal + + + en exceso, con abundancia innecesaria + + + de forma recia + + + por favor + + + forma de montar a caballo, con una pierna a cada lado del animal + + + usado para detener los caballos + + + indica el procedimiento o la forma como se hace algo + Se le extrajo su tumor mediante una cirugía. + + + indica la ausencia, carencia o falta de algo + Me he quedado sin ánimo para competir. + + + indica exclusión + Fuimos todos, sin nuestras esposas. + + + indica negación delante de un verbo en infinitivo, equivalente a "no" delante del gerundio + Sin haber descansado. + + + por el contrario + + + en lugar de + + + completamente + + + introduce un ejemplo + + + para contraponer una afirmación tras una negación + No fue culpa de Pedro, sino de Manuel + + + para añadir elementos a una declaración + No solo fue cortés, sino también amable y servicial. + + + designa a la persona a quién se dirige el hablante o enunciador de la frase, es decir, a la segunda persona del singular, usado cuando tiene función de dativo o acusativo + + + designa al hablante o enunciador como sujeto de la frase, es decir, a la primera persona del singular, usado cuando tiene función de dativo o acusativo + + + inicia una coordinación copulativa + Tanto el perro como el gato esperaban ser alimentados. + + + con oposición de + + + en cualquier caso + + + de forma general + + + cerca de; alrededor de; indica proximidad temporal + La institución fue abolida circa 1453 y restaurada en junio de 1655. + + + indica que la ubicación es al lado o al borde de algo + + + expresa malestar, inquietud, disgusto o enojo + + + de una vez, de golpe + + + cuando más; a lo más + + + palace + + + castle + + + delante de; frente a + El partido debía enfrentar a los Países Bajos ante Francia. + + + en presencia de + Tengo que comparecer ante el juez. + + + comparado con + El conflicto bélico no fue tan violento ante los anteriores. + + + aunque + + + o + + + pronombre personal en segunda persona singular + + + Formal second-person address form + + + excepto + + + en vez de + + + con la condición o función de + En calidad de presidente, dirimió la disputa. + + + refiere al objeto directo de tercera persona cuando éste ya es conocido + Yo bebo agua -> Yo la bebí. + Come el bocadillo en tu descanso -> Cómelo en tu descanso. + + + expresa deseo de que algo suceda + + + inmediatamente después de que + + + introduce una comparación + + + For always + + + próximo a + + + de ninguna manera + + + indica una negación categórica + + + solamente + + + (contracción de la preposición “de” y el artículo “el”) + + + conjunción consecutiva; entonces; por tanto; por consiguiente + + + voz que se usa para espantar a algunos animales, como a un perro o a un gato + + + box + + + a gran distancia + + + evidentemente + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + se usa para expresar ira, frustración o desagrado, pero evitando decir la palabra malsonante "mierda" + + + de forma injusta + + + to (destination of action) + + + artículo determinante + + + debajo de + + + introduce una condición o suposición + + + indica causalidad + + + señala continuación + + + expresa deseo de que algo suceda + + + con oposición de + + + ninguna persona + + + interjección que expresa sorpresa o contrariedad + + + oblicuamente + + + por favor + + + de forma excesiva + + + diff --git a/extensions/wikidata-lexemes/output/et.xml b/extensions/wikidata-lexemes/output/et.xml new file mode 100644 index 00000000..13c93d81 --- /dev/null +++ b/extensions/wikidata-lexemes/output/et.xml @@ -0,0 +1,916 @@ + + + + + + + + + (sound of very audible biting or swallowing) + + + + + + (sound of audible swallowing) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + three + + + + + + (expressing a knocking or slapping sound) + + + + + + + (indicates something going/happening/being done very fast/speedily) + + + + + + or + + + + + + thank you + + + + + + since + + + + + + (expression of giggling) + + + + + + during/within (in the area of activity or influence of) + + + + + + 'mwahaha' (expression of deep, full-throated laughter) + + + + + + + + + + + + + + + + + + + + + + + + + + + these, those + + + + + + good afternoon/day + + + + + + good evening + + + + + + I'm sorry + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + one + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ten + + + + + + amen ("so be it" as used in Abrahamic religions) + + + "the end" (e.g. asserting the finality of a decision) + + + + + + at the beginning of + + + + + + (Judeo-Christian call of prayer/greeting) + + + + + + (expression of wonder or surprise) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (reflexive pronoun) + + + + + + goodbye + + + + + + and + + + + + + + ribbit (conveys the sound of a frog) + + + + + + + + + + + + + + + + + + + + + + + + + + second person singular, you + + + + + + good morning + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seven + + + + + + but + + + + + + (used when succeeding, often when the success is unexpected) + + + + + + or + + + + + + (expression of laughter, sometimes corrective or contemptuous) + + + + + + (expressing a knocking or slapping sound) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (one) million, 1 000 000 + + + + + + 'mwahaha' (expression of deep, full-throated laughter) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sextillion (either 10^21 or 10^36) + + + + + + under/below (something) + + + away from (some area of activity/influence) + + + away from (a state of being covered/occupied by something) + + + + + + so long, farewell + + + + + + (order to start marching) + + + + + + hello + + + + + + + + + + + + + + + + + + + + + + + + + + I (first-person singular pronoun) + + + + + + and + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a few (e.g. two or three) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + many + + + + + + turn! (command to someone to make a turn) + + + + + + + + + + + + + + + + + + + + + + + + + it + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (third-person singular animate pronoun) + + + + + + welcome + + + + + + help! (cry for assistance) + + + (emphasizes feeling of shock/astonishment/incomprehension) + + + + + + oh Lord (oh my God) + + + + (sound of very audible biting or swallowing) + + + (sound of audible swallowing) + + + three + + + (expressing a knocking or slapping sound) + + + (indicates something going/happening/being done very fast/speedily) + + + or + + + thank you + + + since + + + (expression of giggling) + + + during/within (in the area of activity or influence of) + + + 'mwahaha' (expression of deep, full-throated laughter) + + + these, those + + + good afternoon/day + + + good evening + + + I'm sorry + + + one + + + 100 + + + ten + + + amen ("so be it" as used in Abrahamic religions) + + + "the end" (e.g. asserting the finality of a decision) + + + at the beginning of + + + (Judeo-Christian call of prayer/greeting) + + + (expression of wonder or surprise) + + + (reflexive pronoun) + + + goodbye + + + and + + + ribbit (conveys the sound of a frog) + + + second person singular, you + + + good morning + + + seven + + + but + + + (used when succeeding, often when the success is unexpected) + + + or + + + (expression of laughter, sometimes corrective or contemptuous) + + + (expressing a knocking or slapping sound) + + + (one) million, 1 000 000 + + + 'mwahaha' (expression of deep, full-throated laughter) + + + sextillion (either 10^21 or 10^36) + + + under/below (something) + + + away from (some area of activity/influence) + + + away from (a state of being covered/occupied by something) + + + so long, farewell + + + (order to start marching) + + + hello + + + I (first-person singular pronoun) + + + and + + + a few (e.g. two or three) + + + many + + + turn! (command to someone to make a turn) + + + it + + + (third-person singular animate pronoun) + + + welcome + + + help! (cry for assistance) + + + (emphasizes feeling of shock/astonishment/incomprehension) + + + oh Lord (oh my God) + + + diff --git a/extensions/wikidata-lexemes/output/eu.xml b/extensions/wikidata-lexemes/output/eu.xml new file mode 100644 index 00000000..653a2768 --- /dev/null +++ b/extensions/wikidata-lexemes/output/eu.xml @@ -0,0 +1,22515 @@ + + + + + + + + + Gabetasuna adierazten duen hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + gizonezko baten arreta deitzeko erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + norbaiten edo zerbaiten alde dagoena, edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inolako fruitu edo ondoriorik gabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alferrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + duela asko gertatutakoa + + + aspaldian ikusi ez den pertsona agurtzean erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aukeran hautatutakoa, aparta, guztiz egokia + + + nahiaren arabera aukera daitekeena, hautazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurretik gertatutakoa edo ordenaz lehenagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzitsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + onartzeko modukoa dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behin gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbait edo norbait jadanik aipatua dela, hura ez dena, baina nolabait multzo berekotzat hartzen dena adierazteko erabiltzen den hitza + + + ezezko testuinguruetan, -ik kasu-atzizkiaz, eta aurretik izen-sintagma edo aditzaren era burutua daramala, ezezko perpauseko aditzaren ekintza delako izen-sintagmari bakarrik dagokiola edo delako aditzaren ekintza bakarrik gauzatu dela adierazteko erabiltzen den hitza + + + baiezkoak ez diren testuinguretan, sintagma baten ondoren, aditzaren ekintza hari bakarrik dagokiola adierazten duen hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehen bezalakoa, aldatu ez dena + + + ez hasierarik ez amaierarik duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatzen denaren berdina edo antzekoa, modu berekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezaugarriez mintzatuz, beste batzuen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + deabruari dagokiona; deabruaren ezaugarriak dituena + + + madarikatua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nolanahiko, edozein moduko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez edo ezetz-i dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + geroztikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiaren kontrakoa; benetakoa edo egiazkoa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiaren aldekoa, gizadiaren ona bilatzen eta gizon-emakumeen egoera hobetzen ahalegintzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + goren dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa, osotasunari dagokiona, erabatekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hautatutakoa, aukerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hilgarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hil ondoan gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + honelakoa; horrelakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + honelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurbileko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + iragankorra + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + isilpean dagoena edo egiten dena, ezkutua, gordea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + izugarria; oso handia, neurriz kanpokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egundokoa, ikaragarria, itzela + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurrekoa, igarotako aldi edo denborakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez ziurra, zalantzazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere baitan misterioa edo ezkutuko esanahia duena edo dirudiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer tokitarako + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohi dena, ohituren araberakoa + + + lehenagokoa, izana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + une edo garai hartakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behar-beharrezkoa, ezinbestekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oso ona, lehen mailakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + substantzia bat falta denean, oso garestia denean edo komeni ez denean, horren ordez jartzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat-batekoa, ustekabean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lanbide edo eginkizun bat egiteko zin egin duena + + + zin eginez egin dena; zinaren bermea duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoritxarrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zortziz osatua; joko-kartetan, zortzi puntu balio dituena + + + + + + zenbaki ezezaguna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa + egun guztian zehar + + + dena, oro + guztia dakiela esaten du + + + multzo oso bat, salbuespenik gabe + ekarri zituen janari guztiek glutena zuten + + + dena, izena ezabaturik dagoenean + Oso futbolzalea naiz, baina, guztien gainetik, Athleticen jarraitzailea naiz. + + + zenbatzailea + Zuek guztiok + + + + + + натуральное число + + + + + + balio oso txikia duenaz esaten da + kotxeagatik ordaindu duena ez da ahuntzaren gauerdiko eztula + + + + + + Maila edo izaera bereko kontzeptuak lotzen dituen hitza, gehitzeko balio duena + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahotsez mintzatuz, ia entzuten ez dena; isilpekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mintzatuz egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + etengabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkeneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bai edo baietz-i dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bakarka egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banakakoa + + + aparta, bikaina + + + (Mat.) biunibokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + barrukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behin-behinean egina, behin betikoa izan gabe, hura taxutu bitartean haren ordez dagoena edo erabiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatutakoa, lehen aipatutakoa + + + deitzen dena, deitua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bete beharrekoa; nahitaezkoa, halabeharrezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohiz kanpokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa + + + goikoa, goitikakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + geroa, etorkizuna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiarena, gizakiari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era hartakoa, hura bezalakoa, adierazi den gisakoa + + + erabat zehazten ez den zerbaiten adierazlea + + + norbaiten izenaren ordezkoa + + + zenbaki bati dagokiola, haren aurre-aurrean nahiz ondo ondoan kokaturik, zenbakiak seinalatzen duen kopuruaren adierazlea + + + alaena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hari dagokiona; delakoa + + + egokia, gai dena, trebea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hila, hilik dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era honetakoa, hau bezalakoa, adierazi den gisakoa + + + gehiago zehazten ez den zerbait adierazteko partikula + + + pertsona baten izena ordezkatzeko partikula + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurrengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + noiz edo noizko, noizbaiteko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + isilean dagoena edo egiten dena, ezkutua, gordea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) juntagailuez mintzatuz, perpaus baten kausa edo zergatia adierazten duen beste perpaus bat lehenengoaren mendeko egiten duena; perpausez mintzatuz, mendeko bilakatutakoa bera; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren kausa edo zergatia dela adierazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lau hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maiz gertatzen, egiten, erabiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + milaz osatua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + pertsonez mintzatuz, gizalegeari atxikia, adeitsua + + + egokia + + + trebea + + + (Hizkl.) modua adierazten duena edo hari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neurriz moldatua edo egina; neurriduna, neurritsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer denboratakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + moduren batekoa; gutxi gorabeherakoa, zehaztugabekoa + + + erdipurdikoa, ez onegia ez txarregia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer eratakoa, zer modutakoa + + + harridura adierazteko hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer tokitakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohituraz gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + besteren oinarri gertatzen dena; garrantzizkoena, funtsezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondoren gertatutakoa edo ordenaz ondorengoa; ondoan dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondorengoa, ondokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) perpaus nagusiaren ondorioa adierazten duen mendeko perpausari esaten zaio; menderagailuez mintzatuz, horrelako perpausetan erabiltzen dena; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren ondorioa dela adierazten duena (beraz, hortaz...) + + + (Hizkl.) adizkiez mintzatuz, alegiazko baldintzazko perpausen perpaus nagusian agertu ohi dena, -ke- morfema duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betikoa + + + apartekoa, bikaina, berebizikoa + + + ezustekoa, izugarria, inoiz egin edo gertatu gabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urruti dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zergaduna + + + + + + натуральное число + + + + + + натуральное число + + + + + + Zenbait hitz, sintagma edo perpaus lotzen dituen hitza + hau edo hori nahi duzu? + + + zehaztapen handirik gabeko zerbait adierazteko hitza + hiru-edo agertu ziren + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + norbait deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + gizonezko deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abereari dagokiona, pertsona abereekin kidetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adinean sartua, adin handikoa, adinduna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste zerbaiten aldi berean gertatzen, existitzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + antzetsua, trebea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaezkoa + + + neurriz gainekoa, markaz kanpokoa + + + badaezpadakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + baldintzapean egin edo emandakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste batekin edo batzuekin batera egindakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gehien behar dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa + + + orokorra + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egokia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + etengabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezkutuan egin edo gertatua, ezkutua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere kidekoen artean kopuru edo neurri handiena duena, maximoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gorputza duena, espirituzkoari kontrajarria + + + zenbait erlijiotan, atsegin fisikoari, bereziki plazer sexualari, dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hara-ri dagokion izenlaguna + + + hango, delako + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi hiri edo gehiagoren artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kontra dagoena; aurkakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + legeari buruzkoa + + + lege bidezkoa; legearen araberakoa + + + bezalakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lotsagabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + menpean dagoena, azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neurrigabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + une honetakoa, garai honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sei hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + txandaka antolatuta edo eratuta dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzena ez dena + + + zerbaitekiko zeharka dagoena + + + + + + натуральное число + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + alajaina + + + + + + emakumezkoak deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiten arreta deitzeko hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + agerian dagoena + + + (Fin.) kontu korronteez, aurrezki-libretez eta abarrez mintzatuz, funtsak edozein unetan, aurretiazko abisurik gabe, erabili ahal direna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaez bete beharrekoa + + + hitz emandakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gehiengoari dagokiona, gehienek dutena, inolako berezitasunik ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahala adierazten duena + + + (Hizkl.) ahalera + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + irudipenezkoa, benetakoa ez dena; ametsetan agertzeko modukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era askotakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + atzeraeragina duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbaiten edo norbaiten aurka dagoena + + + (Mat.) balio absolutu bera baina kontrako zeinua duten zenbakietako bakoitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ziurtzat, finkotzat jo ezin dena + + + erdipurdikoa, fidatzekoa ez dena + + + zalantza eta susmo txarrak sorrarazten dituena + + + badaezpada egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + litzatekeenari baina ez denari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + begiz, ikusiz egindakoari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beldurgarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berariazkoa, aproposa + + + markatik kanpokoa, neurriz gainekoa, oso handia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berehala gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egun guztietakoa, egunero gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erlijiosoa, erlijioari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + eskalea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ustekabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oinarrizkoa, garrantzirik handienekoa + + + funtsa, ganora duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gerokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + delako iraganeko unetik orain artekoa, geroztik gertatu edo iraun duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gorengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + halako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + errugbian, saskibaloian, eta beste hainbat kiroletan hegalean jokatzen duen jokalaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era horretakoa, hori bezalakoa, adierazi den gisakoa + + + gehiago zehazten ez den zerbait adierazteko partikula + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + horrelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezein, bat ere, inongoa + + + nolabaitekoa; berebizikoa, egundokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + klaseen, bereziki gizarte-klaseen, artekoa; klase bati baino gehiagori dagokiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kontuz egin edo tratatzekoa; garrantzitsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Mil.) soldaduez mintzatuz, oinez ibiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa, zatirik falta ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + frogatu edo ziurtatu gabe egon arren, eskura diren informazioen arabera edota batzuen iritzian halakotzat hartzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zelulen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoriona duena edo dakarrena; zorionez gertatzen dena + + + ditxosozkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zorrak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzengabea + + + + + + натуральное число + + + + + + norbait agurtzeko erabiltzen den diosala + + + + + + emakumezko baten arreta deitzeko bidea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aingeruei dagokiena; aingeruen nolakotasunak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ametsezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzizkoa, arduraz egin beharrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenbizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenbizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkena; bukaerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + balio duena; baliotsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banaka gauzatzen dena; banakoari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat-batean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + baztergabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bederatziz osatua; joko-kartetan, bederatzi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahita, gurariak emanda egindakoa + + + espezifikoa; berezia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beti bat dagoena, aldatzen ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betikoa; etengabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osotasun baten zati bat edo multzo bateko elementu bat edo batzuk aipatu ondoren, gelditzen diren besteen multzoa + + + zerbaitek duen balioa baino diru handiagoz ordaintzean itzultzen den zenbatekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gogokoa + + + gogoari, pentsamenduari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gogokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erabat halakoa, berdin-berdina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hamabiz osatua, zerbaitetik hamabi dituena; dozena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hona-ri dagokion izenlaguna + + + hemengoa, delakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erabat honelakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurbilean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + soinuaz eta irudiaz baliatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazten denaren irudia edo antza duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jan aurretik hartzen den janari edo edaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kidea dena, kidea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mendean dagoena, azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gauzez mintzatuz, naturaz gaindikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hainbat nazioren artean egiten dena, hainbat naziori edo nazioen arteko harremanei dagokiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erdipurdikoa, hala moduzkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kidekoa; maila berekoa + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + emakume baten arreta deitzeko erabiltzen den hitza + + + + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti ixiltzeko eskatzeko interjekzioa + + + + + + gizonezko baten arreta deitzeko erabiltzen den hitza + + + + + + + + + norbaiten arreta deitzeko hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + guztion artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) albokaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoaren itxura besterik ez duena; asmatua. Askotan egiazko-ren kontrako moduan erabiltzen da + + + (Fis./Inform.) alegiazko edo itxurazko izatasuna soilik duena + + + (Hizkl.) euskal aditzaren aldietako bat, balizko ekintzak adierazteko erabiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bereizia, bereizirik dagoena + + + aparta, bikaina; ohi ez bezalakoa, berezia + + + urrutikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + araberakoa + + + arauarekin bat datorrena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aspaldikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkeneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + izaera baldintzatua duena + + + (Hizkl.) baldintza adierazten duen mendeko perpausari esaten zaio; menderagailuez mintzatuz, horrelako perpausetan erabiltzen dena + + + (Hizkl.) adizkiez mintzatuz, horrelako perpausetan agertu ohi dena, oro har, ba- edo -ke- morfema duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaezkoa, nahitaez behar dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maila apalekoa; baxua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bekatua eginez betetzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + emandako berba betetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste era batekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adinako + + + erabat antzekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inork eta ezerk behartu gabekoa + + + borondatearen agindupean dagoena edo borondateak eraentzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bostez osatua; joko-kartetan, bost puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + delako izenlagunaren plurala + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betiereko arazoa delako, ahotan oso erabilia delako eta abarrengatik gogaikarri gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + araberakoa + + + eredugarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi etxebizitzako baserrian, teilape berean bizi den aldameneko laguna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezin daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ganora duena; ganoraz egina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzia duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + uneko egunekoa; gaur egungoa, garai honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiaz gaindikoa, gizakiak ahal duenaz gaindikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hain handia, halako tamainakoa; handia, ona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez onegia, ez oso fidagarria, erdipurdikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi hanka dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hauta daitekeena, nahitaezkoa ez dena + + + (Hizkl.) zeinu linguistikoaren bi alderdien arteko, adierazle eta adieraziaren arteko, harremana, erlazio jakinik gabe osatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hiruz osatua; joko-kartetan, hiru puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hitzen bidez adierazia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indarra erabiliz egina + + + nahitaezkoa, derrigor egin edo bete behar dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + itxura onekoa, itxura egokikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jatorriari dagokiona, jatorriz dena; sortze-ingurunetik, egilearen eskutik zuzenean datorrena + + + artelanez, izkribuez eta abarrez mintzatuz, kopia, errepikapena, itzulpena ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kolorea edo koloreak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mirariz gertatzen dena; harrigarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaez behar dena, ezin saihets edo baztertu daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + noraezean doana + + + nahitaezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urtero gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gertatuko denik uste edo espero izan gabe + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nolakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzena, norabidez aldatzen ez dena + + + + + + bere eskuinean duen hitzaren gauzetako edo pertsonetako bat aditzera ematen duen lexema + + + + + + натуральное число + + + + + + натуральное число + + + + + + berriz, ordea + + + + + + hitz indargarria + + + + + + Aipatzen diren gauzek mugatzen duten leku edo denboran + Europa eta Asia artean dago Istanbul + + + Aipatzen direnen erdian, haiekin, haiek parte hartuz, haiekin batera + etsaien artean zegoen + + + arte + itxoidazu kantatzen dudan artean + + + + + + norbaiten baitan + + + neure artean hori pentsatzen dut + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hain handia, halako tamainakoa; handia, ona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berezko edo unekoaren kontrako jarrera, ordena, noranzkoa eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + amorrua duena, haserre bizia duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zentzuzkoa, bidezkoa, arrazoiaren araberakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezaugarriren bati buruz beste batzuen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatzen den unetik ondorengo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urte honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ausaren arabera gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + batez osatua; joko-kartetan, palo bakoitzeko lehena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berdinik ez duena, berdingabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maitatua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + doan egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoaren itxura duena, egiazkotzat har daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiarekin bat datorrena, egiaren araberakoa dena; faltsua edo itxura hutsekoa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + emakumearena, emakumeari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nirea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurrenekoa, lehenengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainean dagoena; gainetik dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ganoragabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behar, zilegi, egoki edo ohiko den baino gehiagokoa edo handiagoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere kidekoen artean kopuru edo neurri txikiena duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + horra-ri dagokion izenlaguna + + + horkoa, delakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurren datorrena, ondo-ondotik datorrena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezein, bat ere, inolakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mugan dagoena; mugan bizi dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) izenez mintzatuz, singularrean erabilirik mota bereko gauza edo osagai-multzo bat hartzen duena edo adierazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edozein motatakoa + + + erdipurdikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + tokiren batekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + odolkidea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondokoa, ondotik datorren pertsona + + + norbaitengandik sortutako izakien multzoa, leinua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + probetxugarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbaitetan nabarmentzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seiz osatua; joko-kartetan, sei puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + benetakoa edo serioa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + uraren, bereziki itsasokoaren, azpian dagoena nahiz bertan egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zaintzen den gauza edo pertsona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zazpiz osatua; joko-kartetan, zazpi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zentzua duena; arrazoizkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat baino gehiago + + + + + + натуральное число + + + + + + ustekabea edo sorpresa adierazteko hitza + + + + + + gabe + + + + + + norbait deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + + + + arrisku edo arazo batetaz ohartarazteko erabiltzen den hitza + + + + + + norbaiten arreta deitzeko hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neur daitekeen ezaugarri bat beste zerbait edo norbaiten mailakoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adingabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + agintearen azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahaideez mintzatuz, aitaren aldekoa + + + aitaren itxurakoa, antzekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aldiune batean, denbora laburrean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aldizka gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alokatua, alokairukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + amairik ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurretiazkoa + + + zerbaiten aurrealdetik egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sakona ez dena, azalean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azpiratua dagoena, mendekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banakakoa, bakarkakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohiko zaion edo behar duen garaia baino geroagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + naturala, bere izate edo funtsari dagokiona, kanpoko eraginik gabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa, bertakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzentasunaren araberakoa; legezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bik osatutakoa, parea; joko-kartetan, bi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bizitzak irauten duen bitartean irauten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alferrekoa + + + doakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + biren artekoa; bereziki, bi aukera izaki, ez bata ez bestea, bien artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezinbestekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + familiakoa; familiartean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hamarrez osatua; hamar gauzaren multzoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hiru hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hitzari eusten diona, hitza betetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + handitasunez egiten edo ospatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ikaragarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + itxura hutsa dena, benetakoa ez dena + + + itxura onekoa, itxura egokikoa; ganorazkoa edo behar bezalakoa + + + egiantzekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa, neurriz kanpokoa; harridura edo izua sorrarazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indarrean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + haur jaio berriez mintzatuz, etxe edo beste lekuren batean abandonatutakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lauz osatua; joko-kartetan, lau puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + denbora luzeko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + metalikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oharkabean gertatua edo egina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oinaren azpikoa; mendekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ordez jartzen dena edo diharduena + + + (Kir.) jokalari-aldaketak posible diren kiroletan, horrela egokituz gero, zelaian ari den baten ordez jokoan aritzeko izendatuta dagoen jokalaria + + + (Zin.) zenbait eszenatan protagonista ordezkatzen duen aktorea + + + substantzia bat falta denean, oso garestia denean edo komeni ez denean, horren ordez jartzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + orokorra, orotarakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + paregabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sasikumea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + pertsonez mintzatuz, sasoi onean dagoena + + + bereziki, landareez mintzatuz, garaikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoritxarra duena edo dakarrena; zoritxarrez gertatzen dena + + + + + + zerbait gerta dadila nahi dela esateko erabiltzen den hitza + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nornahi + + + + + + натуральное число + + + + Gabetasuna adierazten duen hitza + + + ustekabea edo sorpresa adierazteko hitza + + + ustekabea edo sorpresa adierazteko hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + gizonezko baten arreta deitzeko erabiltzen den hitza + + + norbaiten edo zerbaiten alde dagoena, edo egiten dena + + + inolako fruitu edo ondoriorik gabea + + + alferrekoa + + + duela asko gertatutakoa + + + aspaldian ikusi ez den pertsona agurtzean erabiltzen den hitza + + + aukeran hautatutakoa, aparta, guztiz egokia + + + nahiaren arabera aukera daitekeena, hautazkoa + + + aurretik gertatutakoa edo ordenaz lehenagokoa + + + garrantzitsua + + + onartzeko modukoa dena + + + behin gertatzen edo egiten dena + + + zerbait edo norbait jadanik aipatua dela, hura ez dena, baina nolabait multzo berekotzat hartzen dena adierazteko erabiltzen den hitza + + + ezezko testuinguruetan, -ik kasu-atzizkiaz, eta aurretik izen-sintagma edo aditzaren era burutua daramala, ezezko perpauseko aditzaren ekintza delako izen-sintagmari bakarrik dagokiola edo delako aditzaren ekintza bakarrik gauzatu dela adierazteko erabiltzen den hitza + + + baiezkoak ez diren testuinguretan, sintagma baten ondoren, aditzaren ekintza hari bakarrik dagokiola adierazten duen hitza + + + lehen bezalakoa, aldatu ez dena + + + ez hasierarik ez amaierarik duena + + + aipatzen denaren berdina edo antzekoa, modu berekoa + + + ezaugarriez mintzatuz, beste batzuen artean dagoena + + + deabruari dagokiona; deabruaren ezaugarriak dituena + + + madarikatua + + + nolanahiko, edozein moduko + + + ez edo ezetz-i dagokiona + + + geroztikoa + + + egiaren kontrakoa; benetakoa edo egiazkoa ez dena + + + gizakiaren aldekoa, gizadiaren ona bilatzen eta gizon-emakumeen egoera hobetzen ahalegintzen dena + + + goren dagoena + + + osoa, osotasunari dagokiona, erabatekoa + + + hautatutakoa, aukerakoa + + + hilgarria + + + hil ondoan gertatzen dena + + + honelakoa; horrelakoa + + + honelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + hurbileko + + + iragankorra + + + isilpean dagoena edo egiten dena, ezkutua, gordea + + + izugarria; oso handia, neurriz kanpokoa + + + egundokoa, ikaragarria, itzela + + + aurrekoa, igarotako aldi edo denborakoa + + + ez ziurra, zalantzazkoa + + + bere baitan misterioa edo ezkutuko esanahia duena edo dirudiena + + + zer tokitarako + + + ohi dena, ohituren araberakoa + + + lehenagokoa, izana + + + une edo garai hartakoa + + + behar-beharrezkoa, ezinbestekoa + + + oso ona, lehen mailakoa + + + substantzia bat falta denean, oso garestia denean edo komeni ez denean, horren ordez jartzen dena + + + bat-batekoa, ustekabean gertatzen dena + + + egiazkoa + + + lanbide edo eginkizun bat egiteko zin egin duena + + + zin eginez egin dena; zinaren bermea duena + + + zoritxarrekoa + + + zortziz osatua; joko-kartetan, zortzi puntu balio dituena + + + zenbaki ezezaguna + + + osoa + egun guztian zehar + + + dena, oro + guztia dakiela esaten du + + + multzo oso bat, salbuespenik gabe + ekarri zituen janari guztiek glutena zuten + + + dena, izena ezabaturik dagoenean + Oso futbolzalea naiz, baina, guztien gainetik, Athleticen jarraitzailea naiz. + + + zenbatzailea + Zuek guztiok + + + натуральное число + + + balio oso txikia duenaz esaten da + kotxeagatik ordaindu duena ez da ahuntzaren gauerdiko eztula + + + Maila edo izaera bereko kontzeptuak lotzen dituen hitza, gehitzeko balio duena + + + ustekabea edo sorpresa adierazteko hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + ahotsez mintzatuz, ia entzuten ez dena; isilpekoa + + + mintzatuz egiten dena + + + etengabekoa + + + azkeneko + + + lehenagokoa + + + bai edo baietz-i dagokiona + + + bakarka egiten dena + + + banakakoa + + + aparta, bikaina + + + (Mat.) biunibokoa + + + barrukoa + + + behin-behinean egina, behin betikoa izan gabe, hura taxutu bitartean haren ordez dagoena edo erabiltzen dena + + + aipatutakoa, lehen aipatutakoa + + + deitzen dena, deitua + + + bete beharrekoa; nahitaezkoa, halabeharrezkoa + + + ohiz kanpokoa + + + gainerakoa + + + goikoa, goitikakoa + + + geroa, etorkizuna + + + gizakiarena, gizakiari dagokiona + + + era hartakoa, hura bezalakoa, adierazi den gisakoa + + + erabat zehazten ez den zerbaiten adierazlea + + + norbaiten izenaren ordezkoa + + + zenbaki bati dagokiola, haren aurre-aurrean nahiz ondo ondoan kokaturik, zenbakiak seinalatzen duen kopuruaren adierazlea + + + alaena + + + hari dagokiona; delakoa + + + egokia, gai dena, trebea + + + hila, hilik dagoena + + + era honetakoa, hau bezalakoa, adierazi den gisakoa + + + gehiago zehazten ez den zerbait adierazteko partikula + + + pertsona baten izena ordezkatzeko partikula + + + hurrengoa + + + noiz edo noizko, noizbaiteko + + + isilean dagoena edo egiten dena, ezkutua, gordea + + + (Hizkl.) juntagailuez mintzatuz, perpaus baten kausa edo zergatia adierazten duen beste perpaus bat lehenengoaren mendeko egiten duena; perpausez mintzatuz, mendeko bilakatutakoa bera; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren kausa edo zergatia dela adierazten duena + + + lau hileko denbora-bitarteari dagokiona + + + maiz gertatzen, egiten, erabiltzen dena + + + milaz osatua + + + pertsonez mintzatuz, gizalegeari atxikia, adeitsua + + + egokia + + + trebea + + + (Hizkl.) modua adierazten duena edo hari dagokiona + + + neurriz moldatua edo egina; neurriduna, neurritsua + + + zer denboratakoa + + + moduren batekoa; gutxi gorabeherakoa, zehaztugabekoa + + + erdipurdikoa, ez onegia ez txarregia + + + zer eratakoa, zer modutakoa + + + harridura adierazteko hitza + + + zer tokitakoa + + + ohituraz gertatzen edo egiten dena + + + besteren oinarri gertatzen dena; garrantzizkoena, funtsezkoa + + + ondoren gertatutakoa edo ordenaz ondorengoa; ondoan dagoena + + + ondorengoa, ondokoa + + + (Hizkl.) perpaus nagusiaren ondorioa adierazten duen mendeko perpausari esaten zaio; menderagailuez mintzatuz, horrelako perpausetan erabiltzen dena; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren ondorioa dela adierazten duena (beraz, hortaz...) + + + (Hizkl.) adizkiez mintzatuz, alegiazko baldintzazko perpausen perpaus nagusian agertu ohi dena, -ke- morfema duena + + + betikoa + + + apartekoa, bikaina, berebizikoa + + + ezustekoa, izugarria, inoiz egin edo gertatu gabekoa + + + urruti dagoena + + + zergaduna + + + натуральное число + + + натуральное число + + + Zenbait hitz, sintagma edo perpaus lotzen dituen hitza + hau edo hori nahi duzu? + + + zehaztapen handirik gabeko zerbait adierazteko hitza + hiru-edo agertu ziren + + + ustekabea edo sorpresa adierazteko hitza + + + ustekabea edo sorpresa adierazteko hitza + + + norbait deitzeko edo arreta eskatzeko erabiltzen den hitza + + + gizonezko deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + abereari dagokiona, pertsona abereekin kidetzen duena + + + adinean sartua, adin handikoa, adinduna + + + beste zerbaiten aldi berean gertatzen, existitzen dena + + + antzetsua, trebea + + + nahitaezkoa + + + neurriz gainekoa, markaz kanpokoa + + + badaezpadakoa + + + baldintzapean egin edo emandakoa + + + beste batekin edo batzuekin batera egindakoa + + + gehien behar dena + + + egiazkoa + + + osoa + + + orokorra + + + egokia + + + etengabea + + + ezkutuan egin edo gertatua, ezkutua + + + bere kidekoen artean kopuru edo neurri handiena duena, maximoa + + + gorputza duena, espirituzkoari kontrajarria + + + zenbait erlijiotan, atsegin fisikoari, bereziki plazer sexualari, dagokiona + + + hara-ri dagokion izenlaguna + + + hango, delako + + + bi hiri edo gehiagoren artekoa + + + kontra dagoena; aurkakoa + + + legeari buruzkoa + + + lege bidezkoa; legearen araberakoa + + + bezalakoa + + + lotsagabea + + + menpean dagoena, azpikoa + + + neurrigabea + + + une honetakoa, garai honetakoa + + + sei hileko denbora-bitarteari dagokiona + + + txandaka antolatuta edo eratuta dagoena + + + zuzena ez dena + + + zerbaitekiko zeharka dagoena + + + натуральное число + + + ustekabea edo sorpresa adierazteko hitza + + + alajaina + + + emakumezkoak deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiten arreta deitzeko hitza + + + agerian dagoena + + + (Fin.) kontu korronteez, aurrezki-libretez eta abarrez mintzatuz, funtsak edozein unetan, aurretiazko abisurik gabe, erabili ahal direna + + + nahitaez bete beharrekoa + + + hitz emandakoa + + + gehiengoari dagokiona, gehienek dutena, inolako berezitasunik ez duena + + + ahala adierazten duena + + + (Hizkl.) ahalera + + + irudipenezkoa, benetakoa ez dena; ametsetan agertzeko modukoa + + + era askotakoa + + + atzeraeragina duena + + + zerbaiten edo norbaiten aurka dagoena + + + (Mat.) balio absolutu bera baina kontrako zeinua duten zenbakietako bakoitza + + + ziurtzat, finkotzat jo ezin dena + + + erdipurdikoa, fidatzekoa ez dena + + + zalantza eta susmo txarrak sorrarazten dituena + + + badaezpada egiten dena + + + litzatekeenari baina ez denari dagokiona + + + begiz, ikusiz egindakoari dagokiona + + + beldurgarria + + + berariazkoa, aproposa + + + markatik kanpokoa, neurriz gainekoa, oso handia + + + berehala gertatzen dena + + + egun guztietakoa, egunero gertatzen dena + + + erlijiosoa, erlijioari dagokiona + + + eskalea + + + ustekabekoa + + + oinarrizkoa, garrantzirik handienekoa + + + funtsa, ganora duena + + + gerokoa + + + delako iraganeko unetik orain artekoa, geroztik gertatu edo iraun duena + + + gorengoa + + + halako kantitate, neurri, tamaina, garrantzi eta abar duena + + + errugbian, saskibaloian, eta beste hainbat kiroletan hegalean jokatzen duen jokalaria + + + era horretakoa, hori bezalakoa, adierazi den gisakoa + + + gehiago zehazten ez den zerbait adierazteko partikula + + + horrelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + ezein, bat ere, inongoa + + + nolabaitekoa; berebizikoa, egundokoa + + + klaseen, bereziki gizarte-klaseen, artekoa; klase bati baino gehiagori dagokiena + + + kontuz egin edo tratatzekoa; garrantzitsua + + + (Mil.) soldaduez mintzatuz, oinez ibiltzen dena + + + osoa, zatirik falta ez duena + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + frogatu edo ziurtatu gabe egon arren, eskura diren informazioen arabera edota batzuen iritzian halakotzat hartzen dena + + + zelulen artean dagoena + + + zoriona duena edo dakarrena; zorionez gertatzen dena + + + ditxosozkoa + + + zorrak dituena + + + zuzengabea + + + натуральное число + + + norbait agurtzeko erabiltzen den diosala + + + emakumezko baten arreta deitzeko bidea + + + aingeruei dagokiena; aingeruen nolakotasunak dituena + + + ametsezkoa + + + garrantzizkoa, arduraz egin beharrekoa + + + lehenbizikoa + + + lehenbizikoa + + + azkena; bukaerakoa + + + balio duena; baliotsua + + + banaka gauzatzen dena; banakoari dagokiona + + + bat-batean gertatzen dena + + + baztergabea + + + bederatziz osatua; joko-kartetan, bederatzi puntu balio dituena + + + nahita, gurariak emanda egindakoa + + + espezifikoa; berezia + + + beti bat dagoena, aldatzen ez dena + + + betikoa; etengabea + + + gainerakoa + + + osotasun baten zati bat edo multzo bateko elementu bat edo batzuk aipatu ondoren, gelditzen diren besteen multzoa + + + zerbaitek duen balioa baino diru handiagoz ordaintzean itzultzen den zenbatekoa + + + gogokoa + + + gogoari, pentsamenduari dagokiona + + + gogokoa + + + erabat halakoa, berdin-berdina + + + hamabiz osatua, zerbaitetik hamabi dituena; dozena + + + hona-ri dagokion izenlaguna + + + hemengoa, delakoa + + + erabat honelakoa + + + hurbilean dagoena + + + soinuaz eta irudiaz baliatzen dena + + + adierazten denaren irudia edo antza duena + + + jan aurretik hartzen den janari edo edaria + + + kidea dena, kidea + + + adierazi den lekukoa + + + mendean dagoena, azpikoa + + + gauzez mintzatuz, naturaz gaindikoa + + + hainbat nazioren artean egiten dena, hainbat naziori edo nazioen arteko harremanei dagokiena + + + erdipurdikoa, hala moduzkoa + + + gainerakoa + + + kidekoa; maila berekoa + + + ustekabea edo sorpresa adierazteko hitza + + + ustekabea edo sorpresa adierazteko hitza + + + ustekabea edo sorpresa adierazteko hitza + + + emakume baten arreta deitzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti ixiltzeko eskatzeko interjekzioa + + + gizonezko baten arreta deitzeko erabiltzen den hitza + + + norbaiten arreta deitzeko hitza + + + guztion artekoa + + + (Hizkl.) albokaria + + + egiazkoaren itxura besterik ez duena; asmatua. Askotan egiazko-ren kontrako moduan erabiltzen da + + + (Fis./Inform.) alegiazko edo itxurazko izatasuna soilik duena + + + (Hizkl.) euskal aditzaren aldietako bat, balizko ekintzak adierazteko erabiltzen dena + + + bereizia, bereizirik dagoena + + + aparta, bikaina; ohi ez bezalakoa, berezia + + + urrutikoa + + + araberakoa + + + arauarekin bat datorrena + + + aspaldikoa + + + azkeneko + + + azkena + + + izaera baldintzatua duena + + + (Hizkl.) baldintza adierazten duen mendeko perpausari esaten zaio; menderagailuez mintzatuz, horrelako perpausetan erabiltzen dena + + + (Hizkl.) adizkiez mintzatuz, horrelako perpausetan agertu ohi dena, oro har, ba- edo -ke- morfema duena + + + nahitaezkoa, nahitaez behar dena + + + maila apalekoa; baxua + + + bekatua eginez betetzen dena + + + egiazkoa + + + emandako berba betetzen duena + + + beste era batekoa + + + adinako + + + erabat antzekoa + + + inork eta ezerk behartu gabekoa + + + borondatearen agindupean dagoena edo borondateak eraentzen duena + + + bostez osatua; joko-kartetan, bost puntu balio dituena + + + delako izenlagunaren plurala + + + betiereko arazoa delako, ahotan oso erabilia delako eta abarrengatik gogaikarri gertatzen dena + + + araberakoa + + + eredugarria + + + bi etxebizitzako baserrian, teilape berean bizi den aldameneko laguna + + + ezin daitekeena + + + ganora duena; ganoraz egina + + + garrantzia duena + + + uneko egunekoa; gaur egungoa, garai honetakoa + + + gizakiaz gaindikoa, gizakiak ahal duenaz gaindikoa + + + hain handia, halako tamainakoa; handia, ona + + + ez onegia, ez oso fidagarria, erdipurdikoa + + + bi hanka dituena + + + hauta daitekeena, nahitaezkoa ez dena + + + (Hizkl.) zeinu linguistikoaren bi alderdien arteko, adierazle eta adieraziaren arteko, harremana, erlazio jakinik gabe osatzen dena + + + hiruz osatua; joko-kartetan, hiru puntu balio dituena + + + hitzen bidez adierazia + + + indarra erabiliz egina + + + nahitaezkoa, derrigor egin edo bete behar dena + + + itxura onekoa, itxura egokikoa + + + jatorriari dagokiona, jatorriz dena; sortze-ingurunetik, egilearen eskutik zuzenean datorrena + + + artelanez, izkribuez eta abarrez mintzatuz, kopia, errepikapena, itzulpena ez dena + + + kolorea edo koloreak dituena + + + mirariz gertatzen dena; harrigarria + + + nahitaez behar dena, ezin saihets edo baztertu daitekeena + + + noraezean doana + + + nahitaezkoa + + + urtero gertatzen edo egiten dena + + + gertatuko denik uste edo espero izan gabe + + + nolakoa + + + zuzena, norabidez aldatzen ez dena + + + bere eskuinean duen hitzaren gauzetako edo pertsonetako bat aditzera ematen duen lexema + + + натуральное число + + + натуральное число + + + berriz, ordea + + + hitz indargarria + + + Aipatzen diren gauzek mugatzen duten leku edo denboran + Europa eta Asia artean dago Istanbul + + + Aipatzen direnen erdian, haiekin, haiek parte hartuz, haiekin batera + etsaien artean zegoen + + + arte + itxoidazu kantatzen dudan artean + + + norbaiten baitan + + + neure artean hori pentsatzen dut + + + ustekabea edo sorpresa adierazteko hitza + + + ustekabea edo sorpresa adierazteko hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + hain handia, halako tamainakoa; handia, ona + + + berezko edo unekoaren kontrako jarrera, ordena, noranzkoa eta abar duena + + + amorrua duena, haserre bizia duena + + + zentzuzkoa, bidezkoa, arrazoiaren araberakoa + + + ezaugarriren bati buruz beste batzuen artean dagoena + + + aipatzen den unetik ondorengo + + + urte honetakoa + + + ausaren arabera gertatzen dena + + + batez osatua; joko-kartetan, palo bakoitzeko lehena + + + berdinik ez duena, berdingabea + + + maitatua + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + doan egiten dena + + + egiazkoaren itxura duena, egiazkotzat har daitekeena + + + egiarekin bat datorrena, egiaren araberakoa dena; faltsua edo itxura hutsekoa ez dena + + + berebizikoa + + + emakumearena, emakumeari dagokiona + + + nirea + + + aurrenekoa, lehenengoa + + + gainean dagoena; gainetik dagoena + + + ganoragabea + + + behar, zilegi, egoki edo ohiko den baino gehiagokoa edo handiagoa + + + bere kidekoen artean kopuru edo neurri txikiena duena + + + horra-ri dagokion izenlaguna + + + horkoa, delakoa + + + hurren datorrena, ondo-ondotik datorrena + + + ezein, bat ere, inolakoa + + + mugan dagoena; mugan bizi dena + + + (Hizkl.) izenez mintzatuz, singularrean erabilirik mota bereko gauza edo osagai-multzo bat hartzen duena edo adierazten duena + + + edozein motatakoa + + + erdipurdikoa + + + tokiren batekoa + + + odolkidea + + + ondokoa, ondotik datorren pertsona + + + norbaitengandik sortutako izakien multzoa, leinua + + + probetxugarria + + + zerbaitetan nabarmentzen dena + + + seiz osatua; joko-kartetan, sei puntu balio dituena + + + artekoa + + + benetakoa edo serioa ez dena + + + uraren, bereziki itsasokoaren, azpian dagoena nahiz bertan egiten dena + + + zaintzen den gauza edo pertsona + + + zazpiz osatua; joko-kartetan, zazpi puntu balio dituena + + + zentzua duena; arrazoizkoa + + + bat baino gehiago + + + натуральное число + + + ustekabea edo sorpresa adierazteko hitza + + + gabe + + + norbait deitzeko edo arreta eskatzeko erabiltzen den hitza + + + norbaiti deitzeko edo arreta eskatzeko erabiltzen den hitza + + + arrisku edo arazo batetaz ohartarazteko erabiltzen den hitza + + + norbaiten arreta deitzeko hitza + + + neur daitekeen ezaugarri bat beste zerbait edo norbaiten mailakoa duena + + + adingabea + + + agintearen azpikoa + + + ahaideez mintzatuz, aitaren aldekoa + + + aitaren itxurakoa, antzekoa + + + aldiune batean, denbora laburrean gertatzen dena + + + aldizka gertatzen dena + + + alokatua, alokairukoa + + + amairik ez duena + + + aurretiazkoa + + + zerbaiten aurrealdetik egiten dena + + + sakona ez dena, azalean dagoena + + + azpiratua dagoena, mendekoa + + + banakakoa, bakarkakoa + + + ohiko zaion edo behar duen garaia baino geroagokoa + + + berebizikoa + + + naturala, bere izate edo funtsari dagokiona, kanpoko eraginik gabekoa + + + adierazi den lekukoa + + + adierazi den lekukoa, bertakoa + + + zuzentasunaren araberakoa; legezkoa + + + bik osatutakoa, parea; joko-kartetan, bi puntu balio dituena + + + bizitzak irauten duen bitartean irauten duena + + + alferrekoa + + + doakoa + + + biren artekoa; bereziki, bi aukera izaki, ez bata ez bestea, bien artekoa + + + ezinbestekoa + + + familiakoa; familiartean gertatzen dena + + + hamarrez osatua; hamar gauzaren multzoa + + + hiru hileko denbora-bitarteari dagokiona + + + hitzari eusten diona, hitza betetzen duena + + + handitasunez egiten edo ospatzen dena + + + ikaragarria + + + itxura hutsa dena, benetakoa ez dena + + + itxura onekoa, itxura egokikoa; ganorazkoa edo behar bezalakoa + + + egiantzekoa + + + berebizikoa, neurriz kanpokoa; harridura edo izua sorrarazten duena + + + indarrean dagoena + + + haur jaio berriez mintzatuz, etxe edo beste lekuren batean abandonatutakoa + + + lauz osatua; joko-kartetan, lau puntu balio dituena + + + denbora luzeko + + + metalikoa + + + oharkabean gertatua edo egina + + + oinaren azpikoa; mendekoa + + + ordez jartzen dena edo diharduena + + + (Kir.) jokalari-aldaketak posible diren kiroletan, horrela egokituz gero, zelaian ari den baten ordez jokoan aritzeko izendatuta dagoen jokalaria + + + (Zin.) zenbait eszenatan protagonista ordezkatzen duen aktorea + + + substantzia bat falta denean, oso garestia denean edo komeni ez denean, horren ordez jartzen dena + + + orokorra, orotarakoa + + + paregabea + + + sasikumea + + + pertsonez mintzatuz, sasoi onean dagoena + + + bereziki, landareez mintzatuz, garaikoa + + + zoritxarra duena edo dakarrena; zoritxarrez gertatzen dena + + + zerbait gerta dadila nahi dela esateko erabiltzen den hitza + + + nornahi + + + натуральное число + + + diff --git a/extensions/wikidata-lexemes/output/fa.xml b/extensions/wikidata-lexemes/output/fa.xml new file mode 100644 index 00000000..7e76fbb1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/fa.xml @@ -0,0 +1,14107 @@ + + + + + + + + + بخش + + + برای + + + پاره + + + + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + + + + به باور قدما جن یا پری که همزاد انسان باشد + + + + + + متکبر، لاف‌زن + + + سرگشته، حیران + + + هلاک‌شونده + + + + + + مؤنث جازم + + + حرفی که چون بر فعل درآید آخر آن را ساکن گرداند + + + + + + دوراندیش، هوشیار + + + + + + حس‌کننده + + + + + + حکایت‌کننده، بیان‌کننده + + + + + + ستاینده، ستایشگر + + + + + + کهنه، فرسوده + + + + + + آب که به شدت از محل ریزد، ریزان + + + + + + سودبخش، سودآور، نافع + + + + + + + کوچ‌کننده، رحلت‌کننده + + + + + + ترک کننده، رهاکننده + + + + + + بالابرنده، بلند کننده + + + بردارندهٔ قصه به شاه یا امیر، عرض حال دهنده + + + + + + رکوع‌کننده + + + فروتنی + + + + + + رام‌کنندهٔ ستوران + + + + + + + دزد + + + + + + تابان + + + برافراشته + + + آشکار + + + پراکنده + + + + + + قصه‌گو، افسانه‌گو + + + + + + + واقعه (اعم از خیر و شر) + + + انسان یا جانوری که از سمت راست شخص برآید + + + + + + بیدار + + + + + + نافرمان، سرکش + + + + + + ده یک گیرنده + + + + + + شیطان + + + فتنه‌انگیزنده + + + کسی که ارادهٔ فجور با زنان کند + + + گمراه‌کننده + + + + + + + بوی خوش دهنده + + + + + + مسلط‌شونده، چیره‌شونده + + + + + + کوبندهٔ در و مانند آن + + + فال‌زننده به قرعه + + + + + + موجود، موجودشونده + + + + + + امردباز، غلام‌باره + + + + + + ستایش‌کننده، مدح + + + کننده + + + + + + دشمنی‌کننده + + + + + + + رسنده به چیزی + + + درک‌کننده، دریابنده + + + آوردن الفاظی است در ابتدای کلام که موهوم ذم باشد و بقیهٔ کلام به نحوی آورده شود که رفع توهم گردد + + + + + + + برافروزندهٔ آتش جنگ + + + جنگ‌کننده + + + + + + سنگ‌شده، سخت‌گشته + + + در فارسی به کسی گویند که حاضر به درک و پذیرش نوآوری‌ها نیست + + + + + + آواز خواننده، زمزمه‌کننده + + + + + + + بصیر و دانا، دقیق + + + + + + + به تکلف کاری‌کننده + + + + + + پی درپی‌شونده، متوالی + + + + + + + پیشی گیرنده (بر یکدیگر) + + + + + + تجزیه‌شونده + + + + + + تظاهرکننده + + + + + + دارندهٔ صفتی + + + + + + در پی یکدیگر شونده + + + + + + ساخته‌شده، صورت گرفته + + + + + + کسی که مباشر کار و شغلی است + + + + + + + گمان‌کننده، شک‌کننده + + + + + + نویسنده، دبیر + + + + + + + خود را به عرب مانند کننده + + + + + + چیره‌شونده + + + + + + گشایش یابنده (از تنگی و دشواری) + + + گشایش خاطر یابنده + + + خوشی جوینده + + + + + + برعهده گیرنده + + + + + + + کسی که به دیگری تقرب کند، نزدیکی جوینده + + + + + + عهده‌دار، کفیل + + + + + + موجود شده، به وجود آمده + + + + + + تمام‌کننده، کامل‌کننده + + + + + + کج شده و خمیده شده + + + آنچه که به چیزی میل کند + + + + + + برخوردار از چیزی، بهره‌مند + + + کسی که عمره (زیارت بیت الله با شرایط خاص) به جا آورد + + + + + + چنگ در زننده + + + بازدارنده + + + + + + با نسق و ترتیب، منظم، مرتب + + + + + + پیاپی، پشت سرهم + + + + + + آماسیده، ورم کرده + + + + + + تجویز شده، روا داشته شده، اجازه‌نامه + + + + + + احیاءکننده، زنده‌کننده + + + + + + ویران‌کننده + + + + + + خطاکار، گناهکار + + + + + + خفه‌کننده + + + در علم عروض «مفعولن» چون در حشو بیت افتد و از «مفاعیلن» منشعب باشد، آن را مخنق خوانند + + + + + + خیال‌کننده + + + + + + دفاع‌کننده + + + + + + دوام دهنده، ادامه دهنده + + + + + + باریک گردانیدن + + + کار دقیق‌کننده + + + نکته‌های دقیق پیدا‌کننده + + + + + + دلالت‌کننده، راهنما + + + + + + خوار دارنده + + + + + + + نامه فرستنده + + + + + + بازگشت‌کننده + + + کهنه پسند + + + + + + اراده‌کننده، ارادتمند + + + + + + کهنه، دیرینه، مرض مزمن بیماری ای که کهنه شده باشد + + + + + + زایل‌کننده + + + + + + دوای خواب‌آور + + + + + + خودسر، خودرأی + + + + + + صاحب بصیرت + + + + + + خدمت‌کننده، مجازاً: کارمند + + + + + + طالب استراحت + + + + + + شفا جوینده، بهبود خواهنده + + + + + + آمرزش خواه + + + + + + فریادخواه، دادخواه + + + + + + استفاده‌کننده، فایده گیرنده، بهره‌مند + + + + + + یاری خواهنده + + + دلیر و توانا + + + + + + + رم‌کننده، رمنده + + + + + + نور جوینده ستاره ای که از خود نور ندارد + + + + + + غالب، چیره‌شونده + + + + + + هرچیزی که باعث شکم روی شود + + + + + + خیره سر، خودرأی + + + + + + خبر دهنده، آگاه‌کننده + + + + + + ناله‌کننده + + + + + + عذر آورنده + + + + + + اقرارکننده، اعتراف‌کننده + + + + + + چنگ زننده به دامن کسی + + + + + + آموزنده، تعلیم‌کننده + + + + + + برخلاف، برعکس + + + + + + غنیمت گیرنده، غنیمت شمرنده + + + + + + به فریاد رسنده، یاری‌کننده + + + + + + تغییر دهنده، دیگرگون‌شونده، قابل تغییر + + + بی ثبات، بی دوام + + + + + + افتراء زننده، تهمت زننده + + + + + + برانگیزانندهٔ فتنه + + + + + + فتوادهنده، قاضی + + + + + + خالی‌کننده + + + واریز‌کنندهٔ حساب + + + + + + گشادشونده + + + مفتقر، محتاج + + + اعلام‌کننده + + + رسنده، بالغ‌شونده + + + + + + روزه گشاینده + + + + + + جنگجو + + + + + + اعتراف‌کننده، اقرارکننده + + + + + + برگرداننده + + + + + + تقلیدکننده + + + + + + قی آورنده + + + + + + اقامت گزیده + + + + + + پوشاننده، جامه پوشنده + + + + + + اکتفاکننده + + + + + + آگاه، متوجه + + + + + + هرآنچه که باعث شکم روی باشد + + + + + + تمدیدکننده، طولانی‌کننده + + + + + + بیمار گرداننده، بیماری‌زا + + + + + + نتیجه دهنده، مفید، سودمند + + + + + + نتیجه دهنده + + + + + + + انتحال‌کننده، به خود نسبت دهنده (شعر دیگری را) + + + + + + رخنه دار و شکسته (شمشیر، آوند، دیوار و جز آن‌ها) + + + + + + وفاکننده، رواکنندهٔ حاجت + + + + + + نجات دهنده، رهایی + + + دهنده + + + + + + پاره‌شونده، دریده گردنده + + + + + + از جای کنده + + + منقطع + + + + + + دورشونده از اصل + + + + + + انعکاس یافته، برگشته + + + + + + توانگر، مال دار + + + + + + گشوده شده، شکافته + + + + + + دریده، شکافته شده + + + مردی که از رسوایی و بی پردگی باک ندارد، بی پروا + + + + + + کوشنده در کاری، کوشش‌کننده + + + + + + رویاروی، مقابل + + + + + + به وجود آورنده، آفریننده + + + + + + + تاریخ‌نویس + + + + + + دردآورنده، دردناک + + + + + + زندگانی بخشنده + + + + + + شکننده، شکنندهٔ پیمان + + + + + + کارگر ساختمان + + + + + + جدایی‌کننده + + + فایق، فاضل بر دیگر اشیا + + + سخن پریشان گوی + + + + + + نابودکننده، ویران‌کننده + + + + + + اطمینان دارنده + + + استوار، محکم + + + + + + در آینده، داخل‌شونده + + + به جا، به مورد + + + + + + سخن چین، نمام + + + + + + جانوری که در آب زندگی می‌کند + + + + + + + فروشونده، غروب‌کننده + + + + + + خورنده + + + + + + باربردار، حمال + + + چهارپا یا ارابه یا اتومبیلی که بار برد + + + + + + در ترکیب با واژه‌های دیگر معنی (پریشان‌کننده) دهد: خاطرپریش + + + به صورت اضافه معنای پریشان می‌دهد، زلف‌پریش + + + + + + کاه دهنده + + + + + + توبه‌کار، نادم + + + + + + جلب‌کننده، دلربا + + + + + + عفونی‌های جلدی + + + روشن، واضح + + + جلا + + + دهنده، پاک‌کننده + + + + + + + حج‌کننده، حج‌گزار + + + + + + زیانکار، زیان رسیده + + + + + + ساقط، افتاده + + + + + + چرانندهٔ گله + + + پشتیبان، نگهبان + + + حاکم، والی + + + + + + کسی که او را برای یافتن جای مناسب از پیش می‌فرستادند + + + پیشرو + + + جوینده + + + جاسوس + + + + + + مؤنث زاید + + + + + + سرایت‌کننده + + + رونده در شب + + + + + + سیر کننده + + + جاری، روان + + + همه + + + بقیهٔ چیزی + + + + + + شرح‌کننده، مفسر + + + + + + دلتنگ، بی‌آرام از غم + + + + + + + زننده، کسی که می‌زند + + + + + + راه‌رونده در شب + + + دزد، فالگیر + + + ستارهٔ صبح + + + + + + آینده + + + ناگاه در آینده + + + ناگاه روی‌داده، عارض + + + گذرنده غیر + + + + + + + جوینده، خواهان + + + دانشجوی علوم دینی + + + + + + مرد بدکردار، تبهکار + + + + + + نوازندهٔ چغانه + + + سرودگوی + + + + + + از پی آینده + + + جانشین، قائم مقام + + + + + + قربانی‌کنندهٔ شتر + + + زنی که آبستن نشود + + + + + + گوشه‌گیرنده، کسی که در مسجد یا هر جای دیگر برای عبادت گوشه بگیرد + + + + + + قصدکننده، آهنگ‌کننده + + + + + + آبادکننده + + + اقامت‌کننده در جای آباد + + + + + + بی‌وفا، خیانتکار + + + + + + سرزنش‌کننده، طعنه‌زننده + + + + + + زخم‌زننده + + + + + + نشسته + + + کسی که از رفتن به جنگ خودداری کرده + + + + + + قاطع + + + شکننده، کوبنده + + + + + + پیشوا، رهبر، فرمانده، سردار + + + + + + + بازاری، سوداگر + + + + + + ضامن + + + + + + پنهان‌شونده، پوشیده‌شونده + + + + + + گمارنده + + + + + + سخنگو + + + آن که شغلش در رادیو و تلویزیون گویندگی است + + + + + + گورکن، لحدساز + + + + + + آشکار، پیداشونده + + + درخشان + + + + + + تغییردهنده، بدل‌کننده + + + + + + مژده‌دهنده، بشارت‌دهنده + + + + + + باطل‌کننده، خراب + + + کننده + + + + + + آن که خود را بر زمین زند + + + بخیل + + + بی‌توجه + + + ابر بی‌باران + + + + + + اندوهناک، دردمند + + + + + + کسی که به علم الهیات اشتغال دارد، عابد، زاهد + + + + + + متفکر، صاحب تدبیر + + + + + + کسی که با تکبر و ناز راه می‌رود + + + + + + خجسته، فرخنده + + + + + + + آن که خود را شاعر پندارد + + + شاعرنما + + + + + + + جرعه‌جرعه خورندهٔ آب و مانند آن + + + فروخورندهٔ خشم + + + + + + افزون‌شونده + + + + + + آشتی‌کننده با دیگری، صلح‌کننده با یکدیگر + + + + + + با طرف دعوی نزد حاکم رونده + + + + + + + با یکدیگر حساب‌کننده + + + + + + بازاریاب، بازار گرم کن + + + + + + + به تکلف چابکی نماینده + + + + + + تصورکننده، خیال‌کننده + + + + + + دادخواه، شکایت‌کننده + + + + + + + در زمرهٔ لشکریان در آینده + + + + + + دیندار، با دیانت + + + + + + روبروشونده، مقابل‌شونده + + + + + + + زینت یافته، آراسته، صاحب تجمل + + + + + + شبیه به چیزی، ماننده به چیزی + + + + + + فروتن، خوار + + + + + + نوخواه، کسی که آداب و رسوم جدید را می‌پذیرد + + + + + + یادآوری‌کننده، به خاطر آورنده + + + + + + کسی که دارای تعصب باشد + + + + + + عادت‌کننده، خوگر + + + + + + دگرگون‌شده، تغییر حال یافته + + + آشفته، مضطرب + + + + + + مقابل، روبروی، دارای تقابل + + + + + + قطع‌کنندهٔ یکدیگر + + + دو خط که به یکدیگر برسند و همدیگر را قطع کنند (هندسه) + + + + + + کسی که امری را بر گردن گرفته باشد + + + + + + پرهیزگار، پارسا + + + + + + ستبر شده، ضخیم شده + + + + + + خودبین، مغرور، دارای تکبر + + + + + + + سرمه کشنده + + + + + + سخن گوینده + + + + + + + پذیرندهٔ کیفیتی + + + در فارسی کیف برنده، نشأه برنده + + + + + + از هم پاشیده + + + + + + با یکدیگر روبروشونده، دو چیز که در یک نقطه به هم رسند + + + + + + چیزی که از دیگری جدا و مشخص باشد + + + + + + سرکش، نافرمان + + + + + + جاگرفته، جایگزین + + + + + + توانگر، ثروتمند + + + + + + به پایان رسیده، آنچه انتها و پایان داشته باشد + + + + + + برابر یکدیگر + + + دو خط برابر با هم که هرچه امتداد داده شوند به هم نرسند، موازی، متوازی الاضلاع چهار ضلعی ای که اضلاع آن دو به دو با هم موازیند، متوازی السطوح فضایی که دارای شش وجه است و هر دو وجه رو به رو متساوی و موازیند + + + + + + اقامت‌کننده، مقیم‌شونده + + + + + + + نیک مشغول‌شونده در کاری + + + دور رونده در شهرها + + + + + + زاییده شده، تولد یافته + + + + + + همسایه، همجوار، در کنار دیگری، کسی که به قصد ثواب در کنار یک بنای مقدس اقامت می‌کند + + + + + + + دوری‌کننده، احترازکننده + + + + + + روبرو‌شونده + + + مقابل، برابر + + + + + + دوشنده + + + + + + نیک سوزاننده به آتش + + + آنچه موجب تشنگی گردد + + + دوایی را گویند که پس از مالیدن بر روی پوست بدن ایجاد سوزش و تحریک شدید کند، مانند: فرفیون، خردل و غیره + + + + + + کسی که لباس احرام بر تن دارد + + + + + + محاصره‌کننده + + + + + + تحصیل‌کننده و گردآورنده + + + دانش آموز، دانشجو + + + + + + شیرین گرداننده چیزی را + + + شیرین یابنده + + + + + + خفه‌شونده، گلوی فشرده شده + + + + + + سست‌کننده، آنچه که باعث رخوت و خواب و سستی اعصاب می‌شود، دارای ویژگی تخدیرکننده + + + + + + عمل خیر‌کننده + + + سخی + + + + + + نقش گیرنده، نفش پذیر + + + + + + انجام دهندهٔ کاری ناروا + + + + + + منتخب + + + مختص + + + متأثر، غمگین + + + + + + اجابت‌کننده + + + + + + آگاه، مطلع + + + + + + سبک شمرده، خو ار داشته + + + + + + هرچیز گرد و دایره مانند + + + + + + راه راست جوینده، به راه راست رونده + + + + + + نیک‌بختی‌جوینده، سعادت‌خواهنده + + + کسی که چیزی را به فال نیک گیرد + + + + + + یار گیرنده، همدم خواهنده + + + همراه دارنده + + + + + + طلب‌کنندهٔ علم + + + + + + عاریت خواه، کسی که چیزی را به عاریت گیرد + + + + + + یاری + + + خواهنده + + + + + + آنکه مهلت خواهد، مهلت خواهنده + + + انتظار دارنده + + + + + + گیرنده همه چیز را، همه را فراگیرنده + + + + + + برابر، هموار + + + + + + فراگیرنده، شامل‌شونده + + + + + + کسی که برای خدا شریک قایل باشد + + + + + + مهربان، مهربانی‌کننده + + + + + + شک‌کننده + + + شکاک + + + + + + به شوق آورده شده + + + + + + مشورت‌کننده، تدبیرکننده + + + + + + ترش‌رو + + + + + + در شمار آینده، معدودشونده + + + از حد درگذرنده + + + + + + گوشه نشین، کسی که برای عبادت در مسجد یا جای دیگر خلوت بگزیند + + + + + + عاجزکننده، اعجاز آورنده + + + + + + عیارگر، کسی که عیار زر و سیم را معین می‌کند + + + + + + آوازه خوان، سرودگوی + + + مطرب + + + + + + درنده + + + جانوری که شکار خود را بدرد + + + + + + ازالهٔ بکارت‌کننده + + + + + + تفتیش‌کننده، بازرس + + + + + + آن که تفریط کند + + + + + + نزدیک‌شونده + + + + + + روی آورنده + + + صاحب اقبال، خوشبخت + + + + + + بی پروا، کسی که بدون اندیشه به کاری خطرناک اقدام کند + + + + + + تقدیرکننده + + + + + + سوگند خورنده، قسم خورنده + + + + + + اکراه نماینده، ناخوش دارنده + + + + + + لعن‌کننده + + + + + + دیدارکننده، روبروشونده + + + + + + بوسه دهنده + + + آن که دهان وی با نقاب یا دهان بند بسته شده + + + + + + اصرار ورزنده، الحاح‌کننده + + + + + + تلطیف‌کننده، نازک‌کننده + + + + + + لبالب، پُر + + + + + + امتناع‌کننده، سرپیچی‌کننده + + + ناممکن، محال + + + + + + درگذراننده، امضاءکننده + + + + + + شکننده، نقض‌کننده + + + مخالف + + + + + + بیدار، هوشیار، آگاه + + + + + + چشم به راه، کسی که انتظار می‌کشد + + + + + + سود یابنده، نفع برنده + + + + + + زشت‌کننده + + + آلوده‌کنندهٔ ناموس کسی + + + مانده و فرسوده و لاغر‌کننده + + + + + + شادمان، خوشدل + + + + + + درهم کشیده، جمع شده + + + + + + تمام شده، به آخر رسیده + + + + + + کشف شده، نمایان شده + + + + + + از هم ریخته، ویران، خراب + + + + + + هلاک‌کننده، نابودکننده + + + + + + آن که شعر نیکو و ظریف گوید + + + + + + تهوع آور، قی آور + + + + + + هلاک‌کننده، مهلک + + + + + + اجاره دهنده، کرایه دهنده + + + + + + وحشت‌انگیز، ترس + + + آور + + + + + + حریص، آزمند + + + + + + رستگار‌شونده + + + پیروز، پیروزمند + + + کار سهل، آسان + + + + + + نجات‌یابنده، خلاص‌شونده + + + رهاننده، نجات‌دهنده + + + + + + نشرکننده، منتشر‌کننده + + + شخص یا مؤسسه ای که کتب و نشریات را چاپ و منتشر کند + + + + + + رمنده، نفرت دارنده + + + + + + + آن که از بیماری بیرون آمده و هنوز کاملاً تندرست نشده، از بیماری برخاسته، بیمارخیز + + + + + + کناره گیرنده، معرض + + + میل‌کننده، مایل + + + + + + هضم‌کننده + + + + + + میانجی + + + دلاُل + + + مرکز، ناحیه، کرسی + + + سبب، علت، انگیزه + + + + + + رسنده + + + پیوسته + + + + + + فراوان، زیاد + + + + + + آفرین! + + + + + + + مؤنث آنس، زن نیکو، خانم + + + + + + آرزومند، شایق + + + + + + بر سینه خفته + + + هلاک شده + + + + + + یخ بسته، منجمد + + + آنچه که زنده نیست و رُشد ندارد مانند سنگ + + + + + + + دروگر + + + + + + حصیر بافنده + + + محاسب، شمارنده + + + آنچه یا آن که سد نماید + + + + + + + خدمتکار زن، کنیز، کلفت + + + + + + فروتنی‌کننده + + + + + + آنچه که چشم را خیره کند + + + تیری که به زمین بخورد و سپس به سوی هدف رود + + + + + + غالب آمده، چربیده + + + + + + کسی که پیاده راه رود، پیاده + + + + + + بالا رونده، جلو رونده + + + افسونگر + + + تحصیل‌کرده + + + + + + ایستاده، بی‌حرکت + + + + + + جاری، روان + + + + + + رونده، مسافر + + + زاهد، عارف + + + + + + + شنونده + + + + + + + چرنده + + + + + + نادر، کمیاب + + + + + + پیرو، طرفدار + + + شیعه، شیعی + + + + + + شفاعت‌کننده + + + + + + نگاه‌دارنده + + + پرهیزگار + + + + + + خندان، خندنده + + + + + + طواف + + + کننده + + + شبگرد + + + + + + ظفر یابنده، پیروز، فیروز + + + + + + + ستیز کننده + + + کسی که از راه راست برگردد و منحرف شود + + + + + + غرس کننده + + + + + + جنگجو، کسی که در راه خدا می‌جنگد + + + + + + غصب‌کننده + + + + + + گناهکار، تبهکار + + + زناکار + + + + + + دردآورنده، دردناک + + + + + + نایابنده، کسی که چیزی یا کسی را نداشته باشد + + + زنی که شوهر یا فرزند خود را از دست داده باشد + + + + + + دورشونده، به نهایت‌رسنده + + + + + + + برنده، قطع‌کننده + + + + + + پنهان کننده، پوشنده + + + سرپوش، رازدار + + + نهفته، مستور + + + + + + سست و کاهل + + + + + + درنگ‌کننده + + + + + + برجسته، ممتاز + + + + + + + کینه‌ور، دشمن + + + + + + آنکه ارادهٔ کاری کند در شب و تصمیم گیرد + + + گفتگو کننده در شب + + + شبیخون آورنده + + + + + + پیروی‌کننده + + + + + + + جسم گیرنده + + + آن که بر کاری و عملی بزرگ شود + + + + + + دیگرگون‌شونده + + + جابه‌جاشونده + + + + + + بالارونده + + + + + + به دست گیرنده + + + + + + + به نسیه و وام خرید و فروش‌کننده باهم + + + + + + پراکنده + + + + + + جلب‌کننده، کشاننده + + + + + + جنبنده، لرزنده + + + + + + + چاپلوسی‌کننده، چاپلوس + + + + + + دارای نظم و ترتیب + + + + + + دلگیر، حسرت خورنده + + + + + + دورشونده، به یکسوشونده، کناره‌گیر + + + + + + + دوری‌کننده، احترازکننده + + + + + + حیران، حیرت‌زده، شگفت زده + + + + + + عزیز، ارجمند + + + قیمتی + + + + + + نازکننده، با ناز و کرشمه + + + + + + دردمندشونده از سختی و اندوه + + + + + + نزدیک‌شونده، نزدیک به یکدیگر + + + نامِ یکی ازبحور شعر که از هشت فعولن تشکیل شده‌است + + + + + + + تلف‌کننده، تباه‌کننده + + + + + + شهرنشین، دارای تمدن + + + + + + دو خط که نه متوازی باشند و نه متقاطع + + + دور‌شونده از یکدیگر + + + + + + مخالف و ضد یکدیگر + + + + + + هم وزن، برابر + + + + + + یگانه، فرد + + + + + + ترسیده، وحشت کرده + + + + + + سرپرست، مباشر، سرپرست املاک موقوفه + + + + + + مبارک و بابرکت + + + + + + فضل + + + حسن حال + + + + + + خشک‌کننده + + + دوایی که موجب از بین رفتن رطوبات یا تقلیل آن شود + + + + + + اجابت‌کننده، پاسخ دهنده، قبول‌کننده + + + + + + جنگجو، نبردکننده + + + + + + حساب‌کننده، حسابدار + + + + + + حمایت‌کننده، دفاع‌کننده + + + وکیل دادگستری + + + + + + آمیخته‌کننده + + + فساد‌کننده، تخلیط‌کننده، دو به هم زدن + + + + + + آن که عیب کالای خود را از خریداران پنهان کند + + + خدعه‌کننده + + + کسی که خود را مقدس جلوه دهد و نباشد + + + + + + مردُد، دو دل + + + + + + ریاکار، متظاهر + + + + + + آن که در شک و تردید باشد + + + + + + ربط داده شده، پیوسته + + + + + + + ترسنده، ترسان، خایف ، + + + + + + سست‌کننده + + + دارویی را گویند که به قوت حرارت و رطوبت خود قوام اعضای کثیفهٔ المسام را نرم و مسامات آن را وسیع بگرداند تا آن که به سهولت و آسانی فضول مجتمعه و محتبسهٔ در آن‌ها دفع شود، مانند ضماد شوید (شبت) و بذر کتان + + + + + + باعث زحمت، آزار + + + دهنده + + + + + + آغاز‌کننده، از سر گیرنده + + + کسی که در محکمه ای مغلوب شده مرافعهٔ خود را در محکمه ای بالاتر از سر گیرد، استیناف دهنده + + + + + + شادمان + + + + + + رهاکننده، آزادکننده + + + + + + چنگ زننده، پناه برنده + + + + + + به کار برنده، استعمال‌کننده + + + به کار برندهٔ لغت + + + + + + استقبال‌کننده، به پیشواز رونده + + + + + + به پشت خوابنده + + + + + + نفس از بینی کشنده + + + آن که آب یا مایعی دیگر در بینی استنشاق کند + + + + + + شتاب‌کننده + + + + + + آرزومند، مایل و راغب + + + + + + مبهم، نامعلوم + + + در اشتباه + + + + + + خریدار مجازاً: خواستار، خواهان + + + + + + شهرت دهنده + + + + + + شعبده باز، حقه باز + + + + + + راستکار، صواب یابنده + + + + + + سایه انداز، سایه دار + + + + + + اعتمادکننده + + + + + + به شگفت آورنده + + + خودبین، خودپسند + + + + + + بیان‌کنندهٔ علت + + + آورندهٔ دلیل + + + + + + چیز عجیب و غریب در آورنده + + + + + + جداشونده + + + + + + تباه‌کننده، فاسدکننده + + + + + + میانه‌رو، صرفه + + + جو + + + + + + اقتضاکننده، تقاضاکننده + + + شایسته، درخور + + + مطابق، موافق + + + سبب، موجب + + + + + + قناعت‌کننده، قانع + + + + + + قانع‌کننده + + + + + + آنچه کیفیت و حالتی پدید بیآورد، لذت بخش، کیف آور + + + + + + یکسان، برابر، مساوی + + + + + + آن که بهره می‌دهد + + + + + + بخیل، خسیس + + + + + + همنشین، هم صحبت + + + + + + نزاع‌کننده، کسی که با دیگری ستیزه می‌کند + + + + + + برگزیننده، اختیارکننده + + + + + + فاش، شایع + + + پراکنده، پاشیده + + + انتشار یافته + + + + + + نیست و نابود گشته + + + + + + ستاره‌شناس، کسی که به دانش اخترشناسی می‌پردازد + + + + + + بریده‌شونده + + + + + + فریفته‌شونده، گول خورنده + + + + + + پوشیده‌شونده، پنهان گردیده + + + ماه گرفته + + + + + + کهنه، فرسوده + + + + + + سوق یابنده، کشانیده + + + + + + پزنده + + + دوایی که خلط و ماده را بپزد و مهیای دفع کند + + + + + + درپیچیده‌شونده، ن وردیده + + + در فارسی: حاوی، مشتمل + + + + + + تیره گرداننده + + + ناخوش‌کننده + + + + + + جدا شده، بریده شده + + + + + + از میان رفته، نابود شده + + + + + + بخش بخش شده، قسمت شده + + + + + + نقش‌کننده + + + کنده کاری‌کننده (بر نگین و جز آن) + + + + + + برگشته، حال به حال شده + + + به هم خوردن حال + + + + + + تابان، درخشان + + + + + + هیجان آور، برانگیزنده + + + + + + سخن مختصر و کوتاه + + + + + + انس گرفته، همدم + + + + + + سرکش، طاغی + + + درخشنده، طلوع‌کننده + + + + + + حمل‌کننده، جابه‌جا‌کننده + + + نقل‌کننده، روایت‌کننده، + + + انتقال دهنده + + + + + + + زن نوحه‌کننده و زاری‌کننده بر شوی، + + + + + + سبب، جهت + + + + + + ضمیر اشاره برای اشخاص نزدیک + + + + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + + + + + سرکش، نافرمان + + + + + + علمدار، پرچمدار + + + + + + جهدکننده، کوشا + + + + + + کینه‌جوی، بداندیش + + + + + + + خدمتگزار، مستخدم + + + + + + پست‌کننده، خوار + + + کننده + + + + + + رونده، گذرنده + + + کوشنده + + + + + + گرو گذارنده + + + رهن‌گذارنده + + + ثابت، دائم + + + + + + + شناکننده، شناور + + + تندرونده، تندرو + + + + + + خورندهٔ خوشهٔ انگور با بن + + + نوشنده + + + + + + گذشته، پیشین + + + پیش‌رفته + + + + + + ادب‌کننده + + + رام‌کننده + + + + + + محرک، سوق + + + دهنده + + + + + + به کار وادارنده + + + دارندهٔ پیشه و کار + + + + + + + شکرکننده، سپاسگزار + + + + + + بلند، مرتفع + + + + + + صیحه‌زننده + + + + + + قصد کننده، اراده‌کننده، کوشش‌کننده + + + مسافر، رونده + + + + + + دشوار، پوشیده + + + + + + شکافنده، پاره‌کننده + + + + + + خاینده و جاونده + + + + + + بخش‌کننده، قسمت‌کننده + + + + + + از پی رونده، پیرو + + + + + + شکننده + + + + + + + بی‌دین، ملحد + + + + + + همهٔ مردم + + + بازدارنده + + + + + + درخشنده + + + + + + هرزه‌گوی + + + ناله‌کننده + + + + + + محوکننده + + + + + + گذشته (زمان) + + + فعلی است که بر زمان گذشته دلالت کند + + + در گذشته، مرده + + + برنده، قاطع + + + + + + ابداع‌کننده، اختراع‌کننده + + + بدعت‌گذارنده + + + + + + جامهٔ سفید پوشنده + + + سفید گرداننده (جامه و غیره) + + + + + + درنگ‌کننده + + + معاصر، کسی که در زمان نزدیک به زمان حال می‌زیسته + + + + + + دارای اهل و عیال، دارای همسر + + + + + + دست در کاری دارنده + + + کسی که مالی یا ملکی را در تصرف و اختیار خود دارد + + + حاکم، والی + + + محصل مالیاتی محل + + + + + + دارای تعادل + + + دارای اعتدال + + + + + + شکار جوینده + + + شکارکننده به حیله + + + + + + آمد و شد کننده + + + کسی که در امری به شک و تردید دچار است + + + + + + آشکار، آشکارشونده، ظاهرشونده + + + + + + آویخته، چنگ‌زننده + + + + + + با هم خصومت‌کننده + + + + + + به یکدیگر مهربانی‌کننده + + + + + + پیروی‌شده + + + + + + پیوسته، نزدیک به هم + + + + + + چشم به راه، منتظر + + + + + + خواهندهٔ چیزی، رغبت‌کننده، آرزو دارند + + + + + + خوی و عادت دیگری را گرفته + + + + + + داخل شده (در یکدیگر)، در میان آمده + + + + + + در بر دارنده، شامل + + + + + + رفیع، بلندپایه + + + + + + سپاس‌دار، شکرگزار، آن که تشکر می‌کند و سپاس به جا می‌آورد + + + + + + فراهم‌آمده، جمع گشته + + + + + + + کسی که خود را فریب‌خورده وانماید + + + + + + ممتاز، دارای تشخص + + + + + + منتظر، متوقع، چشم دارنده + + + + + + + بیراهه رونده، منحرف (از راه) + + + آن که از طریق صواب عدول کند + + + ستمکار، ظالم + + + + + + ضررکننده + + + افسوس خورنده + + + + + + فخرکننده + + + + + + متکبر، مغرور + + + + + + + آن که خود را فقیه معرفی کند + + + فقیه، دانشمند + + + + + + پیوسته، متحد به هم + + + + + + + بازایستنده از امری، اظهار کوتاهی نماینده + + + + + + قطره‌قطره چکیده + + + دسته‌های پیاپی آینده + + + + + + بسیارشونده، دارای کثرت + + + + + + تکیه‌کننده + + + + + + لباس پوشیده، به لباس کسی درآمده + + + + + + یکدیگر را مس‌کننده، به هم پیوندنده + + + + + + + خود را نگاه دارنده، خویشتن‌دار + + + چنگ در زننده + + + + + + مثل آورنده + + + + + + در مرکز جای گیرنده + + + فراهم آمده و جمع شده در یک نظام + + + متوجه و معطوف، دارای تمرکز + + + + + + چاپلوس + + + + + + + گسترنده + + + جاگیرنده + + + قادر (بر امری) + + + + + + موج زننده، موج دار + + + + + + یکی پس از دیگری، آنچه به نوبت بیاید + + + + + + یکی‌شونده (با هم) + + + در فارسی دو عدد را گویند که دارای یک یا چند مقسوم‌علیه باشند + + + + + + گمان برنده، خیال‌کننده + + + + + + محقق، بی شبهه و گمان + + + + + + جزای نیک دهنده + + + عطا‌کننده + + + + + + حریف در قمار، حریف در بازی نرد و شطرنج + + + فراهم‌کنندهٔ وسایل و اسباب کاری + + + مستوفی + + + + + + اجراءکننده، انجام دهنده، مجری حکم (قانون) کسی که حکم قانونی را به مرحلهٔ اجرا درآورد + + + + + + حل‌کننده، تحلیل برنده + + + مردی که با زن سه طلاقه ازدواج می‌کند و او را طلاق می‌دهد تا آن زن بتواند دوباره با همسر پیشین خود ازدواج کند + + + + + + حیله‌گر، مکار + + + + + + مرد متکبر و خودپسند + + + + + + با یکدیگر خصومت‌کننده + + + + + + گوناگون، جورواجور + + + + + + پاره‌پاره‌کننده، درنده + + + بسیار دروغگو + + + + + + اخلال‌کننده، فاسدکننده + + + + + + لباس به خود پیچیده + + + + + + کسی که دامن جامه را بلند سازد + + + آنکه بر مطلبی یا کتابی ذیلی نویسد + + + + + + هم‌معنی + + + + + + سود ده، نفع بخش، پُرسود + + + + + + دیده‌بان، چشم به راه + + + + + + ثابت، مستقر، جایگزین + + + + + + صاف‌کننده + + + رواق سازنده، معمار + + + + + + موافق، یاور + + + + + + اعتمادکننده + + + زنهار خواهنده + + + + + + نوکننده، نو گرداننده + + + + + + نگهبان + + + + + + آب خواهنده + + + مبتلا به بیماری استسقاء + + + + + + بلند برآمده + + + غلبه‌کننده، قهر‌کننده + + + + + + یاری خواهنده + + + + + + تفحص و تحقیق‌کننده + + + + + + راست، معتدل + + + + + + آنچه بودنش لازم است + + + موجب، مسبب + + + + + + استنباط‌کننده، درک‌کننده + + + + + + لایق، سزاوار + + + + + + مسلمان + + + + + + سیرکننده + + + + + + کسی که ورزش مشت زنی را انجام می‌دهد، بوکسور + + + + + + برافروخته، شعله‌ور، سوزان + + + + + + برخوردکننده، روبروشونده + + + + + + نمازگزار، نمازخوان، نمازگر + + + + + + ضرر رساننده، زیان آور + + + + + + پاک‌کنندهٔ نوشته + + + + + + یاری‌کننده، یاری گیرنده + + + + + + افسونگر، جادوگر + + + + + + به عمل آورنده، ابداع‌کننده + + + تزویر‌کننده (خط) + + + + + + تفسیرکننده، شرح دهنده + + + + + + تفویض‌کننده، واگذارنده + + + + + + جاری‌کننده + + + فیض + + + دهنده، فیض بخش، فیض دهنده + + + + + + بهوش آینده، بیدار شده + + + + + + آن که بدون لیاقت و لزوم و به ابرام پرسش کند + + + آن که بی اندیشه شعر گوید و خواند + + + آن که از خود چیزی نو آورد + + + آن که مطلبی را پیشنهاد کند تا مورد بحث دانشمندان قرار گیرد + + + + + + یار‌شونده، قرین‌شونده + + + نزدیک + + + در نجوم ستاره ای که به ستارهٔ دیگر نزدیک شود + + + + + + خواننده، کسی که تعلیم قرائت قرآن بدهد + + + + + + قانونگزار + + + + + + بر رو درافتاده، سرنگون شده + + + آن که سر خود را به زیر اندازد و به زمین نگاه کند + + + + + + به وجود آورنده، موجد + + + + + + برچسبنده + + + + + + + الهام‌کننده، تلقین‌کننده + + + خدای تعالی ، + + + + + + امتحان‌کننده، آزماینده + + + + + + ملال آور، بیزارکننده، اطناب ممل تطویل کلام به حدی که ملال آورد + + + + + + میراننده + + + خدای تعالی + + + + + + نصیحت‌کننده، پند دهنده + + + + + + مجادله‌کننده، مباحثه‌کننده + + + + + + داوری‌کننده با دیگری در حسب و نسب + + + افتخار‌کننده + + + رماننده، نافر + + + + + + برانگیخته شده، مبعوث گشته + + + + + + نصرت یابنده، غالب + + + + + + آن که پای را به هنگام لغزش نگاه می‌دارد + + + آن که پس از افتادن برمی‌خیزد + + + به شده از بیماری، ناقه + + + + + + برخیزنده + + + + + + فرودآینده + + + + + + آگاه سازنده، ترساننده + + + + + + خواننده و آورندهٔ شعر از دیگری + + + راه نماینده + + + هجو‌کننده + + + + + + فرو رونده (در آب) + + + + + + هجرت‌کننده آن که از وطن خود هجرت کرده در جایی دیگر مسکن گیرد + + + + + + وصیت‌کننده + + + + + + + پرهیزکار، پارسا + + + + + + هزل‌گوینده + + + + + + هلاک‌شونده، نیست‌شونده + + + + + + یابنده، دارنده + + + + + + گناهکار + + + + + + نگاه‌دارنده، حافظ + + + حامی + + + + + + پدر، اب + + + + + + + حاکم، فرمانروا + + + + + + سست، بی اساس + + + + + + در حق کسی، برای کسی + + + از جهت، از حیث + + + در برابر، در مقابل (برای مقایسه) + + + + + + این + + + + + + + سفرکننده + + + رسول، سفیر + + + کاتب + + + زن گشاده‌روی + + + + + + + آنچه که پدید آید + + + آنچه که حق ایجاد کرده + + + بیرون‌رونده + + + آنچه که از جایی به جایی (داخل مملکت و مخصوصاً خارج آن) فرستاده شود + + + + + + بلع‌کننده، بلعنده + + + + + + گناهکار، مجرم + + + + + + بی‌بیم، بی خوف، ایمن + + + + + + نگهبان، مراقب، نگه‌داری‌کننده + + + + + + آن که به کسی یا چیزی پناه برد، زینهاری، ملتجی، پناهنده اجتماعی کسی که به خاطر رواج تعصب دینی یا اجتماعی یا ناامنی و جنگ در میهنش به کشور دیگری پناه می‌برد، پناهنده سیاسی کسی که به خاطر مبارزهٔ سیاسی و مخالفت با حکومت کشورش به کشور دیگری پناه می‌برد + + + + + + گرداننده، سازنده + + + جعل‌کننده + + + + + + جنگنده، رزم‌کننده + + + + + + + مؤنث خاتم، پایان، انجام + + + + + + پیونددهنده + + + واسطهٔ میان دو تن + + + + + + رحم‌کننده، بخشاینده + + + + + + + زناکار + + + + + + زوال‌یابنده + + + + + + پیشی‌گیرنده + + + قبلی، گذشته + + + + + + + گرم، حار + + + + + + + سلب‌کننده + + + رباینده + + + برهنه‌کننده + + + + + + غافل + + + فراموشکار + + + + + + سؤال‌کننده + + + گدا + + + + + + شفا دهنده + + + راست، درست + + + + + + راغب، مشتاق + + + + + + شکارکننده، شکاری + + + + + + زرگر + + + ریخته‌گر + + + + + + + پرواز کننده، پرنده + + + مرغ + + + + + + بوی خوش دهنده + + + دوست‌دارندهٔ عطر، عطردوست + + + + + + همه، همگان + + + عموم مردم + + + + + + انباشته، پُر + + + گروه بسیاری از مردم که یک جا گِرد هم آیند + + + + + + یورش‌برنده، به ناگاه گیرنده + + + + + + نازنده، فخرکننده + + + + + + جداکنندهٔ دو چیز از هم + + + + + + آفریننده، خالق + + + روزه گشاینده، افطار کننده + + + + + + رهایی‌یابنده، رستگارشونده + + + + + + درهم و برهم، هرج و مرج + + + + + + کوتاهی‌کننده + + + + + + مطیع، فرمانبردار + + + + + + اندوهگین، متألم + + + + + + درنگ‌کننده + + + + + + پیشی‌گیرنده، چیزی که ناگهان به خاطر آید + + + + + + پاک، منزه (خاص خدا) + + + + + + فرا خواننده + + + آن که با دیگری دعوی و مرافعه دارد + + + معنی ای که معنی دیگر را به خاطر آورد + + + + + + بردبار، شکیبا + + + بردارندهٔ بار + + + + + + موافقت‌کننده + + + چیزی که مانند و موافق چیزی دیگر باشد + + + + + + از یک جنس، مشابه + + + + + + امیدوار، چشم به راه + + + + + + آگاه به امور شرعی، معتقد به امور شرعی + + + + + + آن که خود را معالجه کند + + + + + + + به هم خورنده با چیزی، با هم زننده، با هم کوبنده + + + + + + پیشرفته، رشد کرده + + + + + + تتبع‌کننده + + + + + + + در پی رونده، پیرو + + + + + + زره پوششنده، زره پوش + + + + + + + زن‌کننده، ازدواج‌کننده + + + + + + سرگشته، حیران، حیرت‌زده + + + + + + سلاح پوشنده + + + + + + شی ای که اجزای آن به هم متصل نباشد + + + + + + کسی که از کاری روی برتابد و خود را به کار دیگر مشغول سازد + + + + + + کسی که خود را به نادانی می‌زند + + + + + + + آن که به عمق چیزی رسیده، ژرف‌اندیش + + + + + + دارای ثروت یا مقام اجتماعی برجسته + + + ظاهر، آشکار + + + محقق، ثابت + + + + + + خورنده + + + + + + تفاوت دارنده، از هم جدا + + + + + + با هم یکی شده، یک دل و یک جهت، متحد شده + + + مصمم، قصد‌کننده، متفق القول، هم‌صدا، هم‌کلام، متفق‌الرأی، همدستان، هم‌رأی + + + + + + قانع + + + بازنشسته + + + آمادهٔ پذیرش + + + + + + کامل شده، به کمال رسیده + + + + + + گدا + + + + + + شکسته‌شونده + + + + + + + به هم چسبنده، متصل + + + + + + طولانی، دائمی + + + + + + رونده + + + + + + توجه‌کننده، روی‌کننده + + + با حواس متمرکز + + + + + + به ورطه افتنده، فرو رونده + + + به کار دشوار افتاده + + + + + + امیدوار، چشم دارنده + + + + + + دور‌شونده، دوری گزیننده + + + در هندسه خط مستقیمی را مجانب یک منحنی می‌گویند که چون نقطه ای در روی منحنی حرکت کند و به سمت بی‌نهایت رود، فواصل این نقطه از این خط مرتب کم شود و میل به صفر کند + + + + + + کوشش‌کننده، کوشا + + + + + + اجازه دهنده، رخصت دهنده + + + ولی و مصلح امر یتیم + + + بندهٔ مأذون در تجارت + + + + + + به شهر آینده + + + حاضر‌شونده + + + + + + کسی که کالاها را در انبار نگه می‌دارد تا پس از گران شدن بفروشد + + + + + + دستخوش احتلام، دستخوش انزال در خواب + + + + + + تعیین‌کنندهٔ حد و کرانهٔ چیزی + + + تیز‌کننده (کارد و جز آن) + + + + + + نویسنده، نگارنده + + + آزادکننده + + + + + + آشکار، ظاهر + + + + + + ناچیز، کوچک + + + + + + سرخ‌کننده + + + دوایی که به قوت گرمی و جذب خود عضو را گرم گرداند + + + + + + خبررسان، خبردهنده + + + + + + پنهان شده، پنهان‌شونده + + + + + + رابطه دارنده + + + مواظب و ملازم سرحد + + + مروج ایمان + + + + + + تشویق‌کننده، برانگیزاننده + + + + + + ازدحام‌کننده، انبوهی‌کننده + + + + + + پاک‌کننده، پاکیزه‌کننده + + + معرف، شناساننده + + + آنکه شاهدان عادل را تزکیه و آنها را به پاکی و پارسایی توصیف کند + + + + + + شریک، سهیم + + + + + + دلیل جوینده، طلب برهان‌کننده + + + + + + سست و نرم‌شونده + + + + + + طرف مشورت، رایزن + + + متخصصی که از کشورهای خارج برای اصلاح وزارتخانه یا اداره ای استخدام کنند، مستشار سفارت رای زن سفارت + + + + + + مسلط، مرتفع و بلند + + + + + + درخشان + + + منتشر + + + + + + شتابنده، شتاب‌کننده + + + + + + آن که طلب کفایت کند، کفایت خواه + + + + + + یاری خواهنده، استمداد‌کننده + + + + + + خواهندهٔ روشنایی + + + + + + مستی آور + + + + + + فریبنده و اغواکننده + + + + + + مثل و مانند، دارای شباهت + + + + + + آرزومند، خواهان + + + + + + صدادار، دارای صدای بلند + + + حرف صدادار + + + + + + آوازخوان، نوازنده + + + رقاص + + + کسی که در کار طرب باشد + + + + + + بسیار تاریک و ظلمانی + + + + + + کسی که تعبیر خواب می‌کند + + + + + + گرونده، باوردار، عقیده دار + + + + + + اعتناکننده، اهتمام‌کننده + + + + + + راست و درست شده + + + میانگین چیزی، معدل نمرات حاصلِ قسمت مجموع نمره‌های دروس هر شاگرد + + + + + + تسلیت دهنده، تعزیت گوینده + + + + + + آن که کاری را تکرار کند + + + معملی که درسی را برای شاگردانش اعادهکند، مقرر، دانشیار + + + + + + با کینه و غرض + + + + + + افزون‌کننده + + + نیکویی‌کننده، بخشش‌کننده + + + + + + پیروی‌کننده + + + کسی که پشت سر امام جماعت نماز خواند + + + + + + قوت دهنده، نیرودهنده + + + + + + کافی و کفایت دهنده + + + + + + کامل‌کننده + + + + + + چسبیده به هم، متصل + + + + + + متلاطم، مواج، خروشان (موج، دریا) + + + + + + لجام‌کننده + + + + + + آمیزنده، مخلوط‌کننده + + + + + + یاری دهنده + + + + + + شورکننده، نمک ریزنده + + + + + + دورو، ریاکار + + + + + + پهن و گسترده شده + + + گشاده‌رو، خندان + + + دستخوش انبساط + + + + + + آگاه سازنده، بیدارکننده + + + + + + جابه‌جاشونده + + + + + + پیروزمند، کامیاب، کامروا + + + + + + کج شده، به راه کج رونده + + + + + + پریشان، ناراحت، بی آرام + + + + + + حیوان تند و آسان رونده + + + یکی از بحرهای عروضی + + + + + + مجرد، تنها + + + + + + اثر پذیرفته + + + خجل، شرمسار + + + + + + شکست خورده، مغلوب شده + + + + + + + خبردهنده، آگاه‌کننده + + + + + + یکتاپرست + + + + + + + توزیع‌کننده، پخش‌کننده + + + + + + خوارکننده، ضعیف‌کننده + + + + + + پشیمان + + + + + + نداکننده + + + + + + + عاملی که معمول خود را نصب دهد + + + برپا‌کننده، نصیب‌کننده + + + دشمن دارنده + + + آن که علی بن ابی طالب و خاندان او را دشمن دارد + + + + + + + یاری گر، یاری‌کننده + + + + + + تر و تازه‌کننده + + + بسیار سبز + + + + + + + نظرکننده، بیننده + + + کسی که بر کاری نظارت و رسیدگی می‌کند + + + مباشر، کارگزار + + + + + + آن که می‌دمد، کسی که پف می‌کند، دمنده (در آتش و خیک) + + + غذایی که نفخ آورد، باددار + + + + + + نقدکننده، جداکنندهٔ خوب از بد + + + + + + بازدارنده، نهی‌کننده + + + + + + آواز دهنده، آوازکننده + + + + + + گریزنده، فرارکننده + + + + + + نگاه‌دارنده، حافظ + + + شنونده، گوش دهنده + + + + + + دورشونده + + + + + + اندرون + + + پرده + + + رشته + + + + + + رهاکننده، ترک‌کننده + + + + + + قاطع، کسی که در قصد خود تردید نکند + + + قطع‌کننده، برنده + + + + + + ماهر، استاد + + + دانا + + + + + + + پاسدار، پاسبان + + + + + + + پابرهنه + + + + + + آن که وی را بول به شتاب گرفته باشد، حبس‌کنندهٔ ادرار + + + + + + ماده و دوایی که زایل‌کننده و سترندهٔ موی باشد مانند زرنیخ و نوره و سفید آب و خاکستر و غیره، حلاق + + + + + + آفریننده، خلق‌کننده + + + + + + + دفع کننده، دورکننده + + + حامی + + + + + + روزی‌دهنده، روزی + + + رسان + + + + + + به راه راست رونده + + + راه راست یافته + + + + + + نویسنده، محرر + + + + + + سوار، سواره + + + + + + واسطهٔ میان رشوه‌گیرنده و رشوه‌دهنده + + + + + + کسی که آب یا شراب به دیگران دهد + + + + + + ریزان، فروریزنده + + + + + + فراگیرنده + + + حاوی، در بردارنده + + + + + + باریک‌اندام + + + دقیق، لطیف + + + + + + زیان‌رساننده، ضرر رساننده + + + + + + عیادت‌کننده + + + بازگردانده، آنچه که به کسی بازگردد از پول یا چیز دیگر + + + + + + پناه آورنده + + + + + + غلوکننده + + + گران‌بها + + + + + + بایر، خراب + + + + + + + گمراه + + + + + + نابودشونده، نیست‌شونده + + + ناپایدار، بی‌ثبات + + + + + + کُشنده + + + + + + + ظالم، ستمکار + + + بازگردنده از حق + + + + + + + ساکن، متوطن + + + + + + + دروغگو، ناراست + + + + + + گزنده، نیش‌زننده + + + + + + چسبنده، دوسنده + + + + + + ادب‌آموخته + + + + + + تأکید شده + + + استوار، محکم + + + + + + تقسیم‌کننده به حصه‌ها + + + متفرق، پریشان + + + + + + + آشکارشونده، پیدا، هویدا + + + آشکارکننده + + + + + + مرسوم، معمول، متداول + + + شناخته‌شده + + + + + + خیال‌کننده + + + متکبر + + + + + + آن که آشکارا فسق کند + + + + + + آن که با دیگری عهد و پیمان بندد، هم عهد + + + + + + آهسته و کم‌کم پیش رونده + + + + + + برهم فرو ریزنده + + + + + + بست‌نشین، اعتصاب‌کننده + + + + + + پارسا، زاهد + + + + + + پراکنده‌شونده + + + + + + پرستش‌کننده، عابد + + + + + + ترتیب داده شده، پدیدآمده + + + + + + تسلی داده، دل نواخته شده + + + + + + جای‌گزین + + + + + + جستجوکننده، تلاش‌کننده + + + + + + راه یابنده + + + + + + زینت یافته، آراسته‌شونده + + + + + + شکایت‌کننده، گله‌کننده + + + + + + + صاحب تشرف، بزرگ‌منش + + + + + + غلبه‌کننده، مسلط + + + + + + کسی که مطلبی را از زبانی به زبان دیگر ترجمه کند + + + + + + عذرآورنده، بهانه آورنده + + + سخت، دشوار + + + + + + + کوشش‌کننده، ساعی + + + سختی کشیده + + + آن که به تکلف کاری انجام دهد + + + + + + آزاررسان، آزاردهنده + + + + + + کناره‌گیرنده + + + + + + پراکنده، پریشان + + + + + + قرعه زننده میان یکدیگر + + + نیزه زننده با هم + + + + + + پراکنده‌شونده + + + + + + گوناگون + + + کسی که پی درپی تغییر عقیده بدهد + + + رنگارنگ + + + + + + تمنا‌کننده + + + خواهشمند، مستدعی + + + + + + دارای تناسب و شباهت با یکدیگر + + + + + + بیدار، آگاه، تنبیه شده + + + + + + سنگین‌کننده، گران‌سنگ گرداننده + + + + + + بسیار کوشنده + + + کسی که در فقه به درجهٔ اجتهاد رسیده باشد + + + + + + پوست‌کننده + + + صحاف + + + + + + بیماری که به حبس بول دچار شود + + + بیماری که برای بهبود از بند شدن بول حقنه گیرد + + + نسجی که در آن خون زیاد جمع شده باشد، نسجی که خون بیشتری در آن مانده باشد و در نتیجه دچار ازدیاد حجم شده باشد + + + جمع‌شونده، گرد آینده (شیر، خون) + + + + + + نیکوکار + + + + + + حاشیه نویسنده بر کتابی + + + + + + تحقیق‌کننده، اهل تحقیق + + + + + + دشمنی‌کننده، دشمن + + + + + + سبک‌کننده + + + کاهنده + + + + + + داخل‌کننده، درآورنده + + + + + + گناهکار + + + + + + + سود گیرنده، ربح گیرنده + + + + + + پرورش دهنده + + + + + + لرزان، لرزنده، دارای ارتعاش + + + + + + لغزش دهنده + + + + + + زه زه گوینده، آفرین گوی + + + + + + دورو، تزویرکننده + + + + + + + شب زنده دار، شب + + + نشین + + + افسانه گو، قصه سرا، + + + + + + اجازه خواهنده + + + + + + خبر خواهنده از کسی + + + + + + شرق‌شناس کارشناس + + + + + + طلب‌کنندهٔ شاهد، جویندهٔ گواه + + + + + + مشورت‌کننده، آن که با دیگری مشورت کند + + + + + + بی‌نیاز + + + + + + شنونده، مستمع آزاد کسی که + + + بدون آن که شاگرد رسمی باشد + + + در کلاس یا خطابه حاضر شود و به درس و نطق گوش دهد + + + + + + به کرکس ماننده + + + + + + ساکن + + + + + + + بدرقه‌کننده، + + + + + + دارای کار و شغل + + + + + + شکایت‌کننده، گله‌کننده + + + + + + تشریح‌کننده، بیان‌کننده + + + + + + کسی یا چیزی که از بلندی بر کسی یا چیزی دیگر مسلط باشد + + + ناظر، نگرنده + + + + + + بیزار، رمیده + + + + + + هم صحبت، هم‌نشین + + + + + + تصحیح‌کننده، کسی که غلط‌های نوشته یا کتابی را تصحیح کند + + + + + + نقاش، صورتگر + + + + + + از حد درگذرنده، بیدادکننده + + + + + + آماده‌کننده، مهیاکننده + + + + + + اعدام‌کننده، نابود + + + سازنده + + + فقیر، تهیدست + + + + + + درویش، تنگدست + + + + + + عیالمند، عیال‌وار + + + + + + چیزی که دارای مواد غذایی باشد + + + غذا دهنده + + + دارای ارزش غذایی + + + + + + اندیشمند + + + + + + فانی‌کننده، تباه سازنده، نابودکننده + + + + + + مقاومت‌کننده، ایستادگی‌کننده + + + + + + قادر، توانا + + + + + + از پی کسی رونده، در پی در آینده، پیروی‌کننده + + + + + + اقدام‌کننده + + + + + + اکرام‌کننده، احترام‌کننده + + + احسان‌کننده + + + + + + نسبت کفر + + + دهنده به کسی + + + کفاره دهنده + + + + + + + به زحمت و مشقت اندازنده + + + تعیین‌کنندهٔ تکلیف + + + + + + + همراه، نوکر + + + ثابت قدم + + + + + + دیدارکننده، ملاقات‌کننده + + + + + + التماس‌کننده، خواهش‌کننده + + + + + + التیام یافته، به شده، بهبود یافته + + + به هم پیوسته + + + + + + + بیان‌کننده + + + خلاصه‌کننده + + + + + + جدا‌کننده، تمیز دهنده + + + ارزیاب مالیات، تشخیص دهندهٔ مالیات + + + + + + جار زننده، جارچی + + + + + + طردکننده، نیست‌کننده + + + + + + جداکنندهٔ درم خوب از بد + + + انتقاد‌کننده + + + + + + کسی که خود را به کسی یا چیزی، نسبت کند + + + + + + فرصت طلب، کسی که پی فرصت می‌گردد و آن را غنیمت می‌شمارد + + + + + + به انتها رساننده، به پایان + + + + + + فسرده، یخ بسته، یخ زده + + + + + + پست شده، به نشیب افتاده + + + + + + پاک‌کننده + + + پاک داننده + + + در تصوف: سالکی که ذات حق را به صفت تنزیه شناسد و از حیثیت ظهور در مناظر ندیده و ندانسته باشد + + + + + + آنکه یا آنچه سبب فراموشی گردد + + + + + + نویسنده، دبیر + + + + + + جدا شده + + + + + + غم خوار، اندوه مند + + + توجه‌کننده به کاری + + + + + + خوار دارنده، اهانت‌کننده + + + + + + رساننده، پیوند دهنده + + + + + + غم‌انگیز، دردناک + + + + + + به وهم افکننده، به شک اندازنده + + + + + + نشأت گیرنده، پیداشونده + + + + + + آن که خبر مرگ کسی را آورده، خبر مرگ دهنده + + + خبر بد دهنده + + + + + + پرده درنده، پرده در + + + + + + تمام، کامل + + + وفاکننده + + + + + + باخبر، آگاه + + + + + + حیران، سرگشته + + + شیفته، عاشق + + + + + + کارکننده + + + مهارت‌کننده + + + کوشنده + + + زراعت‌کننده + + + + + + خشک، سخت، رطب و یابس به هم بافتن کنایه از: سخنان در هم و برهم و بی‌معنی گفتن + + + + + + من + + + مخفف انا الحق (من خدایم) + + + + + + مؤنث آکل، خورنده + + + خوره، جذام + + + کنایه از زن زشت و بدترکیب + + + + + + غرورآور، تکبرآور + + + + + + میوه‌دار + + + آبستن، حامله + + + + + + + گریه کننده + + + + + + بالارونده + + + آسانسور + + + + + + جر دهنده، حرفی که مدخول خود را جر دهد مدخول را مجرور گویند و مجموع را جار و مجرور + + + + + + جفاکار + + + + + + ستمکار، ظالم + + + آن که از راه حق به راه باطل میل کند + + + + + + دربردارنده، دارا + + + گردآورنده، جامع + + + + + + اشک ریز، اشک + + + فشان، سرشک بار + + + خاک نمناک + + + + + + مال‌اندوز، گنج‌نهنده + + + + + + آنکه شعری از بحر رجز بخواند + + + کسی که رجز خواند، ارجوزه‌خوان + + + + + + بازدارنده + + + + + + نیزه‌زن + + + نیزه‌دار + + + + + + پرتاب‌کننده + + + تیرانداز + + + + + + بودهنده + + + بوکننده + + + + + + صاف، صافی + + + خوش‌آیند + + + + + + پاکیزه و نیکو + + + کسی که در رفاه و نعمت به سر برد + + + نمو کننده + + + + + + رونده + + + نیست‌شونده + + + باطل، بیهوده + + + + + + سخره‌کننده، مسخره‌کننده + + + + + + سدکننده + + + استوار + + + راست‌گفتار + + + + + + کوشا، سعی‌کننده + + + شتابنده + + + سخن‌چین + + + + + + چشمهٔ روان + + + دشت خوفناک، دوزخ + + + + + + شکایت‌کننده، گله‌کننده + + + + + + مشهور، معروف + + + + + + فاش، آشکار + + + پراکنده، رایج + + + + + + روزه‌دار + + + + + + نیزه‌زننده + + + طعنه + + + زننده، عیب‌جویی‌کننده + + + + + + نافرمان، سرکش + + + ستمکار، ظالم + + + + + + + فرمانبردار، طبع، مطیع + + + خواهان، راغب + + + + + + پیمان‌کننده + + + کسی که قرارداد می‌بندد + + + اجراکنندهٔ صیغهٔ عقد + + + + + + غش‌کننده + + + کسی که مردم را بفریبد + + + + + + دورکننده‌ٔ اندوه، گشایندهٔ غم + + + + + + بالا رونده + + + + + + میوه‌فروش + + + مرد خوش‌طبع + + + + + + فریب‌دهنده + + + + + + خراشنده و جدا کنندهٔ پوست + + + دارویی که بر اثر سوزاندن قسمت‌های سطحی جلد قسمتی از آن را از قسمت‌های عمقی جلد جدا کند از قبیل قسط و زرآوند + + + + + + + آن که از پس چیزی آید و بدو پیوندد، رسنده، واصل + + + پیوند شونده، متصل، آینده، بعدی + + + + + + چسبنده + + + + + + لمس‌کننده + + + + + + ملامت‌کننده، نکوهنده + + + + + + آمیزنده، مخلوط‌کننده + + + + + + متمایز، جدا از یکدیگر + + + + + + + بدل گیرنده چیزی را + + + تبدیل‌شونده + + + + + + شکننده + + + هلاک‌کننده + + + + + + خندان، خنده‌رو + + + + + + + خویشتن آراینده + + + به تکلف نیکو سیرتی نماینده + + + آن که صنعتی یا هنری را به خود ببندد + + + + + + + در پناه‌شونده + + + خویشتن‌دار + + + + + + جوینده + + + قصدکننده + + + + + + برهنه‌گردنده + + + مجردشونده + + + + + + درهم آمیخته، مختلط + + + مشتبه + + + + + + انبوه شده، روی هم جمع‌شده + + + + + + آنچه معمول و مرسوم باشد + + + + + + برخلاف یکدیگر + + + + + + جداشونده + + + + + + راست و درست‌شونده + + + + + + زینت‌یابنده، آراسته + + + + + + سرکش، دلیر + + + + + + کسی است که همیشه به خدمت بندگان خدا قیام کند و خدمت او خالی از هواها و شوایب نفسانی باشد ولیکن هنوز به حقیقت زهد نرسیده باشد گاه به سبب غلبهٔ ایمان بعضی از خدمات او در محل قبول افتد و گاه به واسطهٔ غلبهٔ هوا خدمت او قبول نشود + + + + + + کسی که اظهار تصوف و درویشی کند + + + + + + معامله‌کننده، داد و ستدکننده + + + + + + یکدیگر را دوست گیرنده، دوست + + + + + + بسیار، بی شمار + + + + + + سخت، دشوار + + + + + + جستجوکننده، کاوش‌کننده + + + + + + + کسی که امور را به زیرکی و هوش دریابد، زیرک و باهوش + + + + + + اندیشمند + + + + + + کسی که حرفه‌های گوناگون بلد باشد + + + کسی که به کاری یا هنری از روی تفنن بپردازد + + + + + + دگرگون‌کنندهٔ هرچیزی + + + مردم نادرست و دغل + + + + + + محکم‌کننده، استوارکننده + + + + + + کسی که بر دیگری در بسیاری مال غلبه کند و ببالد + + + + + + + دوبار کرده یا گفته شده + + + دو دله‌شونده، مردد، + + + + + + اندوهگین، کسی که دریغ و افسوس می‌خورد + + + + + + مانند هم، شبیه یکدیگر + + + + + + کسی که خود را به مریضی می‌زند + + + + + + تمام‌کنندهٔ چیزی، کامل‌کننده + + + در دستور زبان کلمه ای که همراه حرف اضافه می‌آید و به فعل یا به صفت نسبت داده می‌شود + + + در ریاضی به هر یک از دو زاویه ای که مجموع اندازه‌های آن ۹۰ درجه باشد + + + دنباله، بقیه + + + + + + جداشونده + + + + + + به هم رسنده + + + پیوسته، متوالی + + + + + + تکیه‌کننده + + + + + + کسی که دست به دامان دیگری بزند، توسل‌جوینده + + + + + + پوشندهٔ جامه + + + آن که شمشیر به پهلو آویزد + + + + + + میوه دار، باردار، مفید + + + + + + ثناگوی، ستایشگر + + + + + + مؤنث مجری، قوهٔ مجریه یکی از قوای سه گانهٔ مملکت که موظف به اجرای قوانین و مقررات است و آن شامل رئیس مملکت و هیئت وزیران است + + + + + + گچ کار + + + + + + پناه دهنده، فریادرس + + + + + + گردآورنده و بیان‌کنندهٔ احادیث + + + + + + حق دارنده، دارای حق + + + + + + خارش آورنده، دوایی که در تماس با پوست بدن تولید خارش کند مانند کبیکج و گزنه + + + + + + سپرنده، تحویل دهنده + + + گرداننده، تغییر دهنده + + + حواله‌کننده + + + ناقه‌ای که آبستن شود بعد از گشن یافتن + + + + + + حیران‌کننده + + + + + + به هم آمیخته، درهم ریخته، مخلوط شده + + + + + + خراج دهنده، اداکنندهٔ باج + + + + + + آن که کسی را جانشین خود کند، جانشین‌کننده + + + آن که وعدهٔ خلاف کند + + + کبوتر بچه ای که پر بر پایش رسته باشد + + + پسر خوش شکل + + + + + + تخمیرکننده + + + + + + تدبیرکننده، صاحب تدبیر + + + + + + هلاک‌کننده، دمار برآورنده + + + + + + به یاد آورنده + + + وعظ‌کننده، واعظ + + + + + + ریاضت کش، ریاضت کشیده + + + + + + کوچ‌کننده، راهی‌شونده + + + + + + باز ایستنده از کاری + + + + + + + ترغیب‌کننده، مشوق ، + + + + + + رواج دهنده، ترویج‌کننده + + + + + + ریاکننده + + + + + + شب زنده دار + + + + + + طلب تمام‌کننده + + + + + + برانگیزاننده، مشوق + + + + + + سخن محال، امری که محال و غیرممکن باشد، از حالی به حالی درآینده + + + + + + + کسی که به زبان‌ها و آداب و عادات غریبان (اروپاییان و آمریکاییان) آگاه است + + + + + + جویندهٔ خبر، طالب آگاهی + + + بیدار، هوشیار + + + + + + حساب دار، دفتردار خزانه + + + تمام فراگیرنده + + + + + + اسراف‌کننده، ولخرج + + + + + + سرایت‌کننده + + + + + + خاموش، ساکت + + + + + + آن که تصمیم به کاری گرفته + + + + + + حمایت‌کننده، پشتیبان + + + + + + گشاینده، بازکننده + + + + + + + نیاز دارنده + + + + + + سودمند، با فایده + + + + + + رفیق و قرین‌شونده + + + پیوسته، متصل + + + + + + قمارکننده، قمارباز + + + + + + روشنایی گیرنده + + + اقتباس‌کننده + + + + + + نزدیک‌شونده + + + + + + آن که کجی چیزی را راست کند + + + ارزیاب، قیمت‌کننده + + + + + + مکافات‌کننده، پاداش دهنده + + + مساوی، برابر + + + + + + کشف‌کننده + + + + + + احاطه‌کننده، فراگیرنده + + + پناه جوینده + + + + + + خلط‌کننده، مشتبه سازنده + + + + + + پناه جوینده، پناه برنده + + + + + + به خود پیچیده، پیچ در پیچ‌شونده + + + نوعی از حرکت نبض که مانند ریسمان پیچیده محسوس شود + + + + + + داخل‌شونده + + + + + + کسی که در راه خدا چیزی دهد، نفقه دهنده + + + + + + شکسته + + + + + + آفتاب یا ماه یا سیاره ای که تمام یا بخشی از آن گرفته شده باشد + + + + + + راه راست یافته + + + + + + ایمن‌کننده، نگهبان + + + از نام‌های خداوند + + + + + + دوست دارنده + + + + + + به دردآورنده، دردناک + + + + + + بی‌مانند، بی‌نظیر + + + + + + کسی که از روی کتاب یا نوشته‌ای نسخه برداری می‌کند + + + باطل‌کننده، نسخ‌کننده + + + + + + دورکننده، ردکننده + + + + + + رشدکننده، نموکننده + + + + + + فرود آینده، نازل + + + ستارهٔ هبوط‌کننده + + + + + + + آنچه در دل گذرد + + + + + + تابناک، مشتمل + + + + + + فرود آینده، رخ دهنده + + + حاصل + + + راست، درست + + + وضع یا کیفیت قرار گرفتن + + + + + + بخشنده، عطاکننده + + + + + + سخنی که در آن کنایه و منظوری غیر از ظاهر سخن، نهفته باشد + + + + + + + بازرگان سوداگر + + + + + + فرودآینده + + + اقامت‌کننده، مقیم + + + + + + انکار کنندهٔ حق کسی با وجود دانستن آن + + + + + + روا + + + مباح + + + نافذ + + + + + + آن که می‌جنگد، رزم‌کننده + + + + + + + حساب‌کننده، شمارگر + + + + + + سرگشته، سرگردان + + + + + + چراکننده، چرنده + + + کسی که در نعمت و آسایش باشد + + + + + + کسی که پارگی را درست کند + + + عالِم به انجام کار + + + + + + برگشت‌کننده، بازگردنده + + + + + + + مراقب، چشم‌دارنده + + + چشم به راه + + + منجم، اخترشمار + + + + + + + مایل، خواهان + + + + + + رساننده، بالنده + + + زیبا + + + + + + منع‌کننده، بازدارنده + + + بانگ‌زننده + + + + + + فرشتگانی که میان زمین و آسمان تسبیح کنند + + + + + + سجده‌کننده + + + + + + خشمگین + + + + + + حاجب، دربان + + + خادم معبد + + + + + + سیاحت‌کننده، جهانگرد + + + + + + بالارونده، صعودکننده + + + + + + آزمند، حریص + + + امیدوار + + + + + + فشار دهنده، فشارنده + + + + + + نگاه‌دارنده، حفظ‌کننده + + + بازدارنده، بازدارنده از لغزش و خطا + + + + + + سرکش، نافرمان + + + گناهکار + + + + + + گناهکار، بدکار + + + مردی که با زن شوهردار رابطهٔ نامشروع دارد + + + + + + گیرنده، در مشت گیرنده + + + + + + مانع + + + به زور بر کاری وادارنده + + + + + + + قیافه‌شناس + + + پی‌شناس، پی بر + + + + + + ایستاده، برپا + + + پایدار، استوار + + + + + + پوشنده (جامه)، جامه پوشیده + + + + + + چسبنده + + + + + + بازی‌کننده، بازیگر + + + + + + به شمشیر زننده + + + سوزنده + + + + + + عالم غیب، عالم الهی، جهان مینوی + + + + + + مزاح‌کننده، بذله‌گو + + + + + + رونده + + + سخن چین + + + + + + موج‌زننده + + + + + + تبسم‌کننده + + + + + + سردکننده، خنک‌کننده + + + پایین آورندهٔ درجهٔ حرارت بدن + + + کاهندهٔ تمایلات جنسی + + + + + + پیروی‌کننده + + + + + + رسنده، واصل + + + رساننده + + + + + + محزون، مغموم + + + + + + + برنده و منقطع از ماسوای خدا + + + + + + ماهر + + + + + + متغیر + + + ترش‌رو + + + آسمان ابر دار + + + + + + بیمارشونده + + + استثناکننده در سوگند + + + بیرون آینده از قسم به کفاره + + + در فارسی تحلیل‌شونده + + + + + + از پی هم آینده + + + + + + از حد گذرنده، تجاوزگر + + + + + + اندیشه‌کننده + + + + + + برابرشونده با هم + + + + + + بلور شده، چیزی که شبیه بلور شده باشد + + + + + + جفت پذیرنده + + + + + + خلاف‌کننده + + + + + + + دفع‌کنندهٔ یکدیگر در کارزار، + + + + + + رمنده + + + + + + + سخت حریص + + + + + + کسی که اسم یا لقبی در شاعری برای خود انتخاب کرده باشد، دارای تخلص + + + + + + + واجب‌کننده، لازم‌کننده + + + + + + متدین، دیندار + + + + + + ضدهم، ناجور + + + + + + منشعب‌شده، شاخه‌شاخه شده + + + + + + گذشته، پیشین + + + + + + درخواست‌کننده + + + + + + پیشی گیرنده + + + دارای تقدم + + + زمان پیشین + + + + + + راست‌شونده، قوام گیرنده + + + در فارسی قیمتی، گران بها + + + + + + برابر، همسان + + + + + + + همراه باشنده + + + وابسته + + + + + + کشیده‌شونده + + + قابل ارتجاع + + + + + + مالک‌شونده، متصرف + + + + + + پارسا، پرهیزگار + + + + + + حرمت نگاه دارنده + + + + + + افروزنده، فروزان، نورانی + + + + + + درنگ‌کننده، در یک جا ایستاده + + + + + + آن که به خدا توکل کند + + + + + + جلب‌کننده، کشنده + + + + + + نوکننده، تازه‌کننده + + + در هر قرن (صد سال) فردی ظهور نماید و آیین اسلام را تازه کند که او را مجد نامند + + + + + + تحسین‌کننده، ستاینده + + + + + + حاوی، شامل + + + + + + + احراز‌کننده، گرد آورنده + + + پناهگاه دهنده، در حرز‌کننده + + + استوار‌کننده + + + + + + + تحریک‌کننده، ورغلاننده، مشوق + + + + + + + استوار گرداننده + + + در حصن‌کننده + + + گرداگرد شهر را برآورنده + + + + + + از حرم بیرون آینده + + + مرد شکنندهٔ حرمت حرام + + + مردی که هیچ بر عهدهٔ خود ندارد + + + مردی که ماه حرام یا امر حرام را حرمت ننهد + + + + + + آن که متعه دهد زن مطلقه را + + + کسی که روی را با زغال سیاه کند + + + سری که پس از ستردن بر آن موی برآید + + + جوجه ای که پر برآورد + + + + + + خلاف‌کننده، ناموافق، ضد + + + برعکس، واژگون + + + + + + دزدی‌کننده، کسی که اختلاس می‌کند + + + + + + مراعات‌کننده + + + + + + برگشته از دین + + + + + + باعث، علت، سبب‌شونده + + + + + + تسبیح‌کننده + + + + + + انس گیرنده + + + + + + پناه دهنده، دادخواه + + + + + + درخواست‌کننده + + + + + + زیاده طلب + + + رنجیده خاطر، گله مند + + + + + + پاکیزه‌شونده، پاک گردنده + + + + + + توانگر، کسی که استطاعت و توانایی دارد + + + + + + فرو رونده، غوطه ور شده، غرقه + + + + + + کسی که طلب فیض کند + + + + + + پیوسته، همیشه، ادامه‌دار + + + + + + + استنادکننده + + + + + + سر باز زننده و خودداری‌کننده از انجام کاری + + + کسی که از رؤیت احضاریه یا حکم قرار دادگاه خودداری کند + + + + + + گرم‌کننده، حرارت دهنده + + + + + + تسکین دهنده، آرام‌کننده + + + + + + مشورت‌کننده، طرف شور + + + + + + سازش‌کننده + + + + + + دردسر دهنده، آنچه که باعث زحمت شود، مصدع اوقات شدن باعث دردسر شدن + + + + + + تصنیف‌کننده، نویسنده + + + + + + گمراه‌کننده + + + + + + تاریک و تیره‌شونده + + + پی یکدیگر‌شونده + + + راست روان + + + + + + کسی که به کاری یا چیزی عادت کرده باشد + + + + + + گوشه‌گیر، عزلت گزین + + + + + + عزت دهنده + + + + + + رشک برنده، غبطه خورنده + + + + + + آن که می‌شوید + + + آن که خوشبوی به می‌مالد + + + + + + آنکه یا آنچه که اندوه را از دل دور کند + + + + + + شادی آور، فرح بخش + + + + + + شاعری که سخن شگفت و عجیب آورد + + + + + + تولید جراحت‌کننده + + + + + + قراردهنده، تعیین‌کننده + + + تقریرکننده، بیان‌کننده + + + کسی که درس استاد را برای دانشجویان تقریر و شرح کند، دانشیار + + + + + + کسی که قدم کوتاه بردارد + + + آنکه مقرمط نویسد + + + + + + دادگر، عادل + + + + + + چاه کن + + + + + + تکبیرگوینده در نماز جماعت + + + + + + پنهان دارنده + + + + + + سرمه به چشم کشیده + + + کسی که در سختی افتاده باشد + + + + + + بسیارآورنده + + + آن که بسیار نویسد + + + توانگر، مال دار + + + + + + کافر، بی‌دین + + + + + + لازم گرداننده + + + + + + اندازنده (بر زمین و جز آن) + + + املاء‌کننده + + + + + + روشن، آشکار + + + کسی که جلای وطن کرده و از میهن خود بیرون رفته + + + + + + کج، خمیده، خط منحنی خطی است که نه راست باشد نه شکسته + + + + + + منقطع، بریده + + + باتبختر رونده + + + + + + درج شده، گنجیده + + + شده + + + + + + دفع‌شونده، بیرون ریزنده، دورشونده + + + + + + گوشه نشین، گوشه + + + گیر + + + + + + برکنده، از بن کنده + + + + + + انکارکننده، ردکننده + + + + + + میزبان + + + خدمهٔ هواپیما + + + + + + اذیت‌کننده، آزار رساننده + + + در فارسی، بداندیش، حیله‌گر + + + + + + یقین دارنده، یقین‌کننده + + + + + + + بزرگ، بزرگوار + + + کسی که دارای هوش و استعداد فوق‌العاده باشد + + + + + + پنددهنده، نصیحت‌کننده + + + + + + آن که به جادویی ورد می‌خواند و می‌دمد، ساحر، جادوگر + + + شعبده باز + + + + + + ناتمام، نارسا، ناقص العقل کم خرد، احمق، ناقص الاعضاء آن که در اعضای بدنش نقصی باشد، ناقص الخلقه آن که دارای نقص مادرزادی باشد، ناقص العضو آن که عضوی از اعضای بدنش ناقص باشد + + + + + + مرد زن دار + + + زن شوهردار + + + + + + غارت‌کننده، غنیمت گیرنده + + + + + + جانشین، نایب الزیاره کسی که از طرف دیگری بقعهٔ متبرکی را زیارت کند، نایب الحکومه الف + + + کسی که به نیابت از طرف حاکم شهری را اداره کند ب + + + بخشدار (فره)، نایب التولیه کسی که از طرف متولی امور بقعه یا موقوفه ای را اداره کند + + + + + + توبه‌کننده + + + + + + بر سویی آینده، آینده + + + نزد کسی رونده + + + + + + دریابنده، درک‌کننده + + + پیدا‌کننده + + + + بخش + + + برای + + + پاره + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + به باور قدما جن یا پری که همزاد انسان باشد + + + متکبر، لاف‌زن + + + سرگشته، حیران + + + هلاک‌شونده + + + مؤنث جازم + + + حرفی که چون بر فعل درآید آخر آن را ساکن گرداند + + + دوراندیش، هوشیار + + + حس‌کننده + + + حکایت‌کننده، بیان‌کننده + + + ستاینده، ستایشگر + + + کهنه، فرسوده + + + آب که به شدت از محل ریزد، ریزان + + + سودبخش، سودآور، نافع + + + کوچ‌کننده، رحلت‌کننده + + + ترک کننده، رهاکننده + + + بالابرنده، بلند کننده + + + بردارندهٔ قصه به شاه یا امیر، عرض حال دهنده + + + رکوع‌کننده + + + فروتنی + + + رام‌کنندهٔ ستوران + + + دزد + + + تابان + + + برافراشته + + + آشکار + + + پراکنده + + + قصه‌گو، افسانه‌گو + + + واقعه (اعم از خیر و شر) + + + انسان یا جانوری که از سمت راست شخص برآید + + + بیدار + + + نافرمان، سرکش + + + ده یک گیرنده + + + شیطان + + + فتنه‌انگیزنده + + + کسی که ارادهٔ فجور با زنان کند + + + گمراه‌کننده + + + بوی خوش دهنده + + + مسلط‌شونده، چیره‌شونده + + + کوبندهٔ در و مانند آن + + + فال‌زننده به قرعه + + + موجود، موجودشونده + + + امردباز، غلام‌باره + + + ستایش‌کننده، مدح + + + کننده + + + دشمنی‌کننده + + + رسنده به چیزی + + + درک‌کننده، دریابنده + + + آوردن الفاظی است در ابتدای کلام که موهوم ذم باشد و بقیهٔ کلام به نحوی آورده شود که رفع توهم گردد + + + برافروزندهٔ آتش جنگ + + + جنگ‌کننده + + + سنگ‌شده، سخت‌گشته + + + در فارسی به کسی گویند که حاضر به درک و پذیرش نوآوری‌ها نیست + + + آواز خواننده، زمزمه‌کننده + + + بصیر و دانا، دقیق + + + به تکلف کاری‌کننده + + + پی درپی‌شونده، متوالی + + + پیشی گیرنده (بر یکدیگر) + + + تجزیه‌شونده + + + تظاهرکننده + + + دارندهٔ صفتی + + + در پی یکدیگر شونده + + + ساخته‌شده، صورت گرفته + + + کسی که مباشر کار و شغلی است + + + گمان‌کننده، شک‌کننده + + + نویسنده، دبیر + + + خود را به عرب مانند کننده + + + چیره‌شونده + + + گشایش یابنده (از تنگی و دشواری) + + + گشایش خاطر یابنده + + + خوشی جوینده + + + برعهده گیرنده + + + کسی که به دیگری تقرب کند، نزدیکی جوینده + + + عهده‌دار، کفیل + + + موجود شده، به وجود آمده + + + تمام‌کننده، کامل‌کننده + + + کج شده و خمیده شده + + + آنچه که به چیزی میل کند + + + برخوردار از چیزی، بهره‌مند + + + کسی که عمره (زیارت بیت الله با شرایط خاص) به جا آورد + + + چنگ در زننده + + + بازدارنده + + + با نسق و ترتیب، منظم، مرتب + + + پیاپی، پشت سرهم + + + آماسیده، ورم کرده + + + تجویز شده، روا داشته شده، اجازه‌نامه + + + احیاءکننده، زنده‌کننده + + + ویران‌کننده + + + خطاکار، گناهکار + + + خفه‌کننده + + + در علم عروض «مفعولن» چون در حشو بیت افتد و از «مفاعیلن» منشعب باشد، آن را مخنق خوانند + + + خیال‌کننده + + + دفاع‌کننده + + + دوام دهنده، ادامه دهنده + + + باریک گردانیدن + + + کار دقیق‌کننده + + + نکته‌های دقیق پیدا‌کننده + + + دلالت‌کننده، راهنما + + + خوار دارنده + + + نامه فرستنده + + + بازگشت‌کننده + + + کهنه پسند + + + اراده‌کننده، ارادتمند + + + کهنه، دیرینه، مرض مزمن بیماری ای که کهنه شده باشد + + + زایل‌کننده + + + دوای خواب‌آور + + + خودسر، خودرأی + + + صاحب بصیرت + + + خدمت‌کننده، مجازاً: کارمند + + + طالب استراحت + + + شفا جوینده، بهبود خواهنده + + + آمرزش خواه + + + فریادخواه، دادخواه + + + استفاده‌کننده، فایده گیرنده، بهره‌مند + + + یاری خواهنده + + + دلیر و توانا + + + رم‌کننده، رمنده + + + نور جوینده ستاره ای که از خود نور ندارد + + + غالب، چیره‌شونده + + + هرچیزی که باعث شکم روی شود + + + خیره سر، خودرأی + + + خبر دهنده، آگاه‌کننده + + + ناله‌کننده + + + عذر آورنده + + + اقرارکننده، اعتراف‌کننده + + + چنگ زننده به دامن کسی + + + آموزنده، تعلیم‌کننده + + + برخلاف، برعکس + + + غنیمت گیرنده، غنیمت شمرنده + + + به فریاد رسنده، یاری‌کننده + + + تغییر دهنده، دیگرگون‌شونده، قابل تغییر + + + بی ثبات، بی دوام + + + افتراء زننده، تهمت زننده + + + برانگیزانندهٔ فتنه + + + فتوادهنده، قاضی + + + خالی‌کننده + + + واریز‌کنندهٔ حساب + + + گشادشونده + + + مفتقر، محتاج + + + اعلام‌کننده + + + رسنده، بالغ‌شونده + + + روزه گشاینده + + + جنگجو + + + اعتراف‌کننده، اقرارکننده + + + برگرداننده + + + تقلیدکننده + + + قی آورنده + + + اقامت گزیده + + + پوشاننده، جامه پوشنده + + + اکتفاکننده + + + آگاه، متوجه + + + هرآنچه که باعث شکم روی باشد + + + تمدیدکننده، طولانی‌کننده + + + بیمار گرداننده، بیماری‌زا + + + نتیجه دهنده، مفید، سودمند + + + نتیجه دهنده + + + انتحال‌کننده، به خود نسبت دهنده (شعر دیگری را) + + + رخنه دار و شکسته (شمشیر، آوند، دیوار و جز آن‌ها) + + + وفاکننده، رواکنندهٔ حاجت + + + نجات دهنده، رهایی + + + دهنده + + + پاره‌شونده، دریده گردنده + + + از جای کنده + + + منقطع + + + دورشونده از اصل + + + انعکاس یافته، برگشته + + + توانگر، مال دار + + + گشوده شده، شکافته + + + دریده، شکافته شده + + + مردی که از رسوایی و بی پردگی باک ندارد، بی پروا + + + کوشنده در کاری، کوشش‌کننده + + + رویاروی، مقابل + + + به وجود آورنده، آفریننده + + + تاریخ‌نویس + + + دردآورنده، دردناک + + + زندگانی بخشنده + + + شکننده، شکنندهٔ پیمان + + + کارگر ساختمان + + + جدایی‌کننده + + + فایق، فاضل بر دیگر اشیا + + + سخن پریشان گوی + + + نابودکننده، ویران‌کننده + + + اطمینان دارنده + + + استوار، محکم + + + در آینده، داخل‌شونده + + + به جا، به مورد + + + سخن چین، نمام + + + جانوری که در آب زندگی می‌کند + + + فروشونده، غروب‌کننده + + + خورنده + + + باربردار، حمال + + + چهارپا یا ارابه یا اتومبیلی که بار برد + + + در ترکیب با واژه‌های دیگر معنی (پریشان‌کننده) دهد: خاطرپریش + + + به صورت اضافه معنای پریشان می‌دهد، زلف‌پریش + + + کاه دهنده + + + توبه‌کار، نادم + + + جلب‌کننده، دلربا + + + عفونی‌های جلدی + + + روشن، واضح + + + جلا + + + دهنده، پاک‌کننده + + + حج‌کننده، حج‌گزار + + + زیانکار، زیان رسیده + + + ساقط، افتاده + + + چرانندهٔ گله + + + پشتیبان، نگهبان + + + حاکم، والی + + + کسی که او را برای یافتن جای مناسب از پیش می‌فرستادند + + + پیشرو + + + جوینده + + + جاسوس + + + مؤنث زاید + + + سرایت‌کننده + + + رونده در شب + + + سیر کننده + + + جاری، روان + + + همه + + + بقیهٔ چیزی + + + شرح‌کننده، مفسر + + + دلتنگ، بی‌آرام از غم + + + زننده، کسی که می‌زند + + + راه‌رونده در شب + + + دزد، فالگیر + + + ستارهٔ صبح + + + آینده + + + ناگاه در آینده + + + ناگاه روی‌داده، عارض + + + گذرنده غیر + + + جوینده، خواهان + + + دانشجوی علوم دینی + + + مرد بدکردار، تبهکار + + + نوازندهٔ چغانه + + + سرودگوی + + + از پی آینده + + + جانشین، قائم مقام + + + قربانی‌کنندهٔ شتر + + + زنی که آبستن نشود + + + گوشه‌گیرنده، کسی که در مسجد یا هر جای دیگر برای عبادت گوشه بگیرد + + + قصدکننده، آهنگ‌کننده + + + آبادکننده + + + اقامت‌کننده در جای آباد + + + بی‌وفا، خیانتکار + + + سرزنش‌کننده، طعنه‌زننده + + + زخم‌زننده + + + نشسته + + + کسی که از رفتن به جنگ خودداری کرده + + + قاطع + + + شکننده، کوبنده + + + پیشوا، رهبر، فرمانده، سردار + + + بازاری، سوداگر + + + ضامن + + + پنهان‌شونده، پوشیده‌شونده + + + گمارنده + + + سخنگو + + + آن که شغلش در رادیو و تلویزیون گویندگی است + + + گورکن، لحدساز + + + آشکار، پیداشونده + + + درخشان + + + تغییردهنده، بدل‌کننده + + + مژده‌دهنده، بشارت‌دهنده + + + باطل‌کننده، خراب + + + کننده + + + آن که خود را بر زمین زند + + + بخیل + + + بی‌توجه + + + ابر بی‌باران + + + اندوهناک، دردمند + + + کسی که به علم الهیات اشتغال دارد، عابد، زاهد + + + متفکر، صاحب تدبیر + + + کسی که با تکبر و ناز راه می‌رود + + + خجسته، فرخنده + + + آن که خود را شاعر پندارد + + + شاعرنما + + + جرعه‌جرعه خورندهٔ آب و مانند آن + + + فروخورندهٔ خشم + + + افزون‌شونده + + + آشتی‌کننده با دیگری، صلح‌کننده با یکدیگر + + + با طرف دعوی نزد حاکم رونده + + + با یکدیگر حساب‌کننده + + + بازاریاب، بازار گرم کن + + + به تکلف چابکی نماینده + + + تصورکننده، خیال‌کننده + + + دادخواه، شکایت‌کننده + + + در زمرهٔ لشکریان در آینده + + + دیندار، با دیانت + + + روبروشونده، مقابل‌شونده + + + زینت یافته، آراسته، صاحب تجمل + + + شبیه به چیزی، ماننده به چیزی + + + فروتن، خوار + + + نوخواه، کسی که آداب و رسوم جدید را می‌پذیرد + + + یادآوری‌کننده، به خاطر آورنده + + + کسی که دارای تعصب باشد + + + عادت‌کننده، خوگر + + + دگرگون‌شده، تغییر حال یافته + + + آشفته، مضطرب + + + مقابل، روبروی، دارای تقابل + + + قطع‌کنندهٔ یکدیگر + + + دو خط که به یکدیگر برسند و همدیگر را قطع کنند (هندسه) + + + کسی که امری را بر گردن گرفته باشد + + + پرهیزگار، پارسا + + + ستبر شده، ضخیم شده + + + خودبین، مغرور، دارای تکبر + + + سرمه کشنده + + + سخن گوینده + + + پذیرندهٔ کیفیتی + + + در فارسی کیف برنده، نشأه برنده + + + از هم پاشیده + + + با یکدیگر روبروشونده، دو چیز که در یک نقطه به هم رسند + + + چیزی که از دیگری جدا و مشخص باشد + + + سرکش، نافرمان + + + جاگرفته، جایگزین + + + توانگر، ثروتمند + + + به پایان رسیده، آنچه انتها و پایان داشته باشد + + + برابر یکدیگر + + + دو خط برابر با هم که هرچه امتداد داده شوند به هم نرسند، موازی، متوازی الاضلاع چهار ضلعی ای که اضلاع آن دو به دو با هم موازیند، متوازی السطوح فضایی که دارای شش وجه است و هر دو وجه رو به رو متساوی و موازیند + + + اقامت‌کننده، مقیم‌شونده + + + نیک مشغول‌شونده در کاری + + + دور رونده در شهرها + + + زاییده شده، تولد یافته + + + همسایه، همجوار، در کنار دیگری، کسی که به قصد ثواب در کنار یک بنای مقدس اقامت می‌کند + + + دوری‌کننده، احترازکننده + + + روبرو‌شونده + + + مقابل، برابر + + + دوشنده + + + نیک سوزاننده به آتش + + + آنچه موجب تشنگی گردد + + + دوایی را گویند که پس از مالیدن بر روی پوست بدن ایجاد سوزش و تحریک شدید کند، مانند: فرفیون، خردل و غیره + + + کسی که لباس احرام بر تن دارد + + + محاصره‌کننده + + + تحصیل‌کننده و گردآورنده + + + دانش آموز، دانشجو + + + شیرین گرداننده چیزی را + + + شیرین یابنده + + + خفه‌شونده، گلوی فشرده شده + + + سست‌کننده، آنچه که باعث رخوت و خواب و سستی اعصاب می‌شود، دارای ویژگی تخدیرکننده + + + عمل خیر‌کننده + + + سخی + + + نقش گیرنده، نفش پذیر + + + انجام دهندهٔ کاری ناروا + + + منتخب + + + مختص + + + متأثر، غمگین + + + اجابت‌کننده + + + آگاه، مطلع + + + سبک شمرده، خو ار داشته + + + هرچیز گرد و دایره مانند + + + راه راست جوینده، به راه راست رونده + + + نیک‌بختی‌جوینده، سعادت‌خواهنده + + + کسی که چیزی را به فال نیک گیرد + + + یار گیرنده، همدم خواهنده + + + همراه دارنده + + + طلب‌کنندهٔ علم + + + عاریت خواه، کسی که چیزی را به عاریت گیرد + + + یاری + + + خواهنده + + + آنکه مهلت خواهد، مهلت خواهنده + + + انتظار دارنده + + + گیرنده همه چیز را، همه را فراگیرنده + + + برابر، هموار + + + فراگیرنده، شامل‌شونده + + + کسی که برای خدا شریک قایل باشد + + + مهربان، مهربانی‌کننده + + + شک‌کننده + + + شکاک + + + به شوق آورده شده + + + مشورت‌کننده، تدبیرکننده + + + ترش‌رو + + + در شمار آینده، معدودشونده + + + از حد درگذرنده + + + گوشه نشین، کسی که برای عبادت در مسجد یا جای دیگر خلوت بگزیند + + + عاجزکننده، اعجاز آورنده + + + عیارگر، کسی که عیار زر و سیم را معین می‌کند + + + آوازه خوان، سرودگوی + + + مطرب + + + درنده + + + جانوری که شکار خود را بدرد + + + ازالهٔ بکارت‌کننده + + + تفتیش‌کننده، بازرس + + + آن که تفریط کند + + + نزدیک‌شونده + + + روی آورنده + + + صاحب اقبال، خوشبخت + + + بی پروا، کسی که بدون اندیشه به کاری خطرناک اقدام کند + + + تقدیرکننده + + + سوگند خورنده، قسم خورنده + + + اکراه نماینده، ناخوش دارنده + + + لعن‌کننده + + + دیدارکننده، روبروشونده + + + بوسه دهنده + + + آن که دهان وی با نقاب یا دهان بند بسته شده + + + اصرار ورزنده، الحاح‌کننده + + + تلطیف‌کننده، نازک‌کننده + + + لبالب، پُر + + + امتناع‌کننده، سرپیچی‌کننده + + + ناممکن، محال + + + درگذراننده، امضاءکننده + + + شکننده، نقض‌کننده + + + مخالف + + + بیدار، هوشیار، آگاه + + + چشم به راه، کسی که انتظار می‌کشد + + + سود یابنده، نفع برنده + + + زشت‌کننده + + + آلوده‌کنندهٔ ناموس کسی + + + مانده و فرسوده و لاغر‌کننده + + + شادمان، خوشدل + + + درهم کشیده، جمع شده + + + تمام شده، به آخر رسیده + + + کشف شده، نمایان شده + + + از هم ریخته، ویران، خراب + + + هلاک‌کننده، نابودکننده + + + آن که شعر نیکو و ظریف گوید + + + تهوع آور، قی آور + + + هلاک‌کننده، مهلک + + + اجاره دهنده، کرایه دهنده + + + وحشت‌انگیز، ترس + + + آور + + + حریص، آزمند + + + رستگار‌شونده + + + پیروز، پیروزمند + + + کار سهل، آسان + + + نجات‌یابنده، خلاص‌شونده + + + رهاننده، نجات‌دهنده + + + نشرکننده، منتشر‌کننده + + + شخص یا مؤسسه ای که کتب و نشریات را چاپ و منتشر کند + + + رمنده، نفرت دارنده + + + آن که از بیماری بیرون آمده و هنوز کاملاً تندرست نشده، از بیماری برخاسته، بیمارخیز + + + کناره گیرنده، معرض + + + میل‌کننده، مایل + + + هضم‌کننده + + + میانجی + + + دلاُل + + + مرکز، ناحیه، کرسی + + + سبب، علت، انگیزه + + + رسنده + + + پیوسته + + + فراوان، زیاد + + + آفرین! + + + مؤنث آنس، زن نیکو، خانم + + + آرزومند، شایق + + + بر سینه خفته + + + هلاک شده + + + یخ بسته، منجمد + + + آنچه که زنده نیست و رُشد ندارد مانند سنگ + + + دروگر + + + حصیر بافنده + + + محاسب، شمارنده + + + آنچه یا آن که سد نماید + + + خدمتکار زن، کنیز، کلفت + + + فروتنی‌کننده + + + آنچه که چشم را خیره کند + + + تیری که به زمین بخورد و سپس به سوی هدف رود + + + غالب آمده، چربیده + + + کسی که پیاده راه رود، پیاده + + + بالا رونده، جلو رونده + + + افسونگر + + + تحصیل‌کرده + + + ایستاده، بی‌حرکت + + + جاری، روان + + + رونده، مسافر + + + زاهد، عارف + + + شنونده + + + چرنده + + + نادر، کمیاب + + + پیرو، طرفدار + + + شیعه، شیعی + + + شفاعت‌کننده + + + نگاه‌دارنده + + + پرهیزگار + + + خندان، خندنده + + + طواف + + + کننده + + + شبگرد + + + ظفر یابنده، پیروز، فیروز + + + ستیز کننده + + + کسی که از راه راست برگردد و منحرف شود + + + غرس کننده + + + جنگجو، کسی که در راه خدا می‌جنگد + + + غصب‌کننده + + + گناهکار، تبهکار + + + زناکار + + + دردآورنده، دردناک + + + نایابنده، کسی که چیزی یا کسی را نداشته باشد + + + زنی که شوهر یا فرزند خود را از دست داده باشد + + + دورشونده، به نهایت‌رسنده + + + برنده، قطع‌کننده + + + پنهان کننده، پوشنده + + + سرپوش، رازدار + + + نهفته، مستور + + + سست و کاهل + + + درنگ‌کننده + + + برجسته، ممتاز + + + کینه‌ور، دشمن + + + آنکه ارادهٔ کاری کند در شب و تصمیم گیرد + + + گفتگو کننده در شب + + + شبیخون آورنده + + + پیروی‌کننده + + + جسم گیرنده + + + آن که بر کاری و عملی بزرگ شود + + + دیگرگون‌شونده + + + جابه‌جاشونده + + + بالارونده + + + به دست گیرنده + + + به نسیه و وام خرید و فروش‌کننده باهم + + + پراکنده + + + جلب‌کننده، کشاننده + + + جنبنده، لرزنده + + + چاپلوسی‌کننده، چاپلوس + + + دارای نظم و ترتیب + + + دلگیر، حسرت خورنده + + + دورشونده، به یکسوشونده، کناره‌گیر + + + دوری‌کننده، احترازکننده + + + حیران، حیرت‌زده، شگفت زده + + + عزیز، ارجمند + + + قیمتی + + + نازکننده، با ناز و کرشمه + + + دردمندشونده از سختی و اندوه + + + نزدیک‌شونده، نزدیک به یکدیگر + + + نامِ یکی ازبحور شعر که از هشت فعولن تشکیل شده‌است + + + تلف‌کننده، تباه‌کننده + + + شهرنشین، دارای تمدن + + + دو خط که نه متوازی باشند و نه متقاطع + + + دور‌شونده از یکدیگر + + + مخالف و ضد یکدیگر + + + هم وزن، برابر + + + یگانه، فرد + + + ترسیده، وحشت کرده + + + سرپرست، مباشر، سرپرست املاک موقوفه + + + مبارک و بابرکت + + + فضل + + + حسن حال + + + خشک‌کننده + + + دوایی که موجب از بین رفتن رطوبات یا تقلیل آن شود + + + اجابت‌کننده، پاسخ دهنده، قبول‌کننده + + + جنگجو، نبردکننده + + + حساب‌کننده، حسابدار + + + حمایت‌کننده، دفاع‌کننده + + + وکیل دادگستری + + + آمیخته‌کننده + + + فساد‌کننده، تخلیط‌کننده، دو به هم زدن + + + آن که عیب کالای خود را از خریداران پنهان کند + + + خدعه‌کننده + + + کسی که خود را مقدس جلوه دهد و نباشد + + + مردُد، دو دل + + + ریاکار، متظاهر + + + آن که در شک و تردید باشد + + + ربط داده شده، پیوسته + + + ترسنده، ترسان، خایف ، + + + سست‌کننده + + + دارویی را گویند که به قوت حرارت و رطوبت خود قوام اعضای کثیفهٔ المسام را نرم و مسامات آن را وسیع بگرداند تا آن که به سهولت و آسانی فضول مجتمعه و محتبسهٔ در آن‌ها دفع شود، مانند ضماد شوید (شبت) و بذر کتان + + + باعث زحمت، آزار + + + دهنده + + + آغاز‌کننده، از سر گیرنده + + + کسی که در محکمه ای مغلوب شده مرافعهٔ خود را در محکمه ای بالاتر از سر گیرد، استیناف دهنده + + + شادمان + + + رهاکننده، آزادکننده + + + چنگ زننده، پناه برنده + + + به کار برنده، استعمال‌کننده + + + به کار برندهٔ لغت + + + استقبال‌کننده، به پیشواز رونده + + + به پشت خوابنده + + + نفس از بینی کشنده + + + آن که آب یا مایعی دیگر در بینی استنشاق کند + + + شتاب‌کننده + + + آرزومند، مایل و راغب + + + مبهم، نامعلوم + + + در اشتباه + + + خریدار مجازاً: خواستار، خواهان + + + شهرت دهنده + + + شعبده باز، حقه باز + + + راستکار، صواب یابنده + + + سایه انداز، سایه دار + + + اعتمادکننده + + + به شگفت آورنده + + + خودبین، خودپسند + + + بیان‌کنندهٔ علت + + + آورندهٔ دلیل + + + چیز عجیب و غریب در آورنده + + + جداشونده + + + تباه‌کننده، فاسدکننده + + + میانه‌رو، صرفه + + + جو + + + اقتضاکننده، تقاضاکننده + + + شایسته، درخور + + + مطابق، موافق + + + سبب، موجب + + + قناعت‌کننده، قانع + + + قانع‌کننده + + + آنچه کیفیت و حالتی پدید بیآورد، لذت بخش، کیف آور + + + یکسان، برابر، مساوی + + + آن که بهره می‌دهد + + + بخیل، خسیس + + + همنشین، هم صحبت + + + نزاع‌کننده، کسی که با دیگری ستیزه می‌کند + + + برگزیننده، اختیارکننده + + + فاش، شایع + + + پراکنده، پاشیده + + + انتشار یافته + + + نیست و نابود گشته + + + ستاره‌شناس، کسی که به دانش اخترشناسی می‌پردازد + + + بریده‌شونده + + + فریفته‌شونده، گول خورنده + + + پوشیده‌شونده، پنهان گردیده + + + ماه گرفته + + + کهنه، فرسوده + + + سوق یابنده، کشانیده + + + پزنده + + + دوایی که خلط و ماده را بپزد و مهیای دفع کند + + + درپیچیده‌شونده، ن وردیده + + + در فارسی: حاوی، مشتمل + + + تیره گرداننده + + + ناخوش‌کننده + + + جدا شده، بریده شده + + + از میان رفته، نابود شده + + + بخش بخش شده، قسمت شده + + + نقش‌کننده + + + کنده کاری‌کننده (بر نگین و جز آن) + + + برگشته، حال به حال شده + + + به هم خوردن حال + + + تابان، درخشان + + + هیجان آور، برانگیزنده + + + سخن مختصر و کوتاه + + + انس گرفته، همدم + + + سرکش، طاغی + + + درخشنده، طلوع‌کننده + + + حمل‌کننده، جابه‌جا‌کننده + + + نقل‌کننده، روایت‌کننده، + + + انتقال دهنده + + + زن نوحه‌کننده و زاری‌کننده بر شوی، + + + سبب، جهت + + + ضمیر اشاره برای اشخاص نزدیک + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + سرکش، نافرمان + + + علمدار، پرچمدار + + + جهدکننده، کوشا + + + کینه‌جوی، بداندیش + + + خدمتگزار، مستخدم + + + پست‌کننده، خوار + + + کننده + + + رونده، گذرنده + + + کوشنده + + + گرو گذارنده + + + رهن‌گذارنده + + + ثابت، دائم + + + شناکننده، شناور + + + تندرونده، تندرو + + + خورندهٔ خوشهٔ انگور با بن + + + نوشنده + + + گذشته، پیشین + + + پیش‌رفته + + + ادب‌کننده + + + رام‌کننده + + + محرک، سوق + + + دهنده + + + به کار وادارنده + + + دارندهٔ پیشه و کار + + + شکرکننده، سپاسگزار + + + بلند، مرتفع + + + صیحه‌زننده + + + قصد کننده، اراده‌کننده، کوشش‌کننده + + + مسافر، رونده + + + دشوار، پوشیده + + + شکافنده، پاره‌کننده + + + خاینده و جاونده + + + بخش‌کننده، قسمت‌کننده + + + از پی رونده، پیرو + + + شکننده + + + بی‌دین، ملحد + + + همهٔ مردم + + + بازدارنده + + + درخشنده + + + هرزه‌گوی + + + ناله‌کننده + + + محوکننده + + + گذشته (زمان) + + + فعلی است که بر زمان گذشته دلالت کند + + + در گذشته، مرده + + + برنده، قاطع + + + ابداع‌کننده، اختراع‌کننده + + + بدعت‌گذارنده + + + جامهٔ سفید پوشنده + + + سفید گرداننده (جامه و غیره) + + + درنگ‌کننده + + + معاصر، کسی که در زمان نزدیک به زمان حال می‌زیسته + + + دارای اهل و عیال، دارای همسر + + + دست در کاری دارنده + + + کسی که مالی یا ملکی را در تصرف و اختیار خود دارد + + + حاکم، والی + + + محصل مالیاتی محل + + + دارای تعادل + + + دارای اعتدال + + + شکار جوینده + + + شکارکننده به حیله + + + آمد و شد کننده + + + کسی که در امری به شک و تردید دچار است + + + آشکار، آشکارشونده، ظاهرشونده + + + آویخته، چنگ‌زننده + + + با هم خصومت‌کننده + + + به یکدیگر مهربانی‌کننده + + + پیروی‌شده + + + پیوسته، نزدیک به هم + + + چشم به راه، منتظر + + + خواهندهٔ چیزی، رغبت‌کننده، آرزو دارند + + + خوی و عادت دیگری را گرفته + + + داخل شده (در یکدیگر)، در میان آمده + + + در بر دارنده، شامل + + + رفیع، بلندپایه + + + سپاس‌دار، شکرگزار، آن که تشکر می‌کند و سپاس به جا می‌آورد + + + فراهم‌آمده، جمع گشته + + + کسی که خود را فریب‌خورده وانماید + + + ممتاز، دارای تشخص + + + منتظر، متوقع، چشم دارنده + + + بیراهه رونده، منحرف (از راه) + + + آن که از طریق صواب عدول کند + + + ستمکار، ظالم + + + ضررکننده + + + افسوس خورنده + + + فخرکننده + + + متکبر، مغرور + + + آن که خود را فقیه معرفی کند + + + فقیه، دانشمند + + + پیوسته، متحد به هم + + + بازایستنده از امری، اظهار کوتاهی نماینده + + + قطره‌قطره چکیده + + + دسته‌های پیاپی آینده + + + بسیارشونده، دارای کثرت + + + تکیه‌کننده + + + لباس پوشیده، به لباس کسی درآمده + + + یکدیگر را مس‌کننده، به هم پیوندنده + + + خود را نگاه دارنده، خویشتن‌دار + + + چنگ در زننده + + + مثل آورنده + + + در مرکز جای گیرنده + + + فراهم آمده و جمع شده در یک نظام + + + متوجه و معطوف، دارای تمرکز + + + چاپلوس + + + گسترنده + + + جاگیرنده + + + قادر (بر امری) + + + موج زننده، موج دار + + + یکی پس از دیگری، آنچه به نوبت بیاید + + + یکی‌شونده (با هم) + + + در فارسی دو عدد را گویند که دارای یک یا چند مقسوم‌علیه باشند + + + گمان برنده، خیال‌کننده + + + محقق، بی شبهه و گمان + + + جزای نیک دهنده + + + عطا‌کننده + + + حریف در قمار، حریف در بازی نرد و شطرنج + + + فراهم‌کنندهٔ وسایل و اسباب کاری + + + مستوفی + + + اجراءکننده، انجام دهنده، مجری حکم (قانون) کسی که حکم قانونی را به مرحلهٔ اجرا درآورد + + + حل‌کننده، تحلیل برنده + + + مردی که با زن سه طلاقه ازدواج می‌کند و او را طلاق می‌دهد تا آن زن بتواند دوباره با همسر پیشین خود ازدواج کند + + + حیله‌گر، مکار + + + مرد متکبر و خودپسند + + + با یکدیگر خصومت‌کننده + + + گوناگون، جورواجور + + + پاره‌پاره‌کننده، درنده + + + بسیار دروغگو + + + اخلال‌کننده، فاسدکننده + + + لباس به خود پیچیده + + + کسی که دامن جامه را بلند سازد + + + آنکه بر مطلبی یا کتابی ذیلی نویسد + + + هم‌معنی + + + سود ده، نفع بخش، پُرسود + + + دیده‌بان، چشم به راه + + + ثابت، مستقر، جایگزین + + + صاف‌کننده + + + رواق سازنده، معمار + + + موافق، یاور + + + اعتمادکننده + + + زنهار خواهنده + + + نوکننده، نو گرداننده + + + نگهبان + + + آب خواهنده + + + مبتلا به بیماری استسقاء + + + بلند برآمده + + + غلبه‌کننده، قهر‌کننده + + + یاری خواهنده + + + تفحص و تحقیق‌کننده + + + راست، معتدل + + + آنچه بودنش لازم است + + + موجب، مسبب + + + استنباط‌کننده، درک‌کننده + + + لایق، سزاوار + + + مسلمان + + + سیرکننده + + + کسی که ورزش مشت زنی را انجام می‌دهد، بوکسور + + + برافروخته، شعله‌ور، سوزان + + + برخوردکننده، روبروشونده + + + نمازگزار، نمازخوان، نمازگر + + + ضرر رساننده، زیان آور + + + پاک‌کنندهٔ نوشته + + + یاری‌کننده، یاری گیرنده + + + افسونگر، جادوگر + + + به عمل آورنده، ابداع‌کننده + + + تزویر‌کننده (خط) + + + تفسیرکننده، شرح دهنده + + + تفویض‌کننده، واگذارنده + + + جاری‌کننده + + + فیض + + + دهنده، فیض بخش، فیض دهنده + + + بهوش آینده، بیدار شده + + + آن که بدون لیاقت و لزوم و به ابرام پرسش کند + + + آن که بی اندیشه شعر گوید و خواند + + + آن که از خود چیزی نو آورد + + + آن که مطلبی را پیشنهاد کند تا مورد بحث دانشمندان قرار گیرد + + + یار‌شونده، قرین‌شونده + + + نزدیک + + + در نجوم ستاره ای که به ستارهٔ دیگر نزدیک شود + + + خواننده، کسی که تعلیم قرائت قرآن بدهد + + + قانونگزار + + + بر رو درافتاده، سرنگون شده + + + آن که سر خود را به زیر اندازد و به زمین نگاه کند + + + به وجود آورنده، موجد + + + برچسبنده + + + الهام‌کننده، تلقین‌کننده + + + خدای تعالی ، + + + امتحان‌کننده، آزماینده + + + ملال آور، بیزارکننده، اطناب ممل تطویل کلام به حدی که ملال آورد + + + میراننده + + + خدای تعالی + + + نصیحت‌کننده، پند دهنده + + + مجادله‌کننده، مباحثه‌کننده + + + داوری‌کننده با دیگری در حسب و نسب + + + افتخار‌کننده + + + رماننده، نافر + + + برانگیخته شده، مبعوث گشته + + + نصرت یابنده، غالب + + + آن که پای را به هنگام لغزش نگاه می‌دارد + + + آن که پس از افتادن برمی‌خیزد + + + به شده از بیماری، ناقه + + + برخیزنده + + + فرودآینده + + + آگاه سازنده، ترساننده + + + خواننده و آورندهٔ شعر از دیگری + + + راه نماینده + + + هجو‌کننده + + + فرو رونده (در آب) + + + هجرت‌کننده آن که از وطن خود هجرت کرده در جایی دیگر مسکن گیرد + + + وصیت‌کننده + + + پرهیزکار، پارسا + + + هزل‌گوینده + + + هلاک‌شونده، نیست‌شونده + + + یابنده، دارنده + + + گناهکار + + + نگاه‌دارنده، حافظ + + + حامی + + + پدر، اب + + + حاکم، فرمانروا + + + سست، بی اساس + + + در حق کسی، برای کسی + + + از جهت، از حیث + + + در برابر، در مقابل (برای مقایسه) + + + این + + + سفرکننده + + + رسول، سفیر + + + کاتب + + + زن گشاده‌روی + + + آنچه که پدید آید + + + آنچه که حق ایجاد کرده + + + بیرون‌رونده + + + آنچه که از جایی به جایی (داخل مملکت و مخصوصاً خارج آن) فرستاده شود + + + بلع‌کننده، بلعنده + + + گناهکار، مجرم + + + بی‌بیم، بی خوف، ایمن + + + نگهبان، مراقب، نگه‌داری‌کننده + + + آن که به کسی یا چیزی پناه برد، زینهاری، ملتجی، پناهنده اجتماعی کسی که به خاطر رواج تعصب دینی یا اجتماعی یا ناامنی و جنگ در میهنش به کشور دیگری پناه می‌برد، پناهنده سیاسی کسی که به خاطر مبارزهٔ سیاسی و مخالفت با حکومت کشورش به کشور دیگری پناه می‌برد + + + گرداننده، سازنده + + + جعل‌کننده + + + جنگنده، رزم‌کننده + + + مؤنث خاتم، پایان، انجام + + + پیونددهنده + + + واسطهٔ میان دو تن + + + رحم‌کننده، بخشاینده + + + زناکار + + + زوال‌یابنده + + + پیشی‌گیرنده + + + قبلی، گذشته + + + گرم، حار + + + سلب‌کننده + + + رباینده + + + برهنه‌کننده + + + غافل + + + فراموشکار + + + سؤال‌کننده + + + گدا + + + شفا دهنده + + + راست، درست + + + راغب، مشتاق + + + شکارکننده، شکاری + + + زرگر + + + ریخته‌گر + + + پرواز کننده، پرنده + + + مرغ + + + بوی خوش دهنده + + + دوست‌دارندهٔ عطر، عطردوست + + + همه، همگان + + + عموم مردم + + + انباشته، پُر + + + گروه بسیاری از مردم که یک جا گِرد هم آیند + + + یورش‌برنده، به ناگاه گیرنده + + + نازنده، فخرکننده + + + جداکنندهٔ دو چیز از هم + + + آفریننده، خالق + + + روزه گشاینده، افطار کننده + + + رهایی‌یابنده، رستگارشونده + + + درهم و برهم، هرج و مرج + + + کوتاهی‌کننده + + + مطیع، فرمانبردار + + + اندوهگین، متألم + + + درنگ‌کننده + + + پیشی‌گیرنده، چیزی که ناگهان به خاطر آید + + + پاک، منزه (خاص خدا) + + + فرا خواننده + + + آن که با دیگری دعوی و مرافعه دارد + + + معنی ای که معنی دیگر را به خاطر آورد + + + بردبار، شکیبا + + + بردارندهٔ بار + + + موافقت‌کننده + + + چیزی که مانند و موافق چیزی دیگر باشد + + + از یک جنس، مشابه + + + امیدوار، چشم به راه + + + آگاه به امور شرعی، معتقد به امور شرعی + + + آن که خود را معالجه کند + + + به هم خورنده با چیزی، با هم زننده، با هم کوبنده + + + پیشرفته، رشد کرده + + + تتبع‌کننده + + + در پی رونده، پیرو + + + زره پوششنده، زره پوش + + + زن‌کننده، ازدواج‌کننده + + + سرگشته، حیران، حیرت‌زده + + + سلاح پوشنده + + + شی ای که اجزای آن به هم متصل نباشد + + + کسی که از کاری روی برتابد و خود را به کار دیگر مشغول سازد + + + کسی که خود را به نادانی می‌زند + + + آن که به عمق چیزی رسیده، ژرف‌اندیش + + + دارای ثروت یا مقام اجتماعی برجسته + + + ظاهر، آشکار + + + محقق، ثابت + + + خورنده + + + تفاوت دارنده، از هم جدا + + + با هم یکی شده، یک دل و یک جهت، متحد شده + + + مصمم، قصد‌کننده، متفق القول، هم‌صدا، هم‌کلام، متفق‌الرأی، همدستان، هم‌رأی + + + قانع + + + بازنشسته + + + آمادهٔ پذیرش + + + کامل شده، به کمال رسیده + + + گدا + + + شکسته‌شونده + + + به هم چسبنده، متصل + + + طولانی، دائمی + + + رونده + + + توجه‌کننده، روی‌کننده + + + با حواس متمرکز + + + به ورطه افتنده، فرو رونده + + + به کار دشوار افتاده + + + امیدوار، چشم دارنده + + + دور‌شونده، دوری گزیننده + + + در هندسه خط مستقیمی را مجانب یک منحنی می‌گویند که چون نقطه ای در روی منحنی حرکت کند و به سمت بی‌نهایت رود، فواصل این نقطه از این خط مرتب کم شود و میل به صفر کند + + + کوشش‌کننده، کوشا + + + اجازه دهنده، رخصت دهنده + + + ولی و مصلح امر یتیم + + + بندهٔ مأذون در تجارت + + + به شهر آینده + + + حاضر‌شونده + + + کسی که کالاها را در انبار نگه می‌دارد تا پس از گران شدن بفروشد + + + دستخوش احتلام، دستخوش انزال در خواب + + + تعیین‌کنندهٔ حد و کرانهٔ چیزی + + + تیز‌کننده (کارد و جز آن) + + + نویسنده، نگارنده + + + آزادکننده + + + آشکار، ظاهر + + + ناچیز، کوچک + + + سرخ‌کننده + + + دوایی که به قوت گرمی و جذب خود عضو را گرم گرداند + + + خبررسان، خبردهنده + + + پنهان شده، پنهان‌شونده + + + رابطه دارنده + + + مواظب و ملازم سرحد + + + مروج ایمان + + + تشویق‌کننده، برانگیزاننده + + + ازدحام‌کننده، انبوهی‌کننده + + + پاک‌کننده، پاکیزه‌کننده + + + معرف، شناساننده + + + آنکه شاهدان عادل را تزکیه و آنها را به پاکی و پارسایی توصیف کند + + + شریک، سهیم + + + دلیل جوینده، طلب برهان‌کننده + + + سست و نرم‌شونده + + + طرف مشورت، رایزن + + + متخصصی که از کشورهای خارج برای اصلاح وزارتخانه یا اداره ای استخدام کنند، مستشار سفارت رای زن سفارت + + + مسلط، مرتفع و بلند + + + درخشان + + + منتشر + + + شتابنده، شتاب‌کننده + + + آن که طلب کفایت کند، کفایت خواه + + + یاری خواهنده، استمداد‌کننده + + + خواهندهٔ روشنایی + + + مستی آور + + + فریبنده و اغواکننده + + + مثل و مانند، دارای شباهت + + + آرزومند، خواهان + + + صدادار، دارای صدای بلند + + + حرف صدادار + + + آوازخوان، نوازنده + + + رقاص + + + کسی که در کار طرب باشد + + + بسیار تاریک و ظلمانی + + + کسی که تعبیر خواب می‌کند + + + گرونده، باوردار، عقیده دار + + + اعتناکننده، اهتمام‌کننده + + + راست و درست شده + + + میانگین چیزی، معدل نمرات حاصلِ قسمت مجموع نمره‌های دروس هر شاگرد + + + تسلیت دهنده، تعزیت گوینده + + + آن که کاری را تکرار کند + + + معملی که درسی را برای شاگردانش اعادهکند، مقرر، دانشیار + + + با کینه و غرض + + + افزون‌کننده + + + نیکویی‌کننده، بخشش‌کننده + + + پیروی‌کننده + + + کسی که پشت سر امام جماعت نماز خواند + + + قوت دهنده، نیرودهنده + + + کافی و کفایت دهنده + + + کامل‌کننده + + + چسبیده به هم، متصل + + + متلاطم، مواج، خروشان (موج، دریا) + + + لجام‌کننده + + + آمیزنده، مخلوط‌کننده + + + یاری دهنده + + + شورکننده، نمک ریزنده + + + دورو، ریاکار + + + پهن و گسترده شده + + + گشاده‌رو، خندان + + + دستخوش انبساط + + + آگاه سازنده، بیدارکننده + + + جابه‌جاشونده + + + پیروزمند، کامیاب، کامروا + + + کج شده، به راه کج رونده + + + پریشان، ناراحت، بی آرام + + + حیوان تند و آسان رونده + + + یکی از بحرهای عروضی + + + مجرد، تنها + + + اثر پذیرفته + + + خجل، شرمسار + + + شکست خورده، مغلوب شده + + + خبردهنده، آگاه‌کننده + + + یکتاپرست + + + توزیع‌کننده، پخش‌کننده + + + خوارکننده، ضعیف‌کننده + + + پشیمان + + + نداکننده + + + عاملی که معمول خود را نصب دهد + + + برپا‌کننده، نصیب‌کننده + + + دشمن دارنده + + + آن که علی بن ابی طالب و خاندان او را دشمن دارد + + + یاری گر، یاری‌کننده + + + تر و تازه‌کننده + + + بسیار سبز + + + نظرکننده، بیننده + + + کسی که بر کاری نظارت و رسیدگی می‌کند + + + مباشر، کارگزار + + + آن که می‌دمد، کسی که پف می‌کند، دمنده (در آتش و خیک) + + + غذایی که نفخ آورد، باددار + + + نقدکننده، جداکنندهٔ خوب از بد + + + بازدارنده، نهی‌کننده + + + آواز دهنده، آوازکننده + + + گریزنده، فرارکننده + + + نگاه‌دارنده، حافظ + + + شنونده، گوش دهنده + + + دورشونده + + + اندرون + + + پرده + + + رشته + + + رهاکننده، ترک‌کننده + + + قاطع، کسی که در قصد خود تردید نکند + + + قطع‌کننده، برنده + + + ماهر، استاد + + + دانا + + + پاسدار، پاسبان + + + پابرهنه + + + آن که وی را بول به شتاب گرفته باشد، حبس‌کنندهٔ ادرار + + + ماده و دوایی که زایل‌کننده و سترندهٔ موی باشد مانند زرنیخ و نوره و سفید آب و خاکستر و غیره، حلاق + + + آفریننده، خلق‌کننده + + + دفع کننده، دورکننده + + + حامی + + + روزی‌دهنده، روزی + + + رسان + + + به راه راست رونده + + + راه راست یافته + + + نویسنده، محرر + + + سوار، سواره + + + واسطهٔ میان رشوه‌گیرنده و رشوه‌دهنده + + + کسی که آب یا شراب به دیگران دهد + + + ریزان، فروریزنده + + + فراگیرنده + + + حاوی، در بردارنده + + + باریک‌اندام + + + دقیق، لطیف + + + زیان‌رساننده، ضرر رساننده + + + عیادت‌کننده + + + بازگردانده، آنچه که به کسی بازگردد از پول یا چیز دیگر + + + پناه آورنده + + + غلوکننده + + + گران‌بها + + + بایر، خراب + + + گمراه + + + نابودشونده، نیست‌شونده + + + ناپایدار، بی‌ثبات + + + کُشنده + + + ظالم، ستمکار + + + بازگردنده از حق + + + ساکن، متوطن + + + دروغگو، ناراست + + + گزنده، نیش‌زننده + + + چسبنده، دوسنده + + + ادب‌آموخته + + + تأکید شده + + + استوار، محکم + + + تقسیم‌کننده به حصه‌ها + + + متفرق، پریشان + + + آشکارشونده، پیدا، هویدا + + + آشکارکننده + + + مرسوم، معمول، متداول + + + شناخته‌شده + + + خیال‌کننده + + + متکبر + + + آن که آشکارا فسق کند + + + آن که با دیگری عهد و پیمان بندد، هم عهد + + + آهسته و کم‌کم پیش رونده + + + برهم فرو ریزنده + + + بست‌نشین، اعتصاب‌کننده + + + پارسا، زاهد + + + پراکنده‌شونده + + + پرستش‌کننده، عابد + + + ترتیب داده شده، پدیدآمده + + + تسلی داده، دل نواخته شده + + + جای‌گزین + + + جستجوکننده، تلاش‌کننده + + + راه یابنده + + + زینت یافته، آراسته‌شونده + + + شکایت‌کننده، گله‌کننده + + + صاحب تشرف، بزرگ‌منش + + + غلبه‌کننده، مسلط + + + کسی که مطلبی را از زبانی به زبان دیگر ترجمه کند + + + عذرآورنده، بهانه آورنده + + + سخت، دشوار + + + کوشش‌کننده، ساعی + + + سختی کشیده + + + آن که به تکلف کاری انجام دهد + + + آزاررسان، آزاردهنده + + + کناره‌گیرنده + + + پراکنده، پریشان + + + قرعه زننده میان یکدیگر + + + نیزه زننده با هم + + + پراکنده‌شونده + + + گوناگون + + + کسی که پی درپی تغییر عقیده بدهد + + + رنگارنگ + + + تمنا‌کننده + + + خواهشمند، مستدعی + + + دارای تناسب و شباهت با یکدیگر + + + بیدار، آگاه، تنبیه شده + + + سنگین‌کننده، گران‌سنگ گرداننده + + + بسیار کوشنده + + + کسی که در فقه به درجهٔ اجتهاد رسیده باشد + + + پوست‌کننده + + + صحاف + + + بیماری که به حبس بول دچار شود + + + بیماری که برای بهبود از بند شدن بول حقنه گیرد + + + نسجی که در آن خون زیاد جمع شده باشد، نسجی که خون بیشتری در آن مانده باشد و در نتیجه دچار ازدیاد حجم شده باشد + + + جمع‌شونده، گرد آینده (شیر، خون) + + + نیکوکار + + + حاشیه نویسنده بر کتابی + + + تحقیق‌کننده، اهل تحقیق + + + دشمنی‌کننده، دشمن + + + سبک‌کننده + + + کاهنده + + + داخل‌کننده، درآورنده + + + گناهکار + + + سود گیرنده، ربح گیرنده + + + پرورش دهنده + + + لرزان، لرزنده، دارای ارتعاش + + + لغزش دهنده + + + زه زه گوینده، آفرین گوی + + + دورو، تزویرکننده + + + شب زنده دار، شب + + + نشین + + + افسانه گو، قصه سرا، + + + اجازه خواهنده + + + خبر خواهنده از کسی + + + شرق‌شناس کارشناس + + + طلب‌کنندهٔ شاهد، جویندهٔ گواه + + + مشورت‌کننده، آن که با دیگری مشورت کند + + + بی‌نیاز + + + شنونده، مستمع آزاد کسی که + + + بدون آن که شاگرد رسمی باشد + + + در کلاس یا خطابه حاضر شود و به درس و نطق گوش دهد + + + به کرکس ماننده + + + ساکن + + + بدرقه‌کننده، + + + دارای کار و شغل + + + شکایت‌کننده، گله‌کننده + + + تشریح‌کننده، بیان‌کننده + + + کسی یا چیزی که از بلندی بر کسی یا چیزی دیگر مسلط باشد + + + ناظر، نگرنده + + + بیزار، رمیده + + + هم صحبت، هم‌نشین + + + تصحیح‌کننده، کسی که غلط‌های نوشته یا کتابی را تصحیح کند + + + نقاش، صورتگر + + + از حد درگذرنده، بیدادکننده + + + آماده‌کننده، مهیاکننده + + + اعدام‌کننده، نابود + + + سازنده + + + فقیر، تهیدست + + + درویش، تنگدست + + + عیالمند، عیال‌وار + + + چیزی که دارای مواد غذایی باشد + + + غذا دهنده + + + دارای ارزش غذایی + + + اندیشمند + + + فانی‌کننده، تباه سازنده، نابودکننده + + + مقاومت‌کننده، ایستادگی‌کننده + + + قادر، توانا + + + از پی کسی رونده، در پی در آینده، پیروی‌کننده + + + اقدام‌کننده + + + اکرام‌کننده، احترام‌کننده + + + احسان‌کننده + + + نسبت کفر + + + دهنده به کسی + + + کفاره دهنده + + + به زحمت و مشقت اندازنده + + + تعیین‌کنندهٔ تکلیف + + + همراه، نوکر + + + ثابت قدم + + + دیدارکننده، ملاقات‌کننده + + + التماس‌کننده، خواهش‌کننده + + + التیام یافته، به شده، بهبود یافته + + + به هم پیوسته + + + بیان‌کننده + + + خلاصه‌کننده + + + جدا‌کننده، تمیز دهنده + + + ارزیاب مالیات، تشخیص دهندهٔ مالیات + + + جار زننده، جارچی + + + طردکننده، نیست‌کننده + + + جداکنندهٔ درم خوب از بد + + + انتقاد‌کننده + + + کسی که خود را به کسی یا چیزی، نسبت کند + + + فرصت طلب، کسی که پی فرصت می‌گردد و آن را غنیمت می‌شمارد + + + به انتها رساننده، به پایان + + + فسرده، یخ بسته، یخ زده + + + پست شده، به نشیب افتاده + + + پاک‌کننده + + + پاک داننده + + + در تصوف: سالکی که ذات حق را به صفت تنزیه شناسد و از حیثیت ظهور در مناظر ندیده و ندانسته باشد + + + آنکه یا آنچه سبب فراموشی گردد + + + نویسنده، دبیر + + + جدا شده + + + غم خوار، اندوه مند + + + توجه‌کننده به کاری + + + خوار دارنده، اهانت‌کننده + + + رساننده، پیوند دهنده + + + غم‌انگیز، دردناک + + + به وهم افکننده، به شک اندازنده + + + نشأت گیرنده، پیداشونده + + + آن که خبر مرگ کسی را آورده، خبر مرگ دهنده + + + خبر بد دهنده + + + پرده درنده، پرده در + + + تمام، کامل + + + وفاکننده + + + باخبر، آگاه + + + حیران، سرگشته + + + شیفته، عاشق + + + کارکننده + + + مهارت‌کننده + + + کوشنده + + + زراعت‌کننده + + + خشک، سخت، رطب و یابس به هم بافتن کنایه از: سخنان در هم و برهم و بی‌معنی گفتن + + + من + + + مخفف انا الحق (من خدایم) + + + مؤنث آکل، خورنده + + + خوره، جذام + + + کنایه از زن زشت و بدترکیب + + + غرورآور، تکبرآور + + + میوه‌دار + + + آبستن، حامله + + + گریه کننده + + + بالارونده + + + آسانسور + + + جر دهنده، حرفی که مدخول خود را جر دهد مدخول را مجرور گویند و مجموع را جار و مجرور + + + جفاکار + + + ستمکار، ظالم + + + آن که از راه حق به راه باطل میل کند + + + دربردارنده، دارا + + + گردآورنده، جامع + + + اشک ریز، اشک + + + فشان، سرشک بار + + + خاک نمناک + + + مال‌اندوز، گنج‌نهنده + + + آنکه شعری از بحر رجز بخواند + + + کسی که رجز خواند، ارجوزه‌خوان + + + بازدارنده + + + نیزه‌زن + + + نیزه‌دار + + + پرتاب‌کننده + + + تیرانداز + + + بودهنده + + + بوکننده + + + صاف، صافی + + + خوش‌آیند + + + پاکیزه و نیکو + + + کسی که در رفاه و نعمت به سر برد + + + نمو کننده + + + رونده + + + نیست‌شونده + + + باطل، بیهوده + + + سخره‌کننده، مسخره‌کننده + + + سدکننده + + + استوار + + + راست‌گفتار + + + کوشا، سعی‌کننده + + + شتابنده + + + سخن‌چین + + + چشمهٔ روان + + + دشت خوفناک، دوزخ + + + شکایت‌کننده، گله‌کننده + + + مشهور، معروف + + + فاش، آشکار + + + پراکنده، رایج + + + روزه‌دار + + + نیزه‌زننده + + + طعنه + + + زننده، عیب‌جویی‌کننده + + + نافرمان، سرکش + + + ستمکار، ظالم + + + فرمانبردار، طبع، مطیع + + + خواهان، راغب + + + پیمان‌کننده + + + کسی که قرارداد می‌بندد + + + اجراکنندهٔ صیغهٔ عقد + + + غش‌کننده + + + کسی که مردم را بفریبد + + + دورکننده‌ٔ اندوه، گشایندهٔ غم + + + بالا رونده + + + میوه‌فروش + + + مرد خوش‌طبع + + + فریب‌دهنده + + + خراشنده و جدا کنندهٔ پوست + + + دارویی که بر اثر سوزاندن قسمت‌های سطحی جلد قسمتی از آن را از قسمت‌های عمقی جلد جدا کند از قبیل قسط و زرآوند + + + آن که از پس چیزی آید و بدو پیوندد، رسنده، واصل + + + پیوند شونده، متصل، آینده، بعدی + + + چسبنده + + + لمس‌کننده + + + ملامت‌کننده، نکوهنده + + + آمیزنده، مخلوط‌کننده + + + متمایز، جدا از یکدیگر + + + بدل گیرنده چیزی را + + + تبدیل‌شونده + + + شکننده + + + هلاک‌کننده + + + خندان، خنده‌رو + + + خویشتن آراینده + + + به تکلف نیکو سیرتی نماینده + + + آن که صنعتی یا هنری را به خود ببندد + + + در پناه‌شونده + + + خویشتن‌دار + + + جوینده + + + قصدکننده + + + برهنه‌گردنده + + + مجردشونده + + + درهم آمیخته، مختلط + + + مشتبه + + + انبوه شده، روی هم جمع‌شده + + + آنچه معمول و مرسوم باشد + + + برخلاف یکدیگر + + + جداشونده + + + راست و درست‌شونده + + + زینت‌یابنده، آراسته + + + سرکش، دلیر + + + کسی است که همیشه به خدمت بندگان خدا قیام کند و خدمت او خالی از هواها و شوایب نفسانی باشد ولیکن هنوز به حقیقت زهد نرسیده باشد گاه به سبب غلبهٔ ایمان بعضی از خدمات او در محل قبول افتد و گاه به واسطهٔ غلبهٔ هوا خدمت او قبول نشود + + + کسی که اظهار تصوف و درویشی کند + + + معامله‌کننده، داد و ستدکننده + + + یکدیگر را دوست گیرنده، دوست + + + بسیار، بی شمار + + + سخت، دشوار + + + جستجوکننده، کاوش‌کننده + + + کسی که امور را به زیرکی و هوش دریابد، زیرک و باهوش + + + اندیشمند + + + کسی که حرفه‌های گوناگون بلد باشد + + + کسی که به کاری یا هنری از روی تفنن بپردازد + + + دگرگون‌کنندهٔ هرچیزی + + + مردم نادرست و دغل + + + محکم‌کننده، استوارکننده + + + کسی که بر دیگری در بسیاری مال غلبه کند و ببالد + + + دوبار کرده یا گفته شده + + + دو دله‌شونده، مردد، + + + اندوهگین، کسی که دریغ و افسوس می‌خورد + + + مانند هم، شبیه یکدیگر + + + کسی که خود را به مریضی می‌زند + + + تمام‌کنندهٔ چیزی، کامل‌کننده + + + در دستور زبان کلمه ای که همراه حرف اضافه می‌آید و به فعل یا به صفت نسبت داده می‌شود + + + در ریاضی به هر یک از دو زاویه ای که مجموع اندازه‌های آن ۹۰ درجه باشد + + + دنباله، بقیه + + + جداشونده + + + به هم رسنده + + + پیوسته، متوالی + + + تکیه‌کننده + + + کسی که دست به دامان دیگری بزند، توسل‌جوینده + + + پوشندهٔ جامه + + + آن که شمشیر به پهلو آویزد + + + میوه دار، باردار، مفید + + + ثناگوی، ستایشگر + + + مؤنث مجری، قوهٔ مجریه یکی از قوای سه گانهٔ مملکت که موظف به اجرای قوانین و مقررات است و آن شامل رئیس مملکت و هیئت وزیران است + + + گچ کار + + + پناه دهنده، فریادرس + + + گردآورنده و بیان‌کنندهٔ احادیث + + + حق دارنده، دارای حق + + + خارش آورنده، دوایی که در تماس با پوست بدن تولید خارش کند مانند کبیکج و گزنه + + + سپرنده، تحویل دهنده + + + گرداننده، تغییر دهنده + + + حواله‌کننده + + + ناقه‌ای که آبستن شود بعد از گشن یافتن + + + حیران‌کننده + + + به هم آمیخته، درهم ریخته، مخلوط شده + + + خراج دهنده، اداکنندهٔ باج + + + آن که کسی را جانشین خود کند، جانشین‌کننده + + + آن که وعدهٔ خلاف کند + + + کبوتر بچه ای که پر بر پایش رسته باشد + + + پسر خوش شکل + + + تخمیرکننده + + + تدبیرکننده، صاحب تدبیر + + + هلاک‌کننده، دمار برآورنده + + + به یاد آورنده + + + وعظ‌کننده، واعظ + + + ریاضت کش، ریاضت کشیده + + + کوچ‌کننده، راهی‌شونده + + + باز ایستنده از کاری + + + ترغیب‌کننده، مشوق ، + + + رواج دهنده، ترویج‌کننده + + + ریاکننده + + + شب زنده دار + + + طلب تمام‌کننده + + + برانگیزاننده، مشوق + + + سخن محال، امری که محال و غیرممکن باشد، از حالی به حالی درآینده + + + کسی که به زبان‌ها و آداب و عادات غریبان (اروپاییان و آمریکاییان) آگاه است + + + جویندهٔ خبر، طالب آگاهی + + + بیدار، هوشیار + + + حساب دار، دفتردار خزانه + + + تمام فراگیرنده + + + اسراف‌کننده، ولخرج + + + سرایت‌کننده + + + خاموش، ساکت + + + آن که تصمیم به کاری گرفته + + + حمایت‌کننده، پشتیبان + + + گشاینده، بازکننده + + + نیاز دارنده + + + سودمند، با فایده + + + رفیق و قرین‌شونده + + + پیوسته، متصل + + + قمارکننده، قمارباز + + + روشنایی گیرنده + + + اقتباس‌کننده + + + نزدیک‌شونده + + + آن که کجی چیزی را راست کند + + + ارزیاب، قیمت‌کننده + + + مکافات‌کننده، پاداش دهنده + + + مساوی، برابر + + + کشف‌کننده + + + احاطه‌کننده، فراگیرنده + + + پناه جوینده + + + خلط‌کننده، مشتبه سازنده + + + پناه جوینده، پناه برنده + + + به خود پیچیده، پیچ در پیچ‌شونده + + + نوعی از حرکت نبض که مانند ریسمان پیچیده محسوس شود + + + داخل‌شونده + + + کسی که در راه خدا چیزی دهد، نفقه دهنده + + + شکسته + + + آفتاب یا ماه یا سیاره ای که تمام یا بخشی از آن گرفته شده باشد + + + راه راست یافته + + + ایمن‌کننده، نگهبان + + + از نام‌های خداوند + + + دوست دارنده + + + به دردآورنده، دردناک + + + بی‌مانند، بی‌نظیر + + + کسی که از روی کتاب یا نوشته‌ای نسخه برداری می‌کند + + + باطل‌کننده، نسخ‌کننده + + + دورکننده، ردکننده + + + رشدکننده، نموکننده + + + فرود آینده، نازل + + + ستارهٔ هبوط‌کننده + + + آنچه در دل گذرد + + + تابناک، مشتمل + + + فرود آینده، رخ دهنده + + + حاصل + + + راست، درست + + + وضع یا کیفیت قرار گرفتن + + + بخشنده، عطاکننده + + + سخنی که در آن کنایه و منظوری غیر از ظاهر سخن، نهفته باشد + + + بازرگان سوداگر + + + فرودآینده + + + اقامت‌کننده، مقیم + + + انکار کنندهٔ حق کسی با وجود دانستن آن + + + روا + + + مباح + + + نافذ + + + آن که می‌جنگد، رزم‌کننده + + + حساب‌کننده، شمارگر + + + سرگشته، سرگردان + + + چراکننده، چرنده + + + کسی که در نعمت و آسایش باشد + + + کسی که پارگی را درست کند + + + عالِم به انجام کار + + + برگشت‌کننده، بازگردنده + + + مراقب، چشم‌دارنده + + + چشم به راه + + + منجم، اخترشمار + + + مایل، خواهان + + + رساننده، بالنده + + + زیبا + + + منع‌کننده، بازدارنده + + + بانگ‌زننده + + + فرشتگانی که میان زمین و آسمان تسبیح کنند + + + سجده‌کننده + + + خشمگین + + + حاجب، دربان + + + خادم معبد + + + سیاحت‌کننده، جهانگرد + + + بالارونده، صعودکننده + + + آزمند، حریص + + + امیدوار + + + فشار دهنده، فشارنده + + + نگاه‌دارنده، حفظ‌کننده + + + بازدارنده، بازدارنده از لغزش و خطا + + + سرکش، نافرمان + + + گناهکار + + + گناهکار، بدکار + + + مردی که با زن شوهردار رابطهٔ نامشروع دارد + + + گیرنده، در مشت گیرنده + + + مانع + + + به زور بر کاری وادارنده + + + قیافه‌شناس + + + پی‌شناس، پی بر + + + ایستاده، برپا + + + پایدار، استوار + + + پوشنده (جامه)، جامه پوشیده + + + چسبنده + + + بازی‌کننده، بازیگر + + + به شمشیر زننده + + + سوزنده + + + عالم غیب، عالم الهی، جهان مینوی + + + مزاح‌کننده، بذله‌گو + + + رونده + + + سخن چین + + + موج‌زننده + + + تبسم‌کننده + + + سردکننده، خنک‌کننده + + + پایین آورندهٔ درجهٔ حرارت بدن + + + کاهندهٔ تمایلات جنسی + + + پیروی‌کننده + + + رسنده، واصل + + + رساننده + + + محزون، مغموم + + + برنده و منقطع از ماسوای خدا + + + ماهر + + + متغیر + + + ترش‌رو + + + آسمان ابر دار + + + بیمارشونده + + + استثناکننده در سوگند + + + بیرون آینده از قسم به کفاره + + + در فارسی تحلیل‌شونده + + + از پی هم آینده + + + از حد گذرنده، تجاوزگر + + + اندیشه‌کننده + + + برابرشونده با هم + + + بلور شده، چیزی که شبیه بلور شده باشد + + + جفت پذیرنده + + + خلاف‌کننده + + + دفع‌کنندهٔ یکدیگر در کارزار، + + + رمنده + + + سخت حریص + + + کسی که اسم یا لقبی در شاعری برای خود انتخاب کرده باشد، دارای تخلص + + + واجب‌کننده، لازم‌کننده + + + متدین، دیندار + + + ضدهم، ناجور + + + منشعب‌شده، شاخه‌شاخه شده + + + گذشته، پیشین + + + درخواست‌کننده + + + پیشی گیرنده + + + دارای تقدم + + + زمان پیشین + + + راست‌شونده، قوام گیرنده + + + در فارسی قیمتی، گران بها + + + برابر، همسان + + + همراه باشنده + + + وابسته + + + کشیده‌شونده + + + قابل ارتجاع + + + مالک‌شونده، متصرف + + + پارسا، پرهیزگار + + + حرمت نگاه دارنده + + + افروزنده، فروزان، نورانی + + + درنگ‌کننده، در یک جا ایستاده + + + آن که به خدا توکل کند + + + جلب‌کننده، کشنده + + + نوکننده، تازه‌کننده + + + در هر قرن (صد سال) فردی ظهور نماید و آیین اسلام را تازه کند که او را مجد نامند + + + تحسین‌کننده، ستاینده + + + حاوی، شامل + + + احراز‌کننده، گرد آورنده + + + پناهگاه دهنده، در حرز‌کننده + + + استوار‌کننده + + + تحریک‌کننده، ورغلاننده، مشوق + + + استوار گرداننده + + + در حصن‌کننده + + + گرداگرد شهر را برآورنده + + + از حرم بیرون آینده + + + مرد شکنندهٔ حرمت حرام + + + مردی که هیچ بر عهدهٔ خود ندارد + + + مردی که ماه حرام یا امر حرام را حرمت ننهد + + + آن که متعه دهد زن مطلقه را + + + کسی که روی را با زغال سیاه کند + + + سری که پس از ستردن بر آن موی برآید + + + جوجه ای که پر برآورد + + + خلاف‌کننده، ناموافق، ضد + + + برعکس، واژگون + + + دزدی‌کننده، کسی که اختلاس می‌کند + + + مراعات‌کننده + + + برگشته از دین + + + باعث، علت، سبب‌شونده + + + تسبیح‌کننده + + + انس گیرنده + + + پناه دهنده، دادخواه + + + درخواست‌کننده + + + زیاده طلب + + + رنجیده خاطر، گله مند + + + پاکیزه‌شونده، پاک گردنده + + + توانگر، کسی که استطاعت و توانایی دارد + + + فرو رونده، غوطه ور شده، غرقه + + + کسی که طلب فیض کند + + + پیوسته، همیشه، ادامه‌دار + + + استنادکننده + + + سر باز زننده و خودداری‌کننده از انجام کاری + + + کسی که از رؤیت احضاریه یا حکم قرار دادگاه خودداری کند + + + گرم‌کننده، حرارت دهنده + + + تسکین دهنده، آرام‌کننده + + + مشورت‌کننده، طرف شور + + + سازش‌کننده + + + دردسر دهنده، آنچه که باعث زحمت شود، مصدع اوقات شدن باعث دردسر شدن + + + تصنیف‌کننده، نویسنده + + + گمراه‌کننده + + + تاریک و تیره‌شونده + + + پی یکدیگر‌شونده + + + راست روان + + + کسی که به کاری یا چیزی عادت کرده باشد + + + گوشه‌گیر، عزلت گزین + + + عزت دهنده + + + رشک برنده، غبطه خورنده + + + آن که می‌شوید + + + آن که خوشبوی به می‌مالد + + + آنکه یا آنچه که اندوه را از دل دور کند + + + شادی آور، فرح بخش + + + شاعری که سخن شگفت و عجیب آورد + + + تولید جراحت‌کننده + + + قراردهنده، تعیین‌کننده + + + تقریرکننده، بیان‌کننده + + + کسی که درس استاد را برای دانشجویان تقریر و شرح کند، دانشیار + + + کسی که قدم کوتاه بردارد + + + آنکه مقرمط نویسد + + + دادگر، عادل + + + چاه کن + + + تکبیرگوینده در نماز جماعت + + + پنهان دارنده + + + سرمه به چشم کشیده + + + کسی که در سختی افتاده باشد + + + بسیارآورنده + + + آن که بسیار نویسد + + + توانگر، مال دار + + + کافر، بی‌دین + + + لازم گرداننده + + + اندازنده (بر زمین و جز آن) + + + املاء‌کننده + + + روشن، آشکار + + + کسی که جلای وطن کرده و از میهن خود بیرون رفته + + + کج، خمیده، خط منحنی خطی است که نه راست باشد نه شکسته + + + منقطع، بریده + + + باتبختر رونده + + + درج شده، گنجیده + + + شده + + + دفع‌شونده، بیرون ریزنده، دورشونده + + + گوشه نشین، گوشه + + + گیر + + + برکنده، از بن کنده + + + انکارکننده، ردکننده + + + میزبان + + + خدمهٔ هواپیما + + + اذیت‌کننده، آزار رساننده + + + در فارسی، بداندیش، حیله‌گر + + + یقین دارنده، یقین‌کننده + + + بزرگ، بزرگوار + + + کسی که دارای هوش و استعداد فوق‌العاده باشد + + + پنددهنده، نصیحت‌کننده + + + آن که به جادویی ورد می‌خواند و می‌دمد، ساحر، جادوگر + + + شعبده باز + + + ناتمام، نارسا، ناقص العقل کم خرد، احمق، ناقص الاعضاء آن که در اعضای بدنش نقصی باشد، ناقص الخلقه آن که دارای نقص مادرزادی باشد، ناقص العضو آن که عضوی از اعضای بدنش ناقص باشد + + + مرد زن دار + + + زن شوهردار + + + غارت‌کننده، غنیمت گیرنده + + + جانشین، نایب الزیاره کسی که از طرف دیگری بقعهٔ متبرکی را زیارت کند، نایب الحکومه الف + + + کسی که به نیابت از طرف حاکم شهری را اداره کند ب + + + بخشدار (فره)، نایب التولیه کسی که از طرف متولی امور بقعه یا موقوفه ای را اداره کند + + + توبه‌کننده + + + بر سویی آینده، آینده + + + نزد کسی رونده + + + دریابنده، درک‌کننده + + + پیدا‌کننده + + + diff --git a/extensions/wikidata-lexemes/output/ff.xml b/extensions/wikidata-lexemes/output/ff.xml new file mode 100644 index 00000000..a0be947c --- /dev/null +++ b/extensions/wikidata-lexemes/output/ff.xml @@ -0,0 +1,6622 @@ + + + + + + + + + have you slept well + + + an yi bacci lafiya + + + + + + Witness + + + + + + distinguish + + + + + + en means we + + + + + + On top + + + + + + fifth + + + + + + fifty one + + + + + + + second + + + + + + to possess + + + + + + exclamation of surprise + + + + + + peace be with you + + + + + + to begin + + + + + + something + + + + + + until + + + + + + in the back of, in the rear, behind + + + + + + exclamation of pleasure and approval + + + + + + thanks be Allah + + + + + + everything is fine + + + + + + to think + + + + + + to marry, to marry and live at + + + + + + Compensation revenues retaliation + + + + + + really! + + + + + + Bicycle + + + + + + Sugarcane + + + + + + Dunke + + + + + + chameleons + + + + + + dongol + + + + + + + emph.of thinness of liquids + + + + + + Synodont catfish + + + + + + synodont catfish + + + + + + Calabash + + + + + + hitting on the head + + + + + + see dendiraawo + + + + + + bambara groundnuts + + + + + + see derekeejo + + + + + + see dilgilaare + + + + + + see dilgilaare + + + + + + see dilmahi + + + + + + Wild animals + + + + + + see diidol + + + + + + Stores + + + + + + Euphemistic name for pudenda + + + + + + + Highway robberies + + + + + + Desires + + + + + + Hostilities; combat;conflict + + + + + + Includes both the wart-hog and the wild pig + + + + + + Cheekbone + + + + + + Itch + + + Scobie + + + + + + Grains of corn + + + Sand + + + Berry + + + + + + Dancer + + + With contortions of the body + + + + + + Parte,since, because + + + + + + Pyramid + + + + + + anything hidden + + + + + + a man without a wife + + + + + + Long hair, with bushy, unborn head: see + + + + + + Caterpillars, maggots, worms: see + + + + + + Songs, poems + + + + + + Gineeji, property + + + + + + Circles on a traditional leather cushion + + + + + + Eye dust, + + + + + + Excl + + + Calling for attention + + + Hie + + + + + + Procession of horsemen in line and swarm of bees + + + + + + Farms + + + Acres + + + + + + The second present a wooer to his prospective parents in law + + + + + + Fsces + + + Coutenances + + + The fronts + + + + + + Homelands + + + + + + pommel + + + knobs + + + at the end of a sword hilt + + + upward projecting front of saddle + + + + + + + ditche + + + a town ditch + + + barriers + + + fortresses + + + + + + Graves + + + + + + Eggs + + + + + + The tropics + + + The region between the Capricorn + + + + + + Werewolf + + + Hyaena which can become a human + + + + + + Oribi; small African antelope, red flanked + + + + + + The holes of the seed, the plants therein and fig. + + + + + + + Large mosques + + + + + + Barbed spear + + + Harpoon + + + Spear like missile with a rope attached + + + For catching crocodiles + + + + + + Trees + + + Abbizzia chevalieri + + + + + + Handmaid + + + Female servant + + + + + + Blood + + + + + + Flags + + + + + + rams + + + + + + Inci + + + + + + Engine + + + + + + Conqueror places (towns) + + + + + + Grey shrike + + + Bird with a strong hooked and toothed bill + + + + + + Red false hem to a gown + + + + + + Village heads; + + + + + + Rays, light; + + + + + + girl slave attendant on a + + + + + + Large black birds with crests + + + + + + The soles of the foot + + + + + + Half-brothers(or sisters) having the same father + + + + + + Small square mud roofed hurt + + + + + + + Fever + + + + + + Hi + + + + + + You + + + + + + duu means also + + + + + + Sharp + + + + + + Seperate from + + + + + + Tear + + + + + + Separete + + + + + + Fix a handle from + + + + + + Sharpen + + + + + + for + + + + + + since + + + + + + since + + + + + + what + + + + + + How + + + + + + sound of nighting(?) + + + + + + an exclamation + + + + + + Inside + + + + + + you + + + + + + Parents + + + + + + Good day + + + + + + to make mistake (when speaking, etc) + + + + + + good evening + + + are you spending the evening well? + + + + + + really + + + + + + they + + + them + + + + + + of what ethnic group + + + what nationality? + + + + + + + news + + + + + + me + + + am + + + + + + rest well + + + + + + to be tired + + + + + + there + + + + + + where + + + + + + to get up + + + + + + The signs of the zodiac + + + + + + Cattle camps + + + Corrals + + + + + + Generations + + + + + + + poligamia + + + + + + Fronds of the palm + + + + + + Fragment of substance, as of crumbled cooked food + + + + + + Sing + + + + + + Petals + + + + + + Large food and game fish of the family latidae bappoore + + + + + + Eternal + + + + + + same as deentaaki + + + + + + Here is, are; see here; + + + + + + Mules + + + + + + Excretory opening at the end of the alimentary canal + + + + + + Needy + + + + + + Leading ropes + + + Attached to the nostrils of an ox + + + + + + Ravines + + + Gulfs + + + Narrow valley + + + + + + Rhyming slangs + + + + + + Pieces,bits + + + + + + Women whose children all + + + + + + Tradition of prophet of the prophet Muhammad (SAWS) SEE HADIISEWOL + + + + + + Some kinds of bird + + + + + + In pl. Hearsay + + + + + + black refusal + + + + + + Caterpillars, maggots, worms: same as + + + + + + The largest kind of gown: see + + + + + + Choppers for grass + + + + + + Customs duties + + + + + + Clowns + + + + + + Love + + + Caring for + + + Felt affection for + + + + + + Webs + + + + + + + grains + + + + + + + hyaena which can become a human + + + + + + + pulse + + + edible seeds of various leguminous plants + + + + + + + divisions + + + sides + + + department + + + + + + sweat + + + perspiration + + + + + + Shares + + + Portions + + + Lots + + + Fates + + + + + + Eggs + + + + + + A kind of gown with short sleeves see jaba2 + + + + + + Occasions of helping + + + + + + light, shininess + + + + + + Guinea fowls + + + + + + the joy prolonged high _pitched sounds of women + + + + + + camel which turns irrigation machine + + + + + + + I do not see see what I am to get + + + + + + Red scorpions + + + + + + Awls with a handle + + + + + + Buffalo weaver birds + + + + + + Cross_beams for irrigation; + + + + + + Possessors + + + + + + Wicked ones + + + + + + Members of a family + + + Household + + + + + + Hi + + + + + + heal + + + + + + disgrace of the + + + + + + That + + + + + + he/she + + + + + + + doctor + + + + + + theirs + + + + + + five + + + + + + two + + + + + + to tilt + + + + + + to go round an obstacle + + + + + + its + + + + + + how are you this morning? + + + have you spent the night well? + + + + + + amen + + + + + + from + + + + + + on + + + above + + + on top of + + + up + + + + + + to ward off + + + + + + another, different + + + + + + at + + + + + + within, in + + + + + + + friend + + + + + + to urinate, to be wet + + + + + + to choose, select + + + + + + See + + + + + + Ripe decorticated nuts + + + Opinion or way of thinking + + + Behaviour reflecting this + + + + + + Nuts of shea tree + + + + + + Biscuits + + + + + + Panicle of Guinea corn + + + + + + Fragment of substance,as of crumbled cooked food + + + + + + Rectangular houses + + + + + + Small slave girls + + + + + + Alas! + + + regrettably + + + unfortunately + + + what a pity + + + + + + Fences made of wooden stakes with cornstalk tied to it forming a solid fence + + + + + + loads + + + + + + bobbins + + + + + + domre + + + + + + Donkey + + + + + + Ropes made from grass + + + Strings + + + + + + The white silk cotton tree + + + + + + see dibinoore + + + + + + see dimngal + + + + + + see dirru + + + + + + Hankerchieves + + + + + + cows kept for milking, see diilaaye + + + + + + Handkerchiefs + + + + + + Trees with edible yellow 'plums'and the fruits + + + + + + Eructation + + + + + + Cooking pots for takai + + + + + + Hippopotamuses + + + + + + Male termites + + + + + + Large hoes + + + + + + Intermediaries + + + + + + At, to, until, from, UpTo, haha saare, at + + + + + + Two_stringed lutes + + + + + + Comings + + + Attendances + + + Times or places of coming + + + + + + Necklaces of + + + + + + headmen + + + + + + Root foundation + + + + + + Magic + + + Stratagem + + + + + + Organs of sight + + + + + + Large leg irons + + + Stocks + + + + + + Camels + + + + + + Units + + + + + + The calves of the legs + + + Fleshy hind part of the human legs below the knees + + + + + + Copies + + + + + + destitute ones + + + + + + Unit + + + + + + Ant_eaters + + + aardvarks + + + + + + Mines + + + + + + Magicians + + + + + + Rivers, stream, + + + + + + They who accept; see jaboowo + + + + + + + Handmaids + + + Female servants + + + + + + Lines i.e column + + + + + + + Germans + + + + + + Male pudenda + + + Male organ of copulation and (in mammals) urination + + + + + + Jaw bones + + + The flat part of the two sides of the head between the forehead and the ear + + + + + + Holy war + + + + + + Pockets + + + + + + Small mushroom-shaped ant-hiil + + + + + + Foreigner + + + Foreign body + + + + + + Fruit + + + + + + But + + + + + + Your (poss) + + + + + + You + + + + + + Whittle + + + + + + Cut in to strips + + + + + + Divorced + + + + + + Watery + + + + + + healthy + + + + + + one + + + + + + I have come to visit you + + + + + + To bray + + + + + + she/he + + + + + + because + + + + + + fiance + + + + + + however + + + then + + + + + + + thousand + + + + + + your + + + + + + good afternoon + + + have you spent the morning well? + + + + + + as for + + + indeed + + + + + + to understand + + + + + + to play + + + + + + to buy + + + + + + to end, to bring to an end + + + + + + if + + + + + + to pound (in mortar) + + + + + + greetings upon arrival + + + + + + Tamed disciplined horses + + + + + + Darkish grey horses + + + + + + Diaphragm brisket + + + + + + with + + + + + + Coloured mats imported from the Cameroons + + + + + + Also + + + And + + + + + + The weaver birds + + + + + + Egg also testes, especially of boys when they first drop + + + + + + Leucodermatic condition of the skin + + + A skin disorder in which patches of skin tend to lose its natural colour + + + + + + Whinnying and bursting into flames + + + + + + abortion + + + + + + men of measured gait + + + + + + same as diyeele + + + + + + Whirlwind + + + + + + witch, wizard + + + + + + For, because of; + + + + + + see derto + + + + + + places where things are kept see resrude + + + + + + same as diyeele + + + + + + Straw mats + + + + + + Full-grown + + + Important + + + Elder + + + + + + Musfish + + + + + + Boastings,flauntings + + + + + + Seasons + + + Chapter + + + + + + Experts + + + As a horseman + + + + + + Cheekbones + + + + + + Unfertilized eggs + + + + + + superlative good or bad for. capable + + + + + + Which + + + Inter + + + + + + Restrictions + + + + + + one's with gaps in the teeth + + + + + + Large pot always kept in the hut: see + + + + + + Showing aversion to + + + + + + Rivers, stream, + + + + + + Woman's cooking knives + + + + + + Love + + + Caring for + + + Felt affection for + + + + + + Cows of the colours of bush fowl + + + + + + Married women without children + + + + + + Waves + + + + + + Oversight + + + + + + A copy + + + + + + Camels + + + + + + Divisions + + + Degrees + + + Parts + + + Sides + + + Department + + + + + + Venial sin + + + Pardonable contradiction + + + + + + Whole calabash with a small hand_hole in the top + + + + + + Destitute ones + + + + + + + Give victory over + + + + + + Two or more men married to sisters + + + + + + Plains + + + Level tract of country + + + + + + Capital + + + Accumulated wealth + + + + + + fireflies, beetles emitting phosphorescent light + + + + + + Conquered people + + + + + + Feeling of pleasure and contentment + + + + + + Files + + + + + + grass-roofed huts through which entrances are made to a compound; + + + + + + barbs to a spear or arrow; + + + barbs to a spear or arrow; + + + + + + Leaves + + + + + + Young leaves + + + + + + Hi + + + + + + ɗume means what + + + + + + Deviate from + + + + + + Ashamed + + + + + + after + + + + + + An exclamation of impatient + + + + + + That one + + + + + + there + + + + + + in + + + + + + when? + + + + + + + fulani person + + + + + + + hundred + + + + + + + fulani man + + + + + + fourth + + + + + + + wooden trough + + + + + + or, nor + + + + + + another + + + + + + good morning + + + have you awakened in health? + + + + + + exclamation of surprise + + + + + + + student + + + + + + + fulani, pullo + + + + + + what + + + + + + to set up a stick or pole + + + + + + Of + + + + + + Ravings,wild or delirious talk + + + + + + A coloured mat imported from the Cameroons + + + + + + Hedgehogs + + + + + + Any of various small birds + + + + + + Large livers + + + + + + + allas! + + + + + + long-nosed + + + + + + Rattles used during games + + + + + + see + + + + + + cook, rooster + + + + + + The fruit of bantahi + + + + + + books + + + + + + Here he is + + + + + + Sweetmeat + + + + + + Leave of a corn stalk + + + + + + With water + + + + + + Arts; treatises,trade fairs, expositions; + + + + + + Bull + + + Especially a young bull + + + + + + Beams + + + Ridge + + + Poles + + + + + + Woman whose children all die + + + + + + The youngster children of families + + + + + + Afzeria Africana + + + The mahogany bean tree + + + + + + Weevils + + + + + + The crested larks + + + + + + A child whose mother dies before it is weaned + + + + + + A pocket-books; a small book + + + + + + Impetuous: see kafdo + + + + + + Habasinko'en, Abyssinian + + + + + + Which + + + Inter + + + + + + land crabs + + + + + + one's who have lost the full use of his limb + + + + + + Character, characteristic: see + + + + + + Manatee + + + Aquatic plant_eating mammals + + + + + + Water marsh of resembling coarse grass + + + + + + Small calabash + + + + + + Thorny shrub with edible red brown berries + + + + + + Large edible frog + + + + + + Bath + + + Water containers for bath + + + + + + Chicken + + + Hen + + + + + + Returned pilgrims + + + + + + + Occasions of shouting + + + + + + magicians + + + + + + The green leaves of the tobacco plant + + + + + + Occasions of shouting + + + + + + Pulse + + + Edible seeds of various leguminous plants + + + + + + Pommel + + + Knobs + + + At the end of a sword_hilt + + + Upward projecting front of saddle + + + + + + Guinea fowls, see + + + + + + + Skink_lizards + + + + + + Rain + + + + + + Fruit + + + + + + Fruit + + + + + + Fruit pulp + + + + + + People + + + + + + you (singular) + + + + + + nobody + + + + + + although + + + + + + husband + + + + + + I have to come on a visit + + + + + + Up + + + + + + + grand parents + + + + + + + dream + + + + + + + thousand + + + + + + How have we spent the day (pl)? + + + + + + people + + + + + + either.....or + + + + + + making mistake + + + + + + + your + + + + + + his + + + + + + me + + + + + + and + + + with + + + + + + it + + + he + + + she + + + + + + to trade, to retail + + + + + + outside + + + + + + in front of, in front, at the front + + + + + + two years ago + + + + + + to greet someone with salaamu aleykum + + + + + + to sell + + + + + + to find + + + + + + Bundles of grass or wood + + + + + + Days + + + Including the nights + + + Stages on a journey + + + + + + Kind of flute + + + + + + chameleon + + + + + + fortune tellers + + + + + + spring trap + + + + + + Babies up to one year + + + Infants + + + + + + see diiwaanu + + + + + + Race-courses, hippodrome + + + + + + Nuts of shea tree + + + + + + Obligatory religious duties; ordinance, statute + + + + + + Subject + + + + + + Fronds of the young doum plamvbalol + + + + + + Long trumpet + + + + + + Oyster + + + + + + Cloth + + + Garments + + + + + + The chest + + + Bosom + + + + + + Inner suspended bands of a hut + + + Rim of a basket + + + + + + Casks + + + Drums + + + + + + Mud platforms + + + Mud beds + + + Thrones + + + + + + Old cows + + + + + + Sing 3rd pers + + + + + + That cow + + + + + + right to use and profit from somebody's property + + + usufruct of a slave + + + + + + Column support + + + + + + + benefit + + + in goodly things + + + + + + Waterside or marsh plant resembling coarse + + + + + + Mats made of shoots from the palm + + + + + + Upright, decent + + + + + + A leguminous shrubs, sesbania leotocarpa: + + + + + + Ones who have reached puberty + + + + + + Creases + + + Lines coursed by folding or crushing + + + + + + whole calabash with a small hand hole in the top + + + + + + + the bee-eaters + + + + + + The bee_eaters + + + + + + Digger + + + Crowbar + + + + + + + The superior places (towns) + + + + + + + Abbizzia chevalieri + + + + + + Abbizzia chevalieri + + + + + + The mouse bird (Coly) + + + + + + Place for dumpling refuse,dung_hill; + + + + + + The knob at the end of the handle of a knife + + + Usually for ornament + + + But in the case of a dagger to lend weight + + + + + + Lord; owner; master + + + + + + owner of,one's with + + + + + + Small flavoured jelly-like lozenges + + + The fruit of the jujube tree + + + + + + + Parts + + + Pieces + + + Members + + + + + + Deep stream + + + Or part of a river + + + + + + Fresh leaves + + + + + + Water-leaf + + + + + + Ours + + + + + + Sift + + + + + + Slender + + + + + + Thin + + + + + + + and + + + + + + nothing + + + + + + before + + + + + + + glowing embers + + + + + + about + + + + + + Near + + + + + + Who? + + + + + + Little piece of excrement + + + + + + you + + + + + + why? + + + + + + + index + + + + + + + bracelet + + + + + + Name + + + + + + to sit on eggs + + + + + + to leave alone, throw away + + + + + + to be crippled + + + + + + your + + + you + + + + + + all, both, also + + + + + + until + + + + + + to be finished + + + + + + Throwing sticks + + + + + + Cows with horns drooping unfastened towards the ears + + + + + + Woman's fibre covers for a load + + + + + + The long straight shoots of the combretum species shrub + + + + + + Both the sweet and the salanum potato + + + + + + african fox + + + + + + Sort of watermelon + + + + + + Pawpaw trees + + + + + + belly, stomach + + + + + + the relationship between the child of an aunt and that of an uncle + + + + + + A term of reproach + + + + + + Eloquent ones; orators,facile writers; stylists + + + + + + Water monitor + + + + + + Objections + + + + + + Cows with horns twisted back + + + + + + The Egyptian mimosa + + + The pods + + + + + + Dances + + + + + + Quicksands + + + + + + Rain clouds + + + Mountain mist + + + + + + hooks + + + + + + The tawny, yellowish-brown eagle + + + + + + Westerners + + + + + + Living together + + + + + + Pigs + + + Swine + + + + + + Cover (hat) for a corn_bin + + + + + + + Fine sights + + + wonderful things + + + + + + + stories + + + legends traditions + + + + + + + Pits + + + Holes + + + + + + Excuses + + + + + + Cows with white body and black face + + + + + + Whiskers + + + + + + The outer edge of a cloth or mat + + + + + + Grains + + + + + + Clever one's + + + Experts + + + + + + Fetters leg irons + + + + + + Yellow-flowered shrubs use in fever + + + + + + Brave ones + + + + + + Ignorant person + + + Unlettered + + + + + + The day before occasions + + + Fetivals + + + + + + Blood + + + + + + Rivers + + + Streams + + + Brooks + + + + + + Channel, stream + + + + + + Emirates + + + + + + Victories + + + + + + Cows similar in colour to gerlaaye + + + + + + Members of a clan + + + + + + Connected with teaching + + + + + + Vulva,external famale genitals; + + + + + + Large sores in cattle + + + + + + + To be an idiot + + + To be mentally deficient person incapable of rational canduct + + + + + + Seperate + + + + + + doubt in + + + + + + Strong + + + + + + Remove a handle from + + + + + + + Colour + + + + + + we, us + + + ourselves + + + + + + eighth + + + + + + + to accustomed + + + + + + when people have had lunch + + + + + + + or + + + + + + are you well? + + + + + + have you arrived well? + + + + + + I am fine + + + + + + to awaken someone + + + + + + fulfulde, fula + + + + + + sleep well + + + good night + + + + + + to follow + + + + + + Proof; demonstration; evidence; tokens + + + + + + Persons who reached adulthood + + + + + + Marshy land, Oasis, swamps + + + + + + outside crown of roof + + + + + + Leaves, sheets of paper + + + + + + handkerchiefs + + + + + + places where things are kept + + + + + + The holes in the game tile + + + + + + Head slaves + + + + + + Threads + + + + + + Gowns made of imported cloth + + + + + + Dancing + + + Dances + + + + + + Gabor hawks + + + + + + Sword sling + + + + + + End: see + + + + + + Non-fulbe l: members of another + + + + + + for + + + so that + + + + + + Religious or formal poems + + + + + + Lice which infest chicken + + + + + + Women incapable of sexual intercourse + + + + + + Stiffening of the neck in cattle + + + + + + Fetters + + + Leg irons + + + + + + Lovers + + + Friends + + + + + + Pilgrims making the pilgrimage + + + + + + Helping of porridge + + + The piece of calabash for dishing porridge up + + + + + + + the tropics + + + the region between the tropics of cancer and Capricorn + + + + + + + clever ones + + + expert + + + + + + + Mines + + + + + + Shares + + + Portions + + + + + + Pits + + + Holes + + + + + + A town ditch + + + Barriers + + + Fortresses + + + + + + Fine sights + + + Wonderful things + + + + + + + Great grand sons + + + + + + Female slaves + + + + + + roaring; noise + + + + + + names,nouns + + + + + + he accepted with the right hand + + + + + + Light saddled-cloth + + + + + + Hoes + + + Cardinal number twenty + + + + + + Calabash for turning milk into sour + + + + + + Light + + + + + + Women who were marr, whether widow,or divorcee + + + + + + Geckos + + + + + + Diminutives + + + + + + Seeds + + + + + + Seeds + + + + have you slept well + + + an yi bacci lafiya + + + Witness + + + distinguish + + + en means we + + + On top + + + fifth + + + fifty one + + + second + + + to possess + + + exclamation of surprise + + + peace be with you + + + to begin + + + something + + + until + + + in the back of, in the rear, behind + + + exclamation of pleasure and approval + + + thanks be Allah + + + everything is fine + + + to think + + + to marry, to marry and live at + + + Compensation revenues retaliation + + + really! + + + Bicycle + + + Sugarcane + + + Dunke + + + chameleons + + + dongol + + + emph.of thinness of liquids + + + Synodont catfish + + + synodont catfish + + + Calabash + + + hitting on the head + + + see dendiraawo + + + bambara groundnuts + + + see derekeejo + + + see dilgilaare + + + see dilgilaare + + + see dilmahi + + + Wild animals + + + see diidol + + + Stores + + + Euphemistic name for pudenda + + + Highway robberies + + + Desires + + + Hostilities; combat;conflict + + + Includes both the wart-hog and the wild pig + + + Cheekbone + + + Itch + + + Scobie + + + Grains of corn + + + Sand + + + Berry + + + Dancer + + + With contortions of the body + + + Parte,since, because + + + Pyramid + + + anything hidden + + + a man without a wife + + + Long hair, with bushy, unborn head: see + + + Caterpillars, maggots, worms: see + + + Songs, poems + + + Gineeji, property + + + Circles on a traditional leather cushion + + + Eye dust, + + + Excl + + + Calling for attention + + + Hie + + + Procession of horsemen in line and swarm of bees + + + Farms + + + Acres + + + The second present a wooer to his prospective parents in law + + + Fsces + + + Coutenances + + + The fronts + + + Homelands + + + pommel + + + knobs + + + at the end of a sword hilt + + + upward projecting front of saddle + + + ditche + + + a town ditch + + + barriers + + + fortresses + + + Graves + + + Eggs + + + The tropics + + + The region between the Capricorn + + + Werewolf + + + Hyaena which can become a human + + + Oribi; small African antelope, red flanked + + + The holes of the seed, the plants therein and fig. + + + Large mosques + + + Barbed spear + + + Harpoon + + + Spear like missile with a rope attached + + + For catching crocodiles + + + Trees + + + Abbizzia chevalieri + + + Handmaid + + + Female servant + + + Blood + + + Flags + + + rams + + + Inci + + + Engine + + + Conqueror places (towns) + + + Grey shrike + + + Bird with a strong hooked and toothed bill + + + Red false hem to a gown + + + Village heads; + + + Rays, light; + + + girl slave attendant on a + + + Large black birds with crests + + + The soles of the foot + + + Half-brothers(or sisters) having the same father + + + Small square mud roofed hurt + + + Fever + + + Hi + + + You + + + duu means also + + + Sharp + + + Seperate from + + + Tear + + + Separete + + + Fix a handle from + + + Sharpen + + + for + + + since + + + since + + + what + + + How + + + sound of nighting(?) + + + an exclamation + + + Inside + + + you + + + Parents + + + Good day + + + to make mistake (when speaking, etc) + + + good evening + + + are you spending the evening well? + + + really + + + they + + + them + + + of what ethnic group + + + what nationality? + + + news + + + me + + + am + + + rest well + + + to be tired + + + there + + + where + + + to get up + + + The signs of the zodiac + + + Cattle camps + + + Corrals + + + Generations + + + poligamia + + + Fronds of the palm + + + Fragment of substance, as of crumbled cooked food + + + Sing + + + Petals + + + Large food and game fish of the family latidae bappoore + + + Eternal + + + same as deentaaki + + + Here is, are; see here; + + + Mules + + + Excretory opening at the end of the alimentary canal + + + Needy + + + Leading ropes + + + Attached to the nostrils of an ox + + + Ravines + + + Gulfs + + + Narrow valley + + + Rhyming slangs + + + Pieces,bits + + + Women whose children all + + + Tradition of prophet of the prophet Muhammad (SAWS) SEE HADIISEWOL + + + Some kinds of bird + + + In pl. Hearsay + + + black refusal + + + Caterpillars, maggots, worms: same as + + + The largest kind of gown: see + + + Choppers for grass + + + Customs duties + + + Clowns + + + Love + + + Caring for + + + Felt affection for + + + Webs + + + grains + + + hyaena which can become a human + + + pulse + + + edible seeds of various leguminous plants + + + divisions + + + sides + + + department + + + sweat + + + perspiration + + + Shares + + + Portions + + + Lots + + + Fates + + + Eggs + + + A kind of gown with short sleeves see jaba2 + + + Occasions of helping + + + light, shininess + + + Guinea fowls + + + the joy prolonged high _pitched sounds of women + + + camel which turns irrigation machine + + + I do not see see what I am to get + + + Red scorpions + + + Awls with a handle + + + Buffalo weaver birds + + + Cross_beams for irrigation; + + + Possessors + + + Wicked ones + + + Members of a family + + + Household + + + Hi + + + heal + + + disgrace of the + + + That + + + he/she + + + doctor + + + theirs + + + five + + + two + + + to tilt + + + to go round an obstacle + + + its + + + how are you this morning? + + + have you spent the night well? + + + amen + + + from + + + on + + + above + + + on top of + + + up + + + to ward off + + + another, different + + + at + + + within, in + + + friend + + + to urinate, to be wet + + + to choose, select + + + See + + + Ripe decorticated nuts + + + Opinion or way of thinking + + + Behaviour reflecting this + + + Nuts of shea tree + + + Biscuits + + + Panicle of Guinea corn + + + Fragment of substance,as of crumbled cooked food + + + Rectangular houses + + + Small slave girls + + + Alas! + + + regrettably + + + unfortunately + + + what a pity + + + Fences made of wooden stakes with cornstalk tied to it forming a solid fence + + + loads + + + bobbins + + + domre + + + Donkey + + + Ropes made from grass + + + Strings + + + The white silk cotton tree + + + see dibinoore + + + see dimngal + + + see dirru + + + Hankerchieves + + + cows kept for milking, see diilaaye + + + Handkerchiefs + + + Trees with edible yellow 'plums'and the fruits + + + Eructation + + + Cooking pots for takai + + + Hippopotamuses + + + Male termites + + + Large hoes + + + Intermediaries + + + At, to, until, from, UpTo, haha saare, at + + + Two_stringed lutes + + + Comings + + + Attendances + + + Times or places of coming + + + Necklaces of + + + headmen + + + Root foundation + + + Magic + + + Stratagem + + + Organs of sight + + + Large leg irons + + + Stocks + + + Camels + + + Units + + + The calves of the legs + + + Fleshy hind part of the human legs below the knees + + + Copies + + + destitute ones + + + Unit + + + Ant_eaters + + + aardvarks + + + Mines + + + Magicians + + + Rivers, stream, + + + They who accept; see jaboowo + + + Handmaids + + + Female servants + + + Lines i.e column + + + Germans + + + Male pudenda + + + Male organ of copulation and (in mammals) urination + + + Jaw bones + + + The flat part of the two sides of the head between the forehead and the ear + + + Holy war + + + Pockets + + + Small mushroom-shaped ant-hiil + + + Foreigner + + + Foreign body + + + Fruit + + + But + + + Your (poss) + + + You + + + Whittle + + + Cut in to strips + + + Divorced + + + Watery + + + healthy + + + one + + + I have come to visit you + + + To bray + + + she/he + + + because + + + fiance + + + however + + + then + + + thousand + + + your + + + good afternoon + + + have you spent the morning well? + + + as for + + + indeed + + + to understand + + + to play + + + to buy + + + to end, to bring to an end + + + if + + + to pound (in mortar) + + + greetings upon arrival + + + Tamed disciplined horses + + + Darkish grey horses + + + Diaphragm brisket + + + with + + + Coloured mats imported from the Cameroons + + + Also + + + And + + + The weaver birds + + + Egg also testes, especially of boys when they first drop + + + Leucodermatic condition of the skin + + + A skin disorder in which patches of skin tend to lose its natural colour + + + Whinnying and bursting into flames + + + abortion + + + men of measured gait + + + same as diyeele + + + Whirlwind + + + witch, wizard + + + For, because of; + + + see derto + + + places where things are kept see resrude + + + same as diyeele + + + Straw mats + + + Full-grown + + + Important + + + Elder + + + Musfish + + + Boastings,flauntings + + + Seasons + + + Chapter + + + Experts + + + As a horseman + + + Cheekbones + + + Unfertilized eggs + + + superlative good or bad for. capable + + + Which + + + Inter + + + Restrictions + + + one's with gaps in the teeth + + + Large pot always kept in the hut: see + + + Showing aversion to + + + Rivers, stream, + + + Woman's cooking knives + + + Love + + + Caring for + + + Felt affection for + + + Cows of the colours of bush fowl + + + Married women without children + + + Waves + + + Oversight + + + A copy + + + Camels + + + Divisions + + + Degrees + + + Parts + + + Sides + + + Department + + + Venial sin + + + Pardonable contradiction + + + Whole calabash with a small hand_hole in the top + + + Destitute ones + + + Give victory over + + + Two or more men married to sisters + + + Plains + + + Level tract of country + + + Capital + + + Accumulated wealth + + + fireflies, beetles emitting phosphorescent light + + + Conquered people + + + Feeling of pleasure and contentment + + + Files + + + grass-roofed huts through which entrances are made to a compound; + + + barbs to a spear or arrow; + + + barbs to a spear or arrow; + + + Leaves + + + Young leaves + + + Hi + + + ɗume means what + + + Deviate from + + + Ashamed + + + after + + + An exclamation of impatient + + + That one + + + there + + + in + + + when? + + + fulani person + + + hundred + + + fulani man + + + fourth + + + wooden trough + + + or, nor + + + another + + + good morning + + + have you awakened in health? + + + exclamation of surprise + + + student + + + fulani, pullo + + + what + + + to set up a stick or pole + + + Of + + + Ravings,wild or delirious talk + + + A coloured mat imported from the Cameroons + + + Hedgehogs + + + Any of various small birds + + + Large livers + + + allas! + + + long-nosed + + + Rattles used during games + + + see + + + cook, rooster + + + The fruit of bantahi + + + books + + + Here he is + + + Sweetmeat + + + Leave of a corn stalk + + + With water + + + Arts; treatises,trade fairs, expositions; + + + Bull + + + Especially a young bull + + + Beams + + + Ridge + + + Poles + + + Woman whose children all die + + + The youngster children of families + + + Afzeria Africana + + + The mahogany bean tree + + + Weevils + + + The crested larks + + + A child whose mother dies before it is weaned + + + A pocket-books; a small book + + + Impetuous: see kafdo + + + Habasinko'en, Abyssinian + + + Which + + + Inter + + + land crabs + + + one's who have lost the full use of his limb + + + Character, characteristic: see + + + Manatee + + + Aquatic plant_eating mammals + + + Water marsh of resembling coarse grass + + + Small calabash + + + Thorny shrub with edible red brown berries + + + Large edible frog + + + Bath + + + Water containers for bath + + + Chicken + + + Hen + + + Returned pilgrims + + + Occasions of shouting + + + magicians + + + The green leaves of the tobacco plant + + + Occasions of shouting + + + Pulse + + + Edible seeds of various leguminous plants + + + Pommel + + + Knobs + + + At the end of a sword_hilt + + + Upward projecting front of saddle + + + Guinea fowls, see + + + Skink_lizards + + + Rain + + + Fruit + + + Fruit + + + Fruit pulp + + + People + + + you (singular) + + + nobody + + + although + + + husband + + + I have to come on a visit + + + Up + + + grand parents + + + dream + + + thousand + + + How have we spent the day (pl)? + + + people + + + either.....or + + + making mistake + + + your + + + his + + + me + + + and + + + with + + + it + + + he + + + she + + + to trade, to retail + + + outside + + + in front of, in front, at the front + + + two years ago + + + to greet someone with salaamu aleykum + + + to sell + + + to find + + + Bundles of grass or wood + + + Days + + + Including the nights + + + Stages on a journey + + + Kind of flute + + + chameleon + + + fortune tellers + + + spring trap + + + Babies up to one year + + + Infants + + + see diiwaanu + + + Race-courses, hippodrome + + + Nuts of shea tree + + + Obligatory religious duties; ordinance, statute + + + Subject + + + Fronds of the young doum plamvbalol + + + Long trumpet + + + Oyster + + + Cloth + + + Garments + + + The chest + + + Bosom + + + Inner suspended bands of a hut + + + Rim of a basket + + + Casks + + + Drums + + + Mud platforms + + + Mud beds + + + Thrones + + + Old cows + + + Sing 3rd pers + + + That cow + + + right to use and profit from somebody's property + + + usufruct of a slave + + + Column support + + + benefit + + + in goodly things + + + Waterside or marsh plant resembling coarse + + + Mats made of shoots from the palm + + + Upright, decent + + + A leguminous shrubs, sesbania leotocarpa: + + + Ones who have reached puberty + + + Creases + + + Lines coursed by folding or crushing + + + whole calabash with a small hand hole in the top + + + the bee-eaters + + + The bee_eaters + + + Digger + + + Crowbar + + + The superior places (towns) + + + Abbizzia chevalieri + + + Abbizzia chevalieri + + + The mouse bird (Coly) + + + Place for dumpling refuse,dung_hill; + + + The knob at the end of the handle of a knife + + + Usually for ornament + + + But in the case of a dagger to lend weight + + + Lord; owner; master + + + owner of,one's with + + + Small flavoured jelly-like lozenges + + + The fruit of the jujube tree + + + Parts + + + Pieces + + + Members + + + Deep stream + + + Or part of a river + + + Fresh leaves + + + Water-leaf + + + Ours + + + Sift + + + Slender + + + Thin + + + and + + + nothing + + + before + + + glowing embers + + + about + + + Near + + + Who? + + + Little piece of excrement + + + you + + + why? + + + index + + + bracelet + + + Name + + + to sit on eggs + + + to leave alone, throw away + + + to be crippled + + + your + + + you + + + all, both, also + + + until + + + to be finished + + + Throwing sticks + + + Cows with horns drooping unfastened towards the ears + + + Woman's fibre covers for a load + + + The long straight shoots of the combretum species shrub + + + Both the sweet and the salanum potato + + + african fox + + + Sort of watermelon + + + Pawpaw trees + + + belly, stomach + + + the relationship between the child of an aunt and that of an uncle + + + A term of reproach + + + Eloquent ones; orators,facile writers; stylists + + + Water monitor + + + Objections + + + Cows with horns twisted back + + + The Egyptian mimosa + + + The pods + + + Dances + + + Quicksands + + + Rain clouds + + + Mountain mist + + + hooks + + + The tawny, yellowish-brown eagle + + + Westerners + + + Living together + + + Pigs + + + Swine + + + Cover (hat) for a corn_bin + + + Fine sights + + + wonderful things + + + stories + + + legends traditions + + + Pits + + + Holes + + + Excuses + + + Cows with white body and black face + + + Whiskers + + + The outer edge of a cloth or mat + + + Grains + + + Clever one's + + + Experts + + + Fetters leg irons + + + Yellow-flowered shrubs use in fever + + + Brave ones + + + Ignorant person + + + Unlettered + + + The day before occasions + + + Fetivals + + + Blood + + + Rivers + + + Streams + + + Brooks + + + Channel, stream + + + Emirates + + + Victories + + + Cows similar in colour to gerlaaye + + + Members of a clan + + + Connected with teaching + + + Vulva,external famale genitals; + + + Large sores in cattle + + + To be an idiot + + + To be mentally deficient person incapable of rational canduct + + + Seperate + + + doubt in + + + Strong + + + Remove a handle from + + + Colour + + + we, us + + + ourselves + + + eighth + + + to accustomed + + + when people have had lunch + + + or + + + are you well? + + + have you arrived well? + + + I am fine + + + to awaken someone + + + fulfulde, fula + + + sleep well + + + good night + + + to follow + + + Proof; demonstration; evidence; tokens + + + Persons who reached adulthood + + + Marshy land, Oasis, swamps + + + outside crown of roof + + + Leaves, sheets of paper + + + handkerchiefs + + + places where things are kept + + + The holes in the game tile + + + Head slaves + + + Threads + + + Gowns made of imported cloth + + + Dancing + + + Dances + + + Gabor hawks + + + Sword sling + + + End: see + + + Non-fulbe l: members of another + + + for + + + so that + + + Religious or formal poems + + + Lice which infest chicken + + + Women incapable of sexual intercourse + + + Stiffening of the neck in cattle + + + Fetters + + + Leg irons + + + Lovers + + + Friends + + + Pilgrims making the pilgrimage + + + Helping of porridge + + + The piece of calabash for dishing porridge up + + + the tropics + + + the region between the tropics of cancer and Capricorn + + + clever ones + + + expert + + + Mines + + + Shares + + + Portions + + + Pits + + + Holes + + + A town ditch + + + Barriers + + + Fortresses + + + Fine sights + + + Wonderful things + + + Great grand sons + + + Female slaves + + + roaring; noise + + + names,nouns + + + he accepted with the right hand + + + Light saddled-cloth + + + Hoes + + + Cardinal number twenty + + + Calabash for turning milk into sour + + + Light + + + Women who were marr, whether widow,or divorcee + + + Geckos + + + Diminutives + + + Seeds + + + Seeds + + + diff --git a/extensions/wikidata-lexemes/output/fi.xml b/extensions/wikidata-lexemes/output/fi.xml new file mode 100644 index 00000000..b2100dd1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/fi.xml @@ -0,0 +1,601 @@ + + + + + + + + + so + + + + + + goddammit + + + + + + + + + + + + until + + + + + + goshdarnit + + + + + + hello/hi + + + + + + that (subordinating conjunction) + + + + + + if + + + + + + goshdarnit + + + + + + goshdarnit + + + + + + yksikön toisen persoonan pronomini + + + + + + + + + + + + + + + + + + + + + + monikon ensimmäisen persoonan pronomini + + + + + + miljoona miljoonaa + + + + + + goddammit + + + + + + + + + + + + osoittaessa tai viitattaessa johonkin aivan puhujan lähellä olevaan asiaan, esineeseen tai ihmiseen + + + + + + + goshdarnit + + + + + + kotieläimiä ajettaessa tai kutsuttaessa + + + + + + + + + + + + + + + + + yksikön ensimmäisen persoonan pronomini + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + joku toinen henkilö tai jokin toinen asia, kuin mitä käsiteltiin aikaisemmin + Ihmisiä juoksi pitkin saarta, ja karhut, pukit, hirvet, sudet, ketut ja kaikki muut eläimet niiden jäljestä. + Muussa laissa tai asetuksessa olevan viittauksen tällä lailla kumottuihin lakeihin katsotaan lain voimaantulon jälkeen tarkoittavan viittausta tähän lakiin. + + + + + + rinnastuskonjuktio, joka liittää yhteen vaihtoehtoina esitettäviä sanoja tai lauseita + Äidinkielenä opetetaan oppilaitoksen opetuskielen mukaisesti suomea tai ruotsia tai opiskelijan äidinkielen mukaisesti saamen kieltä. + + + + + + these + + + + + + other/another + + + + + + behind + + + + + + goshdarnit + + + + + + goshdarnit + + + + + + + + + + + + + + + + + what/which? + + + + + + that (when not being directly indicated, or when both speaker and listener know what's being referred to) + + + + + + + and + + + + + + but + + + + + + + + + + + + + + + + osoittaessa tai viitattaessa johonkin aivan puhujan lähellä olevaan asiaan, esineeseen tai ihmiseen + + + + + + + + + + + + + I (first-person singular pronoun) + Parketti kutsuu mua ku en oo enää lukossa / Niinku cha cha cha mä oon tulossa + + + + + + + a few/some + + + + + + goshdarnit + + + + + + goshdarnit + + + + + + goshdarnit + + + + + + + + + + + + + + + + + + + yksikön kolmannen persoonan pronomini + + + + + + when + + + + + + goddammit + + + + + + + + + + + + goshdarnit + + + + + + + + + + + + + + + + + monikon 3. persoonan pronomini + He puhelivat keskenään hiljaisella äänellä. + Heille tuli kaksitoista kanaa ja kukko. + + + + + + goddammit + + + + + + + + + + + + + + + + + + + + + + + + + + + monikon toisen persoonan pronomini + + + + + + goddammit + + + + + + + + + + + + goddammit + + + + + + + + + + + + goddammit + + + + + + + + + + + + when + + + + so + + + goddammit + + + until + + + goshdarnit + + + hello/hi + + + that (subordinating conjunction) + + + if + + + goshdarnit + + + goshdarnit + + + yksikön toisen persoonan pronomini + + + monikon ensimmäisen persoonan pronomini + + + miljoona miljoonaa + + + goddammit + + + osoittaessa tai viitattaessa johonkin aivan puhujan lähellä olevaan asiaan, esineeseen tai ihmiseen + + + goshdarnit + + + kotieläimiä ajettaessa tai kutsuttaessa + + + yksikön ensimmäisen persoonan pronomini + + + joku toinen henkilö tai jokin toinen asia, kuin mitä käsiteltiin aikaisemmin + Ihmisiä juoksi pitkin saarta, ja karhut, pukit, hirvet, sudet, ketut ja kaikki muut eläimet niiden jäljestä. + Muussa laissa tai asetuksessa olevan viittauksen tällä lailla kumottuihin lakeihin katsotaan lain voimaantulon jälkeen tarkoittavan viittausta tähän lakiin. + + + rinnastuskonjuktio, joka liittää yhteen vaihtoehtoina esitettäviä sanoja tai lauseita + Äidinkielenä opetetaan oppilaitoksen opetuskielen mukaisesti suomea tai ruotsia tai opiskelijan äidinkielen mukaisesti saamen kieltä. + + + these + + + other/another + + + behind + + + goshdarnit + + + goshdarnit + + + what/which? + + + that (when not being directly indicated, or when both speaker and listener know what's being referred to) + + + and + + + but + + + osoittaessa tai viitattaessa johonkin aivan puhujan lähellä olevaan asiaan, esineeseen tai ihmiseen + + + I (first-person singular pronoun) + Parketti kutsuu mua ku en oo enää lukossa / Niinku cha cha cha mä oon tulossa + + + a few/some + + + goshdarnit + + + goshdarnit + + + goshdarnit + + + yksikön kolmannen persoonan pronomini + + + when + + + goddammit + + + goshdarnit + + + monikon 3. persoonan pronomini + He puhelivat keskenään hiljaisella äänellä. + Heille tuli kaksitoista kanaa ja kukko. + + + goddammit + + + monikon toisen persoonan pronomini + + + goddammit + + + goddammit + + + goddammit + + + when + + + diff --git a/extensions/wikidata-lexemes/output/fj.xml b/extensions/wikidata-lexemes/output/fj.xml new file mode 100644 index 00000000..40a4a7e4 --- /dev/null +++ b/extensions/wikidata-lexemes/output/fj.xml @@ -0,0 +1,21 @@ + + + + + + + + + capital of Fiji + + + + capital of Fiji + + + diff --git a/extensions/wikidata-lexemes/output/fo.xml b/extensions/wikidata-lexemes/output/fo.xml new file mode 100644 index 00000000..bc8550ee --- /dev/null +++ b/extensions/wikidata-lexemes/output/fo.xml @@ -0,0 +1,215 @@ + + + + + + + + + I; first-person singular pronoun + + + + + + ja + + + + + + + four + + + + + + what + + + + + + tallet to + + + + + + + + + tallet tre + + + + + + seventeen + + + + + + tallet tredive + + + + + + one + + + + + + nej + + + + + + + tallet elleve + + + + + + the number six + + + + + + ottende + + + + + + five + + + + + + the number 10 + + + + + + tallet otte + + + + + + tallet ni + + + + + + mellem + + + + + + the number 12 + + + + + + seventeenth + + + + + + tallet syv + + + + + + tallet 13 + + + + I; first-person singular pronoun + + + ja + + + four + + + what + + + tallet to + + + tallet tre + + + seventeen + + + tallet tredive + + + one + + + nej + + + tallet elleve + + + the number six + + + ottende + + + five + + + the number 10 + + + tallet otte + + + tallet ni + + + mellem + + + the number 12 + + + seventeenth + + + tallet syv + + + tallet 13 + + + diff --git a/extensions/wikidata-lexemes/output/fr.xml b/extensions/wikidata-lexemes/output/fr.xml new file mode 100644 index 00000000..28d2ab1f --- /dev/null +++ b/extensions/wikidata-lexemes/output/fr.xml @@ -0,0 +1,3180 @@ + + + + + + + + + six + + + + + + nombre entier naturel + + + + + + nombre cardinal entre treize et quinze + + + + + + with + + + + + + + adjectif possessif 3ème personne pluriel + + + + + + language + + + + + + farewell + + + + + + dénué de + + + + + + direction faced by the front of an item + + + + + + + hundred thousand + + + + + + (expression of approval/agreement/consent) + + + + + + nombre + + + + + + nombre + + + + + + nombre 42 + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + + ordinal number for 2 + + + + + + through + + + + + + French watchmaking term + + + + + + musical interval + + + + + + nombre ordinal + + + + + + musical interval spanning 11 staff positions + + + + + + ordinal number for 16 + + + + + + ordinal number for 31 + + + + + + ordinal number for 42 + + + + + + ordinal number for 46 + + + + + + ordinal number for 54 + + + + + + ordinal number for 61 + + + + + + ordinal number for 62 + + + + + + ordinal number for 68 + + + + + + ordinal number for 75 + + + + + + ordinal number for 100 + + + + + + the number 0 + + + + + + to the right + + + + + + adverbe interrogatif + + + + + + adverbe interrogatif + + + + + + or + + + + + + simultaneously (at the same time) + + + + + + just (barely, recently) + + + + + + nombre cardinal entre trois et cinq + + + + + + playing card + + + le nombre 9 + + + + + + malgré + + + + + + pre-determined number of strokes that a scratch (or 0 handicap) golfer should require to complete a hole or round + + + + + + + they (female) + + + + + + in a row (successively/consecutively) + + + + + + top part of a shoe, above the sole + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + + ordinal number for 6 + + + + + + ordinal number for 0 + + + + + + musical interval spanning 12 staff positions + + + + + + musical interval + + + + + + ordinal number for 21 + + + + + + ordinal number for 22 + + + + + + ordinal number for 30 + + + + + + ordinal number for 35 + + + + + + nombre ordinal + + + + + + ordinal number for 49 + + + + + + ordinal number for 56 + + + + + + ordinal number for 67 + + + + + + ordinal number for 78 + + + + + + ordinal number for 82 + + + + + + ordinal number for 85 + + + + + + ordinal number for 88 + + + + + + ordinal number for 90 + + + + + + ordinal number for 91 + + + + + + диакритический знак во французском + + + + + + Unicode character + + + + + + + pronom utilisé sans distinction de genre + + + + + + ex post facto (e.g. based on experimental data) + + + + + + related to a type of argument that something is correct because it is not disproven by a certain case + + + + + + by the job (of work paid according to what has been done) + + + + + + + parties comestibles des animaux de boucherie, autres que la viande musculaire – souvent les organes internes + + + + + + nombre + + + + + + pronom interrogatif + + + + + + adverbe interrogatif + + + + + + adverbe interrogatif + + + + + + + + my + + + + + + + + use of pitch to differentiate words in a language + + + + + + who or whom (relative) + + + + + + nombre cardinal entre un et trois, 2 + + + + + + nombre cardinal + + + + + + playing card + + + nombre + + + + + + heraldic term + + + twelve + + + + + + + she + + + + + + + + + this + + + + + + speakers/writers, or the speaker/writer and at least one other person + + + + + + they + + + + + + a little/somewhat + + + + + + in the middle of/amid/amidst + + + + + + число + + + + + + thanks + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + + no, none, not any + + + + + + ordinal number for 3 + + + + + + nombre ordinal + + + + + + ordinal number for 8 + + + + + + ordinal number for 17 + + + + + + ordinal number for 18 + + + + + + ordinal number for 20 + + + + + + ordinal number for 32 + + + + + + ordinal number for 57 + + + + + + ordinal number for 60 + + + + + + ordinal number for 66 + + + + + + ordinal number for 71 + + + + + + ordinal number for 94 + + + + + + ordinal number for 96 + + + + + + ordinal number for 99 + + + + + + as well as, besides, on top of + + + + + + igennem + + + + + + pronom utilisé sans distinction de genre + + + + + + cri de joie + + + + + + to the left + + + + + + + muscles constituant les parois antérieures et latérales de l'abdomen + + + exercices de gymnastique conçus pour renforcer les muscles de l'abdomen + + + + + + nombre entier naturel + + + + + + adverbe interrogatif + + + + + + and + + + + + + + + a(n), indefinite article + + + + + + + nombre cardinal + + + + + + unit of length + + + thousand + + + + + + einen Gegensatz ausdrückend + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre entier naturel + + + + + + nombre entier naturel + + + + + + nombre entier naturel + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + ordinal number for 80 + + + + + + ordinal number for 81 + + + + + + ordinal number for 83 + + + + + + ordinal number for 87 + + + + + + Unicode character + + + + + + Expression of awe, terror, surprise or astonishment + + + + + + from afar/at a distance + + + + + + more so (something, usually in comparison with something else) + + + + + + pour appeler l'attention + + + exclamation de surprise + + + formule d'adresse hostile, outragée, d'opposition + + + + + + + + I + + + + + + by the way (about that) + + + + + + metaphysics term designating all that exists + + + + + + + language + + + + + + perfectly/admirably + + + + + + five + + + + + + heraldic term + + + fifteen + + + + + + heraldic term + + + sixteen + + + + + + + + déterminant possessif + + + + + + nombre cardinal + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + ordinal number for 5 + + + + + + musical interval spanning nine staff positions + + + + + + ordinal number for 28 + + + + + + ordinal number for 39 + + + + + + ordinal number for 40 + + + + + + ordinal number for 47 + + + + + + ordinal number for 52 + + + + + + ordinal number for 53 + + + + + + nombre ordinal + + + + + + ordinal number for 65 + + + + + + ordinal number for 72 + + + + + + ordinal number for 76 + + + + + + nombre ordinal + + + + + + ordinal number for 95 + + + + + + ordinal number for 97 + + + + + + ninetieth (90th) + + + + + + + salutation used at night + + + + + + formule de salutation utilisée lorsqu’on rencontre quelqu’un + + + + + + notation musicale et genre musical du XVIIe au XIXe siècles + + + + + + panneaux de verre coloré décoratif, souvent en assemblage + + + + + + + any person + + + + + + + + + you, second person singular pronoun + + + + + + + + he; third-person singular pronoun + + + + + + nombre + + + + + + + + + nombre ordinal + + + + + + heraldic term + + + seventeen + + + + + + beside/next to (proximity in space) + + + besides/alongside (simultaneity) + + + + + + heraldic term + + + nineteen + + + + + + at first (in the beginning) + + + + + + in basketball, the action of a defensive player legally deflecting a field goal attempt from an offensive player to prevent a score + + + + + + direction faced by the back of an item + + + + + + before + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + ordinal number for 23 + + + + + + ordinal number for 25 + + + + + + ordinal number for 29 + + + + + + ordinal number for 33 + + + + + + ordinal number for 36 + + + + + + ordinal number for 37 + + + + + + ordinal number for 55 + + + + + + ordinal number for 58 + + + + + + ordinal number for 64 + + + + + + ordinal number for 77 + + + + + + ordinal number for 79 + + + + + + ordinal number for 93 + + + + + + Meteorological Service of Canada's station for Purdy (MSC ID: 6106779), Ontario, Canada + + + + + + pronom interrogatif + + + + + + + + + + préposition pour marquer l'appartenance, la possession + + + particule dans les noms de famille français + Madame de Crussol vint lundi à Saint-Germain + + + préposition pour marquer la provenance ou l'origine + La recette nous vient de Suisse. + + + particule verbale + + + pour marquer une quantité + une Société mathématique qui compte près de trois cents membres + + + + + + nombre cardinal + + + + + + therefore/so + + + + + + word describing one of two artworks conceived as a pair + + + + + + everyone in a given place + + + + + + + nombre + + + + + + nombre entier naturel + + + + + + + + + someone + + + + + + because of/for this reason + + + + + + forward (towards the front) + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + à voix basse + + + + + + musical interval spanning fifteen staff positions and twenty-four semitones + + + + + + nombre ordinal + + + + + + nombre ordinal + + + + + + ordinal number for 48 + + + + + + ordinal number for 50 + + + + + + ordinal number for 51 + + + + + + ordinal number for 59 + + + + + + ordinal number for 73 + + + + + + ordinal number for 74 + + + + + + ordinal number for 92 + + + + + + ordinal number for 98 + + + + + + nombre + + + + + + nom de famille + + + + + + число + + + + + + + + + articile défini + + + + + + Austroasiatic language spoken in the Nicobar Islands of India + + + + + + heraldic term + + + eleven + + + + + + pronom de la deuxième personne du pluriel + + + Pronom d'addresse formelle + + + + + + + musical interval unit + + + hundred + + + + + + + + + all + + + + + + ніхто + + + + + + precisely him/it + + + + + + nombre entier naturel + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + nombre + + + + + + none, no one + + + + + + ordinal number for 4 + + + + + + ordinal number for 19 + + + + + + ordinal number for 24 + + + + + + ordinal number for 26 + + + + + + nombre ordinal + + + + + + ordinal number for 38 + + + + + + ordinal number for 43 + + + + + + ordinal number for 45 + + + + + + ordinal number for 69 + + + + + + ordinal number for 70 + + + + + + ordinal number for 84 + + + + + + ordinal number for 86 + + + + + + + diacritic in Latin, Greek and Cyrillic scripts + + + + + + Latin phrase meaning "for this". In English, it generally signifies a solution designed for a specific problem or task, non-generalizable, and not intended to be able to be adapted to other purposes (compare with a priori) + + + + + + hallo + + + + + + musique vocale sans instrument + + + + six + + + nombre entier naturel + + + nombre cardinal entre treize et quinze + + + with + + + adjectif possessif 3ème personne pluriel + + + language + + + farewell + + + dénué de + + + direction faced by the front of an item + + + hundred thousand + + + (expression of approval/agreement/consent) + + + nombre + + + nombre + + + nombre 42 + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + ordinal number for 2 + + + through + + + French watchmaking term + + + musical interval + + + nombre ordinal + + + musical interval spanning 11 staff positions + + + ordinal number for 16 + + + ordinal number for 31 + + + ordinal number for 42 + + + ordinal number for 46 + + + ordinal number for 54 + + + ordinal number for 61 + + + ordinal number for 62 + + + ordinal number for 68 + + + ordinal number for 75 + + + ordinal number for 100 + + + the number 0 + + + to the right + + + adverbe interrogatif + + + adverbe interrogatif + + + or + + + simultaneously (at the same time) + + + just (barely, recently) + + + nombre cardinal entre trois et cinq + + + playing card + + + le nombre 9 + + + malgré + + + pre-determined number of strokes that a scratch (or 0 handicap) golfer should require to complete a hole or round + + + they (female) + + + in a row (successively/consecutively) + + + top part of a shoe, above the sole + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + ordinal number for 6 + + + ordinal number for 0 + + + musical interval spanning 12 staff positions + + + musical interval + + + ordinal number for 21 + + + ordinal number for 22 + + + ordinal number for 30 + + + ordinal number for 35 + + + nombre ordinal + + + ordinal number for 49 + + + ordinal number for 56 + + + ordinal number for 67 + + + ordinal number for 78 + + + ordinal number for 82 + + + ordinal number for 85 + + + ordinal number for 88 + + + ordinal number for 90 + + + ordinal number for 91 + + + диакритический знак во французском + + + Unicode character + + + pronom utilisé sans distinction de genre + + + ex post facto (e.g. based on experimental data) + + + related to a type of argument that something is correct because it is not disproven by a certain case + + + by the job (of work paid according to what has been done) + + + parties comestibles des animaux de boucherie, autres que la viande musculaire – souvent les organes internes + + + nombre + + + pronom interrogatif + + + adverbe interrogatif + + + adverbe interrogatif + + + my + + + use of pitch to differentiate words in a language + + + who or whom (relative) + + + nombre cardinal entre un et trois, 2 + + + nombre cardinal + + + playing card + + + nombre + + + heraldic term + + + twelve + + + she + + + this + + + speakers/writers, or the speaker/writer and at least one other person + + + they + + + a little/somewhat + + + in the middle of/amid/amidst + + + число + + + thanks + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + no, none, not any + + + ordinal number for 3 + + + nombre ordinal + + + ordinal number for 8 + + + ordinal number for 17 + + + ordinal number for 18 + + + ordinal number for 20 + + + ordinal number for 32 + + + ordinal number for 57 + + + ordinal number for 60 + + + ordinal number for 66 + + + ordinal number for 71 + + + ordinal number for 94 + + + ordinal number for 96 + + + ordinal number for 99 + + + as well as, besides, on top of + + + igennem + + + pronom utilisé sans distinction de genre + + + cri de joie + + + to the left + + + muscles constituant les parois antérieures et latérales de l'abdomen + + + exercices de gymnastique conçus pour renforcer les muscles de l'abdomen + + + nombre entier naturel + + + adverbe interrogatif + + + and + + + a(n), indefinite article + + + nombre cardinal + + + unit of length + + + thousand + + + einen Gegensatz ausdrückend + + + nombre + + + nombre entier naturel + + + nombre entier naturel + + + nombre entier naturel + + + nombre entier naturel + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + ordinal number for 80 + + + ordinal number for 81 + + + ordinal number for 83 + + + ordinal number for 87 + + + Unicode character + + + Expression of awe, terror, surprise or astonishment + + + from afar/at a distance + + + more so (something, usually in comparison with something else) + + + pour appeler l'attention + + + exclamation de surprise + + + formule d'adresse hostile, outragée, d'opposition + + + I + + + by the way (about that) + + + metaphysics term designating all that exists + + + language + + + perfectly/admirably + + + five + + + heraldic term + + + fifteen + + + heraldic term + + + sixteen + + + déterminant possessif + + + nombre cardinal + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + ordinal number for 5 + + + musical interval spanning nine staff positions + + + ordinal number for 28 + + + ordinal number for 39 + + + ordinal number for 40 + + + ordinal number for 47 + + + ordinal number for 52 + + + ordinal number for 53 + + + nombre ordinal + + + ordinal number for 65 + + + ordinal number for 72 + + + ordinal number for 76 + + + nombre ordinal + + + ordinal number for 95 + + + ordinal number for 97 + + + ninetieth (90th) + + + salutation used at night + + + formule de salutation utilisée lorsqu’on rencontre quelqu’un + + + notation musicale et genre musical du XVIIe au XIXe siècles + + + panneaux de verre coloré décoratif, souvent en assemblage + + + any person + + + you, second person singular pronoun + + + he; third-person singular pronoun + + + nombre + + + nombre ordinal + + + heraldic term + + + seventeen + + + beside/next to (proximity in space) + + + besides/alongside (simultaneity) + + + heraldic term + + + nineteen + + + at first (in the beginning) + + + in basketball, the action of a defensive player legally deflecting a field goal attempt from an offensive player to prevent a score + + + direction faced by the back of an item + + + before + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + ordinal number for 23 + + + ordinal number for 25 + + + ordinal number for 29 + + + ordinal number for 33 + + + ordinal number for 36 + + + ordinal number for 37 + + + ordinal number for 55 + + + ordinal number for 58 + + + ordinal number for 64 + + + ordinal number for 77 + + + ordinal number for 79 + + + ordinal number for 93 + + + Meteorological Service of Canada's station for Purdy (MSC ID: 6106779), Ontario, Canada + + + pronom interrogatif + + + préposition pour marquer l'appartenance, la possession + + + particule dans les noms de famille français + Madame de Crussol vint lundi à Saint-Germain + + + préposition pour marquer la provenance ou l'origine + La recette nous vient de Suisse. + + + particule verbale + + + pour marquer une quantité + une Société mathématique qui compte près de trois cents membres + + + nombre cardinal + + + therefore/so + + + word describing one of two artworks conceived as a pair + + + everyone in a given place + + + nombre + + + nombre entier naturel + + + someone + + + because of/for this reason + + + forward (towards the front) + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + à voix basse + + + musical interval spanning fifteen staff positions and twenty-four semitones + + + nombre ordinal + + + nombre ordinal + + + ordinal number for 48 + + + ordinal number for 50 + + + ordinal number for 51 + + + ordinal number for 59 + + + ordinal number for 73 + + + ordinal number for 74 + + + ordinal number for 92 + + + ordinal number for 98 + + + nombre + + + nom de famille + + + число + + + articile défini + + + Austroasiatic language spoken in the Nicobar Islands of India + + + heraldic term + + + eleven + + + pronom de la deuxième personne du pluriel + + + Pronom d'addresse formelle + + + musical interval unit + + + hundred + + + all + + + ніхто + + + precisely him/it + + + nombre entier naturel + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + nombre + + + none, no one + + + ordinal number for 4 + + + ordinal number for 19 + + + ordinal number for 24 + + + ordinal number for 26 + + + nombre ordinal + + + ordinal number for 38 + + + ordinal number for 43 + + + ordinal number for 45 + + + ordinal number for 69 + + + ordinal number for 70 + + + ordinal number for 84 + + + ordinal number for 86 + + + diacritic in Latin, Greek and Cyrillic scripts + + + Latin phrase meaning "for this". In English, it generally signifies a solution designed for a specific problem or task, non-generalizable, and not intended to be able to be adapted to other purposes (compare with a priori) + + + hallo + + + musique vocale sans instrument + + + diff --git a/extensions/wikidata-lexemes/output/fy.xml b/extensions/wikidata-lexemes/output/fy.xml new file mode 100644 index 00000000..d4785411 --- /dev/null +++ b/extensions/wikidata-lexemes/output/fy.xml @@ -0,0 +1,39 @@ + + + + + + + + + and + + + + + + through + + + + + + yes + + + + and + + + through + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/ga.xml b/extensions/wikidata-lexemes/output/ga.xml new file mode 100644 index 00000000..0efa4ed6 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ga.xml @@ -0,0 +1,164 @@ + + + + + + + + + at + + + + + + ar an gcúis go + + + + + + + + + + + + + our + + + + + + + I; first-person singular pronoun + + + + + + and + + + + + + + the + + + + + + athwart + + + + + + + + to the, from the + + + + + + + + + + + + + their + + + + + + at + + + + + + + + + + + + + your (plural) + + + + + + from + + + + + + by + + + + + + + to, from + + + + at + + + ar an gcúis go + + + our + + + I; first-person singular pronoun + + + and + + + the + + + athwart + + + to the, from the + + + their + + + at + + + your (plural) + + + from + + + by + + + to, from + + + diff --git a/extensions/wikidata-lexemes/output/gd.xml b/extensions/wikidata-lexemes/output/gd.xml new file mode 100644 index 00000000..4a5765b6 --- /dev/null +++ b/extensions/wikidata-lexemes/output/gd.xml @@ -0,0 +1,21 @@ + + + + + + + + + and + + + + and + + + diff --git a/extensions/wikidata-lexemes/output/gu.xml b/extensions/wikidata-lexemes/output/gu.xml new file mode 100644 index 00000000..bff4be00 --- /dev/null +++ b/extensions/wikidata-lexemes/output/gu.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + I, me + + + + + + (overt plural-marking enclitic; operates on phrase level) + + + + I, me + + + (overt plural-marking enclitic; operates on phrase level) + + + diff --git a/extensions/wikidata-lexemes/output/gv.xml b/extensions/wikidata-lexemes/output/gv.xml new file mode 100644 index 00000000..edbce534 --- /dev/null +++ b/extensions/wikidata-lexemes/output/gv.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/ha.xml b/extensions/wikidata-lexemes/output/ha.xml new file mode 100644 index 00000000..7737f033 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ha.xml @@ -0,0 +1,574 @@ + + + + + + + + + + + + + + + + they + + + + + + + + + + + + + (second person, plural subject pronoun) + + + + + + this, these + + + + + + instead of + + + + + + (connective particle forming numerals 11 to 19) + + + + + + + + + + she + + + + + + Something + + + + + + if … then + + + + + + not + + + + + + except, other than + + + only, nothing but, but rather + + + until + + + unless + + + only when + + + + + + + + our + + + + + + forty + + + + + + + + + that which, the one who + + + + + + + + + + + I (first person singular subject) + + + + + + (used to mark object of causative verbs) + + + with, using + + + at, in + + + to, from + + + having done continously + + + having sensory quality + + + by, by means of + + + in relation to, with respect to + + + than + + + on, upon doing + + + (used to introduce oblique arguments to intransitive verbs) + + + + + + + + + + + + + we + + + + + + to, towards; arriving at + + + + + + when? + + + + + + + + my + + + + + + between + + + + + + + + + + (second-person singular masculine subject pronoun) + + + + + + + + + (links preceding attribute to following nominal) + + + + + + that, who, whom, which + + + + + + + having or being characterized by + + + doer of + + + + + + + + + some, someone + + + + + + welcome + + + + + + and + + + + + + on + + + + + + one + + + + + + after + + + behind + + + + + + (to baby or toddler) open your mouth! + + + + + + (honorific exclamation) + + + + + + How much? + + + + + + Somewhere + + + + + + just like, equivalent to + + + + + + + + + + + (impersonal subject pronoun) + + + + + + with + + + + + + inside + + + + + + + this, this one, these + + + + + + Sometimes + + + + + + + + + + he (third-person masculine singular subject pronoun) + + + + + + + + + he + + + + + + but + + + + + + here + + + + + + yaya? + + + + they + + + (second person, plural subject pronoun) + + + this, these + + + instead of + + + (connective particle forming numerals 11 to 19) + + + she + + + Something + + + if … then + + + not + + + except, other than + + + only, nothing but, but rather + + + until + + + unless + + + only when + + + our + + + forty + + + that which, the one who + + + I (first person singular subject) + + + (used to mark object of causative verbs) + + + with, using + + + at, in + + + to, from + + + having done continously + + + having sensory quality + + + by, by means of + + + in relation to, with respect to + + + than + + + on, upon doing + + + (used to introduce oblique arguments to intransitive verbs) + + + we + + + to, towards; arriving at + + + when? + + + my + + + between + + + (second-person singular masculine subject pronoun) + + + (links preceding attribute to following nominal) + + + that, who, whom, which + + + having or being characterized by + + + doer of + + + some, someone + + + welcome + + + and + + + on + + + one + + + after + + + behind + + + (to baby or toddler) open your mouth! + + + (honorific exclamation) + + + How much? + + + Somewhere + + + just like, equivalent to + + + (impersonal subject pronoun) + + + with + + + inside + + + this, this one, these + + + Sometimes + + + he (third-person masculine singular subject pronoun) + + + he + + + but + + + here + + + yaya? + + + diff --git a/extensions/wikidata-lexemes/output/he.xml b/extensions/wikidata-lexemes/output/he.xml new file mode 100644 index 00000000..a8fa9f7f --- /dev/null +++ b/extensions/wikidata-lexemes/output/he.xml @@ -0,0 +1,789 @@ + + + + + + + + + the + + + + + + מעל, גבוה יותר מדבר אחר + + + בעניין של דבר כלשהו, בנוגע לדבר כלשהו + + + + + + therefore + + + + + + + + ten + + + + + + fantastic + + + a waste of time + + + + + + מילת קישור + + + + + + חשף, מצא, פתח + + + + + + תכונה טובה, הודיה + + + + + + אחרי, לאחר + + + + + + כינוי גוף שלישי יחידה נקבה + + + + + + + + + + + + + Nine + + + + + + + the number 1 + + + + + + כל כך + + + + + + come on/let's go/hurry up + + + + + + נוסח בקשה יהודי על נשמות נפטרים + + + + + + (Анна) שם פרטי של אישה (Anna) + + + + + + or + + + + + + אשר + + + + + + God forbid + + + + + + מציינת כיוון של פעולה – הליכה אל עבר מקום, מתן דבר למישהו וכיו״ב + + + תחילית שנוספת לצורת מקור הפועל לשם יצירת שם הפועל + + + + + + הפרדה, הקדשה, נידוי + + + + + + רב־משקל, ראוי להערכה, שמן + + + + + + (Rosh Hashanah and Yom Kippur greeting) + + + + + + מילת שאלה הפותחת שאלות כן-לא + + + + + + + + + with (comitative) + + + + + + similar to/like + + + + + + מדוע, בשל איזו סיבה + + + + + + איפה + + + לאן + + + + + + אור, זוהר, זריחה + + + + + + Relating to completion, wholeness, peace + + + + + + מילת קישור מנגדת – אך, אולם + + + + + + alas!/woe! + + + + + + + + + + + + + the number 4 + + + + + + + + + + + + the number 5 + + + + + + עוד, בנוסף, אף, כמו־כן + + + + + + + + + + + + + the number 3 + + + + + + מילת יחס המציינת מחסור בדבר; ללא, בלא + + + + + + חיובי, יפה, נחשק + + + + + + מחילה, חיפוי, רחמים + + + + + + + + + + האחד שדובר עליו לא מזמן, אבל רחוק יותר מ„הזה” + + + + + + + + + + + + + + + + about/with regard to/concerning + + + + + + + + + + + + the number 7 + + + + + + + + + + + + the number 8 + + + + + + + + + + + the number 2 + + + + + + האם + + + + + + + נעלם, נמצא במקום לא ידוע + + + + + + (indicates a semantically definite direct object) + + + + + + אחרי, אחר + + + + + + according to/per + + + + + + + + at/near (e.g. in someone's home/office) + + + + + + + the number 10 + + + + + + מילת קישור מנגדת – אבל, אולם + + + + + + I + + + + + + תיאור זמן שבו משהו מתקיים או מתרחש + + + + + + מלת יחס: בתוך, בפנים + + + + + + קו שמחבר חלקים מסתובבים במכונה + + + + + + (bend) + + + (compel) + + + (subjugate) + + + + + + + + + + + + + + + + after + + + + + + + + כינוי רמז + + + + + + (expression of disbelief) + + + + + + מילת קישור לפסוקיות תנאי + + + + + + מילת יחס המציינת מחסור בדבר; בלי, בלא + + + + + + מילת יחס המציינת מחסור בדבר; ללא, בלי + + + + + + (Yom Kippur greeting) + + + + + + כינוי גוף שלישי יחיד זכר + + + + + + זכר צדיק לברכה + + + + + + + + + + the number 6 + + + + + + + + + + + + + + + + + + + + + + + + כינויי הקניין הנצמדים לשם עצם + + + + + + רישום, עשיית אותיות + + + + + + inshallah (God willing) + + + + + + Related to friendship, fellowship + + + + the + + + מעל, גבוה יותר מדבר אחר + + + בעניין של דבר כלשהו, בנוגע לדבר כלשהו + + + therefore + + + ten + + + fantastic + + + a waste of time + + + מילת קישור + + + חשף, מצא, פתח + + + תכונה טובה, הודיה + + + אחרי, לאחר + + + כינוי גוף שלישי יחידה נקבה + + + Nine + + + the number 1 + + + כל כך + + + come on/let's go/hurry up + + + נוסח בקשה יהודי על נשמות נפטרים + + + (Анна) שם פרטי של אישה (Anna) + + + or + + + אשר + + + God forbid + + + מציינת כיוון של פעולה – הליכה אל עבר מקום, מתן דבר למישהו וכיו״ב + + + תחילית שנוספת לצורת מקור הפועל לשם יצירת שם הפועל + + + הפרדה, הקדשה, נידוי + + + רב־משקל, ראוי להערכה, שמן + + + (Rosh Hashanah and Yom Kippur greeting) + + + מילת שאלה הפותחת שאלות כן-לא + + + with (comitative) + + + similar to/like + + + מדוע, בשל איזו סיבה + + + איפה + + + לאן + + + אור, זוהר, זריחה + + + Relating to completion, wholeness, peace + + + מילת קישור מנגדת – אך, אולם + + + alas!/woe! + + + the number 4 + + + the number 5 + + + עוד, בנוסף, אף, כמו־כן + + + the number 3 + + + מילת יחס המציינת מחסור בדבר; ללא, בלא + + + חיובי, יפה, נחשק + + + מחילה, חיפוי, רחמים + + + האחד שדובר עליו לא מזמן, אבל רחוק יותר מ„הזה” + + + about/with regard to/concerning + + + the number 7 + + + the number 8 + + + the number 2 + + + האם + + + נעלם, נמצא במקום לא ידוע + + + (indicates a semantically definite direct object) + + + אחרי, אחר + + + according to/per + + + at/near (e.g. in someone's home/office) + + + the number 10 + + + מילת קישור מנגדת – אבל, אולם + + + I + + + תיאור זמן שבו משהו מתקיים או מתרחש + + + מלת יחס: בתוך, בפנים + + + קו שמחבר חלקים מסתובבים במכונה + + + (bend) + + + (compel) + + + (subjugate) + + + after + + + כינוי רמז + + + (expression of disbelief) + + + מילת קישור לפסוקיות תנאי + + + מילת יחס המציינת מחסור בדבר; בלי, בלא + + + מילת יחס המציינת מחסור בדבר; ללא, בלי + + + (Yom Kippur greeting) + + + כינוי גוף שלישי יחיד זכר + + + זכר צדיק לברכה + + + the number 6 + + + כינויי הקניין הנצמדים לשם עצם + + + רישום, עשיית אותיות + + + inshallah (God willing) + + + Related to friendship, fellowship + + + diff --git a/extensions/wikidata-lexemes/output/hr.xml b/extensions/wikidata-lexemes/output/hr.xml new file mode 100644 index 00000000..dc4bfee5 --- /dev/null +++ b/extensions/wikidata-lexemes/output/hr.xml @@ -0,0 +1,1055 @@ + + + + + + + + + conjunction meaning both + + + + + + priejdlog koji oznakuje početak i drugo + + + + + + + priejdlog koji oznakuje kraj; i drugo + + + + + + + + + + + + + + + + + + + + + + + + + koji pripada samom sebi; vlastiti + + + + + + ali ne; bez; ne gledajući iznimku + + + + + + + + + + + osobna zamjenica za prvo lice jednine + + + + + + veznik za oprečnost, suprotnost, pojačavanje i drugo + + + + + + prijedlog koji oznaćuje uzrok ili narav i drugo + + + + + + prijedlog označajući uzrok, zazlog, obuhvačanje, u blizini, priblizno, itd. + + + + + + prirodni broj veći od trideset i devet; četiri puta deset; 40 + + + + + + + + + + + + + + + + + + + + + + + + + osobna zamjenica za trečo lice jednine + + + + + + + + + + + + + + + + + + + + + bez iznimke; cio; čitav; kao ukopnost; potpunost + + + + + + + + + + osobna zamjenica za drugo lice jednine + + + + + + prirodan broj između tri i pet; 4 + + + + + + veznica koja označuje razlog, uzrok + + + + + + veznik koji izriče način, izjavu, namjeru + + + + + + prirodni broj između trinaest i petnaest; 14 + + + + + + prirodni broj između deset i dvanaest; 11 + + + + + + prirodni broj između jedanaest i trinaest; 12 + + + + + + prirodni broj između dvanaest i četrnaest; 13 + + + + + + prirodni broj veći od devetnaest; deset i deset; 20 + + + + + + + + + + + + + osobna zamjenica za trečo lice množine + + + + + + nego; od; uspoređujući + + + ali ne; bez; isključujući + + + + + + u prostoru ili vremenu kojo se proteže od jednog do drugog ili kojo dijele dvije ili više; između + + + + + + + nešto šta nije unutar + + + + + + + vremenski ranije nego nešto drugo + + + nešto po redu ispred drugoga + + + da se otkas se nešto dogodilo prošlo toliko vremena + + + + + + za pojačavanje nekog osjećanja + + + u situaciji kad se tko čega sjeti + + + + + + prijedlog koji oznakuje mjesto gdje se nešto stavlja ili nalazi, i drugo + + + + + + prirodan broj između dva i četiri; 3 + + + + + + prijedlog koji oznakuje podrjetjlo, uzrok, od unutar čega, i drugo + + + + + + + + + + + + + + + + + + zamjenica + + + + + + + + + + + + + upitna riječ za neponzantih stvari ili pojmova + + + ovisna riječ; ono kojo + + + + + + jedino, isklučivo, ne više nego + + + + + + prijelog koji oznaćuje svrhu, način, uzrok, porijeklo, korist, razdjelenost, i drugo + + + + + + označuje istodobnost + + + + + + nešto šta se proteže od jednog do drugog + + + + + + + + + + zamjenica za skupinu osoba kojoj pripada i osoba koja govori; zamjenica prvo lice množine + + + + + + nalazi u čemu; ne izvan + + + + + + + niše nego; prima dolje; manje vrijedno + + + + + + + nakon; kasnije; nešto šta se dešava bližju ili dublje u budućnost neko nešto drugo + + + + + + prijedlog koji oznakuje unutar čega ili prima čemu ili tog čega i drugo + + + + + + priejdlog koji oznakuje razlog ili blizinu, i drugo + + + + + + prirodni broj između šesnaest i osamnaest; 17 + + + + + + prirodni broj između sedamnaest i devetnaest; 18 + + + + + + + jedan od dva otprilike ista dijela; polovica; polovina + + + + + + zato; budući da; zbog toga; veznica koja dava razlog + + + + + + + + + + + + + + + + + + + prema broju jedan; na početku nekog reda + + + + + + pod uvjetom da + + + + + + preko; više nego; više vrijedno; prima gore + + + + + + + negacija u nabrajanju ili izlaganju; ne to, a i ne ovo; ne tako + + + + + + prvi prirodan broj; 1 + + + + + + prirodni broj između četiri i šest; 5 + + + + + + + priejdlog koji oznakuje da je nešto skupa, ili korišćeno, i drugo + + + + + + potvrđivanje, odobravanje, isticanje + + + + + + + veznica za suprotno, pojačanje ili neočekivano i drugo + + + + + + prirodni broj između osam i deset; 9 + + + + + + označuje da se nalazi ili zbiva blizu nečega itd. + + + + + + u isto virjeme kao nešto drugo, ili dijelom tega vremena + + + + + + veznica za vrijeme ili razlog; radi tega; jer; i onda; svejedno; i ako + + + + + + preko; iznad; više nego + + + + + + + + + + + + + + + prirodan broj između jedan i tri; 2 + + + + + + + + + + povratna zamjenica + + + koristi se da markira pasiv + + + + + + veznica za namjeru, vrijeme, odnos, i drugo + + + + + + odricanje, negiranje, protivnost, i drugo + + + + + + + veznica koja izriče istovjetnost ili sličnost + + + + + + veznica koja označuje izbor između više mogućnosti + + + + + + 7; prirodni broj između šest i osam + + + + + + prirodni broj između devet i jedanaest; 10 + + + + + + prijedlog koji oznakuje poslije vrijemenski nećeg ili nekog + + + + + + + + + + + + + + + + + + + + pokazna zamjenica + + + + + + prijelog oznaćujući pravac prima doli (prima podu), i drugo + + + + + + + iznad; povrh; više; preko nešto + + + + + + od jedne do druge strane bez da se ide okolo + + + tijekom; u toku; u neko vrijeme + + + u matematici, ime razlomačke crte + + + + + + naviše; da drugoj strani; više nego + + + + + + nakon; kasnije; nešto šta se dešava bližju ili dublje u budućnost neko nešto drugo + + + u nekom redoslijedu nakon nešto drugog; odmah do nijega + + + + + + + + + + + + + + + + + + + prema broju dva; poslije prvog nekog reda + + + ne ovi + + + + + + prirodni broj između pet i sedam; 6 + + + + + + prirodni broj između sedam i devet; 8 + + + + + + prijedlog koji oznakuje vezanost, ovisnost, predmet, i drugo + + + + + + prijedlog koji oznakuje pravac, smjer, protivnost, blizinu, itd. + + + + + + prirodni broj između petnaest i sedamnaest; 16 + + + + + + prirodni broj između četrnaest i šesnaest; 15 + + + + + + prirodni broj između osamnaest i dvadeset; 19 + + + + + + + prijedlog označujući prima gori, ili blizinu, i slično + + + + + + prirodni broj veći od dvadeset i devet; tri puta deset; 30 + + + + + + + veznica koja izriče vrijeme, uzrok, uvjet + + + + + + obratno nećeg drugog + + + + + + nego; veže dvije frase koje se ne sklapaju + + + + + + mada; premda; makar; da; i pored toga što; nešto šta je drukčije nego šta se očekuje + + + + + + od; usporedujući; komparativ + + + već; ali; osim; iznimka ili druga tema + + + + + + ime + + + + conjunction meaning both + + + priejdlog koji oznakuje početak i drugo + + + priejdlog koji oznakuje kraj; i drugo + + + koji pripada samom sebi; vlastiti + + + ali ne; bez; ne gledajući iznimku + + + osobna zamjenica za prvo lice jednine + + + veznik za oprečnost, suprotnost, pojačavanje i drugo + + + prijedlog koji oznaćuje uzrok ili narav i drugo + + + prijedlog označajući uzrok, zazlog, obuhvačanje, u blizini, priblizno, itd. + + + prirodni broj veći od trideset i devet; četiri puta deset; 40 + + + osobna zamjenica za trečo lice jednine + + + bez iznimke; cio; čitav; kao ukopnost; potpunost + + + osobna zamjenica za drugo lice jednine + + + prirodan broj između tri i pet; 4 + + + veznica koja označuje razlog, uzrok + + + veznik koji izriče način, izjavu, namjeru + + + prirodni broj između trinaest i petnaest; 14 + + + prirodni broj između deset i dvanaest; 11 + + + prirodni broj između jedanaest i trinaest; 12 + + + prirodni broj između dvanaest i četrnaest; 13 + + + prirodni broj veći od devetnaest; deset i deset; 20 + + + osobna zamjenica za trečo lice množine + + + nego; od; uspoređujući + + + ali ne; bez; isključujući + + + u prostoru ili vremenu kojo se proteže od jednog do drugog ili kojo dijele dvije ili više; između + + + nešto šta nije unutar + + + vremenski ranije nego nešto drugo + + + nešto po redu ispred drugoga + + + da se otkas se nešto dogodilo prošlo toliko vremena + + + za pojačavanje nekog osjećanja + + + u situaciji kad se tko čega sjeti + + + prijedlog koji oznakuje mjesto gdje se nešto stavlja ili nalazi, i drugo + + + prirodan broj između dva i četiri; 3 + + + prijedlog koji oznakuje podrjetjlo, uzrok, od unutar čega, i drugo + + + zamjenica + + + upitna riječ za neponzantih stvari ili pojmova + + + ovisna riječ; ono kojo + + + jedino, isklučivo, ne više nego + + + prijelog koji oznaćuje svrhu, način, uzrok, porijeklo, korist, razdjelenost, i drugo + + + označuje istodobnost + + + nešto šta se proteže od jednog do drugog + + + zamjenica za skupinu osoba kojoj pripada i osoba koja govori; zamjenica prvo lice množine + + + nalazi u čemu; ne izvan + + + niše nego; prima dolje; manje vrijedno + + + nakon; kasnije; nešto šta se dešava bližju ili dublje u budućnost neko nešto drugo + + + prijedlog koji oznakuje unutar čega ili prima čemu ili tog čega i drugo + + + priejdlog koji oznakuje razlog ili blizinu, i drugo + + + prirodni broj između šesnaest i osamnaest; 17 + + + prirodni broj između sedamnaest i devetnaest; 18 + + + jedan od dva otprilike ista dijela; polovica; polovina + + + zato; budući da; zbog toga; veznica koja dava razlog + + + prema broju jedan; na početku nekog reda + + + pod uvjetom da + + + preko; više nego; više vrijedno; prima gore + + + negacija u nabrajanju ili izlaganju; ne to, a i ne ovo; ne tako + + + prvi prirodan broj; 1 + + + prirodni broj između četiri i šest; 5 + + + priejdlog koji oznakuje da je nešto skupa, ili korišćeno, i drugo + + + potvrđivanje, odobravanje, isticanje + + + veznica za suprotno, pojačanje ili neočekivano i drugo + + + prirodni broj između osam i deset; 9 + + + označuje da se nalazi ili zbiva blizu nečega itd. + + + u isto virjeme kao nešto drugo, ili dijelom tega vremena + + + veznica za vrijeme ili razlog; radi tega; jer; i onda; svejedno; i ako + + + preko; iznad; više nego + + + prirodan broj između jedan i tri; 2 + + + povratna zamjenica + + + koristi se da markira pasiv + + + veznica za namjeru, vrijeme, odnos, i drugo + + + odricanje, negiranje, protivnost, i drugo + + + veznica koja izriče istovjetnost ili sličnost + + + veznica koja označuje izbor između više mogućnosti + + + 7; prirodni broj između šest i osam + + + prirodni broj između devet i jedanaest; 10 + + + prijedlog koji oznakuje poslije vrijemenski nećeg ili nekog + + + pokazna zamjenica + + + prijelog oznaćujući pravac prima doli (prima podu), i drugo + + + iznad; povrh; više; preko nešto + + + od jedne do druge strane bez da se ide okolo + + + tijekom; u toku; u neko vrijeme + + + u matematici, ime razlomačke crte + + + naviše; da drugoj strani; više nego + + + nakon; kasnije; nešto šta se dešava bližju ili dublje u budućnost neko nešto drugo + + + u nekom redoslijedu nakon nešto drugog; odmah do nijega + + + prema broju dva; poslije prvog nekog reda + + + ne ovi + + + prirodni broj između pet i sedam; 6 + + + prirodni broj između sedam i devet; 8 + + + prijedlog koji oznakuje vezanost, ovisnost, predmet, i drugo + + + prijedlog koji oznakuje pravac, smjer, protivnost, blizinu, itd. + + + prirodni broj između petnaest i sedamnaest; 16 + + + prirodni broj između četrnaest i šesnaest; 15 + + + prirodni broj između osamnaest i dvadeset; 19 + + + prijedlog označujući prima gori, ili blizinu, i slično + + + prirodni broj veći od dvadeset i devet; tri puta deset; 30 + + + veznica koja izriče vrijeme, uzrok, uvjet + + + obratno nećeg drugog + + + nego; veže dvije frase koje se ne sklapaju + + + mada; premda; makar; da; i pored toga što; nešto šta je drukčije nego šta se očekuje + + + od; usporedujući; komparativ + + + već; ali; osim; iznimka ili druga tema + + + ime + + + diff --git a/extensions/wikidata-lexemes/output/ht.xml b/extensions/wikidata-lexemes/output/ht.xml new file mode 100644 index 00000000..616c0924 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ht.xml @@ -0,0 +1,138 @@ + + + + + + + + + five + + + + + + we; third-person plural pronoun + + + + + + twelve + + + + + + дробь, доля + + + + + + forty + + + + + + three + + + + + + two + + + + + + nine + + + + + + ten + + + + + + one + + + + + + eight + + + + + + six + + + + + + seven + + + + + + four + + + + five + + + we; third-person plural pronoun + + + twelve + + + дробь, доля + + + forty + + + three + + + two + + + nine + + + ten + + + one + + + eight + + + six + + + seven + + + four + + + diff --git a/extensions/wikidata-lexemes/output/hu.xml b/extensions/wikidata-lexemes/output/hu.xml new file mode 100644 index 00000000..53bab232 --- /dev/null +++ b/extensions/wikidata-lexemes/output/hu.xml @@ -0,0 +1,39 @@ + + + + + + + + + 4; a három és az öt közötti szám + + + + + + dużo + + + + + + one + + + + 4; a három és az öt közötti szám + + + dużo + + + one + + + diff --git a/extensions/wikidata-lexemes/output/hy.xml b/extensions/wikidata-lexemes/output/hy.xml new file mode 100644 index 00000000..5ad2c8f0 --- /dev/null +++ b/extensions/wikidata-lexemes/output/hy.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/ia.xml b/extensions/wikidata-lexemes/output/ia.xml new file mode 100644 index 00000000..64ac9fc6 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ia.xml @@ -0,0 +1,21 @@ + + + + + + + + + yes + + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/id.xml b/extensions/wikidata-lexemes/output/id.xml new file mode 100644 index 00000000..d59f553b --- /dev/null +++ b/extensions/wikidata-lexemes/output/id.xml @@ -0,0 +1,455 @@ + + + + + + + + + beserta + + + memakai + + + + + + mudah-mudahan + + + + + + konfiks pembentuk nomina + grosse akta milik mutlak tanah itu. (s.d.t.dg. S. 1897-265.) Bila diadakan pe an atau pembagian suatu barang tetap yang sudah memiliki surat ukur yang dibuat. + + + + + + + serta + + + + + + orang kedua tunggal + padami Unggunan api ini Karena kau tidak akan apa-apa Aku terpanggang tinggal rangka. Februari 1943 Penghabisan kali itu kau datang Membawa kembang berkarang + + + + + + prefiks pembentuk verba transitif atau pasif bentuk pasif "<pronomina> per-" + + + + + + konfiks pembentuk nomina yang bermakna tempat, hasil perbuatan, peristiwa, hal perbuatan, proses + + + + + + konfiks pembentuk nomina + + + + + + konfiks pembentuk nomina + + + + + + + + + sesuatu yang dapat dilihat + Dua helikopter PBB tampak diparkir di landasan. + + + + + + saya, perspektif orang pertama untuk menyebut dia sebagai pembicara atau penulis + Berkata Musa, "Aku telah melakukannya, sedang aku di waktu itu termasuk orang-orang yang khilaf. + + + + + + + + penggolongan untuk objek besar + diberi rezeki buah-buahan dalam surga-surga itu. + + + + + + konfiks pembentuk nomina + + + + + + orang yang diajak bicara + (mengusir) kamu karena kamu beriman kepada Allah, Tuhanmu. Jika kamu benar-benar keluar untuk berjihad pada jalan-Ku dan mencari keridaan-Ku (janganlah kamu berbuat) + + + + + + pengekspresian tawa oleh orang Indonesia di ranah digital + + + + + + + + + + konfiks pembentuk verba + + + + + + konfiks pembentuk verba + + + + + + konfiks pembentuk nomina + + + + + + + konfiks pembentuk verba + Ter-i adalah sebuah konfiks pembentuk verba. Contohnya terkhianati. + + + + + + + konfiks pembentuk verba + + + + + + konfiks pembentuk verba + + + + + + kata depan yang menyatakan tempat permulaan (dalam ruang, waktu, deretan) + + + sejak, mulai + + + + + + + penggolongan untuk benda-benda kecil, buah-buahan + biji buah karet. + + + + + + + + + kata penggolong bagi benda yang panjang + daon djeroek poeroet satoe lembar + + + + + + konfiks pembentuk nomina + + + + + + pilihan + + + + + + menyatakan isi atau uraian kalimat yang di depan + + + + + + + penggolongan untuk hewan + ber siap-siaplah Ganim bin Ayub dengan sebuah kafilah terdiri dari puluhan ekor unta untuk membawa barang dagangannya yang banyak itu. + + + + + + + kata penggolong untuk barang yang tipis atau halus + bunga yang menakjubkan diikuti helai demi helai + + + + + + serupa + + + seperti + + + + + + aku, perspektif orang pertama untuk menyebut dia sebagai pembicara atau penulis + + + + + + + + + + + konfiks pembentuk verba + + + konfiks pembentuk adjektiva. maknanya biasanya adalah "merasa (menimbulkan/menyebabkan/menjadikan rasa) ..." atau "membuat jadi ..." + + + + + + prefiks pembentuk verba transitif atau pasif bentuk pasif "<pronomina> per-i" + + + + + + konfiks pembentuk nomina + + + konfiks pembentuk adjektiva yang bermakna agak + + + konfiks pembentuk verba yang tidak disengaja + + + + + + konfiks pembentuk nomina + + + + + + + + + + + konfiks pembentuk nomina + + + + + + tujuan + + + arah + + + + + + konfiks pembentuk verba + + + + + + konfiks pembentuk verba + + + + beserta + + + memakai + + + mudah-mudahan + + + konfiks pembentuk nomina + grosse akta milik mutlak tanah itu. (s.d.t.dg. S. 1897-265.) Bila diadakan pe an atau pembagian suatu barang tetap yang sudah memiliki surat ukur yang dibuat. + + + serta + + + orang kedua tunggal + padami Unggunan api ini Karena kau tidak akan apa-apa Aku terpanggang tinggal rangka. Februari 1943 Penghabisan kali itu kau datang Membawa kembang berkarang + + + prefiks pembentuk verba transitif atau pasif bentuk pasif "<pronomina> per-" + + + konfiks pembentuk nomina yang bermakna tempat, hasil perbuatan, peristiwa, hal perbuatan, proses + + + konfiks pembentuk nomina + + + konfiks pembentuk nomina + + + sesuatu yang dapat dilihat + Dua helikopter PBB tampak diparkir di landasan. + + + saya, perspektif orang pertama untuk menyebut dia sebagai pembicara atau penulis + Berkata Musa, "Aku telah melakukannya, sedang aku di waktu itu termasuk orang-orang yang khilaf. + + + penggolongan untuk objek besar + diberi rezeki buah-buahan dalam surga-surga itu. + + + konfiks pembentuk nomina + + + orang yang diajak bicara + (mengusir) kamu karena kamu beriman kepada Allah, Tuhanmu. Jika kamu benar-benar keluar untuk berjihad pada jalan-Ku dan mencari keridaan-Ku (janganlah kamu berbuat) + + + pengekspresian tawa oleh orang Indonesia di ranah digital + + + konfiks pembentuk verba + + + konfiks pembentuk verba + + + konfiks pembentuk nomina + + + konfiks pembentuk verba + Ter-i adalah sebuah konfiks pembentuk verba. Contohnya terkhianati. + + + konfiks pembentuk verba + + + konfiks pembentuk verba + + + kata depan yang menyatakan tempat permulaan (dalam ruang, waktu, deretan) + + + sejak, mulai + + + penggolongan untuk benda-benda kecil, buah-buahan + biji buah karet. + + + kata penggolong bagi benda yang panjang + daon djeroek poeroet satoe lembar + + + konfiks pembentuk nomina + + + pilihan + + + menyatakan isi atau uraian kalimat yang di depan + + + penggolongan untuk hewan + ber siap-siaplah Ganim bin Ayub dengan sebuah kafilah terdiri dari puluhan ekor unta untuk membawa barang dagangannya yang banyak itu. + + + kata penggolong untuk barang yang tipis atau halus + bunga yang menakjubkan diikuti helai demi helai + + + serupa + + + seperti + + + aku, perspektif orang pertama untuk menyebut dia sebagai pembicara atau penulis + + + konfiks pembentuk verba + + + konfiks pembentuk adjektiva. maknanya biasanya adalah "merasa (menimbulkan/menyebabkan/menjadikan rasa) ..." atau "membuat jadi ..." + + + prefiks pembentuk verba transitif atau pasif bentuk pasif "<pronomina> per-i" + + + konfiks pembentuk nomina + + + konfiks pembentuk adjektiva yang bermakna agak + + + konfiks pembentuk verba yang tidak disengaja + + + konfiks pembentuk nomina + + + konfiks pembentuk nomina + + + tujuan + + + arah + + + konfiks pembentuk verba + + + konfiks pembentuk verba + + + diff --git a/extensions/wikidata-lexemes/output/ie.xml b/extensions/wikidata-lexemes/output/ie.xml new file mode 100644 index 00000000..f993cc95 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ie.xml @@ -0,0 +1,21 @@ + + + + + + + + + yes + + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/ig.xml b/extensions/wikidata-lexemes/output/ig.xml new file mode 100644 index 00000000..56dc883b --- /dev/null +++ b/extensions/wikidata-lexemes/output/ig.xml @@ -0,0 +1,1388 @@ + + + + + + + + + Invading + + + Attacking + + + + + + + These + + + Certain + + + those who + + + + + + Preventing + + + + + + perfect marker + + + + + + action happening in the present, en route to + + + + + + + used in negative commands + + + + + + + With + + + a kai + + + + + + You + + + + + + Made + + + + + + + in, on, during, without, etc. + + + + + + + + two + + + + + + + just as, like + + + + + + + + + + + proclaim upon something or someone; pray over something or someone + + + + + + Whenever + + + + + + nor + + + + + + dabere na + + + bisa + + + + + + afọ otu + + + rukunin shekaru + + + + + + a word used before or after the number of times something occurred; frequency + + + + + + + sit with legs folded in(humans); curl body together in a rest position(reptiles) + + + To curl body in rest position + + + + + + (a heavy or bulky object) be kept or placed somewhere; a body of water collected somewhere + + + + + + across; over + + + + + + Two hundred and four + + + + + + Believer + + + ndị kwere ekwe + + + + + + About + + + + + + + + + I + + + + + + Please + + + + + + While + + + + + + + towards + + + to do something well + + + perform an action completely + + + + + + + Myself + + + + + + most; plenty; a large number + + + + + + + used to identify a person or thing that is close at hand, indicated, or experienced; this + + + this + + + + + + a word that is used to join two nouns in a phrase or sentence; coordinating conjunction + + + + + + Two hundred and two + + + + + + + Iri isii na ise + + + + + + Two hundred and one + + + + + + Two hundred and seven + + + + + + + the singular, subject, third-person pronoun of the Igbo language (heavy vowel harmonizer); he; she; it + + + + + + + we + + + + + + + + + you (singular) + + + + + + + + + + + denotes past with action verbs and present with non-alternating stative verbs + + + + + + means "not", negation + + + + + + kiss + + + + + + + be empty-handed; be left with nothing + + + + + + be book smart; be brainy + + + + + + (especially animal or human) catch; grip; hold in such a way as to not give room for freedom (likely humiliating, especially for humans) + + + + + + first person plural pronoun equivalent of first person singular object pronoun which can be used as a subject + + + + + + how often; how many times; the number of times + + + + + + used to seek forgiveness or permission; please (beg); + + + + + + + an expression of negative outcome, disagreement or refusal; no + + + + + + + Ninety four + + + + + + + Thank you + + + + + + Either/or + + + + + + + I, me + + + + + + Between + + + Cikin + + + + + + Something + + + + + + Anyone + + + Everybody + + + Kowa + + + + + + Across + + + + + + + fall upon befall + + + + + + even though + + + + + + + Resignation + + + + + + to be withered; to be shrivelled + + + + + + be in a place; stay + + + + + + we; us; our; first-person Igbo language plural pronoun + + + + + + an expression of agreement to comply with a command or request; I or we will + + + noted, okay, taken. its alright + + + + + + (colloq) please(beg) + + + + + + how many? + + + + + + Ninety five + + + + + + ninety six + + + + + + One hundred and ninety nine + + + + + + indicates continuing action in the present + + + + + + Concerning + + + + + + When + + + + + + + Between + + + + + + be equal to, on an equality; be as much + + + + + + second + + + + + + as; for instance; looks like + + + + + + + have nothing in one's hand, be empty-handed + + + + + + an expression positive, agreement to, or acceptance of what was said; yes + + + + + + One hundred and eight + + + + + + only + + + + + + that of + + + + + + + + + he or she + + + + + + in the past, formerly, not now + + + + + + oneself + + + + + + Above + + + + + + Because + + + + + + when + + + so that + + + so that + + + + + + + + before + + + + + + + my brother + + + + + + + Awaking + + + + + + neither + + + + + + + Rainy day + + + ranar ruwa + + + + + + crossing over + + + + + + it is; he is; she is + + + + + + carry or bear something big or heavy, especially as a load + + + + + + up to a point in time; until; till + + + + + + let; so that; that; like; as, while; do, is(after a question tag before a subject) + + + Ability to let + + + + + + Two hundred and five + + + + + + One hundred and ninety eight + + + + + + Downwards + + + + + + oh no! + + + look!, see! + + + + + + Ride + + + + + + indicate continuing action in the present- + + + + + + + Holy + + + mai tsarki + + + + + + have (a number of) wives + + + + + + in, on, at; to(optional); is(before a continuous verb) + + + + + + a few; some + + + + + + have a wear on; wear; put on (a wear) + + + + + + for the sake; hold as a reason + + + + + + since; ever-since + + + + + + Two hundred and three + + + + + + + Sixty-four + + + + + + One hundred and ninety seven + + + + + + + + you (plural) + + + + + + + + They + + + + + + And + + + that + + + + + + Movement + + + Going + + + + + + Under + + + + + + + + + completive or open vowel suffix, used with most verbs in the imperative, the subjunctive, and the sequential forms + + + + + + About + + + + + + to call + + + + + + immediately after + + + + + + + one (impersonal pronoun) + + + + + + indicate current action + + + + + + + + instead of + + + + + + stay or sit u pon; stay put somewhere or on something + + + + + + Across + + + + + + be at or in a place(heavy or bulky object) ; stay (heavy or bulky object) + + + + + + first of all; beforehand; a sec + + + + + + Yourselves + + + + + + Two hundred and six + + + + Invading + + + Attacking + + + These + + + Certain + + + those who + + + Preventing + + + perfect marker + + + action happening in the present, en route to + + + used in negative commands + + + With + + + a kai + + + You + + + Made + + + in, on, during, without, etc. + + + two + + + just as, like + + + proclaim upon something or someone; pray over something or someone + + + Whenever + + + nor + + + dabere na + + + bisa + + + afọ otu + + + rukunin shekaru + + + a word used before or after the number of times something occurred; frequency + + + sit with legs folded in(humans); curl body together in a rest position(reptiles) + + + To curl body in rest position + + + (a heavy or bulky object) be kept or placed somewhere; a body of water collected somewhere + + + across; over + + + Two hundred and four + + + Believer + + + ndị kwere ekwe + + + About + + + I + + + Please + + + While + + + towards + + + to do something well + + + perform an action completely + + + Myself + + + most; plenty; a large number + + + used to identify a person or thing that is close at hand, indicated, or experienced; this + + + this + + + a word that is used to join two nouns in a phrase or sentence; coordinating conjunction + + + Two hundred and two + + + Iri isii na ise + + + Two hundred and one + + + Two hundred and seven + + + the singular, subject, third-person pronoun of the Igbo language (heavy vowel harmonizer); he; she; it + + + we + + + you (singular) + + + denotes past with action verbs and present with non-alternating stative verbs + + + means "not", negation + + + kiss + + + be empty-handed; be left with nothing + + + be book smart; be brainy + + + (especially animal or human) catch; grip; hold in such a way as to not give room for freedom (likely humiliating, especially for humans) + + + first person plural pronoun equivalent of first person singular object pronoun which can be used as a subject + + + how often; how many times; the number of times + + + used to seek forgiveness or permission; please (beg); + + + an expression of negative outcome, disagreement or refusal; no + + + Ninety four + + + Thank you + + + Either/or + + + I, me + + + Between + + + Cikin + + + Something + + + Anyone + + + Everybody + + + Kowa + + + Across + + + fall upon befall + + + even though + + + Resignation + + + to be withered; to be shrivelled + + + be in a place; stay + + + we; us; our; first-person Igbo language plural pronoun + + + an expression of agreement to comply with a command or request; I or we will + + + noted, okay, taken. its alright + + + (colloq) please(beg) + + + how many? + + + Ninety five + + + ninety six + + + One hundred and ninety nine + + + indicates continuing action in the present + + + Concerning + + + When + + + Between + + + be equal to, on an equality; be as much + + + second + + + as; for instance; looks like + + + have nothing in one's hand, be empty-handed + + + an expression positive, agreement to, or acceptance of what was said; yes + + + One hundred and eight + + + only + + + that of + + + he or she + + + in the past, formerly, not now + + + oneself + + + Above + + + Because + + + when + + + so that + + + so that + + + before + + + my brother + + + Awaking + + + neither + + + Rainy day + + + ranar ruwa + + + crossing over + + + it is; he is; she is + + + carry or bear something big or heavy, especially as a load + + + up to a point in time; until; till + + + let; so that; that; like; as, while; do, is(after a question tag before a subject) + + + Ability to let + + + Two hundred and five + + + One hundred and ninety eight + + + Downwards + + + oh no! + + + look!, see! + + + Ride + + + indicate continuing action in the present- + + + Holy + + + mai tsarki + + + have (a number of) wives + + + in, on, at; to(optional); is(before a continuous verb) + + + a few; some + + + have a wear on; wear; put on (a wear) + + + for the sake; hold as a reason + + + since; ever-since + + + Two hundred and three + + + Sixty-four + + + One hundred and ninety seven + + + you (plural) + + + They + + + And + + + that + + + Movement + + + Going + + + Under + + + completive or open vowel suffix, used with most verbs in the imperative, the subjunctive, and the sequential forms + + + About + + + to call + + + immediately after + + + one (impersonal pronoun) + + + indicate current action + + + instead of + + + stay or sit u pon; stay put somewhere or on something + + + Across + + + be at or in a place(heavy or bulky object) ; stay (heavy or bulky object) + + + first of all; beforehand; a sec + + + Yourselves + + + Two hundred and six + + + diff --git a/extensions/wikidata-lexemes/output/ii.xml b/extensions/wikidata-lexemes/output/ii.xml new file mode 100644 index 00000000..e894ea80 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ii.xml @@ -0,0 +1,75 @@ + + + + + + + + + we; first person plural pronoun + + + + + + they; third person plural pronoun + + + + + + one + + + + + + I; first person singular pronoun + + + + + + third person singular pronoun + + + + + + you; second person singular pronoun + + + + + + you; second person plural pronoun + + + + we; first person plural pronoun + + + they; third person plural pronoun + + + one + + + I; first person singular pronoun + + + third person singular pronoun + + + you; second person singular pronoun + + + you; second person plural pronoun + + + diff --git a/extensions/wikidata-lexemes/output/ik.xml b/extensions/wikidata-lexemes/output/ik.xml new file mode 100644 index 00000000..c6ac71e5 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ik.xml @@ -0,0 +1,27 @@ + + + + + + + + + have, has + + + there is + + + + have, has + + + there is + + + diff --git a/extensions/wikidata-lexemes/output/io.xml b/extensions/wikidata-lexemes/output/io.xml new file mode 100644 index 00000000..117e8985 --- /dev/null +++ b/extensions/wikidata-lexemes/output/io.xml @@ -0,0 +1,66 @@ + + + + + + + + + he, she, it, they (singular) + + + + + + yes + + + + + + the; plural form of the definite article, used instead of "la" when plurality is not indicated by another word + + + + + + I + + + + + + preposition indicating origin + + + + + + the + + + + he, she, it, they (singular) + + + yes + + + the; plural form of the definite article, used instead of "la" when plurality is not indicated by another word + + + I + + + preposition indicating origin + + + the + + + diff --git a/extensions/wikidata-lexemes/output/is.xml b/extensions/wikidata-lexemes/output/is.xml new file mode 100644 index 00000000..f71720ce --- /dev/null +++ b/extensions/wikidata-lexemes/output/is.xml @@ -0,0 +1,33 @@ + + + + + + + + + yes + + + + + + + + + I; first-person singular pronoun + + + + yes + + + I; first-person singular pronoun + + + diff --git a/extensions/wikidata-lexemes/output/it.xml b/extensions/wikidata-lexemes/output/it.xml new file mode 100644 index 00000000..17b6e8f0 --- /dev/null +++ b/extensions/wikidata-lexemes/output/it.xml @@ -0,0 +1,2791 @@ + + + + + + + + + numero naturale che segue due e precede quattro + Pigliami una giovenca di tre anni, ed una capra di tre anni, ed un montone di tre anni + + + + + + + + + + + + + verso un posto + + + in un certo tempo, momento + + + per il beneficio di qualcuno + + + + + + + of + Storia della letteratura italiana + + + + + + of + + + + + + of + + + + + + dentro + + + in + + + + + + usata per esortare, incitare e simili + + + + + + unless + + + + + + nel luogo in cui + + + + + + + 900 + + + + + + + 8000 + + + + + + + 27 + + + + + + + 28 + + + + + + + 35 + + + + + + + 45 + + + + + + + 47 + + + + + + + 58 + + + + + + + 70 + + + + + + + 98 + + + + + + + 210 + + + + + + + 330 + + + + + + + 100000 + + + + + + + esprime dolore fisico + + + + + + + + utilizzato per indicare genericamente una persona + + + + + + + + + molte persone o cose + + + + + + trasversalmente + + + + + + che cosa, quale oggetto + + + + + + why + + + + + + numero naturale che segue cinque e precede sette + + + + + + simbolo matematico + + + intended to belong to, or be used by, or be used in connection with + + + indica uno scopo + + + to the benefit of + + + indica un periodo + + + + + + + + + che appartiene a te + + + + + + + pronome + + + + + + of + + + + + + Messo in serbo con l'intenzione di servirsene o occuparsene in un secondo momento + Ho messo da parte dei risparmi per ogni evenienza + + + Separato da un gruppo + Alla festa è restato da parte per tutto il tempo + + + + + + + materiale colloidale bifasico elastico, costituito da un liquido disperso e inglobato nella fase solida + + + medicina o cosmetico in forma di sostanza colloidale + + + + + + particella linguistica con cui si esprime dissenso, disdegno, o un parere o giudizio negativo + + + + + + espressione offensiva del registro colloquiale basso + + + + + + con valore avversativo dopo una frase di senso negativo + + + + + + forma abbreviata di ebbene, di solito usata in forma interrogativa + + + + + + + 200 + + + + + + + 500 + + + + + + + 700 + + + + + + + 800 + + + + + + + + 4000 + + + + + + + eighteen + + + + + + + 30 + + + + + + + 32 + + + + + + + 37 + + + + + + + 38 + + + + + + + 54 + + + + + + + 56 + + + + + + + 66 + + + + + + + 81 + + + + + + + 84 + + + + + + + 86 + + + + + + + 150 + + + + + + + 160 + + + + + + + 300000 + + + + + + + + + indica qualità o quantità indeterminata + + + + + + + + + una diversa persona o cosa + + + + + + + per chiedere di identificare una o più persone + + + + + + ten + + + + + + Indica la composizione di un gruppo + una mandria di bufali + + + Indica l'autore di un'azione + il canto degli uccelli + + + indica una relazione di possesso/appartenenza + + + + + + + + prima persona singolare + + + + + + in forma succinta, coincisa + nella mia denuncia ho scritto un resoconto in breve di quanto mi è successo + + + locuzione che si usa prima di riassumere quanto detto in precedenza o arrivare in fretta al punto principale della questione + la lezione di oggi era una noia che non ti dico. In breve, ho dormito tutto il tempo + + + + + + + + + + + + + + terza persona singolare femminile + + + + + + + + + + + + terza persona plurale femminile + + + + + + comando di interruzione o sospensione repentina di un'azione + + + + + + thanks + + + + + + esprime contrarietà, rabbia o frustrazione + + + + + + indica disapprovazione, talvolta anche negazione + + + + + + espressione di stupore per qualcosa considerato assurdo + + + + + + + 600 + + + + + + uno seguito da cento zeri + + + + + + + sixteen + + + + + + + seventeen + + + + + + + 20 + + + + + + + 34 + + + + + + + 36 + + + + + + + 39 + + + + + + + 46 + + + + + + + 62 + + + + + + + 68 + + + + + + + 77 + + + + + + + 78 + + + + + + + 82 + + + + + + + 180 + + + + + + + 750 + + + + + + + 310 + + + + + + + 370 + + + + + + + 11000 + + + + + + qualunque persona + + + + + + + alla salute, alla tua + + + + + + bevanda usata in Sud America, ricavata dall'omonima pianta della famiglia delle Aquifogliacee + + + + + + cardinale + + + + + + + seven + + + + + + located within + + + + + + + + + articolo indeterminato che accompagna un elemento non meglio identificato + + + + + + + prima persona plurale + + + + + + saluto + + + + + + detto di qualcosa che non era mai successo + + + + + + + + + + to the + + + in the style of + + + + + + + seconda persona plurale + + + + + + termine volgare per indicare i genitali femminili + + + + + + + 3000 + + + + + + + 22 + + + + + + + 26 + + + + + + + 31 + + + + + + + 50 + + + + + + + 51 + + + + + + + 52 + + + + + + + 53 + + + + + + + 63 + + + + + + + 64 + + + + + + + 67 + + + + + + + 74 + + + + + + + 79 + + + + + + + 90 + + + + + + + 92 + + + + + + + 99 + + + + + + + 290 + + + + + + + 260 + + + + + + + 390 + + + + + + + 360 + + + + + + + numero + + + + + + + adverbe interrogatif + + + + + + + congiunzione semplice, copulativa e positiva + Erbaggi e legumi + + + + + + + or + + + + + + una coppia di + + + + + + cardinale + + + + + + placed above + + + + + + in mezzo a + + + + + + + + + + numero ordinale preceduto dal primo e seguito dal terzo + + + + + + + + 500000 + + + + + + "vattene via" + + + + + + termine onomatopeico per indicare il caratteristico verso del gatto + + + + + + come segnale di partenza + + + + + + anche + + + + + + persino, perfino + + + + + + during the same time as + + + + + + + 2000 + + + + + + uno seguito da un googol di zeri + + + + + + + 23 + + + + + + + 24 + + + + + + + 29 + + + + + + + 44 + + + + + + + 61 + + + + + + + 69 + + + posizione sessuale + + + + + + + 72 + + + + + + + 76 + + + + + + + 87 + + + + + + + 88 + + + + + + + 89 + + + + + + + 91 + + + + + + + 93 + + + + + + + 95 + + + + + + + 96 + + + + + + + 280 + + + + + + + 220 + + + + + + + 10000 + + + + + + + 12000 + + + + + + + 200000 + + + + + + + 400000 + + + + + + + + 15000 + + + + + + quale, che + + + + + + cardinale + + + + + + indica compagnia o unione + + + + + + + + + che appartiene a me + + + + + + + + + che appartiene a noi + + + + + + + + + + + + + + + + + + + the (definite article) + + + + + + numero dopo novantanove e prima di centouno + + + + + + questo, quello e codesto con significato neutro + + + + + + Separatamente, in altro contesto o occasione + Pagherò il mio conto a parte + + + Non incluso nel costo + Il coperto è a parte e costa 1 Euro a testa + + + Con l'eccezione di, nonostante + A parte i problemi con la macchina, è stata una bellissima vacanza + + + + + + + + seconda persona singolare + + + + + + + 1000000 + + + + + + esclamazione di approvazione + + + + + + esclamazione di minaccia + + + + + + onomatopea che riproduce il suono di un campanello + + + + + + + 1000 + + + + + + + + 5000 + + + + + + + 6000 + + + + + + + 7000 + + + + + + eleven + + + football team + + + + + + + fourteen + + + + + + + 21 + + + + + + + 41 + + + + + + + 49 + + + + + + + 57 + + + + + + + 59 + + + + + + + 65 + + + + + + + 75 + + + + + + + 85 + + + + + + + 94 + + + + + + + 250 + + + + + + + 230 + + + + + + + 380 + + + + + + + 14000 + + + + + + + + 13000 + + + + + + sovrapporsi di una cosa su un'altra + + + + + + prefisso di cognome + + + + + + + + questo individuo, questa persona + + + + + + forma contratta per dire "con te" + + + + + + forma contratta per dire "con me" + + + + + + numero ordinale per 9 + + + + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + + + + + + in mezzo a + + + + + + + Parzialmente, non completamente + Ho preparato la valigia solo in parte + + + In disparte, da parte + + + + + + + esortazione a prestare attenzione a qualcosa + + + + + + sport a cui partecipano due squadre, composte da quattro fantini, che tentano di spedire nella porta avversa una palla dura di legno o di gomma dura battendola con una mazza + + + + + + + + + + + + + + terza persona singolare maschile + + + + + + + + + + + + terza persona plurale maschile + + + + + + + + parola ebraica + + + + + + riproduce il suono di un oggetto soffice schiacciato + + + + + + denota stupore o rabbia + + + + + + dopo che, allorché + + + + + + + + + differente, diverso + + + + + + + 400 + + + + + + + fifteen + + + fifteen + + + + + + + 19 + + + + + + + 33 + + + + + + uno seguito da un googolplex di zeri + + + + + + + 42 + + + + + + + 43 + + + + + + + 55 + + + + + + + 73 + + + + + + + tutte le volte + + + + + + + esclamazione usata in ambito liturgico + + + + + + chiunque + + + + + + where + + + + + + + + + adverbe interrogatif + + + + + + numero naturale che segue sette e precede nove + + + + + + + + + che appartiene a lui/lei + + + + + + + of + + + + + + of + + + + + + to arms + + + + + + + 1000000000 + + + + + + introduce una spiegazione, una precisazione o una riformulazione + + + + + + enfatizza il significato della frase + + + + + + sottolinea un'intuizione o una scoperta + + + + + + held og lykke + + + + + + espressione con riferimento a qualcosa di inaspettato, talvolta esagerato, al di là di quanto si vede comunemente + + + + + + saluto di commiato + + + + + + cioè + + + + + + caso mai + + + + + + di conseguenza, per questo motivo + + + + + + + anche + + + + + + + 9000 + + + + + + twelve + + + + + + + thirteen + + + + + + + 25 + + + + + + + 40 + + + + + + + 48 + Sei per otto, quarantotto. + + + subbuglio, rivoluzione (paragonando ai moti italiani del 1848) + Stai facendo un quarantotto con questi documenti. + + + + + + + 71 + + + + + + + 80 + + + + + + + 83 + + + + + + + 97 + + + + + + + 720 + + + + + + + 800000 + + + + + + + 16000 + + + + + + + cifra antecedente ad uno + + + + + + locuzione latina che significa "a parità d’altre condizioni" + + + + + + in direzione di qualcosa o qualcuno + + + + + + esclamazione di stupore + + + + numero naturale che segue due e precede quattro + Pigliami una giovenca di tre anni, ed una capra di tre anni, ed un montone di tre anni + + + verso un posto + + + in un certo tempo, momento + + + per il beneficio di qualcuno + + + of + Storia della letteratura italiana + + + of + + + of + + + dentro + + + in + + + usata per esortare, incitare e simili + + + unless + + + nel luogo in cui + + + 900 + + + 8000 + + + 27 + + + 28 + + + 35 + + + 45 + + + 47 + + + 58 + + + 70 + + + 98 + + + 210 + + + 330 + + + 100000 + + + esprime dolore fisico + + + utilizzato per indicare genericamente una persona + + + molte persone o cose + + + trasversalmente + + + che cosa, quale oggetto + + + why + + + numero naturale che segue cinque e precede sette + + + simbolo matematico + + + intended to belong to, or be used by, or be used in connection with + + + indica uno scopo + + + to the benefit of + + + indica un periodo + + + che appartiene a te + + + pronome + + + of + + + Messo in serbo con l'intenzione di servirsene o occuparsene in un secondo momento + Ho messo da parte dei risparmi per ogni evenienza + + + Separato da un gruppo + Alla festa è restato da parte per tutto il tempo + + + materiale colloidale bifasico elastico, costituito da un liquido disperso e inglobato nella fase solida + + + medicina o cosmetico in forma di sostanza colloidale + + + particella linguistica con cui si esprime dissenso, disdegno, o un parere o giudizio negativo + + + espressione offensiva del registro colloquiale basso + + + con valore avversativo dopo una frase di senso negativo + + + forma abbreviata di ebbene, di solito usata in forma interrogativa + + + 200 + + + 500 + + + 700 + + + 800 + + + 4000 + + + eighteen + + + 30 + + + 32 + + + 37 + + + 38 + + + 54 + + + 56 + + + 66 + + + 81 + + + 84 + + + 86 + + + 150 + + + 160 + + + 300000 + + + indica qualità o quantità indeterminata + + + una diversa persona o cosa + + + per chiedere di identificare una o più persone + + + ten + + + Indica la composizione di un gruppo + una mandria di bufali + + + Indica l'autore di un'azione + il canto degli uccelli + + + indica una relazione di possesso/appartenenza + + + prima persona singolare + + + in forma succinta, coincisa + nella mia denuncia ho scritto un resoconto in breve di quanto mi è successo + + + locuzione che si usa prima di riassumere quanto detto in precedenza o arrivare in fretta al punto principale della questione + la lezione di oggi era una noia che non ti dico. In breve, ho dormito tutto il tempo + + + terza persona singolare femminile + + + terza persona plurale femminile + + + comando di interruzione o sospensione repentina di un'azione + + + thanks + + + esprime contrarietà, rabbia o frustrazione + + + indica disapprovazione, talvolta anche negazione + + + espressione di stupore per qualcosa considerato assurdo + + + 600 + + + uno seguito da cento zeri + + + sixteen + + + seventeen + + + 20 + + + 34 + + + 36 + + + 39 + + + 46 + + + 62 + + + 68 + + + 77 + + + 78 + + + 82 + + + 180 + + + 750 + + + 310 + + + 370 + + + 11000 + + + qualunque persona + + + alla salute, alla tua + + + bevanda usata in Sud America, ricavata dall'omonima pianta della famiglia delle Aquifogliacee + + + cardinale + + + seven + + + located within + + + articolo indeterminato che accompagna un elemento non meglio identificato + + + prima persona plurale + + + saluto + + + detto di qualcosa che non era mai successo + + + to the + + + in the style of + + + seconda persona plurale + + + termine volgare per indicare i genitali femminili + + + 3000 + + + 22 + + + 26 + + + 31 + + + 50 + + + 51 + + + 52 + + + 53 + + + 63 + + + 64 + + + 67 + + + 74 + + + 79 + + + 90 + + + 92 + + + 99 + + + 290 + + + 260 + + + 390 + + + 360 + + + numero + + + adverbe interrogatif + + + congiunzione semplice, copulativa e positiva + Erbaggi e legumi + + + or + + + una coppia di + + + cardinale + + + placed above + + + in mezzo a + + + numero ordinale preceduto dal primo e seguito dal terzo + + + 500000 + + + "vattene via" + + + termine onomatopeico per indicare il caratteristico verso del gatto + + + come segnale di partenza + + + anche + + + persino, perfino + + + during the same time as + + + 2000 + + + uno seguito da un googol di zeri + + + 23 + + + 24 + + + 29 + + + 44 + + + 61 + + + 69 + + + posizione sessuale + + + 72 + + + 76 + + + 87 + + + 88 + + + 89 + + + 91 + + + 93 + + + 95 + + + 96 + + + 280 + + + 220 + + + 10000 + + + 12000 + + + 200000 + + + 400000 + + + 15000 + + + quale, che + + + cardinale + + + indica compagnia o unione + + + che appartiene a me + + + che appartiene a noi + + + the (definite article) + + + numero dopo novantanove e prima di centouno + + + questo, quello e codesto con significato neutro + + + Separatamente, in altro contesto o occasione + Pagherò il mio conto a parte + + + Non incluso nel costo + Il coperto è a parte e costa 1 Euro a testa + + + Con l'eccezione di, nonostante + A parte i problemi con la macchina, è stata una bellissima vacanza + + + seconda persona singolare + + + 1000000 + + + esclamazione di approvazione + + + esclamazione di minaccia + + + onomatopea che riproduce il suono di un campanello + + + 1000 + + + 5000 + + + 6000 + + + 7000 + + + eleven + + + football team + + + fourteen + + + 21 + + + 41 + + + 49 + + + 57 + + + 59 + + + 65 + + + 75 + + + 85 + + + 94 + + + 250 + + + 230 + + + 380 + + + 14000 + + + 13000 + + + sovrapporsi di una cosa su un'altra + + + prefisso di cognome + + + questo individuo, questa persona + + + forma contratta per dire "con te" + + + forma contratta per dire "con me" + + + numero ordinale per 9 + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + + + in mezzo a + + + Parzialmente, non completamente + Ho preparato la valigia solo in parte + + + In disparte, da parte + + + esortazione a prestare attenzione a qualcosa + + + sport a cui partecipano due squadre, composte da quattro fantini, che tentano di spedire nella porta avversa una palla dura di legno o di gomma dura battendola con una mazza + + + terza persona singolare maschile + + + terza persona plurale maschile + + + parola ebraica + + + riproduce il suono di un oggetto soffice schiacciato + + + denota stupore o rabbia + + + dopo che, allorché + + + differente, diverso + + + 400 + + + fifteen + + + fifteen + + + 19 + + + 33 + + + uno seguito da un googolplex di zeri + + + 42 + + + 43 + + + 55 + + + 73 + + + tutte le volte + + + esclamazione usata in ambito liturgico + + + chiunque + + + where + + + adverbe interrogatif + + + numero naturale che segue sette e precede nove + + + che appartiene a lui/lei + + + of + + + of + + + to arms + + + 1000000000 + + + introduce una spiegazione, una precisazione o una riformulazione + + + enfatizza il significato della frase + + + sottolinea un'intuizione o una scoperta + + + held og lykke + + + espressione con riferimento a qualcosa di inaspettato, talvolta esagerato, al di là di quanto si vede comunemente + + + saluto di commiato + + + cioè + + + caso mai + + + di conseguenza, per questo motivo + + + anche + + + 9000 + + + twelve + + + thirteen + + + 25 + + + 40 + + + 48 + Sei per otto, quarantotto. + + + subbuglio, rivoluzione (paragonando ai moti italiani del 1848) + Stai facendo un quarantotto con questi documenti. + + + 71 + + + 80 + + + 83 + + + 97 + + + 720 + + + 800000 + + + 16000 + + + cifra antecedente ad uno + + + locuzione latina che significa "a parità d’altre condizioni" + + + in direzione di qualcosa o qualcuno + + + esclamazione di stupore + + + diff --git a/extensions/wikidata-lexemes/output/iu.xml b/extensions/wikidata-lexemes/output/iu.xml new file mode 100644 index 00000000..fe176790 --- /dev/null +++ b/extensions/wikidata-lexemes/output/iu.xml @@ -0,0 +1,21 @@ + + + + + + + + + yes + + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/ja.xml b/extensions/wikidata-lexemes/output/ja.xml new file mode 100644 index 00000000..20438784 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ja.xml @@ -0,0 +1,11045 @@ + + + + + + + + + 材料や手段を表す。「によって」 + ウィキペディアでいつかバイアグラを検索するなんて思ってもみなかったわ。 + + + 動作や作用が行われる場所や時間を表す。「において」 + 上野で飲む + + + 原因や理由を表す。「のために」 + 病気で休む + + + + + + + 感動、詠嘆を表す + やっと手紙が来たよ。 + + + 呼びかけを表す + 早く行けよ。 + + + 長音形「よう」で強調の意 + 困ったよう。 + + + + + + + + 逆接の確定条件を表す + 頑張ったけれども、不合格だった + + + 反対の二つのことえを対比的に表す + 親を大事にするのも良いけれど、奥さんのことも考えてあげてくださいね + + + 事実を述べる語に接続詞て単に後に続けることを表す + ここまで調査を続けてきたけれども、ようやく分かってきたことがある + + + + + + so/therefore + + + + + + その上に + + + + + + 列挙を表す + + + + + + 列挙を表す + + + + + + + + + + 使役 + + + + + + + + + 否定、打消を表す。「ない」の別形 + 行かず + 行かぬ + ありません + 行かぬとき + ありませんとき + 行かねば + + + + + + 推量(伝聞情報を根拠とした推量) + 大変だろう + + + 意志 + 行こう + + + 勧誘 + 行こうか + + + + + + + + + + + + 伝聞(伝聞情報の伝達) + 言ったそうで + 言ったそうだ + 言ったそうなら + + + 様態(外見による性質や状態の判断) + 言いたそうだろう + 言いたそうだった + 言いたそうに + 言いたそうな + + + + + + 一人称単数、私 + + + + + + + + + 男性が自分を指して言う語 + + + + + + + + + 簡単に。問題なく。 + + + + + + + + + + + + あのよう(彼様)を見よ。あのよう。あの様子。 + 金玉のう釣りあげてうっちぬべいと、あげえこげえに騒ぎやることよ + + + + + + 荷が重すぎる。負担が過重だ。任務が重大過ぎる。 + + + + + + + + natural number + + + + + + when starting a phone call + + + + + + counter for numbers + + + general purpose counter + + + counter for three-dimensional objects + + + + + + agreeable + + + + + + 怪奇な、怪異な + + + + + + le nombre 12 + + + + + + the number fourteen + + + + + + 一人称単数、私 + + + + + + 人の数を数える語 + + + + + + natural number + + + + + + natural number + + + + + + the natural number 3 + + + + + + natural number + + + + + + natural number + + + + + + three flat objects + + + + + + natural number + + + + + + + natural number + + + + + + 一度失敗したものが改めて勢いを盛り返してくること + + + + + + ならびに、また + + + + + + 俺たち、我ら + + + + + + 疑って問う語 + + + + + + counter for boxes + 一箱いくらですか? + + + + + + + natural number + + + + + + + + + number between 7999 and 8001 + 八千以上だ! + + + + + + 一心に思い込んで、人の言うことを聞かないひと + + + + + + + われ、自分、自分の + + + + + + in or to all locations + + + + + + 小動物などの数をかぞえる語 + + + + + + 跡形もなく燃え尽きる + + + + + + 証人を法廷などに呼び出すこと + + + + + + あやまちの功名 + + + + + + 万有(諸行)はいっときも常住しないという意味 + + + + + + この上ない美味 + + + 経験で得た楽しさや喜びの粋 + + + 仏教の大涅槃 + + + + + + とりまく環境に適するものは生存し、そうでないものは自然と滅亡すること + + + + + + 少しも飾らず天から与えられたままの性質を表すこと、自然のままに美しいこと + 天真爛漫な子供 + + + + + + 自分の生命をも惜しまずに尽力すること + + + + + + ここかしこ + + + + + + さほど手間を掛けずに整った状態にしていること + + + + + + 順接の仮定条件を表す + 布団に入るとすぐに眠くなる + + + 恒常条件を表す + 天候不順になると野菜の値段が上がる + + + 継起的関係を表す + バスから下りると、歩き出した + + + ある事柄を仮定してそれに拘束されないことを表す + たとえ反対されようと、我が道を行く + + + + + + 逆接の確定条件を表す + 知らんぷりを決め込んでいれば良いものを、わざわざ火中の栗を拾いに行くなんで馬鹿げている。 + + + + + + + それだけと限定して程度を表す + お会いするのは、もうこれっきりにさせてください。 + + + 打消表現を伴い「それを最後として」のように使われる + 海外へ行ったきり、音沙汰がなくなった。 + + + 「~のまま」の意を表す + 事故で寝たきりになった。 + + + + + + 問いかけや確認を表す + これはあなたのものじゃなくって? + + + 依頼を表す + 急ぐから、走って行って。 + + + + + + (原因を接続) + + + + + + (逆接) + + + + + + (逆接) + + + + + + + (逆接) + + + + + + 組織や連絡が繋がった状態 + + + + + + + 前後を顧みず、理屈にもこだわらない様子 + + + + + + 無理に、理不尽に行うこと + + + (原義)横方向に裂きにくい和紙を無理やり横に破くこと + + + + + + 死を悲しみ悼んで読む弔辞 + + + + + + 自分のことを自分で褒め称えること + + + + + + 一般に広く行き渡る様子 + + + + + + 盗人が恥ずかしげもなく、横着な様子 + + + + + + 与えたものも相手によっては何らの価値も感じられないことのたとえ + + + + + + くれぐれも注意して抜かりの無いようにすること + + + + + + 建物などが消失して跡形もなくなること + + + + + + 有用である + + + + + + 男児の生まれた順序や数を表す語 + + + + + + + 静止できない勢い + + + + + + 息も絶え絶えの様子 + + + + + + 列挙を示す + + + + + + 女性が自分を指して言う語 + + + + + + + + + 国内の憂いと国外の患い + + + + + + thickness + + + + + + 新年を祝う挨拶 + + + + + + counter for days + + + counter for days of a particular month + + + + + + しとやかで雅やかなこと + + + + + + + + 2000 + + + + + + 紙面や画面での折り返しまでの文字の並び数を表す語、行方向が左から右への横並びの場合は上端の行からの順序や数 + + + + + + + 乗り物の数を表す語 + + + + + + 並んでいるものを数える語、列方向が上から下への縦並びの場合は左端の列からの順序や数 + + + + + + + 対応しきれない様子 + + + + + + 何を言っても聞き流して張り合いのない様子 + + + + + + + + + + 気づかない風を装うこと + + + + + + + + + + + + + 思い切りが悪い様子 + + + + + + + + + + 相手が面目を保てるようにする + + + + + + + まるっきりの嘘 + + + + + + 何もできずに困惑している様子 + + + + + + + あえて危険を冒すことのたとえ + + + + + + 土地の単位 + + + + + + + + + + 興が冷めて相手に対する愛想がなくなる + + + + + + + + + + + + + 曖昧ではっきりしない様子 + + + + + + + + + + + 不意を打たれて驚く + + + + + + 暗闇の中で物を探り求めること + + + + + + 少しの言葉 + + + + + + + + + + + + + 理に適っている + + + + + + + + + + + + + 外せない中核的な部分であること + + + + + + + + + + + 配慮が行き届いている + + + + + + + + + + + 感づく、才知がはたらく + + + + + + + + + + + いろいろとあせる、はらはらする + + + + + + + + + + + + + 適切でない + + + + + + + + + + + 退出する + + + + + + 動作の後にすぐ別の動作が生じることを表す + 駆けつけるやいなや、一気に飲み干した。 + + + 事物の並立を表す + 友人や同僚には感謝してもしきれない。 + + + + + + 不確実であるという意を表す(疑問文、否定文の場合) + ややこしくて何が何やら分からなくなってしまいました。 + + + 事物を並立することを表す + 犬やら猫やら飼っている人もいる。 + + + + + + + 主張を強調する。反駁を表す。 + だから嫌われるのさ。 + + + 気楽に構えたり、投げやりな気持ちをこめたりする + + + 「と」や「って」などに後続して、直接経験していないことを紹介する + + + 文節の切れ目に入れて、語調を整えたり、話が続くことを示したりする + + + 疑問詞疑問文で、疑問の語気を表す + + + 事態の軽い強調を表す + + + + + + ひとつ例示し、他の同類のものでも構わないことを表す + まぁ、お茶でも飲んで行きなさい。 + + + 程度の軽いものを挙げて他を類推させることを表す + 少しでもお役に立てるように頑張ります。 + + + + + + + 下に打消表現を伴って他を排して限定や強調の意を表す + 病み上がりで、まだおかゆしか食べられない。 + + + + + + 逆接の確定条件を表す + 独りなのに、寂しくない + + + + + + 疑いや問や反語の意を表す + 子どもには分からなかったのだろうか。 + 明日から来られますか。 + このままおめおめと顔を出せようか。 + + + 詠嘆・願望・要求・勧誘を表す + 素敵な絵じゃないか。 + 外に行ってみないか。 + + + + + + (逆接) + + + + + + (前述を抽象化して後述する) + + + + + + by the way, incidentally + + + + + + ~でない + + + + + + + + + + 希望 + 何食べたい? + 食べたかろう + 食べたくなる + 食べたかった + 食べたいとき + 食べたければ + + + + + + my + + + + + + あの人。男性を指す。 + + + + あの人。三人称 + + + 遠称の代名詞 + + + + + + + あの人。女性を指す。 + + + + + + + 数字の9を表す。 + + + + + + + + + + + + + とても面白い、とてもうまい、見事だ、好ましい + あなたは素敵な downtown boy + + + + + + that + + + + + + + + 整数 + + + complete absence of anything; the opposite of everything + + + + + + eight + + + + + + 皆無であること + + + + + + the number 9 + + + + + + natural number + + + + + + natural number + + + + + + immediately after + + + + + + two flat objects + + + + + + natural number + + + + + + natural number + + + + + + yes + + + + + + + 幾何学図形のひとつ + + + + + + therefore + + + + + + indicates a question + + + + + + + + + 語句の累加を表す + + + + + + 弟子が師よりも優れていること + + + + + + 正しく明らかなこと + + + + + + 明るい目と白い歯、美人の喩え + + + + + + そなた、おまえ + + + + + + posessing skill + + + + + + + two times + + + two repetitions + + + + + + 呼びかける声 + ああ、ちょっと待って、ストップ! + + + 人に応える声 + ああ、そうだったな。 + + + + + + ああ、そうではない + + + + + + 一度うまく行ったことをもう一度やってみること + + + + + + 立身出世すること + + + + + + 物事を懸命に探すこと + + + + + + 機会を巧みに利用すること + + + + + + 何事も傍観者のほうがよく見通しが利く、という意味 + + + + + + 無用のものに耽って、却ってその本志を失うこと + + + + + + 年齢を数える際の助数詞 + + + + + + 刑罰が明らかなこと + + + 権威がおごそかなこと + + + + + + 古来の物事の長所を集めて、ひとつの完全なものにまとめること + + + + + + 人より先に憂え、人より後に楽しむという意味で、志士仁人が国家を思う至情を表す + + + + + + 優れた人が大勢揃っていること + + + + + + + すなわち、とりもなおさず(語句の言い換え) + 信号機の赤は即ち止まれの意味だ + + + + + + + 真正面から直接に説破すること、冒頭を置かずに直ちに本題に入ること + + + + + + + 一命が終わろうとする時 + + + + + + + + 軽々しく他人の説に賛同すること + + + + + + うっかりしていると大きな問題を引き起こすことがある + + + + + + 夜がまだ明けないうちに + + + + + + + 低い地位からとんとん拍子に出世する様子 + + + 指標などが急激に上昇する様子 + + + + + + 狡猾に立ち回ることをいう + + + + + + 楽しそうな様子 + + + + + + 確信は無いが何となく感じた知らせ + + + + + + 自ら進んで他へ働きかける性質 + + + + + + + 受け身である様子 + + + + + + + + + 伝聞(伝聞情報の伝達) + 晴れるそうでした + 晴れるそうですから + + + 様態(外見による性質や状態の判断) + 泣きそうでしょう + 泣きそうです + + + + + + 逆接の確定条件を表す + 気持ちは分かるものの、このまま進めるのはやはり無理がある。 + + + + + + 語句の累加を表す + + + + + + 列挙を表す + + + + + + (注釈などを接続) + + + + + + + 信頼でき、気を遣わずに済む + + + 信頼できず、注意が必要な + + + + + + + してあげたことなどをことさらに相手に伝えて、返礼を期待する様子 + + + + + + こちらの云う意味がすぐに相手に分かること + + + + + + 自分で使う分は自分作り、外部の力を借りないこと + + + + + + 本性を包み隠して平凡を装うさま + + + + + + 意外なことが起きて驚く様子 + + + + + + 一筋に、ひたすら + + + + + + 進退や生死をともにすること + + + + + + 百年鑑 + + + + + + 目をクリクリさせて熱心に探す様子 + + + + + + 煩悩によって心が乱されている状態 + + + + + + 浮ついていること + + + + + + + + 朝一番で行う仕事 + + + + + + + 忌み憚ることのない、率直な + + + + + + + 解雇する + + + + + + 稀にある + + + + + + 自分の田に水を引くことから、物事や説の身勝手なこと + + + + + + 不善の人も善人の徳を磨く道具になるとのたとえ + + + + + + 男が尊いとする考え方 + + + + + + 廃れたものを再利用すること + + + + + + 夫婦が仲睦まじいことたとえ + + + + + + 独立して自己の人格を尊重すること + + + + + + 永遠、無限 + + + + + + 複数のものをひとまとめにした数を表す語 + + + + + + + 容器でものを量る時の回数を数える語 + + + + + + 倍数を数える語 + + + + + + + 回数を数える語 + + + + + + + + 結果が立派であること + + + + + + 自分のこと + + + + + + + 目を吊り上げる、粗探しをする + + + + + + 車を数える語 + + + + + + + + + + + + + とても雅やかな様子 + + + + + + 他の人が作ったものを一部改変する + + + + + + + + + + + + + 経験を積んで狡猾であること + + + + + + + + + + 一度うまく行ったので次も上手く行くと期待する様子 + + + + + + + + + + ひどく呆れて我を失う様子 + + + + + + + + + + + + + 軽々とした様子 + + + + + + + + + + + + + 物静かであること + + + + + + + + + + + + + 簡素で単純な様子 + + + + + + もはや堪忍できない状態になる + + + + + + 恋い慕う心がある + + + + + + + + あるものを例示して他にまだあることを表す + お気づきの点などありましたらお知らせください。 + + + 例示するものが同等の事柄であることを表す + 野菜や乳製品などが値上がりしている。 + + + 例示の対象を「そのことはよくない」のように否定的に表す + 自分なんかが参加してもよいものか躊躇う。 + + + + + + 一例を上げて他を類推させることを表す + 厳かな会議で、咳払いさえ躊躇われた。 + + + 追加や至り及ぶことを表す + なぜ私は大事な本でさえ捨ててしまったのか。 + + + 仮定条件であるものだけを限定し他を顧みないことを表す + 自分さえ良ければいいのだ。 + + + + + + + 前が後で示す動作や作用の原因や理由であることを表す + 誤りを放置するわけには行かないので、直ちに訂正した + 考え事をしていたんで、返事が遅れたんだ + + + + + + 前に対して後が予想外であることを表す + + + + + + + + + + 使役 + + + + + + + + + 推量(伝聞情報を根拠とした推量) + 早いらしく + 早いらしゅう + 早いらしかった + 早いらしい + 早いらしいこと + + + + + + 取り上げて言うほどのこと、程度が並外れている様子 + たいした男だ。 + + + + + + 諸法の本体は空であるが、因縁の相続によって歴然として存在し、そのまま有る、ということ。 + + + + + + 責任が除かれる。義務が完了する。重荷が下りる。 + 御念が入って忝い、私の荷が下りました + + + + + + greeting used when answering a telephone + + + + + + six + + + + + + natural number + + + + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + + + + welcome + + + + + + 同輩に用いる敬称、あなた + + + 人民の首長 + + + 主人、主君 + + + + + + the sound "ha" + + + + + + natural number 5 + + + + + + counter for leaves or pieces of paper + + + counter for boats + + + + + + when starting a phone call + + + + + + + one flat object + + + + + + + natural number + + + + + + lively, bustling, active + + + + + + 古い物事を研究して、新しい知識を開くこと + + + + + + わずかの時日 + + + + + + 数の単位、1万の1万倍 + + + + + + 相対する人に言う敬称、あなた(接尾辞ではなく代名詞) + + + + + + + 意外なこと、思いもよらないこと + + + あてが外れて、案外 + + + + + + 意外な物事に出会った徳などに出す声、まぁ、や + + + + + + 驚いたり落胆したりしたときに出す声 + + + + + + + one thing + + + + + + + 客体を土台として認識・観察・思考等を行うこと + + + + + + deserving of regret or sorrow + 残念だが無理だ。 + + + + + + relexive pronoun for the first person + + + + relexive pronoun for the second person + + + + relexive pronoun + + + relexive pronoun for the third person + + + + pronoun used to refer reflexively to a hypothetical or generic person + + + 一人称単数、私 + + + + + + 二人称単数 + + + + + + + + + natural number between 89 and 91 + + + + + + + + + + + + + + + + どう見ても明白であるさま + 誰の目にも明らかだろう。 + 追ってくる気がないのは明らかだった。 + 地球の円形なことは明らかである。 + 豊富なエピソードによって明らかにされる。 + 大混乱を招くのは火を見るよりも明らかだ。 + 明らかな特徴の一つといってよいだろう。 + + + 光が満ちてはっきり見える様子 + + + + + + 大笑いすることのたとえ + + + + + + たいそう美味しいことのたとえ + + + + + + 一度うまく行ったことをもう一度やってみること + + + + + + 出世しないこと + + + + + + + + + + + + + 気が利いて物事の分かること、かわり映えがして趣のある様子 + + + + + + 無理やり理屈が通っているようにこじつけること + + + + + + 陰暦10月の頃の良い天気 + + + + + + 先頭に立って指図すること + + + + + + 見聞が狭く世間の事情に暗いこと + + + + + + 余計なことを付け加えること + + + + + + だいたい同じで少し異なること、似たりよったり + + + + + + 絶えず旅行すること + その当時の不遇政客の轍を踏んで南船北馬席暖まる遑なしと云う有様であったが + + + + + + そうではあるが、されど + + + + + + + + + + 水が盛んなさま + + + 広く限りない様子 + 彼の前途は洋々としている。 + + + 善美な様子 + + + + + + 形のないものを形のあるものによって表すこと + + + + + + 情欲をそそる様子 + + + + + + 前が後の動作や作用の原因や理由であることを表す + 辛いから涙が出た + + + 前述を事実と認めた上で決意や判断を表す + 明確な事実を突きつけられたからには、動かないわけにはいかない + + + + + + 軽く念押ししたり、自信をもって相手を軽んずることを表す + 立ち呑み屋なんかはごめんだぜ。 + 好きな方を選んでいいぜ。 + + + + + + 値段を安くしてたくさん売ること + + + + + + + + + + + + + 遠く及ばない様子 + + + + + + + 語句の累加を表す、一方では、その上に、なお、ながら + + + + + + 列挙を表す + + + + + + (理由を接続) + + + + + + (後から注釈などを接続) + + + + + + (逆接) + + + + + + (逆接) + + + + + + + (逆接) + + + + + + 人の演説などを聞きながら、所々反対の語をはさみ混ぜ返すこと + + + + + + 景気よく気炎を上げること + + + + + + 相手に対して真っ向から大きく出ること + + + + + + ただならぬ様子 + + + + + + 名刺の代わりに持参する手土産のこと + + + + + + counter for temples + + + + + + 避けることも退くこともできない様子 + + + + + + 何か食べたくなる + + + + + + + 栄華の移ろうことのたとえ + + + + + + ひとり + + + + + + 握り寿司の数の単位 + + + 尺貫法の重さの単位 + + + 古い貨幣の単位 + + + + + + ひとつの場所で命がけで頑張ること + + + + + + 船の数の単位 + + + + + + 世代の数や順序を表す語 + + + + + + ひとつの投票 + + + + + + 浮ついて集中できない様子 + + + + + + + 誇大に言うこと + + + + + + counter for pairs + + + + + + 1000メートル + + + + + + 多年の辱めを耐え忍んで苦心すること + + + + + + 片意地を張る様子 + + + + + + bonsoir + + + + + + 攻めるのが難しくなかなか陥落しないこと + + + + + + 念仏三昧で往生すること + + + + + + 頻繁に法令が出ること + + + + + + 官公吏などの不正を懲戒するために国家が加える処分 + + + + + + 何の役にも立たないもの + + + + + + 要領を得ず理解しがたいこと + + + + + + counter for food items + + + + + + 人の世の栄枯盛衰がはかないことのたとえ + + + + + + + 危険なことの喩え + + + はかないことの喩え + + + + + + (主に気象や気温が)寒くない + 暖かな毛布 + + + + + + 文明の進歩によって発明応用される器械など + + + + + + 順序を表す語 + + + + + + 本などの冊数を数える語、コピーのセット数を数える語 + + + + + + + + 句末、文末に置いて語気を強め、断定の意を表す + + + 呼びかけをあらわす + + + + + + 薬箱の中の薬品 + + + 必要な人物 + + + 自分の手の内のもの + + + + + + 名ばかりあって中身が伴わないこと + + + + + + 小さなものの数をあらわす語 + + + + + + まともに向き合わず冷笑的な態度を取る + + + + + + 冷たく遇すること、出世の道から外すこと + + + + + + あらゆる手立てを講じてもうまく行かない様子 + + + + + + + 人目を気にせずに勝手気ままに振る舞う様子 + + + + + + + + + + + + + 著しく明らか + + + + + + + + + + + + + 途切れず続く様子 + + + + + + + + + + + + + 壊れて滅びる様子 + + + + + + + + + + + + + 個人的 + + + + + + + + + + + + + その時だけ + + + + + + 弱点につけ込む + + + + + + + + + + はらはらして見守る様子 + + + + + + + + + + 有名になる + + + + + + + + + + + + + しとやかで雅やかな様子 + + + + + + + + + + 固く約束する + + + + + + + + + + + 漠然として頼りない様子 + + + + + + 詠嘆や柔らかい断定を表す + びっくりしたわ。 + もう帰るわね。 + + + + + + 疑問詞に付いて不定のものを表す + + + + + + 限定することを表す + お水を一杯だけ頂けませんか。 + + + 程度を表す + 家族四人が住めるだけの家を建てた。 + + + + + + 順接の仮定条件を表す + こう言えばああ言う + + + 恒常条件を表す + 人の顔を見れば文句を言う + + + 順接の確定条件を表す + 苦労があればこそ楽しみが生まれる + + + 同趣の事柄を並べることを表す + 良いこともあれば悪いこともあった + + + 順接の仮定条件 + 寄らば大樹の陰 + + + + + + ある動作と同時に他の動作を行うことを表す + 相手の顔色を伺いつつお願いした。 + + + ある動作が継続、実現しようとしていることを表す + 自分が負けつつあることを悟った。 + + + 二つの動作が逆接であることを表す + 目先の対応はしつつ、本当に大丈夫かどうか不安は拭えない。 + + + + + + 自分の意見を強調、念押しすることを表す + みんな、行くぞ。 + + + + + + + 反論や自己主張を表す + だって、本当に分からないんだもん。 + + + + + + そして(単純列挙) + + + + + + + + + + + 希望 + 会いたがらない + 会いたがろうと + 会いたがります + 会いたがった + 会いたがる + 会いたがるとき + 会いたがれば + + + + + + + + + + + 過去・完了・確認 + 育ったろう + 喜んだろう + 育った + 喜んだ + 育ったとき + 喜んだとき + 育ったら + 喜んだら + + + + + + 世にいうところの、俗に云う + + + + + + our + + + + + + 一人称単数 + + + 二人称単数 + + + + + + + + + + + + + full of energy + + + of good health + 元気ですか。 + + + + + + + + + + + + + 風流、風雅、優美であること + + + + + + + + + + + + + 入り組んでいること + + + + + + 数字の100、10の10倍 + + + + + + 俳句を数える単位。 + + + + + + 荷が重すぎる。負担が過重だ。任務が重大過ぎる。 + + + + + + + + which thing, which object + 何すんだよ + + + + + + + 朝、人に挨拶する言葉 + + + 早いことの敬語 + + + + + + salutation used in the evening + + + + + + + あの人たち + + + + + + 文の終わりにつける符号 + + + + + + 最も自分に近い物事を指して言う語 + + + + + + ten + + + + + + + 個数を表す語 + + + + counter for military units + + + counter for three-dimensional objects + + + counter for empty containers + + + + counter for meteorites + + + + counter for planets + + + + counter for clouds + + + + counter for typhoons + + + counter for tornadoes + + + counter for cells + + + counter for viruses + + + counter for bacteria + + + + + + + forty-two + + + + + + the number 13 + + + + + + the number 15 + + + + + + natural number + + + + + + counter for waves + + + + + + + さまざまであること + + + + + + 名高い + + + + + + 相手の言いなりのままに承諾すること + + + + + + なるほど、その通り + + + + + + 瞬く間に物事が片付くこと + + + + + + ちりじりばらばらになる様 + + + あちらこちらと行き交う様子 + + + + + + さようなら + + + + + + その場をごまかし繕うこと + + + + + + ならびに、及び、同様に + それにともない、都営三田線の延長、東急目黒線との直通運転も同じく延期となった。 + + + + + + weired, strange + + + + + + ゆっくりと同じ調子で歩く + + + + + + imitates barking of a dog + + + + + + + + + + 断定をあらわす + + + 場所をあらわす + + + 関係性をあらわす + + + 性質や外見をあらわす + + + + + + 相手の失言などを捉えて揶揄すること + + + + + + ひとつのことに一所懸命に従事すること + + + 主張を譲らないこと + + + + + + + よく味合わずに丸呑みすること + + + + + + 無疵の玉、いささかの欠点も無いこと + + + + + + 強力者が機会を窺っている形容 + + + + + + 偉大なる志 + + + + + + 断じて、決して + + + 底の底まで + + + 金輪のあるところ、即ち非常に離れた地の底 + + + + + + 常に身近において意識する格言 + + + + + + 景色の良い山水の形容 + + + + + + 物がはなればなれになって筋道が立たないこと + + + + + + 自分の言行が前後矛盾すること + + + + + + 社会を指導する学者などのこと + + + + + + 盛んな者は必ず衰えること + + + + + + 歯ぎしりをし腕をまくることで、深く憤り、または残念がること + + + + + + 前世から結んだ互いの縁 + + + + + + 文章や小説の会話以外の部分 + + + + + + 始めから終わりまで + + + + + + + 立身出世の階梯 + + + (原義)竜門は黄河の上流にあり、ここを鯉が越えると竜に化けるという言い伝え + + + + + + + 傑物、大奸物 + + + 舟を呑むほどの大魚 + + + + + + 濡れ手で粟をつかむように、労せずしして利益を得られること + + + + + + 筆跡、手紙の文 + + + + + + 取り組みがあまり前向きでない様子 + + + + + + + + 一定期間ごと + + + + + + 同程度の量が繰り返されたり割り当てられたりすることを表す + ショートケーキをひとり一個ずつ食べた。 + + + + + + + 感動、詠嘆を表す + よく分かったな。 + + + 念押しを表す + お風呂はもう入ったな。 + + + + + + + 強い否定を表す + 酔ってなんかいるもんか。 + + + + + + 金属(鉄)製の草鞋、とことん歩き回っても履き潰れないことの喩え + + + + + + + + + (逆接) + + + + + + 前もって内密に言い聞かせておき、表立っては正々堂々とやっているふりをすること + + + + + + 自然のままの状態 + + + + + + + 賛成すべきものには賛成し、反対すべきものには反対するということ + + + + + + + 粗末なものをたくさん作ること + + + + + + 計算づくの損得勘定で考えること + + + + + + 注意する、手数をかける + + + + + + 夢中になる様子 + + + + + + 花ひとつ + + + 車輪ひとつ + + + + + + ひとつの船 + + + + + + ひとつの束 + + + + + + + 本来のまま初々しい様子 + + + + + + 同輩以下の対称。おまえ。 + + + + 二人称の代名詞。敬称。 + + + + + + + + 大いに飲むこと + + + + + + 最高の規律 + + + + + + 親しみやすいさま + + + + + + 遠称の指示代名詞 + + + + + + + + 大黒天が持っている槌 + + + + + + 優れた人士の多いこと + + + + + + あちらこちら + + + + + + 頭は冷たく足は暖かくするのがよい、ということ + + + + + + 危ないところに立ち入ることの形容 + + + + + + どこ、どのへん + + + + + + 技芸などの奥義まですべて伝授されること + + + + + + 好きになる + + + + + + 心の底まで明かしあう友人 + + + + + + 仲が悪いこと + + + + + + 階段や技量レベルなどの段数を表す語 + + + + + + 建物などに入りにくい + + + 心理的な障壁がある + + + + + + 世の中が移ろいやすいこと + + + + + + 後になり取り残される + + + + + + + 心中に怒りが湧き上がる + + + + + + いつまでも恨みに思う + + + + + + なかなか決心がつかない + + + + + + ざっと読む + + + + + + 塔などの数をあらわす + + + + + + + + + + + + + 近代のものである様子 + + + + + + + + + + + + + 適切でない + + + + + + 更に強めること + + + + + + ~せざるをえなくなる + + + + + + 恨まれる + + + + + + 向こう見ずに無謀な冒険をすること + + + + + + + + + + 罰が悪そうに話す様子 + + + + + + 機会を失して既に効き目がない様子 + + + + + + + + + + 呼吸を抑えてじっとする + + + + + + + + + + 睡眠から起きる + + + + + + + + + + 恥をかかせる + + + + + + + 終わりがない + + + + + + 立ち止まる + + + + + + ごく僅かな量であることのたとえ + + + + + + + + + + + + 首を切る + + + 解雇する + + + + + + at (a place or time), in, on, during + + + to (a direction or state), towards, into + + + 目的の場所を示す + 会社に着いた + + + 行動の相手を示す + 知人に頼んだ + + + 所在の場所を示す + 机に本がある + + + 感情や状態の原因や根拠を示す + 方針に賛同する + + + 行動の主体を示す + あなたに分かりますか? + + + 行動や所有の対象を示す + 友人に聞いた + + + 手段、内容、付着物を示す + 箱に入れる + + + 時間や時点を示す + 7時に起きた + + + 領域を示す + 技術者に向いている + + + 目的を示す + 遊びに行く + + + 役割を示す + 貯蓄に回す + + + 割合を示す + 国民の5人に1人 + + + + + + 主格を表す語 + 鳥が鳴く + + + 対象格を示す + 水が飲みたい + + + 「にある」の意を表す語 + + + 「という」の意を表す語 + + + + + + + 動作や作用の至り及ぶところを表す + 駅まで行きましょう。 + + + 限度を表す。「だけ」 + 当初予定どおりに取り組んだまでです。 + + + 添加を表す + 老人までが立ち上がって踊りだした。 + + + + + + 原因や理由を表す + このあたりは便利だし、住みやすい + + + 事物を並立して強調する + 宿題は忘れるし、先生には怒られるしで散々だった + + + 軽侮の否定を表す + 子どもじゃあるまいし、ゲームなんか貰っても嬉しくないよ + + + 終助詞的な用法 + もういいよ、手遅れだし。 + + + + + + joins words and sentence parts together + + + In addition, in addition to + + + in addition to what has been said previously + + + connects at least two alternatives + + + + + + + + + + 打消・否定を表す + しなかろう + しなくなる + しなかった + しない + しないとき + しなければ + + + 「か」を伴って勧誘を表す + + + + + + + + + + + + + + + 断定 + 雨だろう + 雨だった + 雨で、 + 雨だ + 雨なのか + 雨ならば + 雨なれど + 雨やろ + 雨やった + 雨や + + + + + + big + + + + + + small + + + + + + + + + + + + + 都合が良いこと + + + + + + 負担が重い。任務が重大だ。責任が重い。 + + + + + + + + liked or favoured + + + to have a strong, positive emotion based on affection + + + + + + 自分より少し離れた物事を指して言う語 + + + 直前に述べた物事を指して言う語 + + + + + + + natural number + + + + + + this + + + + + + indicates the preceiding number is an amount of years + + + + + + 決まっていなかったり不特定の物事を指す + + + + + + natural number + + + + + + tolerable + + + + + + le nombre 11 + + + + + + 車輪の数 + + + 花の数 + + + + + + the number 9 + + + + + + + natural number + + + + + + + + + + + + + 今までになくできたばかりである + + + + + + + natural number + + + one thing + + + + + + + natural number + + + + + + natural number + + + + + + natural number + + + + + + 4 + + + + + + natural number + + + + + + counter for long and narrow objects + + + + + + 人の数を数える語 + + + + + + + a colloquial or informal way to say goodbye or farewell + + + + + + + natural number + + + + + + having fame + + + + + + 貧しいときから連れ添って苦労をともにした妻 + + + + + + 相手を倒さずにはおかないほどの深い恨み + 不倶戴天の敵 + + + + + + + + + + + + + + 間が透けてばらばらなこと、繁っていないこと + + + + + + 芸者や遊女がお客がつかず暇なこと + + + + + + 気取って咳払いする声 + + + + + + uncertain or unspecified entity + + + + + + 三人称代名詞で他人のぞんざいな呼称 + + + + + + 全くの他人 + + + + + + キリスト教で礼拝の終わりに唱える語 + + + + + + 兄弟・妻子など、常に親愛する人と離別する悲しみのこと + + + + + + salutation or greeting + + + + + + トントン拍子に調子の良いこと + + + + + + 門外漢の批評 + + + 江戸城の下馬札の立ったところで下々が評定する様(語源) + + + + + + 利害が一致する時は敵味方でも協力することのたとえ + + + + + + 人生の禍福は測り知ることが難しいことのたとえ + + + + + + 靴の上から痒い所を掻くような、もどかしいさま + + + + + + 得意げな顔 + + + + + + 杓子のような正しくない定規 + + + 他に応用しにくい標準で律しようとしている時に用いる + + + + + + 針ほどのことを棒ほどに言うこと + + + + + + + 親密な交情を表す + + + + + + 千年に一度相まみえること + + + 容易に遇いがたい好機のこと + + + + + + 場合に応じた機転でうまく当てはめること + + + + + + 手紙や文書を数える際の助数詞 + + + + + + 人がまだ成し遂げていないことを率先して行うこと + 破天荒な生き様 + + + (原義)混沌たる天地を破ること + + + + + + + 根も葉もないうわさ話 + + + + + + 自ら進んでものごとに取り組む様子 + + + + + + + + 個々のものごとに秩序をもたせて、整然と組み立てること + + + + + + 手を動かすにはやや狭い様子 + + + + + + + + + + 使役 + + + + + + + + 断定を表す + 忙しいのよ。 + + + 問いや確認を表す + 何やってるの。 + + + 「な」由来の「のう」 + そういうことじゃないんだがのう。 + + + + + + 問いかけや念押しを表す + きょうは学校かえ。 + + + + + + (後から注釈などを接続) + + + + + + + + + + + (逆接) + + + + + + + 女性にはねつけられる様子 + + + 広く要求を拒絶される様子 + + + + + + 人生及び世界は最も美しく快楽であるものという考え + + + + + + 物事に感じ、涙もろいこと + + + + + + + + + + + + + 底深いこと、深みのあること + + + + + + 燃えるように熱烈な感情を持っている様子 + + + + + + 狭い場所のたとえ + + + + + + 疑わしいものをよう吟味しようとする様子 + + + + + + どれ、どちら + + + 近いうちに + + + + + + obedience + + + + + + ひとつの握り寿司 + + + + + + ひとつの音楽 + + + + + + 楽曲の単位 + + + + + + ひとつの俵 + + + + + + 俵を数える単位 + + + + + + 死ぬ + + + + + + 大いに世人を驚かせること + + + + + + 実質的。本質的。 + + + + + + 1000グラム + + + + + + if… + + + + + + 指示代名詞。向こうの方。あちら。 + + + + 過ぎ去った時。以前。 + + + 同輩以上の二人称の代名詞。敬称。 + + + + + 同輩以上の三人称の代名詞。敬称。 + + + + + + 遠称の指示代名詞 + + + + + + + + いずれかの。どれかの。 + + + + + + first person pronoun used by woman + + + + + + 婚礼の儀式 + + + + + + 手拍子を打って喝采の意を表すこと + + + + + + 賛美の意を表す + + + + + + 物事に心を奪われ我を忘れて一切のことを顧みないこと + + + + + + thousandth + + + old monitary unit + + + + + + + + + + + + + (主に物が)冷たくない + + + 愛情や思いやりが感じられる + 温かな家庭 + + + + + + 文学と武術と両方の道 + + + + + + 命を捨てても心を変えないほどの深い親交 + + + + + + 土地の広さの単位 + + + + + + 分数を数える語 + + + + + + + 紙面やその番号を数える語 + + + + + + 何事にも準備がよく行き届いていること + + + + + + 命を失う、死ぬ + + + + + + 意図せず音や話が伝わってくる + + + + + + 他人のものを盗む癖がある + + + + + + 中間に相当する + + + + + + + + + + + + + 科学に基づく + + + + + + + + + + + + + 全体でとらえる様子 + + + + + + 土地の単位 + + + + + + からだ一つで + + + + + + + + + + + + + 広く当てはまる様子 + + + + + + 行動をともにしていた者から分かれる + + + + + + + + + + 労苦をいとわず力を尽くして働く + + + + + + 網の糸と糸との間のすき間 + + + + + + + + + + 呼吸が苦しい + + + + + + + + + + + 動揺して顔が青白くなる様子 + + + + + + + + + + + + + 肝要または必要であること + + + + + + いろいろ心配する + + + + + + + + + + + + + 広く大きい様子 + + + + + + + + + + + + + 怪しむべきこと + + + + + + 年末の時期 + + + + + + + + + + 雲に届くほど背が高い様子 + + + + + + 刀の一振りでふたつに断ち切ること + + + ためらいなく判断すること + + + + + + 主題を示す、他と区別して特に取り立てて表す + スマホは便利だ + + + 複数の主語文節を対比して表す + 勉強の成績は悪いがスポーツは得意だ。 + + + 体言化した動詞を特に強調して表す + どこまでも謝りはしなかった。 + + + 連用修飾語に接続して強意を表す + 決して寒くはない。 + + + 補助される文節に接続してその意味を強調する + 早めに見たいのなら、朝から来てはいかがですか。 + + + 述語が連文節になっている場合の主語を表す + 彼は頭の回転が早い。 + + + + + + + 物理的な分量を示す。ほど、だけ + そこから湯村までは歩いて二十分くらい。 + + + 論理的な状態や動作の度合いを示す + 強者の権利ぐらいなら昔から知っている。 + + + + + + 特に強く指示することを表す + 今度こそ勝てよ。 + + + 形容詞に接続する(まれ) + ここで怪我でもしたら、それこそ大変だ。 + ようこそいらっしゃいませ。 + + + + + + + 概括を表す + 手を抜いたりしないでくださいね + + + 動作や作用の並立を表す + 滑ったり転んだり + + + + + + 動詞や助動詞の連用形に続いて軽蔑や非難の意をあらわす + + + + + + + + 「だ」(断定)の丁寧な表現 + 雨でしょう + 雨でした + 雨ですもの + + + + + + + + 二人称単数 + + + + + + + everyone + みんなはどこ? + + + + + + 二人称の代名詞、同輩以下の対称 + + + + 二人称の代名詞。敬称。 + + + + + + + + + ひとつ + + + はじめ + + + + + + 是非を論じる価値もないほど愚かしい。 + + + + + + 積み荷の一部を捨てる。多くは船荷について言う。 + 沈石を下し、荷を刎ね、船を直しけれども + + + + + + please + + + + + + denoting approval + + + + + + + natural number + + + + + + + 数字の5 + + + + + + indicates the preceding number represents an amount of birds + + + + + + 嫌うこと + + + + + + 紙などの薄いものを数える語 + + + + + + 愚かであること + + + being foolish + + + + + + natural number + + + + + + + natural number + + + + + + + + natural number + + + + + + きれい、みごと + + + + + + which person + + + + + + enormous + + + + + + 見かけは立派であるが実際の中身はこれに及ばないことの喩え + + + + + + あいまいなこと、ぼんやりしていること + + + + + + Expression of gratitude + + + + + + + + + + + + + 平穏無事であること + + + 心が落ち着いていること + + + + + + まだ見通しが立たない将来のことを早手回しに検討しすぎて嘲笑されること + + + + + + 回数を数える語 + + + + + + + + 順序・等級を数える語 + + + 組合・取組などを数える語 + + + + + + not posessing skill + + + + + + + 古語の三人称代名詞で他人のぞんざいな呼称 + + + + + + 自分のこと + + + + + + 物事に感じて歓喜または悲嘆の情を表す声 + 嗚呼、なんて柔らかいんだろう・・・。 + + + + + + いろいろやった結果、最終的に + + + + + + 人を見下して使うこと + + + + + + 女性を密かに恋い慕うこと + + + + + + 強いものがますます強くなることをいう + + + + + + 巧みに人をあざむく謀 + + + + + + 他の威力を借りて強がること + + + + + + わたし + 小生 + + + + + + + 優劣を決めること + + + + + + 要点を得ていること + + + + + + 心細く万事に注意深い心 + + + + + + 極めて切迫した急務 + + + + + + 自分にとって少しも痛痒を感じない様子 + + + + + + 大きい器は出来上がりが遅いこと、大きな才がある者は成功が遅い + + + + + + 昼夜休まずに急行したり従事すること + 昼夜兼行でたどり着いた + + + + + + 退路を絶って活路を見出そうとする必死の覚悟 + + + (原義)川を背にして張る陣法 + + + + + + 病気が重篤な様子 + + + + + + + 錐(きり)を立てる隙間もないほどぎっしり詰まっている様子 + + + + + + 変化に応じて適宜処置すること + + + + + + 人間社会の現実に即していること + + + + + + + 生まれた跡の経験や研究によって定まること + + + + + + + 取り組みが前向きである様子 + + + + + + + + + + + + + + + 身にしみて、しみじみと + + + + + + + + 「ようだ」(比況)の丁寧形 + あるようでしょう + あるようでした + あるようです + あるようですもの + + + + + + + + 「みたいだ」(比況)の丁寧形(伝聞情報を根拠としない判断) + あるみたいでしょう + あるみたいでした + あるみたいです + あるみたいですもの + + + + + + 念押しを表す + おまえ、どこへ行くのかい。 + + + + + + 語句の累加を表す + + + + + + 語句の累加を表す + + + + + + 列挙を表す + + + Konjunktion um Alternativen oder Auswahlmöglichkeiten darzustellen; oder + + + + + + そうするうちに + + + + + + 「順接」。前述の理由により。 + + + + + + (原因を接続) + + + + + + 子どもは1番目は女、2番めは男の計二人がちょうど良い、という意味 + + + 子どもは女が一人、男が二人の計三人がちょうど良い、という意味 + + + + + + 鵜が魚を丸呑み掏る様子から、相手の言動を何も考えずに受け容れること + + + + + + + (逆接) + + + + + + + 自分から求めて災いに遭う様子 + + + + + + 実物が紙などに真上から縦横の視点で写された様子 + + + + + + + 心霊の作用 + + + + + + + + + + + + + 筋道が通っていること + + + + + + + + 意外なことに言葉も出ず呆れるさま + + + + + + 同類を全部一度に捕縛すること + + + + + + 非常に奇抜なこと + + + + + + 列席することの謙譲語 + + + + + + 知識を基に物事を考える様子 + + + + + + 確かめる + + + + + + + どこ + + + + + + + ひととび + + + + + + ひとつの和歌 + + + + + + 束ねられたものの数の単位 + + + + + + counter word for colors + + + + + + 建物を数える単位 + + + + + + + 部屋の広さを表す語 + + + unit of area + + + + + + 助力すること + + + + + + 明治四年に諸侯を廃し郡県の制度をひいたこと + + + + + + 自分自身を卑しめて言う詞 + + + 三人称の蔑称 + + + + + + 半ば疑いなかば信じること + + + + + + 面前では媚び従うが、後で陰口をたたくこと + + + + + + opposite + + + + + + + + 9000 + + + + + + + Enough + + + + + + 建物の階数を表す語(日本では1から始まる) + + + + + + 回数を数える語 + + + + + + + + 順序や等級を表す語 + + + + + + グズグズして一向に埒が明かない様子 + + + + + + 他者に後れを取ること + + + + + + + 歴史的な通貨の単位 + + + 車両を数える単位 + + + + + + 嫌だという気持ちになる + + + + + + ある物事を境に良い結果と悪い結果に分かれる + + + + + + 懸命に働く + + + + + + + + + + + + + 勢いがある様子 + + + + + + 呆れ果てて見捨てる + + + + + + 割れて開口している部分 + + + + + + + + + + + + + 短い期間である様子 + + + + + + + + + + + + + 性格が明るく晴れやか + + + 天候が明るく清々しい + + + + + + + + + + + + + 歩き方が早い様子 + + + + + + + + + + + + 準備できているが前に進めず待っている状態 + + + + + + + + + + その跡を追っていく + + + + + + 存在する状態そのままの様子 + + + + + + + + + + + 呼吸する + + + + + + + + + + + あえぐ + + + + + + + + + + + ひと休みする + + + + + + 沐浴の時間が短いことのたとえ + + + + + + + + + + + + + 愛すべき様子 + + + + + + 注意して聞こうとする + + + + + + 対象や目的を表す + 絵を描く + + + 動作の起点を表す + 学校を卒業する + + + 経過する場所や時間を表す + 隠居生活を過ごす + + + 動作の方向を表す + 母親の方を向いた + + + + + + + 念押し、詠嘆を表す + 立派に育ちましたね。 + + + 「ねえ」で意味を強調 + どれが良いですかねえ。 + + + + + + 限定することを表す + お肉ばかりじゃなくてお野菜も食べなさい。 + + + 時間や程度を表す + 一時間ばかり、話し込んだ。 + + + + + + 程度を表す + 吐く息が白くなるほど気温が下がった。 + + + 特別なものを挙げ、打消表現を伴って動作や作用の程度を表す + 母ほど私のことを愛してくれた人はいない。 + + + 「~ば~ほど」の形で用いられる + 夢は大きければ大きいほど良い。 + + + + + + 2つの動作が同時に行われることを表す + 歩きながら考える + + + 2つの動作が逆接であることを表す + 早くやろうと思いながら、ついつい後回しになってしまった。 + + + + + + + + + + + 自発 + 信じられない + 信じられれば + + + 受身 + 信じられた + 信じられろ + + + 可能 + 信じられる + + + 尊敬 + 信じられるとき + 信じられよ + + + + + + 打消の推量 + 降るまい + 降るまいに + + + 打消の意志 + 思うまい + 思うまいと + + + + + + + + + + + 丁寧 + ありません + しましょう + ありました + します + ありますとき + ありまするとき + しますれば + いらっしゃいませ + お待ち下さいまし + + + + + + + + + + + + + 中国古代の歴史書『史記』中の列伝の篇名、饒舌なさま、転じて笑いやユーモアと同義の用語 + + + + + + + + + + + + + + + + さとく行動などが素早いこと + + + + + + freundschaftlicher Verabschiedungsgruß + + + + + + counter for the age of a person in years + 娘は十八歳ですか? + + + + + + word used for grammatical negation; linguistic particle with which disagreement, disdain, or a negative opinion is expressed + + + response to a "Thank you" + + + + + + indicating something close to the speaker + + + + + + 紙を綴じた本などの数を表す語 + あなたは二冊の本を持っています。 + + + + + + + natural number + + + + + + 人数を数える値 + + + counter for reservations + + + + + + "what kind of" + + + + + + + + + + + to be invested in something + + + 心配になる + + + + + + 尊敬する人に対面で話を聴くこと + + + + + + ちょっとの間に合わせ、その場逃れの安易な選択をすること + + + + + + 人の意見や批評などに耳を貸さないことの喩え + + + + + + 多くの人が同じことを言う様子 + + + + + + 大きな手柄を立てる事 + + + + + + 自分自身に対する敬語 + + + + + + その、この、相当する + + + そなわる + + + + + + 急に事が起こって驚くたとえ + + + + + + 女性に対する蔑称 + + + + + + + 国を閉ざして他と交わらないことから、頑固で人の意見を聞かない人をいう + + + + + + + 一張の綺羅の意味より、常に一枚しか持たない晴れ着のこと + + + + + + 関係のない人たちに嫉妬を感じること + + + + + + 相違は少しだけで大体において同じこと + + + + + + 全身の力 + + + + + + 自分の悪行の報いが自分の身にふりかかること + + + + + + 善人も悪人もあわせて自分の部下にしたり交際する器量のあること + + + + + + 自分の力量をわきまえずに強敵に立ち向かうこと + + + + + + 己の感情のままに行動すること + + + + + + 眼中に置かないこと、気に留めないこと + 採算を度外視した価格 + + + + + + 竹を割るように非常な勢いで進んでいく様子 + + + + + + + 手で腹をささげて、倒れんばかりに笑い崩れること + + + + + + (貝が泥を吐く様子から)隠していたことを白状すること + + + + + + 二枚の舌でそれぞれ違うことを言う事、つまり嘘をつくこと + + + + + + (後から注釈などを接続) + + + + + + (逆接) + + + + + + (逆接) + + + + + + (逆接) + + + + + + 平面に対して、高さなどを含むより実物に近い感触や視点 + + + + + + + 歳のいった女性と同棲している若い男性 + + + + + + + + + + + + + 奇抜で激しい + + + + + + no + + + + + + + 後世にまで伝え、歴史に残るようなという意味 + + + + + + 意見をしても全く聞き入れられない様子 + + + + + + 誰も彼も、残らずみな + + + + + + 帯のように狭い水の流れ + + + + + + 始めから終わりまで + + + + + + 脇目もふらない様子 + + + + + + ひと揃いの履物 + + + + + + よくは知らないこと、なまわかり + + + + + + 獣の一頭 + + + + + + 票を数える単位 + + + + + + ひとつの品物 + + + + + + 身の危険を顧みない様子、またその人 + + + + + + 予期した結果であること + + + + + + 蜘蛛がかけわたした網状の巣 + + + + + + うわさ + + + + + + 活かすも殺すも自由であること + + + + + + 心が広く物事にぐずつかない + + + + + + 祝賀の意を表す声 + + + + + + 共通のものを引き出して総合した様子 + + + + + + 四方へ駆け回り尽力すること + + + + + + 功名を立てる機会を待つだけの状態を嘆くこと + + + + + + 死にかけたときに不思議と助かること + + + + + + 骨を砕き身を粉にして励むこと + + + + + + 叢書などの順序を表す語 + + + + + + + + + + + + + 遠く長い様子 + + + + + + + + + + ゆったり落ち着いている様子 + + + + + + 勝る者は勝ち、劣る者は負けること + + + + + + 手応えがない、心の支えがない + + + + + + + + + + + + + + 極めて赤みが強い様子 + 真っ赤な太陽 + + + 極端な様子 + 真っ赤な嘘 + + + + + + お辞儀する + + + 謝罪する + + + 感服する + + + + + + + + + + + + + ものが豊かであること + + + + + + + + + + + + + 本来の格式に沿った様子 + + + + + + + + + + + + + 発火して破裂するような勢いのある様子 + + + + + + 妨害する、邪魔をする + + + + + + + + + + + + + 次第や順序を追って統一してある様子 + + + + + + entirely + + + exactly alike + + + + + + + + + + + + + 一般的な水準よりも先に進んでいる様子 + + + + + + + + + + あることが長く続く + + + + + + + + + + + + + + 性に関して慎みが無くだらしないさま + + + + + + + + + + + 激しく呼吸する + + + + + + + + + + 病気や怪我をする + + + + + + + + + + + + + 軽率な様子 + + + + + + + + + + + + + 手軽な様子 + + + + + + + + + + + 相手の機嫌を推し量って何かをする + + + + + + + + + + なぐさめる + + + + + + 気の利いた風を装うこと + + + + + + + + + + + + + 荒々しい様子 + + + + + + 同一の事物の並立を表す + 男も女も平等に雇用しましょう + + + 同種の事物の中からひとつを挙げて他を類推させることを表す + 犬も悲しんでいるのだろう + + + 強意や感嘆を表す + 珍しくもない話 + + + すべてを包括する意味になることを表す + どう考えても有罪だ + + + + + + 動作の行われる方向を表す + 駅へ向かう + + + 動作の帰着する場所を表す + 会社へ到着した + + + 動作に影響を及ぼす対象を表す + 親へ連絡を入れる + + + + + + 比較を示す + 私は赤より青のほうが好きです。 + + + 動作や作用の起点を示す + 隗より始めよ + + + 動作の行なわれる場所や経由地を示す + 井戸より水を汲む + + + 動作や作用の手段や方法を示す + 徒より行く + + + 範囲を限定する意を示す + 進むより他に無し + + + + + + + + 複数例示して選ぶことを表す + 起きるなり寝るなり + + + 大体の目安を表す + 多少なりとも金銭的に支援する。 + + + 程度の軽いものを挙げて強調を表す + せめて一口なりと、食べていってください。 + + + + + + 同類のものからいくつか列挙することを表す + 猿だの猪だのが畑を荒らして行った。 + + + + + + + 逆接の仮定条件を表す。「たとえ~しても」 + 寝ても覚めても忘れない + + + 逆接の確定条件を表す。「~したのにも関わらず」 + 何日経っても来ない + + + 恒常条件を示し、前後で順当していないことも表す + 無関係でも疑われた + + + + + + + + + + + 自発 + 思い出されない + 思い出されれば + + + 受身 + 返された + 返されろ + + + 可能 + 泣かれる + 返されよ + + + 尊敬 + 落とされるとき + 落とされい + + + + + + 推量 + + + 意志 + + + 勧誘 + + + + + + + + + + + + 比況 + あるようだろう + あるようだった + あるようでした + あるように見える + あるようだ + あるような気がする + あるようなら + + + + + + + + 一人称の代名詞で同輩またはそれ以下に対していう語 + + + + + + 衣服や器具を数える単位。 + + + + + + sorry + + + + + + formule de salutation utilisée lorsqu’on quitte quelqu’un + + + + + + yes + + + + + + 文中の意味の切れめにつける符号 + + + + + + + + + + 数字の1000 + + + + + + ten thousand + + + a large number + + + + + + idicating something that is far away from both the speaker and the listener + + + + + + + the natural number 3 + + + + + + 細長いものを数える語 + + + counter for home runs + + + counter for telephone calls + + + counter for long objects + + + counter for trees + + + + + + + what is in accord with fact or reality + + + statement in accordance with the real world + + + sum or aggregate of all that is real or existent + + + having a quality of appropriateness + + + in accordance with reality + それも本当の名前じゃない + + + degree of certainty about the origin or precedence attributed to an object + + + + + + natural number + + + + + + natural number + + + + + + natural number + + + + + + one night + + + + + + the number fourteen + + + + + + the number 16 + + + + + + natural number + + + + + + that way + + + + + + 望むに遠いことを夢に見ること + + + + + + 取り越し苦労、無駄な心配 + + + + + + 事柄が明白なこと、直接的 + + + 目の当たり、てきめん + + + + + + かれ(彼)に同じ + + + + + + + uncertain or unspecified entity + + + + + + + + 役者の演技が板(舞台)の上で危なげなく見える様子から転じて、わざとらしいところがなく、ぴったりと当てはまること + + + + + + ああ痛い、しまった + + + + + + ある事柄のうち軽いものを挙げて、他を類推させることを表す + 子どもだって、いつかは大人になるんだよ。 + + + + + + + いともたやすいこと + + + + + + 世の中の色々な人、群衆 + + + くだらない人 + + + 宇宙の森羅万象 + + + + + + 海に千年山に千年住んで、世の苦労を知り尽くして狡くなった人のこと + + + + + + 古詩の意を取り、その語を換えて自分の作とすること + + + + + + 数字の50 + + + + + + einen Gegensatz ausdrückend + + + + + + もってのほか、話にならない、言うにたえない + + + 奥深い真理 + + + + + + ライオンが吠えるように雄弁なさま + + + + + + 自分の心で他人の心を推し量ること + + + + + + 総て生活は優勢のものが勝ち、劣等のものが滅びるという進化論の中心となっている考え + + + + + + 自ら身を害し、身をすてること + + + + + + 酒に酔い、夢見て生死することから、何をなすことなく一生を終えること + + + + + + 進んでやまないこと + + + + + + + 他人に先立って事に着手する + + + + + + 竹馬に乗って共に遊んだ友人 + + + + + + 物事を軽く見ること + + + + + + 何もない事を残念に思い、功名を立てられないことを嘆くこと + + + + + + 偏らず、くみしないこと + + + + + + 心に描いた最高の状態であること + + + + + + + 人間が生まれながらに持っている性質 + + + + + + + + + 美しいこと + + + 汚れていないこと + + + + + + ありふれたこと、よくあること + + + + + + + + + + + + 比況(伝聞情報を根拠としない判断) + あるみたいだろう + あるみたいだった + あるみたいで、 + あるみたいに + あるみたいだ + あるみたいな + あるみたいなら + + + + + + + 逆接の確定条件を表す + はたらけどはたらけどわが生活楽にならざりぢっと手をみる + + + + + + + + + (古典文法)完了や存続の意味を付け加える + + + + + + 前の仮定が実現しても期待通りにはならないことを表す + いくら騒いだところで、だれもやって来ないぞ。 + + + + + + 列挙を表す + + + + + + それで + + + + + + (逆接) + + + + + + 組織や連絡がなく、ばらばらの状態 + + + + + + + ただ恋しいとおもうような恋 + + + + + + 遂げられそうもないことを望んでみること + + + + + + 非常に速いこと + + + + + + 一般向けで分かりやすい様子 + + + + + + 悲しくも勇ましい様子 + + + + + + 病気のようになった様子 + + + + + + 歓迎できない来訪者のこと + + + (原義)招待していない客 + + + + + + 未だ知らない世界 + + + + + + しばしば物事が変わることのたとえ + + + + + + 何か食べたくなる + + + + + + + 心から心に伝わること + + + + + + 家内で威張ること + + + + + + 紙などを数える単位 + + + + + + ひとりで千人の敵に当たること + + + + + + 和歌の単位 + + + + + + 料理の皿を数える単位 + + + + + + + 片方だけ贔屓すること + + + + + + いかめしい + + + + + + 離れる、出発する + + + 後回しにする + + + + + + + 鬱屈した気持ちが晴れること + + + + + + + + + + + 解雇させられる + + + 首を切られる + + + + + + 人に仰がれ尊ばれるたとえ + + + + + + 絶え間なく進歩すること + + + + + + + to be damned + + + + + + つかず離れず + + + + + + 小型の舟の数を表す語 + + + + + + 全体を10として割合を数える語 + + + + + + + + + + + + + ぼんやりしている、はっきり見えない + + + + + + 暇になる + + + + + + 心配する + + + + + + 酒を飲みすぎて意識をなくしたり言動が制御できない様子 + + + + + + 理解できる + + + + 記憶できる + + + + + + + 理解できない + + + + 記憶できない + + + + + + + + + + + + + + 規模が大きい + + + + + + 別の観点では + + + + + + + + + + + + + 途絶えたり続いたりする様子 + + + + + + + + + + + + + 代表するような + + + + + + 土地の単位 + + + + + + 呼吸の根元、いのち + + + + + + + 常に買うこと + + + + + + + + + + + 頭を左右に振って否定をあらわす + + + + + + + + + + + + + 手軽で便利な様子 + + + + + + + + + + + + 心配する + + + + + + + + + + + しゃべる + + + 間をとりなす + + + + 材料や手段を表す。「によって」 + ウィキペディアでいつかバイアグラを検索するなんて思ってもみなかったわ。 + + + 動作や作用が行われる場所や時間を表す。「において」 + 上野で飲む + + + 原因や理由を表す。「のために」 + 病気で休む + + + 感動、詠嘆を表す + やっと手紙が来たよ。 + + + 呼びかけを表す + 早く行けよ。 + + + 長音形「よう」で強調の意 + 困ったよう。 + + + 逆接の確定条件を表す + 頑張ったけれども、不合格だった + + + 反対の二つのことえを対比的に表す + 親を大事にするのも良いけれど、奥さんのことも考えてあげてくださいね + + + 事実を述べる語に接続詞て単に後に続けることを表す + ここまで調査を続けてきたけれども、ようやく分かってきたことがある + + + so/therefore + + + その上に + + + 列挙を表す + + + 列挙を表す + + + 使役 + + + 否定、打消を表す。「ない」の別形 + 行かず + 行かぬ + ありません + 行かぬとき + ありませんとき + 行かねば + + + 推量(伝聞情報を根拠とした推量) + 大変だろう + + + 意志 + 行こう + + + 勧誘 + 行こうか + + + 伝聞(伝聞情報の伝達) + 言ったそうで + 言ったそうだ + 言ったそうなら + + + 様態(外見による性質や状態の判断) + 言いたそうだろう + 言いたそうだった + 言いたそうに + 言いたそうな + + + 一人称単数、私 + + + 男性が自分を指して言う語 + + + 簡単に。問題なく。 + + + あのよう(彼様)を見よ。あのよう。あの様子。 + 金玉のう釣りあげてうっちぬべいと、あげえこげえに騒ぎやることよ + + + 荷が重すぎる。負担が過重だ。任務が重大過ぎる。 + + + natural number + + + when starting a phone call + + + counter for numbers + + + general purpose counter + + + counter for three-dimensional objects + + + agreeable + + + 怪奇な、怪異な + + + le nombre 12 + + + the number fourteen + + + 一人称単数、私 + + + 人の数を数える語 + + + natural number + + + natural number + + + the natural number 3 + + + natural number + + + natural number + + + three flat objects + + + natural number + + + natural number + + + 一度失敗したものが改めて勢いを盛り返してくること + + + ならびに、また + + + 俺たち、我ら + + + 疑って問う語 + + + counter for boxes + 一箱いくらですか? + + + natural number + + + number between 7999 and 8001 + 八千以上だ! + + + 一心に思い込んで、人の言うことを聞かないひと + + + われ、自分、自分の + + + in or to all locations + + + 小動物などの数をかぞえる語 + + + 跡形もなく燃え尽きる + + + 証人を法廷などに呼び出すこと + + + あやまちの功名 + + + 万有(諸行)はいっときも常住しないという意味 + + + この上ない美味 + + + 経験で得た楽しさや喜びの粋 + + + 仏教の大涅槃 + + + とりまく環境に適するものは生存し、そうでないものは自然と滅亡すること + + + 少しも飾らず天から与えられたままの性質を表すこと、自然のままに美しいこと + 天真爛漫な子供 + + + 自分の生命をも惜しまずに尽力すること + + + ここかしこ + + + さほど手間を掛けずに整った状態にしていること + + + 順接の仮定条件を表す + 布団に入るとすぐに眠くなる + + + 恒常条件を表す + 天候不順になると野菜の値段が上がる + + + 継起的関係を表す + バスから下りると、歩き出した + + + ある事柄を仮定してそれに拘束されないことを表す + たとえ反対されようと、我が道を行く + + + 逆接の確定条件を表す + 知らんぷりを決め込んでいれば良いものを、わざわざ火中の栗を拾いに行くなんで馬鹿げている。 + + + それだけと限定して程度を表す + お会いするのは、もうこれっきりにさせてください。 + + + 打消表現を伴い「それを最後として」のように使われる + 海外へ行ったきり、音沙汰がなくなった。 + + + 「~のまま」の意を表す + 事故で寝たきりになった。 + + + 問いかけや確認を表す + これはあなたのものじゃなくって? + + + 依頼を表す + 急ぐから、走って行って。 + + + (原因を接続) + + + (逆接) + + + (逆接) + + + (逆接) + + + 組織や連絡が繋がった状態 + + + 前後を顧みず、理屈にもこだわらない様子 + + + 無理に、理不尽に行うこと + + + (原義)横方向に裂きにくい和紙を無理やり横に破くこと + + + 死を悲しみ悼んで読む弔辞 + + + 自分のことを自分で褒め称えること + + + 一般に広く行き渡る様子 + + + 盗人が恥ずかしげもなく、横着な様子 + + + 与えたものも相手によっては何らの価値も感じられないことのたとえ + + + くれぐれも注意して抜かりの無いようにすること + + + 建物などが消失して跡形もなくなること + + + 有用である + + + 男児の生まれた順序や数を表す語 + + + 静止できない勢い + + + 息も絶え絶えの様子 + + + 列挙を示す + + + 女性が自分を指して言う語 + + + 国内の憂いと国外の患い + + + thickness + + + 新年を祝う挨拶 + + + counter for days + + + counter for days of a particular month + + + しとやかで雅やかなこと + + + 2000 + + + 紙面や画面での折り返しまでの文字の並び数を表す語、行方向が左から右への横並びの場合は上端の行からの順序や数 + + + 乗り物の数を表す語 + + + 並んでいるものを数える語、列方向が上から下への縦並びの場合は左端の列からの順序や数 + + + 対応しきれない様子 + + + 何を言っても聞き流して張り合いのない様子 + + + 気づかない風を装うこと + + + 思い切りが悪い様子 + + + 相手が面目を保てるようにする + + + まるっきりの嘘 + + + 何もできずに困惑している様子 + + + あえて危険を冒すことのたとえ + + + 土地の単位 + + + 興が冷めて相手に対する愛想がなくなる + + + 曖昧ではっきりしない様子 + + + 不意を打たれて驚く + + + 暗闇の中で物を探り求めること + + + 少しの言葉 + + + 理に適っている + + + 外せない中核的な部分であること + + + 配慮が行き届いている + + + 感づく、才知がはたらく + + + いろいろとあせる、はらはらする + + + 適切でない + + + 退出する + + + 動作の後にすぐ別の動作が生じることを表す + 駆けつけるやいなや、一気に飲み干した。 + + + 事物の並立を表す + 友人や同僚には感謝してもしきれない。 + + + 不確実であるという意を表す(疑問文、否定文の場合) + ややこしくて何が何やら分からなくなってしまいました。 + + + 事物を並立することを表す + 犬やら猫やら飼っている人もいる。 + + + 主張を強調する。反駁を表す。 + だから嫌われるのさ。 + + + 気楽に構えたり、投げやりな気持ちをこめたりする + + + 「と」や「って」などに後続して、直接経験していないことを紹介する + + + 文節の切れ目に入れて、語調を整えたり、話が続くことを示したりする + + + 疑問詞疑問文で、疑問の語気を表す + + + 事態の軽い強調を表す + + + ひとつ例示し、他の同類のものでも構わないことを表す + まぁ、お茶でも飲んで行きなさい。 + + + 程度の軽いものを挙げて他を類推させることを表す + 少しでもお役に立てるように頑張ります。 + + + 下に打消表現を伴って他を排して限定や強調の意を表す + 病み上がりで、まだおかゆしか食べられない。 + + + 逆接の確定条件を表す + 独りなのに、寂しくない + + + 疑いや問や反語の意を表す + 子どもには分からなかったのだろうか。 + 明日から来られますか。 + このままおめおめと顔を出せようか。 + + + 詠嘆・願望・要求・勧誘を表す + 素敵な絵じゃないか。 + 外に行ってみないか。 + + + (逆接) + + + (前述を抽象化して後述する) + + + by the way, incidentally + + + ~でない + + + 希望 + 何食べたい? + 食べたかろう + 食べたくなる + 食べたかった + 食べたいとき + 食べたければ + + + my + + + あの人。男性を指す。 + + + あの人。三人称 + + + 遠称の代名詞 + + + あの人。女性を指す。 + + + 数字の9を表す。 + + + とても面白い、とてもうまい、見事だ、好ましい + あなたは素敵な downtown boy + + + that + + + 整数 + + + complete absence of anything; the opposite of everything + + + eight + + + 皆無であること + + + the number 9 + + + natural number + + + natural number + + + immediately after + + + two flat objects + + + natural number + + + natural number + + + yes + + + 幾何学図形のひとつ + + + therefore + + + indicates a question + + + 語句の累加を表す + + + 弟子が師よりも優れていること + + + 正しく明らかなこと + + + 明るい目と白い歯、美人の喩え + + + そなた、おまえ + + + posessing skill + + + two times + + + two repetitions + + + 呼びかける声 + ああ、ちょっと待って、ストップ! + + + 人に応える声 + ああ、そうだったな。 + + + ああ、そうではない + + + 一度うまく行ったことをもう一度やってみること + + + 立身出世すること + + + 物事を懸命に探すこと + + + 機会を巧みに利用すること + + + 何事も傍観者のほうがよく見通しが利く、という意味 + + + 無用のものに耽って、却ってその本志を失うこと + + + 年齢を数える際の助数詞 + + + 刑罰が明らかなこと + + + 権威がおごそかなこと + + + 古来の物事の長所を集めて、ひとつの完全なものにまとめること + + + 人より先に憂え、人より後に楽しむという意味で、志士仁人が国家を思う至情を表す + + + 優れた人が大勢揃っていること + + + すなわち、とりもなおさず(語句の言い換え) + 信号機の赤は即ち止まれの意味だ + + + 真正面から直接に説破すること、冒頭を置かずに直ちに本題に入ること + + + 一命が終わろうとする時 + + + 軽々しく他人の説に賛同すること + + + うっかりしていると大きな問題を引き起こすことがある + + + 夜がまだ明けないうちに + + + 低い地位からとんとん拍子に出世する様子 + + + 指標などが急激に上昇する様子 + + + 狡猾に立ち回ることをいう + + + 楽しそうな様子 + + + 確信は無いが何となく感じた知らせ + + + 自ら進んで他へ働きかける性質 + + + 受け身である様子 + + + 伝聞(伝聞情報の伝達) + 晴れるそうでした + 晴れるそうですから + + + 様態(外見による性質や状態の判断) + 泣きそうでしょう + 泣きそうです + + + 逆接の確定条件を表す + 気持ちは分かるものの、このまま進めるのはやはり無理がある。 + + + 語句の累加を表す + + + 列挙を表す + + + (注釈などを接続) + + + 信頼でき、気を遣わずに済む + + + 信頼できず、注意が必要な + + + してあげたことなどをことさらに相手に伝えて、返礼を期待する様子 + + + こちらの云う意味がすぐに相手に分かること + + + 自分で使う分は自分作り、外部の力を借りないこと + + + 本性を包み隠して平凡を装うさま + + + 意外なことが起きて驚く様子 + + + 一筋に、ひたすら + + + 進退や生死をともにすること + + + 百年鑑 + + + 目をクリクリさせて熱心に探す様子 + + + 煩悩によって心が乱されている状態 + + + 浮ついていること + + + 朝一番で行う仕事 + + + 忌み憚ることのない、率直な + + + 解雇する + + + 稀にある + + + 自分の田に水を引くことから、物事や説の身勝手なこと + + + 不善の人も善人の徳を磨く道具になるとのたとえ + + + 男が尊いとする考え方 + + + 廃れたものを再利用すること + + + 夫婦が仲睦まじいことたとえ + + + 独立して自己の人格を尊重すること + + + 永遠、無限 + + + 複数のものをひとまとめにした数を表す語 + + + 容器でものを量る時の回数を数える語 + + + 倍数を数える語 + + + 回数を数える語 + + + 結果が立派であること + + + 自分のこと + + + 目を吊り上げる、粗探しをする + + + 車を数える語 + + + とても雅やかな様子 + + + 他の人が作ったものを一部改変する + + + 経験を積んで狡猾であること + + + 一度うまく行ったので次も上手く行くと期待する様子 + + + ひどく呆れて我を失う様子 + + + 軽々とした様子 + + + 物静かであること + + + 簡素で単純な様子 + + + もはや堪忍できない状態になる + + + 恋い慕う心がある + + + あるものを例示して他にまだあることを表す + お気づきの点などありましたらお知らせください。 + + + 例示するものが同等の事柄であることを表す + 野菜や乳製品などが値上がりしている。 + + + 例示の対象を「そのことはよくない」のように否定的に表す + 自分なんかが参加してもよいものか躊躇う。 + + + 一例を上げて他を類推させることを表す + 厳かな会議で、咳払いさえ躊躇われた。 + + + 追加や至り及ぶことを表す + なぜ私は大事な本でさえ捨ててしまったのか。 + + + 仮定条件であるものだけを限定し他を顧みないことを表す + 自分さえ良ければいいのだ。 + + + 前が後で示す動作や作用の原因や理由であることを表す + 誤りを放置するわけには行かないので、直ちに訂正した + 考え事をしていたんで、返事が遅れたんだ + + + 前に対して後が予想外であることを表す + + + 使役 + + + 推量(伝聞情報を根拠とした推量) + 早いらしく + 早いらしゅう + 早いらしかった + 早いらしい + 早いらしいこと + + + 取り上げて言うほどのこと、程度が並外れている様子 + たいした男だ。 + + + 諸法の本体は空であるが、因縁の相続によって歴然として存在し、そのまま有る、ということ。 + + + 責任が除かれる。義務が完了する。重荷が下りる。 + 御念が入って忝い、私の荷が下りました + + + greeting used when answering a telephone + + + six + + + natural number + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + welcome + + + 同輩に用いる敬称、あなた + + + 人民の首長 + + + 主人、主君 + + + the sound "ha" + + + natural number 5 + + + counter for leaves or pieces of paper + + + counter for boats + + + when starting a phone call + + + one flat object + + + natural number + + + lively, bustling, active + + + 古い物事を研究して、新しい知識を開くこと + + + わずかの時日 + + + 数の単位、1万の1万倍 + + + 相対する人に言う敬称、あなた(接尾辞ではなく代名詞) + + + 意外なこと、思いもよらないこと + + + あてが外れて、案外 + + + 意外な物事に出会った徳などに出す声、まぁ、や + + + 驚いたり落胆したりしたときに出す声 + + + one thing + + + 客体を土台として認識・観察・思考等を行うこと + + + deserving of regret or sorrow + 残念だが無理だ。 + + + relexive pronoun for the first person + + + relexive pronoun for the second person + + + relexive pronoun + + + relexive pronoun for the third person + + + pronoun used to refer reflexively to a hypothetical or generic person + + + 一人称単数、私 + + + 二人称単数 + + + natural number between 89 and 91 + + + どう見ても明白であるさま + 誰の目にも明らかだろう。 + 追ってくる気がないのは明らかだった。 + 地球の円形なことは明らかである。 + 豊富なエピソードによって明らかにされる。 + 大混乱を招くのは火を見るよりも明らかだ。 + 明らかな特徴の一つといってよいだろう。 + + + 光が満ちてはっきり見える様子 + + + 大笑いすることのたとえ + + + たいそう美味しいことのたとえ + + + 一度うまく行ったことをもう一度やってみること + + + 出世しないこと + + + 気が利いて物事の分かること、かわり映えがして趣のある様子 + + + 無理やり理屈が通っているようにこじつけること + + + 陰暦10月の頃の良い天気 + + + 先頭に立って指図すること + + + 見聞が狭く世間の事情に暗いこと + + + 余計なことを付け加えること + + + だいたい同じで少し異なること、似たりよったり + + + 絶えず旅行すること + その当時の不遇政客の轍を踏んで南船北馬席暖まる遑なしと云う有様であったが + + + そうではあるが、されど + + + 水が盛んなさま + + + 広く限りない様子 + 彼の前途は洋々としている。 + + + 善美な様子 + + + 形のないものを形のあるものによって表すこと + + + 情欲をそそる様子 + + + 前が後の動作や作用の原因や理由であることを表す + 辛いから涙が出た + + + 前述を事実と認めた上で決意や判断を表す + 明確な事実を突きつけられたからには、動かないわけにはいかない + + + 軽く念押ししたり、自信をもって相手を軽んずることを表す + 立ち呑み屋なんかはごめんだぜ。 + 好きな方を選んでいいぜ。 + + + 値段を安くしてたくさん売ること + + + 遠く及ばない様子 + + + 語句の累加を表す、一方では、その上に、なお、ながら + + + 列挙を表す + + + (理由を接続) + + + (後から注釈などを接続) + + + (逆接) + + + (逆接) + + + (逆接) + + + 人の演説などを聞きながら、所々反対の語をはさみ混ぜ返すこと + + + 景気よく気炎を上げること + + + 相手に対して真っ向から大きく出ること + + + ただならぬ様子 + + + 名刺の代わりに持参する手土産のこと + + + counter for temples + + + 避けることも退くこともできない様子 + + + 何か食べたくなる + + + 栄華の移ろうことのたとえ + + + ひとり + + + 握り寿司の数の単位 + + + 尺貫法の重さの単位 + + + 古い貨幣の単位 + + + ひとつの場所で命がけで頑張ること + + + 船の数の単位 + + + 世代の数や順序を表す語 + + + ひとつの投票 + + + 浮ついて集中できない様子 + + + 誇大に言うこと + + + counter for pairs + + + 1000メートル + + + 多年の辱めを耐え忍んで苦心すること + + + 片意地を張る様子 + + + bonsoir + + + 攻めるのが難しくなかなか陥落しないこと + + + 念仏三昧で往生すること + + + 頻繁に法令が出ること + + + 官公吏などの不正を懲戒するために国家が加える処分 + + + 何の役にも立たないもの + + + 要領を得ず理解しがたいこと + + + counter for food items + + + 人の世の栄枯盛衰がはかないことのたとえ + + + 危険なことの喩え + + + はかないことの喩え + + + (主に気象や気温が)寒くない + 暖かな毛布 + + + 文明の進歩によって発明応用される器械など + + + 順序を表す語 + + + 本などの冊数を数える語、コピーのセット数を数える語 + + + 句末、文末に置いて語気を強め、断定の意を表す + + + 呼びかけをあらわす + + + 薬箱の中の薬品 + + + 必要な人物 + + + 自分の手の内のもの + + + 名ばかりあって中身が伴わないこと + + + 小さなものの数をあらわす語 + + + まともに向き合わず冷笑的な態度を取る + + + 冷たく遇すること、出世の道から外すこと + + + あらゆる手立てを講じてもうまく行かない様子 + + + 人目を気にせずに勝手気ままに振る舞う様子 + + + 著しく明らか + + + 途切れず続く様子 + + + 壊れて滅びる様子 + + + 個人的 + + + その時だけ + + + 弱点につけ込む + + + はらはらして見守る様子 + + + 有名になる + + + しとやかで雅やかな様子 + + + 固く約束する + + + 漠然として頼りない様子 + + + 詠嘆や柔らかい断定を表す + びっくりしたわ。 + もう帰るわね。 + + + 疑問詞に付いて不定のものを表す + + + 限定することを表す + お水を一杯だけ頂けませんか。 + + + 程度を表す + 家族四人が住めるだけの家を建てた。 + + + 順接の仮定条件を表す + こう言えばああ言う + + + 恒常条件を表す + 人の顔を見れば文句を言う + + + 順接の確定条件を表す + 苦労があればこそ楽しみが生まれる + + + 同趣の事柄を並べることを表す + 良いこともあれば悪いこともあった + + + 順接の仮定条件 + 寄らば大樹の陰 + + + ある動作と同時に他の動作を行うことを表す + 相手の顔色を伺いつつお願いした。 + + + ある動作が継続、実現しようとしていることを表す + 自分が負けつつあることを悟った。 + + + 二つの動作が逆接であることを表す + 目先の対応はしつつ、本当に大丈夫かどうか不安は拭えない。 + + + 自分の意見を強調、念押しすることを表す + みんな、行くぞ。 + + + 反論や自己主張を表す + だって、本当に分からないんだもん。 + + + そして(単純列挙) + + + 希望 + 会いたがらない + 会いたがろうと + 会いたがります + 会いたがった + 会いたがる + 会いたがるとき + 会いたがれば + + + 過去・完了・確認 + 育ったろう + 喜んだろう + 育った + 喜んだ + 育ったとき + 喜んだとき + 育ったら + 喜んだら + + + 世にいうところの、俗に云う + + + our + + + 一人称単数 + + + 二人称単数 + + + full of energy + + + of good health + 元気ですか。 + + + 風流、風雅、優美であること + + + 入り組んでいること + + + 数字の100、10の10倍 + + + 俳句を数える単位。 + + + 荷が重すぎる。負担が過重だ。任務が重大過ぎる。 + + + which thing, which object + 何すんだよ + + + 朝、人に挨拶する言葉 + + + 早いことの敬語 + + + salutation used in the evening + + + あの人たち + + + 文の終わりにつける符号 + + + 最も自分に近い物事を指して言う語 + + + ten + + + 個数を表す語 + + + counter for military units + + + counter for three-dimensional objects + + + counter for empty containers + + + counter for meteorites + + + counter for planets + + + counter for clouds + + + counter for typhoons + + + counter for tornadoes + + + counter for cells + + + counter for viruses + + + counter for bacteria + + + forty-two + + + the number 13 + + + the number 15 + + + natural number + + + counter for waves + + + さまざまであること + + + 名高い + + + 相手の言いなりのままに承諾すること + + + なるほど、その通り + + + 瞬く間に物事が片付くこと + + + ちりじりばらばらになる様 + + + あちらこちらと行き交う様子 + + + さようなら + + + その場をごまかし繕うこと + + + ならびに、及び、同様に + それにともない、都営三田線の延長、東急目黒線との直通運転も同じく延期となった。 + + + weired, strange + + + ゆっくりと同じ調子で歩く + + + imitates barking of a dog + + + 断定をあらわす + + + 場所をあらわす + + + 関係性をあらわす + + + 性質や外見をあらわす + + + 相手の失言などを捉えて揶揄すること + + + ひとつのことに一所懸命に従事すること + + + 主張を譲らないこと + + + よく味合わずに丸呑みすること + + + 無疵の玉、いささかの欠点も無いこと + + + 強力者が機会を窺っている形容 + + + 偉大なる志 + + + 断じて、決して + + + 底の底まで + + + 金輪のあるところ、即ち非常に離れた地の底 + + + 常に身近において意識する格言 + + + 景色の良い山水の形容 + + + 物がはなればなれになって筋道が立たないこと + + + 自分の言行が前後矛盾すること + + + 社会を指導する学者などのこと + + + 盛んな者は必ず衰えること + + + 歯ぎしりをし腕をまくることで、深く憤り、または残念がること + + + 前世から結んだ互いの縁 + + + 文章や小説の会話以外の部分 + + + 始めから終わりまで + + + 立身出世の階梯 + + + (原義)竜門は黄河の上流にあり、ここを鯉が越えると竜に化けるという言い伝え + + + 傑物、大奸物 + + + 舟を呑むほどの大魚 + + + 濡れ手で粟をつかむように、労せずしして利益を得られること + + + 筆跡、手紙の文 + + + 取り組みがあまり前向きでない様子 + + + 一定期間ごと + + + 同程度の量が繰り返されたり割り当てられたりすることを表す + ショートケーキをひとり一個ずつ食べた。 + + + 感動、詠嘆を表す + よく分かったな。 + + + 念押しを表す + お風呂はもう入ったな。 + + + 強い否定を表す + 酔ってなんかいるもんか。 + + + 金属(鉄)製の草鞋、とことん歩き回っても履き潰れないことの喩え + + + (逆接) + + + 前もって内密に言い聞かせておき、表立っては正々堂々とやっているふりをすること + + + 自然のままの状態 + + + 賛成すべきものには賛成し、反対すべきものには反対するということ + + + 粗末なものをたくさん作ること + + + 計算づくの損得勘定で考えること + + + 注意する、手数をかける + + + 夢中になる様子 + + + 花ひとつ + + + 車輪ひとつ + + + ひとつの船 + + + ひとつの束 + + + 本来のまま初々しい様子 + + + 同輩以下の対称。おまえ。 + + + 二人称の代名詞。敬称。 + + + 大いに飲むこと + + + 最高の規律 + + + 親しみやすいさま + + + 遠称の指示代名詞 + + + 大黒天が持っている槌 + + + 優れた人士の多いこと + + + あちらこちら + + + 頭は冷たく足は暖かくするのがよい、ということ + + + 危ないところに立ち入ることの形容 + + + どこ、どのへん + + + 技芸などの奥義まですべて伝授されること + + + 好きになる + + + 心の底まで明かしあう友人 + + + 仲が悪いこと + + + 階段や技量レベルなどの段数を表す語 + + + 建物などに入りにくい + + + 心理的な障壁がある + + + 世の中が移ろいやすいこと + + + 後になり取り残される + + + 心中に怒りが湧き上がる + + + いつまでも恨みに思う + + + なかなか決心がつかない + + + ざっと読む + + + 塔などの数をあらわす + + + 近代のものである様子 + + + 適切でない + + + 更に強めること + + + ~せざるをえなくなる + + + 恨まれる + + + 向こう見ずに無謀な冒険をすること + + + 罰が悪そうに話す様子 + + + 機会を失して既に効き目がない様子 + + + 呼吸を抑えてじっとする + + + 睡眠から起きる + + + 恥をかかせる + + + 終わりがない + + + 立ち止まる + + + ごく僅かな量であることのたとえ + + + 首を切る + + + 解雇する + + + at (a place or time), in, on, during + + + to (a direction or state), towards, into + + + 目的の場所を示す + 会社に着いた + + + 行動の相手を示す + 知人に頼んだ + + + 所在の場所を示す + 机に本がある + + + 感情や状態の原因や根拠を示す + 方針に賛同する + + + 行動の主体を示す + あなたに分かりますか? + + + 行動や所有の対象を示す + 友人に聞いた + + + 手段、内容、付着物を示す + 箱に入れる + + + 時間や時点を示す + 7時に起きた + + + 領域を示す + 技術者に向いている + + + 目的を示す + 遊びに行く + + + 役割を示す + 貯蓄に回す + + + 割合を示す + 国民の5人に1人 + + + 主格を表す語 + 鳥が鳴く + + + 対象格を示す + 水が飲みたい + + + 「にある」の意を表す語 + + + 「という」の意を表す語 + + + 動作や作用の至り及ぶところを表す + 駅まで行きましょう。 + + + 限度を表す。「だけ」 + 当初予定どおりに取り組んだまでです。 + + + 添加を表す + 老人までが立ち上がって踊りだした。 + + + 原因や理由を表す + このあたりは便利だし、住みやすい + + + 事物を並立して強調する + 宿題は忘れるし、先生には怒られるしで散々だった + + + 軽侮の否定を表す + 子どもじゃあるまいし、ゲームなんか貰っても嬉しくないよ + + + 終助詞的な用法 + もういいよ、手遅れだし。 + + + joins words and sentence parts together + + + In addition, in addition to + + + in addition to what has been said previously + + + connects at least two alternatives + + + 打消・否定を表す + しなかろう + しなくなる + しなかった + しない + しないとき + しなければ + + + 「か」を伴って勧誘を表す + + + 断定 + 雨だろう + 雨だった + 雨で、 + 雨だ + 雨なのか + 雨ならば + 雨なれど + 雨やろ + 雨やった + 雨や + + + big + + + small + + + 都合が良いこと + + + 負担が重い。任務が重大だ。責任が重い。 + + + liked or favoured + + + to have a strong, positive emotion based on affection + + + 自分より少し離れた物事を指して言う語 + + + 直前に述べた物事を指して言う語 + + + natural number + + + this + + + indicates the preceiding number is an amount of years + + + 決まっていなかったり不特定の物事を指す + + + natural number + + + tolerable + + + le nombre 11 + + + 車輪の数 + + + 花の数 + + + the number 9 + + + natural number + + + 今までになくできたばかりである + + + natural number + + + one thing + + + natural number + + + natural number + + + natural number + + + 4 + + + natural number + + + counter for long and narrow objects + + + 人の数を数える語 + + + a colloquial or informal way to say goodbye or farewell + + + natural number + + + having fame + + + 貧しいときから連れ添って苦労をともにした妻 + + + 相手を倒さずにはおかないほどの深い恨み + 不倶戴天の敵 + + + 間が透けてばらばらなこと、繁っていないこと + + + 芸者や遊女がお客がつかず暇なこと + + + 気取って咳払いする声 + + + uncertain or unspecified entity + + + 三人称代名詞で他人のぞんざいな呼称 + + + 全くの他人 + + + キリスト教で礼拝の終わりに唱える語 + + + 兄弟・妻子など、常に親愛する人と離別する悲しみのこと + + + salutation or greeting + + + トントン拍子に調子の良いこと + + + 門外漢の批評 + + + 江戸城の下馬札の立ったところで下々が評定する様(語源) + + + 利害が一致する時は敵味方でも協力することのたとえ + + + 人生の禍福は測り知ることが難しいことのたとえ + + + 靴の上から痒い所を掻くような、もどかしいさま + + + 得意げな顔 + + + 杓子のような正しくない定規 + + + 他に応用しにくい標準で律しようとしている時に用いる + + + 針ほどのことを棒ほどに言うこと + + + 親密な交情を表す + + + 千年に一度相まみえること + + + 容易に遇いがたい好機のこと + + + 場合に応じた機転でうまく当てはめること + + + 手紙や文書を数える際の助数詞 + + + 人がまだ成し遂げていないことを率先して行うこと + 破天荒な生き様 + + + (原義)混沌たる天地を破ること + + + 根も葉もないうわさ話 + + + 自ら進んでものごとに取り組む様子 + + + 個々のものごとに秩序をもたせて、整然と組み立てること + + + 手を動かすにはやや狭い様子 + + + 使役 + + + 断定を表す + 忙しいのよ。 + + + 問いや確認を表す + 何やってるの。 + + + 「な」由来の「のう」 + そういうことじゃないんだがのう。 + + + 問いかけや念押しを表す + きょうは学校かえ。 + + + (後から注釈などを接続) + + + (逆接) + + + 女性にはねつけられる様子 + + + 広く要求を拒絶される様子 + + + 人生及び世界は最も美しく快楽であるものという考え + + + 物事に感じ、涙もろいこと + + + 底深いこと、深みのあること + + + 燃えるように熱烈な感情を持っている様子 + + + 狭い場所のたとえ + + + 疑わしいものをよう吟味しようとする様子 + + + どれ、どちら + + + 近いうちに + + + obedience + + + ひとつの握り寿司 + + + ひとつの音楽 + + + 楽曲の単位 + + + ひとつの俵 + + + 俵を数える単位 + + + 死ぬ + + + 大いに世人を驚かせること + + + 実質的。本質的。 + + + 1000グラム + + + if… + + + 指示代名詞。向こうの方。あちら。 + + + 過ぎ去った時。以前。 + + + 同輩以上の二人称の代名詞。敬称。 + + + 同輩以上の三人称の代名詞。敬称。 + + + 遠称の指示代名詞 + + + いずれかの。どれかの。 + + + first person pronoun used by woman + + + 婚礼の儀式 + + + 手拍子を打って喝采の意を表すこと + + + 賛美の意を表す + + + 物事に心を奪われ我を忘れて一切のことを顧みないこと + + + thousandth + + + old monitary unit + + + (主に物が)冷たくない + + + 愛情や思いやりが感じられる + 温かな家庭 + + + 文学と武術と両方の道 + + + 命を捨てても心を変えないほどの深い親交 + + + 土地の広さの単位 + + + 分数を数える語 + + + 紙面やその番号を数える語 + + + 何事にも準備がよく行き届いていること + + + 命を失う、死ぬ + + + 意図せず音や話が伝わってくる + + + 他人のものを盗む癖がある + + + 中間に相当する + + + 科学に基づく + + + 全体でとらえる様子 + + + 土地の単位 + + + からだ一つで + + + 広く当てはまる様子 + + + 行動をともにしていた者から分かれる + + + 労苦をいとわず力を尽くして働く + + + 網の糸と糸との間のすき間 + + + 呼吸が苦しい + + + 動揺して顔が青白くなる様子 + + + 肝要または必要であること + + + いろいろ心配する + + + 広く大きい様子 + + + 怪しむべきこと + + + 年末の時期 + + + 雲に届くほど背が高い様子 + + + 刀の一振りでふたつに断ち切ること + + + ためらいなく判断すること + + + 主題を示す、他と区別して特に取り立てて表す + スマホは便利だ + + + 複数の主語文節を対比して表す + 勉強の成績は悪いがスポーツは得意だ。 + + + 体言化した動詞を特に強調して表す + どこまでも謝りはしなかった。 + + + 連用修飾語に接続して強意を表す + 決して寒くはない。 + + + 補助される文節に接続してその意味を強調する + 早めに見たいのなら、朝から来てはいかがですか。 + + + 述語が連文節になっている場合の主語を表す + 彼は頭の回転が早い。 + + + 物理的な分量を示す。ほど、だけ + そこから湯村までは歩いて二十分くらい。 + + + 論理的な状態や動作の度合いを示す + 強者の権利ぐらいなら昔から知っている。 + + + 特に強く指示することを表す + 今度こそ勝てよ。 + + + 形容詞に接続する(まれ) + ここで怪我でもしたら、それこそ大変だ。 + ようこそいらっしゃいませ。 + + + 概括を表す + 手を抜いたりしないでくださいね + + + 動作や作用の並立を表す + 滑ったり転んだり + + + 動詞や助動詞の連用形に続いて軽蔑や非難の意をあらわす + + + 「だ」(断定)の丁寧な表現 + 雨でしょう + 雨でした + 雨ですもの + + + 二人称単数 + + + everyone + みんなはどこ? + + + 二人称の代名詞、同輩以下の対称 + + + 二人称の代名詞。敬称。 + + + ひとつ + + + はじめ + + + 是非を論じる価値もないほど愚かしい。 + + + 積み荷の一部を捨てる。多くは船荷について言う。 + 沈石を下し、荷を刎ね、船を直しけれども + + + please + + + denoting approval + + + natural number + + + 数字の5 + + + indicates the preceding number represents an amount of birds + + + 嫌うこと + + + 紙などの薄いものを数える語 + + + 愚かであること + + + being foolish + + + natural number + + + natural number + + + natural number + + + きれい、みごと + + + which person + + + enormous + + + 見かけは立派であるが実際の中身はこれに及ばないことの喩え + + + あいまいなこと、ぼんやりしていること + + + Expression of gratitude + + + 平穏無事であること + + + 心が落ち着いていること + + + まだ見通しが立たない将来のことを早手回しに検討しすぎて嘲笑されること + + + 回数を数える語 + + + 順序・等級を数える語 + + + 組合・取組などを数える語 + + + not posessing skill + + + 古語の三人称代名詞で他人のぞんざいな呼称 + + + 自分のこと + + + 物事に感じて歓喜または悲嘆の情を表す声 + 嗚呼、なんて柔らかいんだろう・・・。 + + + いろいろやった結果、最終的に + + + 人を見下して使うこと + + + 女性を密かに恋い慕うこと + + + 強いものがますます強くなることをいう + + + 巧みに人をあざむく謀 + + + 他の威力を借りて強がること + + + わたし + 小生 + + + 優劣を決めること + + + 要点を得ていること + + + 心細く万事に注意深い心 + + + 極めて切迫した急務 + + + 自分にとって少しも痛痒を感じない様子 + + + 大きい器は出来上がりが遅いこと、大きな才がある者は成功が遅い + + + 昼夜休まずに急行したり従事すること + 昼夜兼行でたどり着いた + + + 退路を絶って活路を見出そうとする必死の覚悟 + + + (原義)川を背にして張る陣法 + + + 病気が重篤な様子 + + + 錐(きり)を立てる隙間もないほどぎっしり詰まっている様子 + + + 変化に応じて適宜処置すること + + + 人間社会の現実に即していること + + + 生まれた跡の経験や研究によって定まること + + + 取り組みが前向きである様子 + + + 身にしみて、しみじみと + + + 「ようだ」(比況)の丁寧形 + あるようでしょう + あるようでした + あるようです + あるようですもの + + + 「みたいだ」(比況)の丁寧形(伝聞情報を根拠としない判断) + あるみたいでしょう + あるみたいでした + あるみたいです + あるみたいですもの + + + 念押しを表す + おまえ、どこへ行くのかい。 + + + 語句の累加を表す + + + 語句の累加を表す + + + 列挙を表す + + + Konjunktion um Alternativen oder Auswahlmöglichkeiten darzustellen; oder + + + そうするうちに + + + 「順接」。前述の理由により。 + + + (原因を接続) + + + 子どもは1番目は女、2番めは男の計二人がちょうど良い、という意味 + + + 子どもは女が一人、男が二人の計三人がちょうど良い、という意味 + + + 鵜が魚を丸呑み掏る様子から、相手の言動を何も考えずに受け容れること + + + (逆接) + + + 自分から求めて災いに遭う様子 + + + 実物が紙などに真上から縦横の視点で写された様子 + + + 心霊の作用 + + + 筋道が通っていること + + + 意外なことに言葉も出ず呆れるさま + + + 同類を全部一度に捕縛すること + + + 非常に奇抜なこと + + + 列席することの謙譲語 + + + 知識を基に物事を考える様子 + + + 確かめる + + + どこ + + + ひととび + + + ひとつの和歌 + + + 束ねられたものの数の単位 + + + counter word for colors + + + 建物を数える単位 + + + 部屋の広さを表す語 + + + unit of area + + + 助力すること + + + 明治四年に諸侯を廃し郡県の制度をひいたこと + + + 自分自身を卑しめて言う詞 + + + 三人称の蔑称 + + + 半ば疑いなかば信じること + + + 面前では媚び従うが、後で陰口をたたくこと + + + opposite + + + 9000 + + + Enough + + + 建物の階数を表す語(日本では1から始まる) + + + 回数を数える語 + + + 順序や等級を表す語 + + + グズグズして一向に埒が明かない様子 + + + 他者に後れを取ること + + + 歴史的な通貨の単位 + + + 車両を数える単位 + + + 嫌だという気持ちになる + + + ある物事を境に良い結果と悪い結果に分かれる + + + 懸命に働く + + + 勢いがある様子 + + + 呆れ果てて見捨てる + + + 割れて開口している部分 + + + 短い期間である様子 + + + 性格が明るく晴れやか + + + 天候が明るく清々しい + + + 歩き方が早い様子 + + + 準備できているが前に進めず待っている状態 + + + その跡を追っていく + + + 存在する状態そのままの様子 + + + 呼吸する + + + あえぐ + + + ひと休みする + + + 沐浴の時間が短いことのたとえ + + + 愛すべき様子 + + + 注意して聞こうとする + + + 対象や目的を表す + 絵を描く + + + 動作の起点を表す + 学校を卒業する + + + 経過する場所や時間を表す + 隠居生活を過ごす + + + 動作の方向を表す + 母親の方を向いた + + + 念押し、詠嘆を表す + 立派に育ちましたね。 + + + 「ねえ」で意味を強調 + どれが良いですかねえ。 + + + 限定することを表す + お肉ばかりじゃなくてお野菜も食べなさい。 + + + 時間や程度を表す + 一時間ばかり、話し込んだ。 + + + 程度を表す + 吐く息が白くなるほど気温が下がった。 + + + 特別なものを挙げ、打消表現を伴って動作や作用の程度を表す + 母ほど私のことを愛してくれた人はいない。 + + + 「~ば~ほど」の形で用いられる + 夢は大きければ大きいほど良い。 + + + 2つの動作が同時に行われることを表す + 歩きながら考える + + + 2つの動作が逆接であることを表す + 早くやろうと思いながら、ついつい後回しになってしまった。 + + + 自発 + 信じられない + 信じられれば + + + 受身 + 信じられた + 信じられろ + + + 可能 + 信じられる + + + 尊敬 + 信じられるとき + 信じられよ + + + 打消の推量 + 降るまい + 降るまいに + + + 打消の意志 + 思うまい + 思うまいと + + + 丁寧 + ありません + しましょう + ありました + します + ありますとき + ありまするとき + しますれば + いらっしゃいませ + お待ち下さいまし + + + 中国古代の歴史書『史記』中の列伝の篇名、饒舌なさま、転じて笑いやユーモアと同義の用語 + + + さとく行動などが素早いこと + + + freundschaftlicher Verabschiedungsgruß + + + counter for the age of a person in years + 娘は十八歳ですか? + + + word used for grammatical negation; linguistic particle with which disagreement, disdain, or a negative opinion is expressed + + + response to a "Thank you" + + + indicating something close to the speaker + + + 紙を綴じた本などの数を表す語 + あなたは二冊の本を持っています。 + + + natural number + + + 人数を数える値 + + + counter for reservations + + + "what kind of" + + + to be invested in something + + + 心配になる + + + 尊敬する人に対面で話を聴くこと + + + ちょっとの間に合わせ、その場逃れの安易な選択をすること + + + 人の意見や批評などに耳を貸さないことの喩え + + + 多くの人が同じことを言う様子 + + + 大きな手柄を立てる事 + + + 自分自身に対する敬語 + + + その、この、相当する + + + そなわる + + + 急に事が起こって驚くたとえ + + + 女性に対する蔑称 + + + 国を閉ざして他と交わらないことから、頑固で人の意見を聞かない人をいう + + + 一張の綺羅の意味より、常に一枚しか持たない晴れ着のこと + + + 関係のない人たちに嫉妬を感じること + + + 相違は少しだけで大体において同じこと + + + 全身の力 + + + 自分の悪行の報いが自分の身にふりかかること + + + 善人も悪人もあわせて自分の部下にしたり交際する器量のあること + + + 自分の力量をわきまえずに強敵に立ち向かうこと + + + 己の感情のままに行動すること + + + 眼中に置かないこと、気に留めないこと + 採算を度外視した価格 + + + 竹を割るように非常な勢いで進んでいく様子 + + + 手で腹をささげて、倒れんばかりに笑い崩れること + + + (貝が泥を吐く様子から)隠していたことを白状すること + + + 二枚の舌でそれぞれ違うことを言う事、つまり嘘をつくこと + + + (後から注釈などを接続) + + + (逆接) + + + (逆接) + + + (逆接) + + + 平面に対して、高さなどを含むより実物に近い感触や視点 + + + 歳のいった女性と同棲している若い男性 + + + 奇抜で激しい + + + no + + + 後世にまで伝え、歴史に残るようなという意味 + + + 意見をしても全く聞き入れられない様子 + + + 誰も彼も、残らずみな + + + 帯のように狭い水の流れ + + + 始めから終わりまで + + + 脇目もふらない様子 + + + ひと揃いの履物 + + + よくは知らないこと、なまわかり + + + 獣の一頭 + + + 票を数える単位 + + + ひとつの品物 + + + 身の危険を顧みない様子、またその人 + + + 予期した結果であること + + + 蜘蛛がかけわたした網状の巣 + + + うわさ + + + 活かすも殺すも自由であること + + + 心が広く物事にぐずつかない + + + 祝賀の意を表す声 + + + 共通のものを引き出して総合した様子 + + + 四方へ駆け回り尽力すること + + + 功名を立てる機会を待つだけの状態を嘆くこと + + + 死にかけたときに不思議と助かること + + + 骨を砕き身を粉にして励むこと + + + 叢書などの順序を表す語 + + + 遠く長い様子 + + + ゆったり落ち着いている様子 + + + 勝る者は勝ち、劣る者は負けること + + + 手応えがない、心の支えがない + + + 極めて赤みが強い様子 + 真っ赤な太陽 + + + 極端な様子 + 真っ赤な嘘 + + + お辞儀する + + + 謝罪する + + + 感服する + + + ものが豊かであること + + + 本来の格式に沿った様子 + + + 発火して破裂するような勢いのある様子 + + + 妨害する、邪魔をする + + + 次第や順序を追って統一してある様子 + + + entirely + + + exactly alike + + + 一般的な水準よりも先に進んでいる様子 + + + あることが長く続く + + + 性に関して慎みが無くだらしないさま + + + 激しく呼吸する + + + 病気や怪我をする + + + 軽率な様子 + + + 手軽な様子 + + + 相手の機嫌を推し量って何かをする + + + なぐさめる + + + 気の利いた風を装うこと + + + 荒々しい様子 + + + 同一の事物の並立を表す + 男も女も平等に雇用しましょう + + + 同種の事物の中からひとつを挙げて他を類推させることを表す + 犬も悲しんでいるのだろう + + + 強意や感嘆を表す + 珍しくもない話 + + + すべてを包括する意味になることを表す + どう考えても有罪だ + + + 動作の行われる方向を表す + 駅へ向かう + + + 動作の帰着する場所を表す + 会社へ到着した + + + 動作に影響を及ぼす対象を表す + 親へ連絡を入れる + + + 比較を示す + 私は赤より青のほうが好きです。 + + + 動作や作用の起点を示す + 隗より始めよ + + + 動作の行なわれる場所や経由地を示す + 井戸より水を汲む + + + 動作や作用の手段や方法を示す + 徒より行く + + + 範囲を限定する意を示す + 進むより他に無し + + + 複数例示して選ぶことを表す + 起きるなり寝るなり + + + 大体の目安を表す + 多少なりとも金銭的に支援する。 + + + 程度の軽いものを挙げて強調を表す + せめて一口なりと、食べていってください。 + + + 同類のものからいくつか列挙することを表す + 猿だの猪だのが畑を荒らして行った。 + + + 逆接の仮定条件を表す。「たとえ~しても」 + 寝ても覚めても忘れない + + + 逆接の確定条件を表す。「~したのにも関わらず」 + 何日経っても来ない + + + 恒常条件を示し、前後で順当していないことも表す + 無関係でも疑われた + + + 自発 + 思い出されない + 思い出されれば + + + 受身 + 返された + 返されろ + + + 可能 + 泣かれる + 返されよ + + + 尊敬 + 落とされるとき + 落とされい + + + 推量 + + + 意志 + + + 勧誘 + + + 比況 + あるようだろう + あるようだった + あるようでした + あるように見える + あるようだ + あるような気がする + あるようなら + + + 一人称の代名詞で同輩またはそれ以下に対していう語 + + + 衣服や器具を数える単位。 + + + sorry + + + formule de salutation utilisée lorsqu’on quitte quelqu’un + + + yes + + + 文中の意味の切れめにつける符号 + + + 数字の1000 + + + ten thousand + + + a large number + + + idicating something that is far away from both the speaker and the listener + + + the natural number 3 + + + 細長いものを数える語 + + + counter for home runs + + + counter for telephone calls + + + counter for long objects + + + counter for trees + + + what is in accord with fact or reality + + + statement in accordance with the real world + + + sum or aggregate of all that is real or existent + + + having a quality of appropriateness + + + in accordance with reality + それも本当の名前じゃない + + + degree of certainty about the origin or precedence attributed to an object + + + natural number + + + natural number + + + natural number + + + one night + + + the number fourteen + + + the number 16 + + + natural number + + + that way + + + 望むに遠いことを夢に見ること + + + 取り越し苦労、無駄な心配 + + + 事柄が明白なこと、直接的 + + + 目の当たり、てきめん + + + かれ(彼)に同じ + + + uncertain or unspecified entity + + + 役者の演技が板(舞台)の上で危なげなく見える様子から転じて、わざとらしいところがなく、ぴったりと当てはまること + + + ああ痛い、しまった + + + ある事柄のうち軽いものを挙げて、他を類推させることを表す + 子どもだって、いつかは大人になるんだよ。 + + + いともたやすいこと + + + 世の中の色々な人、群衆 + + + くだらない人 + + + 宇宙の森羅万象 + + + 海に千年山に千年住んで、世の苦労を知り尽くして狡くなった人のこと + + + 古詩の意を取り、その語を換えて自分の作とすること + + + 数字の50 + + + einen Gegensatz ausdrückend + + + もってのほか、話にならない、言うにたえない + + + 奥深い真理 + + + ライオンが吠えるように雄弁なさま + + + 自分の心で他人の心を推し量ること + + + 総て生活は優勢のものが勝ち、劣等のものが滅びるという進化論の中心となっている考え + + + 自ら身を害し、身をすてること + + + 酒に酔い、夢見て生死することから、何をなすことなく一生を終えること + + + 進んでやまないこと + + + 他人に先立って事に着手する + + + 竹馬に乗って共に遊んだ友人 + + + 物事を軽く見ること + + + 何もない事を残念に思い、功名を立てられないことを嘆くこと + + + 偏らず、くみしないこと + + + 心に描いた最高の状態であること + + + 人間が生まれながらに持っている性質 + + + 美しいこと + + + 汚れていないこと + + + ありふれたこと、よくあること + + + 比況(伝聞情報を根拠としない判断) + あるみたいだろう + あるみたいだった + あるみたいで、 + あるみたいに + あるみたいだ + あるみたいな + あるみたいなら + + + 逆接の確定条件を表す + はたらけどはたらけどわが生活楽にならざりぢっと手をみる + + + (古典文法)完了や存続の意味を付け加える + + + 前の仮定が実現しても期待通りにはならないことを表す + いくら騒いだところで、だれもやって来ないぞ。 + + + 列挙を表す + + + それで + + + (逆接) + + + 組織や連絡がなく、ばらばらの状態 + + + ただ恋しいとおもうような恋 + + + 遂げられそうもないことを望んでみること + + + 非常に速いこと + + + 一般向けで分かりやすい様子 + + + 悲しくも勇ましい様子 + + + 病気のようになった様子 + + + 歓迎できない来訪者のこと + + + (原義)招待していない客 + + + 未だ知らない世界 + + + しばしば物事が変わることのたとえ + + + 何か食べたくなる + + + 心から心に伝わること + + + 家内で威張ること + + + 紙などを数える単位 + + + ひとりで千人の敵に当たること + + + 和歌の単位 + + + 料理の皿を数える単位 + + + 片方だけ贔屓すること + + + いかめしい + + + 離れる、出発する + + + 後回しにする + + + 鬱屈した気持ちが晴れること + + + 解雇させられる + + + 首を切られる + + + 人に仰がれ尊ばれるたとえ + + + 絶え間なく進歩すること + + + to be damned + + + つかず離れず + + + 小型の舟の数を表す語 + + + 全体を10として割合を数える語 + + + ぼんやりしている、はっきり見えない + + + 暇になる + + + 心配する + + + 酒を飲みすぎて意識をなくしたり言動が制御できない様子 + + + 理解できる + + + 記憶できる + + + 理解できない + + + 記憶できない + + + 規模が大きい + + + 別の観点では + + + 途絶えたり続いたりする様子 + + + 代表するような + + + 土地の単位 + + + 呼吸の根元、いのち + + + 常に買うこと + + + 頭を左右に振って否定をあらわす + + + 手軽で便利な様子 + + + 心配する + + + しゃべる + + + 間をとりなす + + + diff --git a/extensions/wikidata-lexemes/output/jv.xml b/extensions/wikidata-lexemes/output/jv.xml new file mode 100644 index 00000000..88601ef1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/jv.xml @@ -0,0 +1,30 @@ + + + + + + + + + saya + + + + + + kamu + + + + saya + + + kamu + + + diff --git a/extensions/wikidata-lexemes/output/ka.xml b/extensions/wikidata-lexemes/output/ka.xml new file mode 100644 index 00000000..669b46b8 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ka.xml @@ -0,0 +1,75 @@ + + + + + + + + + and + + + + + + not + + + no + + + + + + one + + + + + + or + + + + + + number + + + + + + + + + I, me + + + + and + + + not + + + no + + + one + + + or + + + number + + + I, me + + + diff --git a/extensions/wikidata-lexemes/output/kl.xml b/extensions/wikidata-lexemes/output/kl.xml new file mode 100644 index 00000000..6fc1058c --- /dev/null +++ b/extensions/wikidata-lexemes/output/kl.xml @@ -0,0 +1,1513 @@ + + + + + + + + + (third person singular possession of preceding nominal) + + + + + + + + (one who/that is acted on) [verb]-ee + + + + + + + + nangaavunga + + + + + + kisiat + + + although, unless + + + + + + + + inna / anna / una + + + + + + + recurring, habitually + + + + + + + (allaaseq, atuaaseq) + + + + + + (negative verbal modifier) + + + + + + just, merely, a mere + + + + + + place where one does + + + + time when one does + + + + + + + + + two (used with currency and units of measurement) + + + + + + (amikoq / illukoq) + + + + + + (oqaannarniut, kinnaassusersiutit pingajuat ataasersiut) + + + + + + sunaana, tusaajuk + + + + + + + + + + + + + + + + + + + + + derhenne + + + + + + (indicates intention to perform an action) + + + + + + indtage, drikke, spise + + + + + + thirteenth + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (iserportoq / tikipportoq) + + + + + + + (forms collective family names) + + + + + + (the act of doing something) + + + (the acting of the possessor) + + + (while possessor acted) + + + (before possessor acted) + + + (because of action) + + + (the more/most acting) + + + + + + qanoq oqarpit? + + + + + + nillerpoq, qiianarpoq! + + + + + + massa, aana + + + + + + + + + + my (first person singular possessive) + + + + + + + + three (used with currency and units of measurement) + + + + + + (sikukkoorpoq / aputikkoorpoq) + + + + + + (inukasik / qimmikasik) + + + + + + very much + + + + + + nasmi, naagga + + + + + + wants to + + + + + + -hed + + + + + + + + + + + + + + + + + + + + + una + + + + + + + (group of) + + + + + + + (group of many) + + + + + + + + + + + + + (obviative singular possessive) + + + + + + allatut oqaatigalugu + + + + + + timmiaaraq, timmiaq + + + + + + + means to search for + + + means to travel in/through + + + + + + (dynanic passive; patientive valency-reducing verbal modifier) + + + + + + old + + + + + + (place where kept or stored) + + + + + + meget + + + + + + + + + taanna + + + + + + go to + + + + + + her er den + + + + + + very + + + + + + (ellers god nok, men ...) + + + + + + tomorrow + + + + + + har afsluttet + + + + + + third + + + + + + lille, søde + + + + + + hej + + + + + + ilimanarpoq / qasunarpo + + + + + + + (one who/that is acted on) [verb]-ee + + + + + + + + + + has good/beautiful (monovalent verbalizing affix) + + + there is a good/beautiful (avelent verbalizing affix) + + + + + + (allallaqqippoq / pillaqqippoq) + + + + + + (appaaq, nerlaaq) + + + + (young of) + + + + + + + (resembling) + + + + + + + (qalaarpoq, qaquaarpoq) + + + + + + (inhabitant of) + + + + + + mange tak + + + + + + (one by one, piece by piece) + + + + + + make + + + + + + uangaanngitsoq + + + + + + uaguunngitsoq ilissi + + + + + + + (irrealis nominal suffix; supposed, destined, or intended) + + + + + + inuk sorleq + + + + + + ukiup tulliani + + + + + + + buy, acquire + + + encounter, find, meet + + + + + + tretten, tallet 13 + + + + + + (one who/that is acted on) [verb]-ee + + + + + + + + (agent provides/equips patient with) + + + (actor turns a number of years old) + + + + + + tak + + + + + + rejse til + + + + + + + aamma + + + [subject] and I + + + + + + suli, suli + + + + + + (makes something) + + + (spends some period of time) + + + + + + + or + + + (with interrogatives) any + + + (with negation) not even, not at all + + + (with -galuaq- and conditional mood) even though + + + + + + imatulluunniit + + + + + + (alla pillugu sulivoq) + + + + + + + + pisarnermisut + + + now again + + + how typical of, unsurprisingly + + + + + + un-, in-; -less, there is/are no (reversive verbalizer) + + + + + + stop! that’s enough! + + + + + + (aarmeerpoq) + + + + + + ukiut marluk qaangiuppata + + + + + + + + (with noun stem for an animal) catch, kill + + + + + + (imitation of a raven’s call) + + + + + + + search for, be looking for + + + be exposed to + + + celebrate (a holiday) + + + travel around in/on (a place) + + + + + + repeated/prolonged activity + + + + + + + + have, has + + + there is + + + + + + (kissalaarpoq / kialaarpoq) + + + + + + (inunngorpoq / allanngorpoq) + + + o’clock + + + ([agent] makes [patient] be [noun]) + + + + + + uani + + + + + + + + + + + + + + + + + + + + + + + + + + (third-person plural possessive) + + + + + + ilumut, suu + + + + + + + + + + + + + + + uanga nammineq + + + + + + uagut nammineq + + + + + + taamaalimmat + + + + + + (numeral modifier) + + + + + + + uumaangaa + + + + + + (first person dual) us two + + + + + + shall + + + + + + (often with verbalisations for hunting for a particular animal) one who tries to + + + + + + (agent of verb has patient of noun) + + + + + + + sumut atortoq + + + reason for + + + time when + + + + + + (apeqqippoq) + + + (innaaqqippoq) + + + + + + big + + + + + + + (fair-sized) + + + + + + innga! + + + + + + (oqalualaarpoq, siorsualaarpoq) + + + + + + place where one does + + + + time when one does + + + + + + + tyve + + + + + + imatut + + + + + + ullormi ataatsimi + + + + + + (alla pillugu sulivoq) + + + + + + + + (angerlajaarpoq, aallajaarpoq) + + + + + + + + + + + + + + + + + + + one (used with currency and measurement units) + + + + + + (appaliarsuk, angutaarsuk) + + + + + + (assingusoq) + + + + + + goddag + + + + + + i lige måde + + + + + + aap + + + + + + godmorgen + + + + + + + this (one) + + + + + + skal til at + + + + + + fjerde + + + + + + only + + + + (third person singular possession of preceding nominal) + + + (one who/that is acted on) [verb]-ee + + + nangaavunga + + + kisiat + + + although, unless + + + inna / anna / una + + + recurring, habitually + + + (allaaseq, atuaaseq) + + + (negative verbal modifier) + + + just, merely, a mere + + + place where one does + + + time when one does + + + two (used with currency and units of measurement) + + + (amikoq / illukoq) + + + (oqaannarniut, kinnaassusersiutit pingajuat ataasersiut) + + + sunaana, tusaajuk + + + derhenne + + + (indicates intention to perform an action) + + + indtage, drikke, spise + + + thirteenth + + + (iserportoq / tikipportoq) + + + (forms collective family names) + + + (the act of doing something) + + + (the acting of the possessor) + + + (while possessor acted) + + + (before possessor acted) + + + (because of action) + + + (the more/most acting) + + + qanoq oqarpit? + + + nillerpoq, qiianarpoq! + + + massa, aana + + + my (first person singular possessive) + + + three (used with currency and units of measurement) + + + (sikukkoorpoq / aputikkoorpoq) + + + (inukasik / qimmikasik) + + + very much + + + nasmi, naagga + + + wants to + + + -hed + + + una + + + (group of) + + + (group of many) + + + (obviative singular possessive) + + + allatut oqaatigalugu + + + timmiaaraq, timmiaq + + + means to search for + + + means to travel in/through + + + (dynanic passive; patientive valency-reducing verbal modifier) + + + old + + + (place where kept or stored) + + + meget + + + taanna + + + go to + + + her er den + + + very + + + (ellers god nok, men ...) + + + tomorrow + + + har afsluttet + + + third + + + lille, søde + + + hej + + + ilimanarpoq / qasunarpo + + + (one who/that is acted on) [verb]-ee + + + has good/beautiful (monovalent verbalizing affix) + + + there is a good/beautiful (avelent verbalizing affix) + + + (allallaqqippoq / pillaqqippoq) + + + (appaaq, nerlaaq) + + + (young of) + + + (resembling) + + + (qalaarpoq, qaquaarpoq) + + + (inhabitant of) + + + mange tak + + + (one by one, piece by piece) + + + make + + + uangaanngitsoq + + + uaguunngitsoq ilissi + + + (irrealis nominal suffix; supposed, destined, or intended) + + + inuk sorleq + + + ukiup tulliani + + + buy, acquire + + + encounter, find, meet + + + tretten, tallet 13 + + + (one who/that is acted on) [verb]-ee + + + (agent provides/equips patient with) + + + (actor turns a number of years old) + + + tak + + + rejse til + + + aamma + + + [subject] and I + + + suli, suli + + + (makes something) + + + (spends some period of time) + + + or + + + (with interrogatives) any + + + (with negation) not even, not at all + + + (with -galuaq- and conditional mood) even though + + + imatulluunniit + + + (alla pillugu sulivoq) + + + pisarnermisut + + + now again + + + how typical of, unsurprisingly + + + un-, in-; -less, there is/are no (reversive verbalizer) + + + stop! that’s enough! + + + (aarmeerpoq) + + + ukiut marluk qaangiuppata + + + (with noun stem for an animal) catch, kill + + + (imitation of a raven’s call) + + + search for, be looking for + + + be exposed to + + + celebrate (a holiday) + + + travel around in/on (a place) + + + repeated/prolonged activity + + + have, has + + + there is + + + (kissalaarpoq / kialaarpoq) + + + (inunngorpoq / allanngorpoq) + + + o’clock + + + ([agent] makes [patient] be [noun]) + + + uani + + + (third-person plural possessive) + + + ilumut, suu + + + uanga nammineq + + + uagut nammineq + + + taamaalimmat + + + (numeral modifier) + + + uumaangaa + + + (first person dual) us two + + + shall + + + (often with verbalisations for hunting for a particular animal) one who tries to + + + (agent of verb has patient of noun) + + + sumut atortoq + + + reason for + + + time when + + + (apeqqippoq) + + + (innaaqqippoq) + + + big + + + (fair-sized) + + + innga! + + + (oqalualaarpoq, siorsualaarpoq) + + + place where one does + + + time when one does + + + tyve + + + imatut + + + ullormi ataatsimi + + + (alla pillugu sulivoq) + + + (angerlajaarpoq, aallajaarpoq) + + + one (used with currency and measurement units) + + + (appaliarsuk, angutaarsuk) + + + (assingusoq) + + + goddag + + + i lige måde + + + aap + + + godmorgen + + + this (one) + + + skal til at + + + fjerde + + + only + + + diff --git a/extensions/wikidata-lexemes/output/km.xml b/extensions/wikidata-lexemes/output/km.xml new file mode 100644 index 00000000..6ded8855 --- /dev/null +++ b/extensions/wikidata-lexemes/output/km.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/ko.xml b/extensions/wikidata-lexemes/output/ko.xml new file mode 100644 index 00000000..aa70b58e --- /dev/null +++ b/extensions/wikidata-lexemes/output/ko.xml @@ -0,0 +1,1505 @@ + + + + + + + + + we + + + + + + 불변화사 + + + + + + + (indicates a guess at the amount or extent of something) + + + (emphatic particle used with great or large quantities, sometimes indicating surprise) + + + + + + the number 10 + + + + + + (observed/perceived past indicator) + + + + + + new (recently created) + + + + + + sixty + + + + + + forty + + + + + + + (marks the starting/departure point of something) + + + (marks the (dynamic) spatial location of something) + + + (applied to a noun representing a group, marks the subject of a sentence) + + + (marks the source of something--where something is extracted/taken out of/from) + + + (marks the basis for doing something--a metaphorical 'place of departure') + + + + + + 산업에 관한 + + + + + + ('험난하다'의 어근) + + + + + + ('다감하다'의 어근) + + + + + + ('솔직하다'의 어근) + + + + + + ('흔쾌하다'의 어근) + + + + + + ('각렴하다'의 어근) + + + + + + ('덕후하다'의 어근) + + + + + + '극진하다'의 어근 + + + + + + '극친하다'의 어근 + + + + + + counter for animals + + + + + + the number 10^12 + + + + + + + formal first person singular: I + + + + + + + + + (politeness marker used in hasoseo-che) + + + + + + thirty + + + + + + three + + + + + + fifty + + + + + + 이상야릇하고 흉악한 + + + + + + ('교교하다'의 어근) + + + + + + ('울창하다'의 어근) + + + + + + this (something close to the speaker or that the speaker thinks of) + + + this (something just recently mentioned) + + + + + + of a human nature + + + + + + (with an infinitive, indicates that an action/state/state change is continuing/progressing—typically away from the present) + + + + + + four + + + + + + (marks an action as completed, whether out of relief or regret) + + + + + + ('비습하다'의 어근) + + + + + + 감격하여 마음에 깊이 새겨지는 + + + + + + ('괴악하다'의 어근) + + + + + + '기민하다'의 어근 + + + + + + + informal first person singular, I + + + + + + that (something close to the listener or that the listener thinks of) + + + that (something just recently mentioned) + + + + + + one + + + + + + the number 1 + + + + + + + + (general past/perfective indicator) + + + (indicates a past completed event with present relevance) + + + + + + + + (past perfective indicator with implication of not being true at the present time) + + + + + + this (something close to the speaker or that the speaker thinks of) + + + this (something just recently mentioned) + + + + + + you (singular; used politely in familiar situations) + + + + + + (friendly greeting both in meeting and in parting) + + + + + + ninety + + + + + + forty + + + + + + + ninety + + + + + + ten + + + + + + sixty + + + + + + ('비습하다'의 어근) + + + + + + ('위허하다'의 어근) + + + + + + ('투철하다'의 어근) + + + + + + ('가괴하다'의 어근) + + + + + + ('과분하다'의 어근) + + + + + + ('흥미진진하다'의 어근) + + + + + + ('강퍅하다'의 어근) + + + + + + ('흉흉하다'의 어근) + + + + + + ('요긴하다'의 어근) + + + + + + 옛날의 의식이나 법식을 따르는, 또는 그런 것 + + + 고전이 될 만한 내용과 의의를 가지는, 또는 그런 것 + + + + + + (causative connective, where what precedes it is the purpose/cause/result/etc. of what follows it) + + + + + + shhh! + + + + + + no + + + + + + (marks the possessor in a possessive construction) + + + + + + (politeness marker for nouns) + + + + + + the number 6 + + + + + + the number 10,000 + + + + + + (marks the (static) spatial location of something) + + + (marks the temporal location of something) + + + (marks the (generally spatial) direction in which something happens) + + + (marks the cause of something) + + + (marks an object (generally inanimate) of a comparison) + + + (marks something being added to something else) + + + (in a number of fixed expressions, marks something being talked about) + + + + + + we + + + + + + + (speculation/prediction indicator) + + + (desire/intention indicator) + + + + + + + + (infinitive marker; used to connect verbs with certain following auxiliaries) + + + (cause/reason connective) + + + (hae-che declarative, interrogative, and imperative marker) + + + + + + two + + + + + + seven + + + + + + eight + + + + + + (marks the location in/on which something is done) + + + + in addition to + + + + + + + classifier for people (informal) + + + + + + ('망하다'의 어근) + + + + + + ('기절하다'의 어근) + + + + + + ('광범하다'의 어근) + + + + + + ('가랄하다'의 어근) + + + + + + '군졸하다'의 어근 + + + + + + '굉렬하다'의 어근 + + + + + + + + (direct object particle) + + + (indirect object particle) + + + + + + the number 7 + + + + + + (indicator of a future event, based on present information or subjective belief) + + + + + + he or she (informal third person pronoun) + + + that + + + + + + + + (politeness marker used in hasoseo-che) + + + + + + first + + + + + + five + + + + + + seventy + + + + + + twenty + + + + + + ('가열하다'의 어근) + + + + + + (나무의 의미를 더하는 한자어 어근) + + + + + + ('교교하다'의 어근) + + + + + + ('긴요하다'의 어근) + + + + + + ('경쾌하다'의 어근) + + + + + + (with -고, indicates a continuous action) + + + (with -어, indicates a continuous state) + + + + + + (politeness marker for verbs) + + + + + + + (honorific used in deference to the topic of the statement) + + + + + + the number 10^8 + + + + + + that over there + + + + + + + (copula) + + + + + + fifty + + + + + + six + + + + + + thirty + + + + + + seventy + + + + + + ('가열하다'의 어근) + + + + + + (marks the animate target of a conveyance-like action) + + + + + + + ('굉활하다'의 어근) + + + + + + ('광활하다'의 어근) + + + + + + the number 10^48 + + + + + + + + + + + + + + (informal second person plural pronoun) + + + + + + 100 + + + + + + + (subject particle) + + + (marker of the complement of 되다 and 아니다) + + + + + + anyone + + + + + + the number 2 + + + + + + the number 3 + + + + + + the number 4 + + + + + + the number 5 + + + + + + the number 8 + + + + + + the number 9 + + + + + + the number 1000 + + + + + + (emphasis particle) + + + + + + she + + + + + + you (singular; used politely) + + + + + + you (singular; usable in formal situations) + + + + + + eighty + + + + + + nine + + + + + + twenty + + + + + + eighty + + + + + + (root of the adjective '가세하다') + + + + + + (marks the location in/on which something is done) + + + + in addition to + + + + + + + (marks the animate target of a conveyance-like action) + + + + + + + + + (indicates a sequential relationship between two events) + + + (indicates the reason/cause of another event) + + + (indicates the ways/means in which another event occurs) + + + + + + classifier for people (formal) + + + honorific particle + + + + + + ('초췌하다'의 어근) + + + + + + ('굉장하다'의 어근) + + + + + + ('근독하다'의 어근) + + + + + + ('공몽하다'의 어근) + + + + + + ('걸오하다'의 어근) + + + + + + '극묘하다'의 어근 + + + + + + '긍엄하다'의 어근 + + + + we + + + 불변화사 + + + (indicates a guess at the amount or extent of something) + + + (emphatic particle used with great or large quantities, sometimes indicating surprise) + + + the number 10 + + + (observed/perceived past indicator) + + + new (recently created) + + + sixty + + + forty + + + (marks the starting/departure point of something) + + + (marks the (dynamic) spatial location of something) + + + (applied to a noun representing a group, marks the subject of a sentence) + + + (marks the source of something--where something is extracted/taken out of/from) + + + (marks the basis for doing something--a metaphorical 'place of departure') + + + 산업에 관한 + + + ('험난하다'의 어근) + + + ('다감하다'의 어근) + + + ('솔직하다'의 어근) + + + ('흔쾌하다'의 어근) + + + ('각렴하다'의 어근) + + + ('덕후하다'의 어근) + + + '극진하다'의 어근 + + + '극친하다'의 어근 + + + counter for animals + + + the number 10^12 + + + formal first person singular: I + + + (politeness marker used in hasoseo-che) + + + thirty + + + three + + + fifty + + + 이상야릇하고 흉악한 + + + ('교교하다'의 어근) + + + ('울창하다'의 어근) + + + this (something close to the speaker or that the speaker thinks of) + + + this (something just recently mentioned) + + + of a human nature + + + (with an infinitive, indicates that an action/state/state change is continuing/progressing—typically away from the present) + + + four + + + (marks an action as completed, whether out of relief or regret) + + + ('비습하다'의 어근) + + + 감격하여 마음에 깊이 새겨지는 + + + ('괴악하다'의 어근) + + + '기민하다'의 어근 + + + informal first person singular, I + + + that (something close to the listener or that the listener thinks of) + + + that (something just recently mentioned) + + + one + + + the number 1 + + + (general past/perfective indicator) + + + (indicates a past completed event with present relevance) + + + (past perfective indicator with implication of not being true at the present time) + + + this (something close to the speaker or that the speaker thinks of) + + + this (something just recently mentioned) + + + you (singular; used politely in familiar situations) + + + (friendly greeting both in meeting and in parting) + + + ninety + + + forty + + + ninety + + + ten + + + sixty + + + ('비습하다'의 어근) + + + ('위허하다'의 어근) + + + ('투철하다'의 어근) + + + ('가괴하다'의 어근) + + + ('과분하다'의 어근) + + + ('흥미진진하다'의 어근) + + + ('강퍅하다'의 어근) + + + ('흉흉하다'의 어근) + + + ('요긴하다'의 어근) + + + 옛날의 의식이나 법식을 따르는, 또는 그런 것 + + + 고전이 될 만한 내용과 의의를 가지는, 또는 그런 것 + + + (causative connective, where what precedes it is the purpose/cause/result/etc. of what follows it) + + + shhh! + + + no + + + (marks the possessor in a possessive construction) + + + (politeness marker for nouns) + + + the number 6 + + + the number 10,000 + + + (marks the (static) spatial location of something) + + + (marks the temporal location of something) + + + (marks the (generally spatial) direction in which something happens) + + + (marks the cause of something) + + + (marks an object (generally inanimate) of a comparison) + + + (marks something being added to something else) + + + (in a number of fixed expressions, marks something being talked about) + + + we + + + (speculation/prediction indicator) + + + (desire/intention indicator) + + + (infinitive marker; used to connect verbs with certain following auxiliaries) + + + (cause/reason connective) + + + (hae-che declarative, interrogative, and imperative marker) + + + two + + + seven + + + eight + + + (marks the location in/on which something is done) + + + in addition to + + + classifier for people (informal) + + + ('망하다'의 어근) + + + ('기절하다'의 어근) + + + ('광범하다'의 어근) + + + ('가랄하다'의 어근) + + + '군졸하다'의 어근 + + + '굉렬하다'의 어근 + + + (direct object particle) + + + (indirect object particle) + + + the number 7 + + + (indicator of a future event, based on present information or subjective belief) + + + he or she (informal third person pronoun) + + + that + + + (politeness marker used in hasoseo-che) + + + first + + + five + + + seventy + + + twenty + + + ('가열하다'의 어근) + + + (나무의 의미를 더하는 한자어 어근) + + + ('교교하다'의 어근) + + + ('긴요하다'의 어근) + + + ('경쾌하다'의 어근) + + + (with -고, indicates a continuous action) + + + (with -어, indicates a continuous state) + + + (politeness marker for verbs) + + + (honorific used in deference to the topic of the statement) + + + the number 10^8 + + + that over there + + + (copula) + + + fifty + + + six + + + thirty + + + seventy + + + ('가열하다'의 어근) + + + (marks the animate target of a conveyance-like action) + + + ('굉활하다'의 어근) + + + ('광활하다'의 어근) + + + the number 10^48 + + + (informal second person plural pronoun) + + + 100 + + + (subject particle) + + + (marker of the complement of 되다 and 아니다) + + + anyone + + + the number 2 + + + the number 3 + + + the number 4 + + + the number 5 + + + the number 8 + + + the number 9 + + + the number 1000 + + + (emphasis particle) + + + she + + + you (singular; used politely) + + + you (singular; usable in formal situations) + + + eighty + + + nine + + + twenty + + + eighty + + + (root of the adjective '가세하다') + + + (marks the location in/on which something is done) + + + in addition to + + + (marks the animate target of a conveyance-like action) + + + (indicates a sequential relationship between two events) + + + (indicates the reason/cause of another event) + + + (indicates the ways/means in which another event occurs) + + + classifier for people (formal) + + + honorific particle + + + ('초췌하다'의 어근) + + + ('굉장하다'의 어근) + + + ('근독하다'의 어근) + + + ('공몽하다'의 어근) + + + ('걸오하다'의 어근) + + + '극묘하다'의 어근 + + + '긍엄하다'의 어근 + + + diff --git a/extensions/wikidata-lexemes/output/ks.xml b/extensions/wikidata-lexemes/output/ks.xml new file mode 100644 index 00000000..d9a0af73 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ks.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + existence + + + + + + but + + + + existence + + + but + + + diff --git a/extensions/wikidata-lexemes/output/kv.xml b/extensions/wikidata-lexemes/output/kv.xml new file mode 100644 index 00000000..09ce3180 --- /dev/null +++ b/extensions/wikidata-lexemes/output/kv.xml @@ -0,0 +1,75 @@ + + + + + + + + + singular you + + + + + + at the surface + + + + + + because of something + + + + + + third person singular personal pronoun + + + + + + I + + + + + + one + + + + + + yes + + + + singular you + + + at the surface + + + because of something + + + third person singular personal pronoun + + + I + + + one + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/kw.xml b/extensions/wikidata-lexemes/output/kw.xml new file mode 100644 index 00000000..6f76f923 --- /dev/null +++ b/extensions/wikidata-lexemes/output/kw.xml @@ -0,0 +1,93 @@ + + + + + + + + + one + + + + + + from + + + of + + + + + + when + + + + + + seven + + + + + + since + + + + + + beside + + + with + + + for the sake of + + + + + + one + + + + one + + + from + + + of + + + when + + + seven + + + since + + + beside + + + with + + + for the sake of + + + one + + + diff --git a/extensions/wikidata-lexemes/output/ky.xml b/extensions/wikidata-lexemes/output/ky.xml new file mode 100644 index 00000000..a971792c --- /dev/null +++ b/extensions/wikidata-lexemes/output/ky.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/la.xml b/extensions/wikidata-lexemes/output/la.xml new file mode 100644 index 00000000..892a57c5 --- /dev/null +++ b/extensions/wikidata-lexemes/output/la.xml @@ -0,0 +1,658 @@ + + + + + + + + + interrogative pronoun + + + + + + when + + + + + + (of space) before, in front, forwards + + + (of time) before, previously + + + + + + ponieważ + + + + + + + + + + + + + число + + + + + + upon + + + + + + how + + + + + + this + + + + + + salutatio non obligatoria + + + + + + why + + + + + + against + + + + + + + + + + done, made + + + + + + + + + + + + + + + + + + + + + + + the same + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + five + + + + + + + + + I; first-person singular pronoun + + + + + + who + + + + + + with + + + + + + of, concerning, about + + + from, away from, down from, out of + + + + + + both + + + + + + if, supposing that + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + + + + where + + + + + + for + + + on behalf of + + + before + + + in front + + + + + + + out of, from + + + + + + outside of + + + beyond + + + + + + below + + + + + + about, around, near + + + + + + as if + + + as, like + + + as if + + + as, like + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + + + + four + + + + + + + from, away from, out of + + + + + + + + + producing + + + efficient + + + + + + the number 0 + + + + + + number + + + + + + how many + + + + + + toward, to, up to, for + + + + + + particula quae est coniunctio generalis + + + + + + within + + + + + + in what (which) way, to what (which) degree; how, how much, as much as, as far as + + + (in comparisons) as + + + (after comparative nouns) than + + + in what (which) way, to what (which) degree; how, how much, as much as, as far as + + + (in comparisons) as + + + (after comparative nouns) than + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + + + + + + + + + + conjugation of Latin verbs, with a stem ending in "a" and an infinitive in "are"; e.g. amō (I love), amāre (to love), “amāvi” (I loved) + + + + + + through, by means of + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + + interrogative pronoun + + + when + + + (of space) before, in front, forwards + + + (of time) before, previously + + + ponieważ + + + число + + + upon + + + how + + + this + + + salutatio non obligatoria + + + why + + + against + + + done, made + + + the same + + + натуральное число + + + five + + + I; first-person singular pronoun + + + who + + + with + + + of, concerning, about + + + from, away from, down from, out of + + + both + + + if, supposing that + + + натуральное число + + + where + + + for + + + on behalf of + + + before + + + in front + + + out of, from + + + outside of + + + beyond + + + below + + + about, around, near + + + as if + + + as, like + + + as if + + + as, like + + + натуральное число + + + four + + + from, away from, out of + + + producing + + + efficient + + + the number 0 + + + number + + + how many + + + toward, to, up to, for + + + particula quae est coniunctio generalis + + + within + + + in what (which) way, to what (which) degree; how, how much, as much as, as far as + + + (in comparisons) as + + + (after comparative nouns) than + + + in what (which) way, to what (which) degree; how, how much, as much as, as far as + + + (in comparisons) as + + + (after comparative nouns) than + + + натуральное число + + + conjugation of Latin verbs, with a stem ending in "a" and an infinitive in "are"; e.g. amō (I love), amāre (to love), “amāvi” (I loved) + + + through, by means of + + + натуральное число + + + diff --git a/extensions/wikidata-lexemes/output/lb.xml b/extensions/wikidata-lexemes/output/lb.xml new file mode 100644 index 00000000..945301bd --- /dev/null +++ b/extensions/wikidata-lexemes/output/lb.xml @@ -0,0 +1,125 @@ + + + + + + + + + yes + + + + + + + + you; second-person plural pronoun + + + + + + + + you; formal second-person pronoun + + + + + + + + we; first-person plural pronoun + + + + + + + + + + you; second-person singular pronoun + + + + + + igennem + + + + + + + + + I; first-person singular pronoun + + + + + + + + + + he; third-person singular pronoun + + + + + + + + + it; third-person singular pronoun + + + + + + + + + she; third-person singular pronoun + + + + yes + + + you; second-person plural pronoun + + + you; formal second-person pronoun + + + we; first-person plural pronoun + + + you; second-person singular pronoun + + + igennem + + + I; first-person singular pronoun + + + he; third-person singular pronoun + + + it; third-person singular pronoun + + + she; third-person singular pronoun + + + diff --git a/extensions/wikidata-lexemes/output/ln.xml b/extensions/wikidata-lexemes/output/ln.xml new file mode 100644 index 00000000..0f00c434 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ln.xml @@ -0,0 +1,30 @@ + + + + + + + + + I; first person singular pronoun + + + + + + you; second person singular pronoun + + + + I; first person singular pronoun + + + you; second person singular pronoun + + + diff --git a/extensions/wikidata-lexemes/output/lo.xml b/extensions/wikidata-lexemes/output/lo.xml new file mode 100644 index 00000000..d9867628 --- /dev/null +++ b/extensions/wikidata-lexemes/output/lo.xml @@ -0,0 +1,21 @@ + + + + + + + + + classifier for animals, insects, birds, cards and clothing + + + + classifier for animals, insects, birds, cards and clothing + + + diff --git a/extensions/wikidata-lexemes/output/lt.xml b/extensions/wikidata-lexemes/output/lt.xml new file mode 100644 index 00000000..d3f398f4 --- /dev/null +++ b/extensions/wikidata-lexemes/output/lt.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/lv.xml b/extensions/wikidata-lexemes/output/lv.xml new file mode 100644 index 00000000..60119125 --- /dev/null +++ b/extensions/wikidata-lexemes/output/lv.xml @@ -0,0 +1,93 @@ + + + + + + + + + sasaista vārdus un teikuma daļas + + + + + + one + + + + + + Verwendung zum Ausdruck unterschiedlicher Gefühle wie Überraschung oder Aufregung + + + Verwendung zum Ausdruck des Verstehens + + + + + + + + + + + I; first-person singular pronoun + + + + + + + + + + viens un otrs + + + + + + + + + die eine und die andere + + + + + + saista vienlīdzīgus teikuma locekļus, norādot uz nozīmju pretstatu + + + + sasaista vārdus un teikuma daļas + + + one + + + Verwendung zum Ausdruck unterschiedlicher Gefühle wie Überraschung oder Aufregung + + + Verwendung zum Ausdruck des Verstehens + + + I; first-person singular pronoun + + + viens un otrs + + + die eine und die andere + + + saista vienlīdzīgus teikuma locekļus, norādot uz nozīmju pretstatu + + + diff --git a/extensions/wikidata-lexemes/output/mh.xml b/extensions/wikidata-lexemes/output/mh.xml new file mode 100644 index 00000000..f40bf515 --- /dev/null +++ b/extensions/wikidata-lexemes/output/mh.xml @@ -0,0 +1,39 @@ + + + + + + + + + your (plural) + + + + + + your (singular) + + + + + + il/elle a + âge + + + + your (plural) + + + your (singular) + + + il/elle a + âge + + + diff --git a/extensions/wikidata-lexemes/output/mi.xml b/extensions/wikidata-lexemes/output/mi.xml new file mode 100644 index 00000000..5e9226a5 --- /dev/null +++ b/extensions/wikidata-lexemes/output/mi.xml @@ -0,0 +1,355 @@ + + + + + + + + + + matihiko, ahiko, mati + + + + + + yes + + + + + + + the (indicates definiteness) + + + + + + China + + + + + + when? + + + + + + he, she, it; third-person singular pronoun + + + + + + + coming from a distance + + + + + + + + e noho ana, e haere ana, e kawea ana + + + + + + Hooker, family name + + + + + + country in Europe + + + + + + January + + + + + + all, every, totally, completely + + + very, utterly, really, seriously + + + + + + + female, womanly, feminine + + + + + + Huz (Biblical name; firstborn son of Aram) + + + + + + + pertaining to the indigenous people of Aotearoa/New Zealand + + + + + + + a certain particular (emphatic indefiniteness marker) + + + + + + (marks names of people, locations) + + + + + + has, had, will have (forms perfective construction with following verb form) + + + just (denotes the present or ongoing onset of an event) + + + no longer (expressing loss, absence, or departure) + + + + + + is that so? isn’t it? + + + + + + + human, individual + + + + + + + + (indication of difference, unexpectedness) already, actually, another, in a different place, for a different purpose + + + + + + Noah, Biblical prophet + + + Noah, male personal name + + + + + + North Island + + + New Zealand + + + + + + + first, important, large, of priority + + + firstly, first and foremost, primarily + + + + + + + all, every, totally, completely + + + + + + + whakatioro + + + + + + + + (indicates absence of limit, conditions) only, just, merely, quite, until, randomly + + + + + + + women’s; female, feminine + + + womanhood + + + + + + a, an, some (indicates indefiniteness) + + + + + + + + one + + + together, in unison + + + actually, no less, absolutely + + + + matihiko, ahiko, mati + + + yes + + + the (indicates definiteness) + + + China + + + when? + + + he, she, it; third-person singular pronoun + + + coming from a distance + + + e noho ana, e haere ana, e kawea ana + + + Hooker, family name + + + country in Europe + + + January + + + all, every, totally, completely + + + very, utterly, really, seriously + + + female, womanly, feminine + + + Huz (Biblical name; firstborn son of Aram) + + + pertaining to the indigenous people of Aotearoa/New Zealand + + + a certain particular (emphatic indefiniteness marker) + + + (marks names of people, locations) + + + has, had, will have (forms perfective construction with following verb form) + + + just (denotes the present or ongoing onset of an event) + + + no longer (expressing loss, absence, or departure) + + + is that so? isn’t it? + + + human, individual + + + (indication of difference, unexpectedness) already, actually, another, in a different place, for a different purpose + + + Noah, Biblical prophet + + + Noah, male personal name + + + North Island + + + New Zealand + + + first, important, large, of priority + + + firstly, first and foremost, primarily + + + all, every, totally, completely + + + whakatioro + + + (indicates absence of limit, conditions) only, just, merely, quite, until, randomly + + + women’s; female, feminine + + + womanhood + + + a, an, some (indicates indefiniteness) + + + one + + + together, in unison + + + actually, no less, absolutely + + + diff --git a/extensions/wikidata-lexemes/output/mk.xml b/extensions/wikidata-lexemes/output/mk.xml new file mode 100644 index 00000000..026aa754 --- /dev/null +++ b/extensions/wikidata-lexemes/output/mk.xml @@ -0,0 +1,42 @@ + + + + + + + + + На почетокот на реченица, за воведување нова мисла што директно не се надоврзува на претходно кажаното + + + На почеток на реторичко прашање + + + + + + За поврзување зборовни состави и реченици што се содржински сопоставени. + + + За поврзување зборовни состави или реченици што се надоврзуваат содржински. + + + + На почетокот на реченица, за воведување нова мисла што директно не се надоврзува на претходно кажаното + + + На почеток на реторичко прашање + + + За поврзување зборовни состави и реченици што се содржински сопоставени. + + + За поврзување зборовни состави или реченици што се надоврзуваат содржински. + + + diff --git a/extensions/wikidata-lexemes/output/ml.xml b/extensions/wikidata-lexemes/output/ml.xml new file mode 100644 index 00000000..03c6efe9 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ml.xml @@ -0,0 +1,2529 @@ + + + + + + + + + + 4; four, the numeral + + + + + + + 5; numeral five + + + + + + + numeral for 8; eight + + + + + + 20, twenty + + + + + + 80, eighty + + + + + + + 11, eleven + + + + + + + + + + + + + + speakers/writers, or the speaker/writer and at least one other person + + + + + + число ноль + + + + + + each other + + + + + + + + + + + + ഞാൻ + + + + + + + but + + + + + + + + + + + + + these + + + + + + തൊട്ട്, തുടങ്ങി + + + + + + But, although, nevertheless, even if. Place after a space after the word + + + + + + that much, (placed after the word) + + + + + + some + + + + + + all + + + + + + "isn't it enough?" + + + + + + and also; plus; besides + + + + + + The one or ones mentioned; which, that + + + + + + 96; natural number ninety-six + + + + + + 44; natural number forty-four + + + + + + 45; natural number forty-five + + + + + + 47; natural number forty-seven + + + + + + 58; natural number fifty-eight + + + + + + 59; natural number fifty-nine + + + + + + 61; natural number sixty-one + + + + + + 79 + + + + + + 81 + + + + + + 84; eighty-four + + + + + + + 2, two; natural number between 1 and 3 + + + + + + + + numeral for 9; nine + + + + + + + + + + + + hundred, the number 100 + + + + + + 16 + + + + + + 900, nine hundred + + + + + + + + + + + + + you; second person plural + + + + + + + + + + + + + + he; third-person singular pronoun + + + + + + + + + + + + you (informal, impolite) + + + + + + + + + + + + + + + + + + + + + Those + + + + + + hundred thousand + + + + + + no, negation + + + + + + (less polite) this person, nearby person + + + + + + + about + + + + + + + emphatic particle + + + + + + + other + + + + + + + other + + + + + + + 99; ninety-nine + + + + + + 35; thirty-five + + + + + + 42 + + + + + + 57; natural number fifty-seven + + + + + + 62; natural number sixty-two + + + + + + 65; natural number sixty-five + + + + + + 68; natural number sixty-eight + + + + + + 73; natural number seventy-three + + + + + + 76 + + + + + + 86; eighty-six + + + + + + വിമുക്ത + + + without having; lacking + + + + + + അല്പം; കുറച്ച് + + + + + + താഴെ + + + + + + + numeral for 6; six + + + + + + 13 + + + + + + + + + + + + + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people + + + + + + + this, these + + + + + + natural number + + + + + + + + + + + + + third person plural; they + + + + + + + + + + + + + + + + + + + Thank you, thanks + + + a polite thank-you said at the end of a speech + + + + + + + + + + + + + + + + + + + + + ആ ആൾ, ആ മനുഷ്യൻ + + + + + + + as postposition, from + + + + + + et cetera + + + + + + that, those + + + + + + Yes; true + + + + + + + + that, object at a distance + + + + + + + + + + (with noun classes) because of, due to. (Placed after word) + + + (with verbs) marks continuous tense + + + + + + like this + + + + + + + about + + + + + + + thousand, 1000 + + + + + + + of which day? + + + of which day + + + + + + that + + + + + + + don't + + + + + + very + + + + + + അല്പം + + + + + + several, many different + + + + + + 101 + + + + + + 30; natural number thirty + + + + + + 33; natural number thirty-three + + + + + + 37; natural number thirty-seven + + + + + + 41; natural number forty-one + + + + + + 46; natural number forty-six + + + + + + 48; natural number forty-eight + + + + + + 52; natural number fifty-two + + + + + + 72; natural number seventy-two + + + + + + 75; seventy-five + + + + + + 22; twenty-two, natural number + + + + + + numeral for 10; ten + + + + + + 50, fifty + + + + + + natural number + + + + + + 600, six hundred + + + + + + + + + + + + + + first person singular, I + + + + + + 10 to the power 21 + + + + + + ശതകോടി + + + + + + natural number + + + + + + integer number + + + + + + all + + + + + + + + + + + + + + + + + + + + + Him, that person, to respectfully address a person, respectful pronoun for third person + + + + + + crore; 10,000,000; ten million + + + + + + times + + + + + + + ഏതാണ്ട്, ഒട്ടൊക്കെ + + + + + + along with; and + + + + + + either + + + + + + Yes + + + + it is + + + + + + 91; ninety-one + + + + + + 23; twenty-three + + + + + + 39; thirty-nine + + + + + + 51; fifty-one + + + + + + 63; natural number sixty-three + + + + + + 64; natural number sixty-four + + + + + + 77 + + + + + + 89; eighty-nine + + + + + + 200; two-hundred + + + + + + 1, സംഖ്യ + + + + + + + three + + + + + + + numeral for 7; seven + + + + + + 70, seventy + + + + + + 10 crores; 100 million; 10,00,00,000 + + + + + + + + + + + + 500, five hundred + + + + + + 700, seven hundred + + + + + + 800, eight hundred + + + + + + + + + + + + Indian food + + + + + + 10 to the power 15 + + + + + + + + + + + + + + + + + + + 1 lakh, 1,00,000 + + + + + + How + + + + + + + + + + + + + she; third-person singular pronoun + + + + + + + but + + + + + + But, alone, only, solely + + + + + + Connective particle + + + + + + till, up to + + + + + + that + + + + + + who?; interogative + + + + + + from + + + + + + but + + + + + + 94; ninety four; cardinal number + + + + + + 26; natural number twenty-six + + + + + + 34; natural number thirty-four + + + + + + 36; natural number thirty-six + + + + + + 38; natural number thirty-eight + + + + + + 69; natural number sixty-nine + + + + + + with, nearby, next to + + + + + + through; by means of + + + + + + 40, forty + + + + + + 200, two hundred + + + + + + സംഖ്യ + + + + + + Unicode character + + + + + + How much + + + (expression) many, several + + + + + + or + + + + + + natural number + + + + + + ദശലക്ഷം + + + + + + natural number + + + + + + natural number + + + + + + + + + + + + + + + + + + + + this + + + + + + + one + + + + + + + "by" in day by day, city by city + + + + + + Greeting, salutation + + + + + + greeting, salutation, namaste + + + + + + that + + + + + + or + + + otherwise + + + + + + that + + + in which day + + + + + + showing disagreement with the statement; disagreeing that the claim is plausible + + + + + + who? (male) + + + + the one who + + + + + + + no; prohibition + + + + + + 95; ninety five + + + + + + 97; natural number ninety seven + + + + + + 24; twenty-four + + + + + + 43; natural number forty-three + + + + + + 150; hundred-fifty + + + + + + 55; natural number fifty-five + + + + + + 67; natural number sixty-seven + + + + + + 83; eighty-three + + + + + + 85; eighty-five + + + + + + 19; nineteen + + + + + + without; free of; got rid of + + + + + + beside + + + + + + below + + + + + + 90, ninety + + + + + + 12, twelve + + + + + + 15 + + + + + + + + + + + + 18, eighteen + + + + + + 19 + + + + + + 400, four hundred + + + + + + + + + + + + + first person plural + + + + + + + + + + + + he (lacks respect; not used for elders) + + + + + + from + + + + + + postposition meaning from, for number ranger, time interval etc. + + + + + + good morning, salutation used in the morning + + + + + + plenty enough + + + + + + times + + + + + + + is it?; an interjection showing agreement with a claim + + + + + + + which; interogative + + + which; that which + + + + + + 98; natural number ninety-eight + + + + + + 25; natural number twenty-five + + + + + + 27; natural number twenty-seven + + + + + + 29; natural number twenty-nine + + + + + + 30; natural number thirty-one + + + + + + 32; natural number thirty-two + + + + + + 54; natural number fifty-four + + + + + + 56; natural number fifty-six + + + + + + 66; natural number sixty-six + + + + + + 71; natural number seventy-one + + + + + + 87; eighty-seven + + + + + + 88; eighty eight + + + + + + 21; twenty-one; natural number + + + + + + beside + + + nearby + + + + + + outside + + + + + + 60, sixty + + + + + + 14 + + + + + + 17, seventeen + + + + + + 1000, one thousand + + + + + + + 300, three hundred + + + + + + (archaic) Very large number, infinitly large number + + + (പഴയ) 10<sup>23</sup>, നൂറു നൂറായിരം മഹൗഘം + + + + + + you, formal + + + + + + + + + + + + + who + + + + + + natural number + + + + + + natural number + + + + + + some kind of, any, + + + + + + "for", placed after word + + + + + + like that + + + + + + + some + + + + + + similar to + + + + + + + which girl? + + + + the girl who + + + + + + + + + exists + + + + + + പോലെ, മാതിരി + + + + + + + പോലെ + + + + + + few + + + + + + along with; also + + + + + + close; adjacent + + + next + + + + + + no; negation + + + + + + 93; natural number ninety-three + + + + + + 28; natural number twenty-eight + + + + + + 49; natural number forty-nine + + + + + + 53; natural number fifty-three + + + + + + 78 + + + + + + 82; eighty-two + + + + + + near; next to + + + + + + on top of + + + + 4; four, the numeral + + + 5; numeral five + + + numeral for 8; eight + + + 20, twenty + + + 80, eighty + + + 11, eleven + + + speakers/writers, or the speaker/writer and at least one other person + + + число ноль + + + each other + + + ഞാൻ + + + but + + + these + + + തൊട്ട്, തുടങ്ങി + + + But, although, nevertheless, even if. Place after a space after the word + + + that much, (placed after the word) + + + some + + + all + + + "isn't it enough?" + + + and also; plus; besides + + + The one or ones mentioned; which, that + + + 96; natural number ninety-six + + + 44; natural number forty-four + + + 45; natural number forty-five + + + 47; natural number forty-seven + + + 58; natural number fifty-eight + + + 59; natural number fifty-nine + + + 61; natural number sixty-one + + + 79 + + + 81 + + + 84; eighty-four + + + 2, two; natural number between 1 and 3 + + + numeral for 9; nine + + + hundred, the number 100 + + + 16 + + + 900, nine hundred + + + you; second person plural + + + he; third-person singular pronoun + + + you (informal, impolite) + + + Those + + + hundred thousand + + + no, negation + + + (less polite) this person, nearby person + + + about + + + emphatic particle + + + other + + + other + + + 99; ninety-nine + + + 35; thirty-five + + + 42 + + + 57; natural number fifty-seven + + + 62; natural number sixty-two + + + 65; natural number sixty-five + + + 68; natural number sixty-eight + + + 73; natural number seventy-three + + + 76 + + + 86; eighty-six + + + വിമുക്ത + + + without having; lacking + + + അല്പം; കുറച്ച് + + + താഴെ + + + numeral for 6; six + + + 13 + + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people + + + this, these + + + natural number + + + third person plural; they + + + Thank you, thanks + + + a polite thank-you said at the end of a speech + + + ആ ആൾ, ആ മനുഷ്യൻ + + + as postposition, from + + + et cetera + + + that, those + + + Yes; true + + + that, object at a distance + + + (with noun classes) because of, due to. (Placed after word) + + + (with verbs) marks continuous tense + + + like this + + + about + + + thousand, 1000 + + + of which day? + + + of which day + + + that + + + don't + + + very + + + അല്പം + + + several, many different + + + 101 + + + 30; natural number thirty + + + 33; natural number thirty-three + + + 37; natural number thirty-seven + + + 41; natural number forty-one + + + 46; natural number forty-six + + + 48; natural number forty-eight + + + 52; natural number fifty-two + + + 72; natural number seventy-two + + + 75; seventy-five + + + 22; twenty-two, natural number + + + numeral for 10; ten + + + 50, fifty + + + natural number + + + 600, six hundred + + + first person singular, I + + + 10 to the power 21 + + + ശതകോടി + + + natural number + + + integer number + + + all + + + Him, that person, to respectfully address a person, respectful pronoun for third person + + + crore; 10,000,000; ten million + + + times + + + ഏതാണ്ട്, ഒട്ടൊക്കെ + + + along with; and + + + either + + + Yes + + + it is + + + 91; ninety-one + + + 23; twenty-three + + + 39; thirty-nine + + + 51; fifty-one + + + 63; natural number sixty-three + + + 64; natural number sixty-four + + + 77 + + + 89; eighty-nine + + + 200; two-hundred + + + 1, സംഖ്യ + + + three + + + numeral for 7; seven + + + 70, seventy + + + 10 crores; 100 million; 10,00,00,000 + + + 500, five hundred + + + 700, seven hundred + + + 800, eight hundred + + + Indian food + + + 10 to the power 15 + + + 1 lakh, 1,00,000 + + + How + + + she; third-person singular pronoun + + + but + + + But, alone, only, solely + + + Connective particle + + + till, up to + + + that + + + who?; interogative + + + from + + + but + + + 94; ninety four; cardinal number + + + 26; natural number twenty-six + + + 34; natural number thirty-four + + + 36; natural number thirty-six + + + 38; natural number thirty-eight + + + 69; natural number sixty-nine + + + with, nearby, next to + + + through; by means of + + + 40, forty + + + 200, two hundred + + + സംഖ്യ + + + Unicode character + + + How much + + + (expression) many, several + + + or + + + natural number + + + ദശലക്ഷം + + + natural number + + + natural number + + + this + + + one + + + "by" in day by day, city by city + + + Greeting, salutation + + + greeting, salutation, namaste + + + that + + + or + + + otherwise + + + that + + + in which day + + + showing disagreement with the statement; disagreeing that the claim is plausible + + + who? (male) + + + the one who + + + no; prohibition + + + 95; ninety five + + + 97; natural number ninety seven + + + 24; twenty-four + + + 43; natural number forty-three + + + 150; hundred-fifty + + + 55; natural number fifty-five + + + 67; natural number sixty-seven + + + 83; eighty-three + + + 85; eighty-five + + + 19; nineteen + + + without; free of; got rid of + + + beside + + + below + + + 90, ninety + + + 12, twelve + + + 15 + + + 18, eighteen + + + 19 + + + 400, four hundred + + + first person plural + + + he (lacks respect; not used for elders) + + + from + + + postposition meaning from, for number ranger, time interval etc. + + + good morning, salutation used in the morning + + + plenty enough + + + times + + + is it?; an interjection showing agreement with a claim + + + which; interogative + + + which; that which + + + 98; natural number ninety-eight + + + 25; natural number twenty-five + + + 27; natural number twenty-seven + + + 29; natural number twenty-nine + + + 30; natural number thirty-one + + + 32; natural number thirty-two + + + 54; natural number fifty-four + + + 56; natural number fifty-six + + + 66; natural number sixty-six + + + 71; natural number seventy-one + + + 87; eighty-seven + + + 88; eighty eight + + + 21; twenty-one; natural number + + + beside + + + nearby + + + outside + + + 60, sixty + + + 14 + + + 17, seventeen + + + 1000, one thousand + + + 300, three hundred + + + (archaic) Very large number, infinitly large number + + + (പഴയ) 10<sup>23</sup>, നൂറു നൂറായിരം മഹൗഘം + + + you, formal + + + who + + + natural number + + + natural number + + + some kind of, any, + + + "for", placed after word + + + like that + + + some + + + similar to + + + which girl? + + + the girl who + + + exists + + + പോലെ, മാതിരി + + + പോലെ + + + few + + + along with; also + + + close; adjacent + + + next + + + no; negation + + + 93; natural number ninety-three + + + 28; natural number twenty-eight + + + 49; natural number forty-nine + + + 53; natural number fifty-three + + + 78 + + + 82; eighty-two + + + near; next to + + + on top of + + + diff --git a/extensions/wikidata-lexemes/output/mn.xml b/extensions/wikidata-lexemes/output/mn.xml new file mode 100644 index 00000000..e220923b --- /dev/null +++ b/extensions/wikidata-lexemes/output/mn.xml @@ -0,0 +1,562 @@ + + + + + + + + + one + + + + + + I; first person singular pronoun + + + + + + six + + + + + + seven + + + + + + fifty + + + + + + ninety + + + + + + hundred thousand + + + + + + ten million + + + + + + hundred thousand + + + + + + ten million + + + + + + ten trillion + + + + + + hundred thousand + + + + + + two + + + + + + three + + + + + + nine + + + + + + hundred + + + + + + ten million + + + + + + he, she, it; third person singular pronoun + + + + + + + ten + + + + + + twenty + + + + + + hundred thousand + + + + + + billion, thousand million + + + + + + hundred thousand + + + + + + four + + + + + + five + + + + + + seventy + + + + + + thousand + + + + + + hundred million + + + + + + hundred million + + + + + + hundred billion, hundred thousand million + + + + + + trillion, thousand billion, million million + + + + + + billion + + + + + + quadrillion + + + + + + hundred trillion + + + + + + ten billion + + + + + + we; first person plural pronoun + + + + + + sixty + + + + + + million + + + + + + ten thousand + + + + + + trillion, thousand billion, million million + + + + + + you; second person polite singular pronoun + + + + + + eighty + + + + + + ten thousand + + + + + + million + + + + + + hundred million + + + + + + ten billion, ten thousand million + + + + + + ten billion, ten thousand million + + + + + + billion, thousand million + + + + + + ten trillion + + + + + + hundred trillion + + + + + + zero + + + + + + eight + + + + + + thirty + + + + + + forty + + + + + + ten million + + + + + + million + + + + + + trillion, thousand billion, million million + + + + + + you; second person familiar singular pronoun + + + + + + hundred trillion + + + + + + ten quadrillion + + + + + + hundred trillion + + + + one + + + I; first person singular pronoun + + + six + + + seven + + + fifty + + + ninety + + + hundred thousand + + + ten million + + + hundred thousand + + + ten million + + + ten trillion + + + hundred thousand + + + two + + + three + + + nine + + + hundred + + + ten million + + + he, she, it; third person singular pronoun + + + ten + + + twenty + + + hundred thousand + + + billion, thousand million + + + hundred thousand + + + four + + + five + + + seventy + + + thousand + + + hundred million + + + hundred million + + + hundred billion, hundred thousand million + + + trillion, thousand billion, million million + + + billion + + + quadrillion + + + hundred trillion + + + ten billion + + + we; first person plural pronoun + + + sixty + + + million + + + ten thousand + + + trillion, thousand billion, million million + + + you; second person polite singular pronoun + + + eighty + + + ten thousand + + + million + + + hundred million + + + ten billion, ten thousand million + + + ten billion, ten thousand million + + + billion, thousand million + + + ten trillion + + + hundred trillion + + + zero + + + eight + + + thirty + + + forty + + + ten million + + + million + + + trillion, thousand billion, million million + + + you; second person familiar singular pronoun + + + hundred trillion + + + ten quadrillion + + + hundred trillion + + + diff --git a/extensions/wikidata-lexemes/output/ms.xml b/extensions/wikidata-lexemes/output/ms.xml new file mode 100644 index 00000000..8ffd787a --- /dev/null +++ b/extensions/wikidata-lexemes/output/ms.xml @@ -0,0 +1,2199 @@ + + + + + + + + + ganti nama diri pertama mufrad (lebih halus daripada aku) + Saya pergi ke sekolah pada hari ini. + + + + + + at + + + + + + up + + + + + + + + + + from (initial place, time) + + + + + + currently doing + Anda sedang melayari Wikidata. + + + + + + + kata ganti diri pertama mufrad + + + + + + you + + + + + + we (exclusive) + Berilah kami makanan yang kami perlukan pada hari ini. + + + + + + digunakan untuk mengabung dua pilihan + + + + + + + which + + + + + + + and + + + + + + + that + + + + + + + + (classifier for pairs) + + + + + + + + + it + + + + + + + as + + + + + + a few + Terdapat beberapa naskhah untuk hikayat ini. + + + + + + + + classifier for objects with stalk (eg. umbrella, mushroom) + + + + + + + + + classifier for long, hard and straight objects + + + + + + + + + + million + + + + + + about + + + + + + therefore + + + + + + + + classifier for blocky objects + + + + + + half + + + + + + moreover + + + + + + must + + + + + + to show dislike or disgusted + + + + + + + (kata penentu yang bererti itu) + + + + + + (second-person singular possessive determiner) + + + (second-person singular object pronoun) + + + + + + + + macam; bangsa + + + + + + ke bahagian atas; ke sebelah atas + + + lebih, dan tinggi daripada itu + + + + + + + + total + + + + + + satu, esa, tunggal + + + awalan yang bermaksud satu + + + + + + + + zaman, waktu + + + + + + you + + + + + + you + + + + + + + + + + from + + + + + + he/she + + + + + + + + + + with + + + + + + + this + + + + + + + + because + + + + + + + what + + + + + + when; during + keistimewaan itu kecil golongannya dan mereka tidak akan membantu kamu ketika dalam kesusahan. + + + + + + when + + + + + + as well as + + + + + + + before + + + + + + tens + + + + + + + + who + + + + + + + more + + + + + + half + + + + + + + + classifier for a row of bananas + + + + + + ouch; ugh; sigh + + + + + + let + + + + + + + + (classifier for pairs) + + + + + + + + sekon, detik + + + + + + di sebelah atas, pada bahagian atas + + + lebih tinggi daripada + + + + + + (kata untuk menghina) + + + + + + + + 0.001 kilogram + + + + + + although + + + + + + (used on modal verbs and adverbs in questions) + + + (used on interrogative words to indicate emphasis) + + + (used to indicate uncertainty in a statement) + + + + + + + whereas + + + + + + sir + + + + + + in + + + + + + below; under + + + + + + we (inclusive) + + + + + + they + + + + + + this + + + + + + + + classifier for small objects, fruits + Demi angin yang menerbang dan menaburkan (debu, biji-bijian benih dan lain-lainnya + + + + + + + + + together with + + + + + + + like; as + + + + + + again + + + + + + (active translocative) + + + + + + + again; in turn + + + additionally; also + + + newly at introduced location + + + unexpectedly + + + contrastively + + + subsequently at introduced location + + + + + + both + + + + + + + + classifier for fruit flesh + + + + + + place that is not far from the speaker + + + + + + + + (classifier for corn and fruits that are quite big and hard) + + + + + + + + why + + + + + + + peace be upon him + + + + + + awak, kamu, engkau, anda + + + + + + (kata untuk menyatakan kehairanan) + + + + + + + + (penjodoh bilangan untuk benda-benda yang pipih atau tipis atau yang lebar meluas) + + + + + + even though; although + + + + + + anything + + + whatever + + + + + + since + + + + + + why + + + + + + + + + + between + + + + + + kata penentu posesif tunggal diri ketiga, digabung kepada kata nama + Hantar kek ini ke rumahnya. + + + kata ganti nama objek tunggal diri ketiga, digabung kepada kata kerja transitif atau kata depan + Hantar kek ini kepadanya. + + + + + + + + + classifier for huge objects + + + + + + + that + + + + + + if + + + + + + + + + by + + + + + + root for "pasukan" + + + + + + also + + + + + + various + + + + + + half + + + + + + + + classifier for curved items + + + + + + + child of + + + + + + + daughter of + + + + + + + contohnya; umpamanya + + + + + + tidak ada yang lain, satu sahaja + + + + + + aku, saya + + + + + + + + kurun + + + + + + i.e. + + + + + + + + + whole; entire + + + + + + as such (of) + + + + + + up to + + + + + + + + penjodoh bilangan untuk haiwan + ada rapang lima belas ekor + + + + + + + + classifier for blade objects (eg. sword, knife) + Hang Tuah dan kelima bersaudara itu pun sudah memanggung tiga-tiga bilah seligi pada seorang. + + + + + + + + penjodoh bilangan untuk manusia + + + + + + + + + until + + + + + + if + + + + + + throughout + + + + + + to be; is + + + + + + (menguatkan maksud atau pengertian kata itu) + + + + + + + that + + + + + + nominalisation + + + + + + and if + + + + + + the; fellow + + + + + + (creates verbal nouns denoting states) + + + + + + certain + + + + + + peace be upon him + + + + + + (first-person singular possessive determiner) + + + (first-person singular object pronoun) + + + + + + + + satuan + + + + + + mana-mana orang; sesiapa + + + + + + + + abad + + + + + + Used to form a numeral (set, many, or various) + + + Used to form an adjective (repeatedly or continuously) + + + + + + except + + + + + + you (plural) + + + + + + digunakan untuk mengabung dua perkataan, frasa atau ayat + + + + + + singular third-person pronoun for respect + + + + + + + + + for + + + + + + + after + + + + + + through + + + + + + + + + towards + + + + + + regarding; concerning + + + + + + while; whereas + + + + + + + + classifier for thin, wide objects + + + + + + while + + + + + + both + + + + + + so that + + + + + + so that + + + + + + + + classifier for something that seems to be widely spread (eg. mat, land, field, beach) + + + + + + each + + + + + + (creates extended forms of words) + + + + + + + + (classifier for flat, spread out things) + + + + + + + + ukuran luas yang besarnya 2.471 ekar + + + + + + + + 39.37 inci; 100 sentimeter + + + + + + (digunakan sebelum nama orang lelaki Islam yang telah meninggal) + + + + + + + + + warsa + + + + + + (kata sandang yang digunakan di depan nama) + Sewaktu sedang mabuk Abu memberitahu Adam bahawa dia ternampak Hawa, isteri Adam, sedang bermesra-mesra bersama Sani, si penjual sayur di pasar. + + + + + + + + (penjodoh bilangan untuk kata) + + + + + + + + group + + + + + + all seven + + + + + + + + + + to + + + + + + + + + + for + + + + + + you + + + + + + + + + on (time) + + + + + + without + + + + + + if + + + + + + like + + + + + + including + + + + + + + each + + + + + + + (place) + + + + + + (creates verbal nouns denoting processes) + + + + + + own; self + + + + + + after + + + + + + behind + + + + + + + + billion + + + + + + + + classifier for weapon + + + + + + + + classifier for rope-like items like ropes, threads, necklaces + + + + + + menjadikan sesuatu sebagai maksud dalam kata dasar + + + + + + + + roll + + + + + + any + + + + + + + + a group of + + + + + + too much + + + + + + + son of + + + + + + + + + jangka masa sepuluh tahun, dasawarsa + + + + + + + + seribu meter + + + + + + + (panggilan untuk memuliakan) + + + + + + long live! (battle cry) + + + + + + + + auns + + + + + + + di tempat yang lebih rendah + + + + + + even so + + + + + + to + + + + + + during + + + + + + to be; is + + + + + + + but + + + + + + how many; how much + + + + + + according to + + + + + + per + + + + + + since + + + + + + for (period) + + + + + + around + + + + + + singular third-person pronoun for royals and prophets + + + + + + + + classifier for reading material + + + + + + used to express regret, hate, peculiar, etc. + + + + + + following + + + + + + here + + + + + + during + + + + + + + + classifier for thing that have been cut or thinly sliced + + + + + + for + + + + + + yes + + + + + + you + + + + + + + + if + + + + + + + + dekad, dasawarsa + + + + + + (kata sandang yang lebih hormat daripada si) + + + + + + + + ukuran luas, 100 m² + + + + + + than + + + + + + (denoting sound of rapid motion, swooping) + + + + + + a number of + + + + + + one + + + + ganti nama diri pertama mufrad (lebih halus daripada aku) + Saya pergi ke sekolah pada hari ini. + + + at + + + up + + + from (initial place, time) + + + currently doing + Anda sedang melayari Wikidata. + + + kata ganti diri pertama mufrad + + + you + + + we (exclusive) + Berilah kami makanan yang kami perlukan pada hari ini. + + + digunakan untuk mengabung dua pilihan + + + which + + + and + + + that + + + (classifier for pairs) + + + it + + + as + + + a few + Terdapat beberapa naskhah untuk hikayat ini. + + + classifier for objects with stalk (eg. umbrella, mushroom) + + + classifier for long, hard and straight objects + + + million + + + about + + + therefore + + + classifier for blocky objects + + + half + + + moreover + + + must + + + to show dislike or disgusted + + + (kata penentu yang bererti itu) + + + (second-person singular possessive determiner) + + + (second-person singular object pronoun) + + + macam; bangsa + + + ke bahagian atas; ke sebelah atas + + + lebih, dan tinggi daripada itu + + + total + + + satu, esa, tunggal + + + awalan yang bermaksud satu + + + zaman, waktu + + + you + + + you + + + from + + + he/she + + + with + + + this + + + because + + + what + + + when; during + keistimewaan itu kecil golongannya dan mereka tidak akan membantu kamu ketika dalam kesusahan. + + + when + + + as well as + + + before + + + tens + + + who + + + more + + + half + + + classifier for a row of bananas + + + ouch; ugh; sigh + + + let + + + (classifier for pairs) + + + sekon, detik + + + di sebelah atas, pada bahagian atas + + + lebih tinggi daripada + + + (kata untuk menghina) + + + 0.001 kilogram + + + although + + + (used on modal verbs and adverbs in questions) + + + (used on interrogative words to indicate emphasis) + + + (used to indicate uncertainty in a statement) + + + whereas + + + sir + + + in + + + below; under + + + we (inclusive) + + + they + + + this + + + classifier for small objects, fruits + Demi angin yang menerbang dan menaburkan (debu, biji-bijian benih dan lain-lainnya + + + together with + + + like; as + + + again + + + (active translocative) + + + again; in turn + + + additionally; also + + + newly at introduced location + + + unexpectedly + + + contrastively + + + subsequently at introduced location + + + both + + + classifier for fruit flesh + + + place that is not far from the speaker + + + (classifier for corn and fruits that are quite big and hard) + + + why + + + peace be upon him + + + awak, kamu, engkau, anda + + + (kata untuk menyatakan kehairanan) + + + (penjodoh bilangan untuk benda-benda yang pipih atau tipis atau yang lebar meluas) + + + even though; although + + + anything + + + whatever + + + since + + + why + + + between + + + kata penentu posesif tunggal diri ketiga, digabung kepada kata nama + Hantar kek ini ke rumahnya. + + + kata ganti nama objek tunggal diri ketiga, digabung kepada kata kerja transitif atau kata depan + Hantar kek ini kepadanya. + + + classifier for huge objects + + + that + + + if + + + by + + + root for "pasukan" + + + also + + + various + + + half + + + classifier for curved items + + + child of + + + daughter of + + + contohnya; umpamanya + + + tidak ada yang lain, satu sahaja + + + aku, saya + + + kurun + + + i.e. + + + whole; entire + + + as such (of) + + + up to + + + penjodoh bilangan untuk haiwan + ada rapang lima belas ekor + + + classifier for blade objects (eg. sword, knife) + Hang Tuah dan kelima bersaudara itu pun sudah memanggung tiga-tiga bilah seligi pada seorang. + + + penjodoh bilangan untuk manusia + + + until + + + if + + + throughout + + + to be; is + + + (menguatkan maksud atau pengertian kata itu) + + + that + + + nominalisation + + + and if + + + the; fellow + + + (creates verbal nouns denoting states) + + + certain + + + peace be upon him + + + (first-person singular possessive determiner) + + + (first-person singular object pronoun) + + + satuan + + + mana-mana orang; sesiapa + + + abad + + + Used to form a numeral (set, many, or various) + + + Used to form an adjective (repeatedly or continuously) + + + except + + + you (plural) + + + digunakan untuk mengabung dua perkataan, frasa atau ayat + + + singular third-person pronoun for respect + + + for + + + after + + + through + + + towards + + + regarding; concerning + + + while; whereas + + + classifier for thin, wide objects + + + while + + + both + + + so that + + + so that + + + classifier for something that seems to be widely spread (eg. mat, land, field, beach) + + + each + + + (creates extended forms of words) + + + (classifier for flat, spread out things) + + + ukuran luas yang besarnya 2.471 ekar + + + 39.37 inci; 100 sentimeter + + + (digunakan sebelum nama orang lelaki Islam yang telah meninggal) + + + warsa + + + (kata sandang yang digunakan di depan nama) + Sewaktu sedang mabuk Abu memberitahu Adam bahawa dia ternampak Hawa, isteri Adam, sedang bermesra-mesra bersama Sani, si penjual sayur di pasar. + + + (penjodoh bilangan untuk kata) + + + group + + + all seven + + + to + + + for + + + you + + + on (time) + + + without + + + if + + + like + + + including + + + each + + + (place) + + + (creates verbal nouns denoting processes) + + + own; self + + + after + + + behind + + + billion + + + classifier for weapon + + + classifier for rope-like items like ropes, threads, necklaces + + + menjadikan sesuatu sebagai maksud dalam kata dasar + + + roll + + + any + + + a group of + + + too much + + + son of + + + jangka masa sepuluh tahun, dasawarsa + + + seribu meter + + + (panggilan untuk memuliakan) + + + long live! (battle cry) + + + auns + + + di tempat yang lebih rendah + + + even so + + + to + + + during + + + to be; is + + + but + + + how many; how much + + + according to + + + per + + + since + + + for (period) + + + around + + + singular third-person pronoun for royals and prophets + + + classifier for reading material + + + used to express regret, hate, peculiar, etc. + + + following + + + here + + + during + + + classifier for thing that have been cut or thinly sliced + + + for + + + yes + + + you + + + if + + + dekad, dasawarsa + + + (kata sandang yang lebih hormat daripada si) + + + ukuran luas, 100 m² + + + than + + + (denoting sound of rapid motion, swooping) + + + a number of + + + one + + + diff --git a/extensions/wikidata-lexemes/output/mt.xml b/extensions/wikidata-lexemes/output/mt.xml new file mode 100644 index 00000000..abd5c1b8 --- /dev/null +++ b/extensions/wikidata-lexemes/output/mt.xml @@ -0,0 +1,935 @@ + + + + + + + + + + that + + + + + + in + + + + + + + in + + + + + + + near + + + + + + except + + + + + + as + + + + + + with what + + + + + + (relating to delay, respite) + + + (relating to other, last) + + + (relating to end, hereafter) + + + + + + + + + in-numru kardinali tlieta + + + + + + + + the number four + + + + + + + + the number nine + + + + + + to + + + for + + + + + + without + + + + + + before + + + + + + until + + + + + + with + + + + + + related to work + + + + + + (curdle) + + + + + + (high, raised; ascent, rising) + + + + + + + + the number two + + + + + + + the number six + + + + + + the number fourteen + + + + + + when; as + + + + + + because + + + + + + from + + + + + + with + + + + + + against + + + + + + under + + + + + + without + + + + + + related to riding + + + + + + in order to + + + + + + (related to wool) + + + + + + Related to darkness, black + + + + + + amongst + + + in the middle of + + + + + + related to writing + + + + + + + + the number five + + + + + + the number seventeen + + + + + + but + + + + + + as many as + + + + + + before + + + + + + among + + + + + + until + + + + + + related to breaking + + + + + + (fornication) + + + (rough, vulgar, or antisocial behaviour) + + + (coughing) + + + + + + (related to sharpness, sharpening) + + + + + + (related to planting) + + + + + + (drink) + + + + + + + the number one + + + + + + + + the number seven + + + + + + the number eleven + + + + + + the number fifteen + + + + + + or + + + + + + but + + + + + + if + + + + + + like; as + + + + + + between + + + + + + to + + + + + + as much as + + + + + + during + + + + + + (outdoing) + + + (bending) + + + + + + (quantity) + + + + + + (staying, remaining, persisting) + + + + + + + + the number ten + + + + + + the number eighteen + + + + + + + + + + + + + + + + + + + + + + + + + artiklu definit + + + + + + "and"; used to connect two noun phrases, adjectives or adverbs + + + + + + in order to, so that + + + + + + when + + + + + + the number sixteen + + + + + + outside of + + + + + + during + + + + + + related to doing + + + + + + (related to existence) + + + + + + related to stealing + + + + + + (relating to the eye) + + + + + + (one, single, lone) + + + + + + (milk) + + + + + + related to being old + + + + + + + + the number eight + + + + + + the number twelve + + + + + + the number thirteen + + + + + + the number nineteen + + + + + + the number twenty + + + + + + where + + + + + + on + + + over + + + + + + of + + + + + + to; with + + + + + + near + + + + + + throughout + + + + + + (anxiety) + + + (misfortune, sadness) + + + + + + (related to thinking, reckoning) + + + + + + (related to circumcision) + + + + that + + + in + + + in + + + near + + + except + + + as + + + with what + + + (relating to delay, respite) + + + (relating to other, last) + + + (relating to end, hereafter) + + + in-numru kardinali tlieta + + + the number four + + + the number nine + + + to + + + for + + + without + + + before + + + until + + + with + + + related to work + + + (curdle) + + + (high, raised; ascent, rising) + + + the number two + + + the number six + + + the number fourteen + + + when; as + + + because + + + from + + + with + + + against + + + under + + + without + + + related to riding + + + in order to + + + (related to wool) + + + Related to darkness, black + + + amongst + + + in the middle of + + + related to writing + + + the number five + + + the number seventeen + + + but + + + as many as + + + before + + + among + + + until + + + related to breaking + + + (fornication) + + + (rough, vulgar, or antisocial behaviour) + + + (coughing) + + + (related to sharpness, sharpening) + + + (related to planting) + + + (drink) + + + the number one + + + the number seven + + + the number eleven + + + the number fifteen + + + or + + + but + + + if + + + like; as + + + between + + + to + + + as much as + + + during + + + (outdoing) + + + (bending) + + + (quantity) + + + (staying, remaining, persisting) + + + the number ten + + + the number eighteen + + + artiklu definit + + + "and"; used to connect two noun phrases, adjectives or adverbs + + + in order to, so that + + + when + + + the number sixteen + + + outside of + + + during + + + related to doing + + + (related to existence) + + + related to stealing + + + (relating to the eye) + + + (one, single, lone) + + + (milk) + + + related to being old + + + the number eight + + + the number twelve + + + the number thirteen + + + the number nineteen + + + the number twenty + + + where + + + on + + + over + + + of + + + to; with + + + near + + + throughout + + + (anxiety) + + + (misfortune, sadness) + + + (related to thinking, reckoning) + + + (related to circumcision) + + + diff --git a/extensions/wikidata-lexemes/output/my.xml b/extensions/wikidata-lexemes/output/my.xml new file mode 100644 index 00000000..48123f8a --- /dev/null +++ b/extensions/wikidata-lexemes/output/my.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/nb.xml b/extensions/wikidata-lexemes/output/nb.xml new file mode 100644 index 00000000..affa7170 --- /dev/null +++ b/extensions/wikidata-lexemes/output/nb.xml @@ -0,0 +1,5122 @@ + + + + + + + + + + + a/an (indefinite article) + + + + + + tallet 18 + + + + + + tallet 19 + + + + + + if, whether + + + + + + among + + + + + + because + + + + + + + about or around + + + + + + in front of + + + + + + behind + + + + + + + + partikkel som brukes til å danne genitiv + + + + + + for sure + + + + + + + + + (one's) own + + + + + + + + + this + + + + + + used in expressions to express displeasure + + + + + + oof + + + + + + + used for scaring someone + + + + + + sound used to imitate a caw (crow call) + + + + + + the sound a cow makes + + + + + + maybe/I don't know + + + + + + the sound a pigeon makes + + + + + + sound that pigs make + + + + + + the sound of a bang (especially gunshots) + + + + + + the sound of deflation + + + + + + face to face, turned towards + + + in relation to + + + + + + whether + + + + + + except, besides + + + (pass) by + + + + + + like + + + + in a way, almost, apparently + + + + pretend + + + + + + + between + + + + some times, once in a while + + + + + + next to, near + + + + + + touching, in contact with + + + over in + + + + + + from some distance away + + + + + + opposite, facing + + + + + + + from the south + + + + + + + + + + out of, from (only used in some Latin-based expressions) + + + + + + abracadabra (said when doing a magic trick) + + + + + + + oh my god + + + + + + the + + + + + + the + + + + + + beyond + + + + + + + fuck! + + + + + + + on top of, on the surface of + + + + + + + east of + + + + + + + + + + used to give a hesitant answer; neither yes nor no + + + + + + for (only in Latin-derived terms) + + + + + + outside (of) + + + + + + + anti (against) + + + + + + behind + + + + to somewhere behind + + + + + + + behind, following something/someone + + + + + + bottoms-up! + + + + + + in an easterly direction + + + + + + + contra; against + + + + + + when (starting a clause) + + + since, because (starting a clause) + + + + + + damn! + + + + + + + + used as an amplified version of "jo" + + + + + + better (used to amplify; as in "you better stop") + + + + + + + + all right + + + + + + + second-person singular pronoun + + + one (impersonal pronoun) + + + + + + + + tallet 0 + + + + + + + tallet 8 + + + + + + tallet 30 + + + + + + tallet 80 + + + + + + tallet 100 + + + + + + tallet 1000 + + + + + + like + + + that + + + + + + as well as + + + + + + both + + + + + + no matter what + + + + + + according to + + + + + + yuck + + + + + + used to express contempt or blame + + + + + + used to express confusion + + + used to express disagreement or contempt + + + + + + either (or) + + + whether (or not) + + + + + + towards + + + + later + + + + out from and downwards + + + + further, more than + + + + + + + used to imitate a duck or a frog + + + + + + used to imitate the sound of frogs or ducks + + + + + + used to repeat a beeping sound + + + + + + in as easterly direction + + + + + + + forward; in a forward direction + + + + in the near future + + + + progress + + + + + + + in front of + + + + rather than + + + + + + + along + + + + + + + + the one and only + + + + + + + on the outside of + + + later on + + + + + + on the outside (of) + + + + + + + on the other side of + + + beyond + + + + + + exclamation said to one who sneezes ("Bless you!") + + + + + + + before; earlier than + + + + + + + a woof (a bark) + + + + + + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + + + + + used to express surprise + + + + + + thank you + + + + + + word used to attract chickens + + + + + + darn (mild version of "faen") + + + + + + if, provided that + + + + + + + + + north of + + + + + + + + + haha; used to imitate laughter + + + + + + + used to make a horse stop + + + + + + + down on + + + touching + + + + + + so + + + + + + relating to, about + + + + + + + on the back (of) + + + + + + + in(side) the back part + + + + + + billion (long scale)/trillion (short scale) + + + + + + on the eastern side of + + + + + + + oops! + + + + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + + + + + even though + + + + + + + + + + my, mine + + + + + + + + + his, her/hers or its + + + + + + + + all + + + + + + + every + + + each + + + + + + + she; third-person singular pronoun + + + + + + + + tallet 1 + + + + + + tallet 7 + + + + + + + tallet 7 + + + + + + + tallet 12 + + + + + + tallet 40 + + + + + + tallet 50 + + + + + + around, about + + + via, by + + + next to + + + relating to, about + + + + during + + + + + + to (a destination) + + + towards + + + (intended) for + + + (in order) to + + + belonging to + + + + + + towards + + + + just before + + + against + + + + + + + + self + + + + + + + through + + + + + + both, as well as + + + + + + at (about a location) + + + next to, with + + + belonging to + + + with(in one's mind) + + + + + + previous + + + + + + + next + + + + + + + meow + + + + + + used to show contempt + + + + + + + inside, behind + + + + + + + jeeze + + + + + + + used when something is overwhelming or surprising + + + + + + sound bells make + + + + + + the sound of a gun going off + + + + + + used to express a weak, beeping sound + + + + + + used to call a dog + + + + + + used to mimic the sound of a bell + + + + + + a plump sound, like a rock falling into water + + + + + + past (passing by) + + + past (finished, over) + + + + + + + + our + + + + + + binde-s + + + + + + on the top of + + + + + + word used to lure cats + + + + + + from above + + + + + + + + + + + from below + + + + + + + + + + + from below + + + + + + + + + + + cheers! (a toast) + + + + + + than + + + + + + used to attract attention + + + + + + 42 (number) + + + + + + if, provided that + + + + + + + + + on top of, on the surface of + + + + + + + down inside + + + + + + amen + + + + + + north of + + + + + + + + + hello! + + + + + + + out onto + + + + out on + + + + + + + a yell of warning + + + + + + + wow! + + + + + + used to make a horse stop + + + + + + + used to replicate laughter or giggling + + + + + + around, encircling + + + around (in different parts of a place) + + + past, along + + + throughout (about time) + + + around (near, close) + + + + + + from the outside + + + + + + + + used to imitate the sound of clicking + + + + + + used to express surprise + + + + + + to the rear of (on a ship) + + + + + + your, yours (plural) + + + their, theirs (plural) + + + + + + bravissimo + + + + + + of, from + + + of, in + + + + + + and (in Latin expressions) + + + + + + said when tickling children + + + + + + last year + + + + + + although/even though + + + + + + + + + + + even if + + + + + + + + + + + other + + + + + + + we; first-person plural pronoun + + + + + + tallet 2 + + + + + + tallet 3 + + + + + + tallet 4 + + + + + + tallet 5 + + + + + + tallet 10 + + + + + + tallet 13 + + + + + + tallet 14 + + + + + + tallet 15 + + + + + + tallet 90 + + + + + + with + + + including + + + concurrent + + + in the same direction as + + + having, containing + + + using + + + + + + or + + + + + + between + + + + + + + while + + + + + + only (one) + + + + + + outside (of) + + + + + + + + + thusly + + + + + + + boo + + + + + + used to express discomfort + + + used to imitate sobbing + + + + + + used to mimic laughter + + + used to express surprise or schadenfreude + + + + + + bang + + + + + + used to express contempt or disgust + + + + + + used in front of "hurra" (hooray) + + + + + + oof + + + + + + + hush + + + + + + + yum (used to indicate something tastes good) + + + + + + in an easterly direction + + + + + + + neither (... nor ...) + + + + + + + used to mimic the sound of a loud bang + + + + + + used to mimic the sound of something hitting water + + + + + + forward; in a forward direction + + + + in the near future + + + + progress + + + + + + + via, by (as in "stop by") + + + just inside + + + + + + in between + + + some times + + + in some places + + + + + + despite + + + + + + instead of + + + + + + + the one and only + + + + + + + from the outside + + + + + + + + inwards, in towards + + + + + + further down + + + + below + + + + + + + + towards the underside of something + + + towards the lower part of something + + + + + + used to imitate a sudden, loud sound + + + + + + to, up, on, for (especially in expressions borrowed from French) + + + + + + + exclamation said to one who sneezes ("Bless you!") + + + + + + + + they; gender-neutral third-person singular pronoun + + + + + + goodbye + + + + + + + used to express a sudden understanding of something + + + + + + east of + + + + + + + + + + west of + + + + + + + + + + from the inside + + + + + + haha; used to imitate laughter + + + + + + + used to express surprise + + + + + + around, about + + + + + + O!, oh! + + + + + + used when teasing (mostly by children) + + + + + + à la; in the style/manner of + + + + + + + behind (of a ship) + + + + + + his + + + + + + forward, along + + + + + + + from the east + + + + + + + + over on, over there + + + + + + bravo! + + + + + + by the time, before + + + + + + sorry + + + + + + better (used to amplify; as in "you better stop") + + + + + + + + damn! + + + + + + + + even though + + + + + + + + any + + + + + + + + + they; third-person plural pronoun + + + + + + it (for words of neuter genus) + + + + + + in + + + inside + + + + + + near, nearby + + + around (about time) + + + by + + + + + + on + + + on top of + + + + + + because, since + + + + + + after + + + + + + + under, below + + + + + + + some + + + any + + + + + + + for sure + + + + + + + what + + + + + + if + + + + + + + + regarding + + + + + + used to show contempt + + + + + + + used to express disgust + + + used to give well-wishes + + + + + + next to + + + until + + + + + + towards + + + + later + + + + out from and downwards + + + + further, more than + + + + + + + around, about + + + + + + good morning, hello (greeting) + + + goodbye + + + + + + + higher up (than) + + + + above (about text) + + + + + + + towards + + + against, in opposition to + + + + + + + in addition to, except for + + + without + + + + + + away (from) + + + + + + right next to, against + + + up to + + + + + + all; every single one + + + everyone + + + + + + through + + + + + + like + + + + in a way, almost, apparently + + + + pretend + + + + + + + indeterminate, large amount + + + + + + a woof (a bark) + + + + + + + + if, provided that + + + + + + + + + south of + + + + + + + + + hah! + + + + + + out onto + + + + out on + + + + + + + given (what) + + + + + + forward, along + + + + + + + along + + + + + + + + away and through + + + + + + below and over there + + + + + + they (undetermined) + + + + + + used to replicate the sound of snapping a photo + + + + + + + + + the other (out of two, when used in singular); the others (out of several, when used in plural) + + + remote (in time) + + + + + + used to imitate the sound of a small bell + + + + + + even if + + + + + + + + + + your, yours + + + + + + + + which (one) + + + what kind + + + + + + + second-person plural pronoun + + + + + + tallet 16 + + + + + + tallet 70 + + + + + + and + + + + + + infinitivsmerke + + + + + + from + + + + + + + over, above + + + from above + + + along the surface of + + + via + + + more than + + + + + + + self + + + + + + + no + + + + + + because, due to + + + + + + if + + + + + + + + if + + + + + + + + + + one and a half + + + + + + the sound a sheep makes + + + used when teasing + + + + + + hello + + + + + + + inside, behind + + + + + + + something said to children to make them sleep + + + + + + hail! + + + + + + hush + + + + + + + yep + + + + + + wonder if + + + + + + in a westerly direction + + + + + + except + + + + + + neither (... nor ...) + + + + + + + used to express a neutral feeling towards something + + + + + + used to mimic the sound of a splash + + + + + + upwards + + + + northwards + + + + + + + downwards + + + + along, down (the street, etc.) + + + + + southwards + + + + + + + instead of + + + + + + + from the outside + + + + + + + + one's (as in "one's own ...") + + + + + + + + thus (in certain expressions) + + + + + + hurrah + + + + + + on the outside (of) + + + + + + + opposite, facing + + + + + + + sound that ringing bells make + + + + + + sound one makes when in pain + + + sound used to express unexpected disappointment + + + + + + from the west + + + + + + + + used for something that happens suddenly + + + + + + beyond + + + + + + + fuck! + + + + + + + downhill + + + + + + used to express laughter or joy + + + + + + used to imitate the sound of something hitting something else + + + + + + used to replicate laughter + + + + + + à la; in the style/manner of + + + + + + + their (possessive, singular gender-neutral) + + + + + + behind + + + + to somewhere behind + + + + + + + behind + + + + + + + used to indicate that something is decided + + + + + + used to express surprise + + + of course, no problem + + + + + + past, on the other side + + + + + + over there and next to + + + + + + oh well, oh really + + + + + + better (used to amplify; as in "you better stop") + + + + + + + + thank God, thank heavens + + + + + + + thank God, thank heavens + + + + + + + damn! + + + + + + + + below + + + + + down by; via somewhere that lies further down from one's location + + + + + + + who (in questions) + + + whoever + + + + + + + I; first-person singular pronoun + + + + + + it (for words of masculine genus) + + + it (for words of feminine genus) + + + + + + tallet 6 + + + + + + tallet 9 + + + + + + tallet 11 + + + + + + tallet 17 + + + + + + tallet 60 + + + + + + that (as in "he thought that ...") + + + + + + one(self) + + + + + + but + + + + + + same + + + + + + without + + + + + + used as an expression of glee or surprise + + + used to attract someone's attention + + + + + + used when observing something speedy + + + + + + huh + + + + + + via + + + + + + jeeze + + + + + + + used to call goats + + + + + + despite + + + + + + the sound chickens make + + + + + + though, despite + + + + + + + in a northerly direction + + + + + + sound used to imitate (steam) trains + + + + + + from (in Dutch names) + + + + + + in front of + + + + rather than + + + + + + + farewell + + + + + + + binde-e + + + + + + amongst + + + now and then + + + + + + one (impersonal pronoun) + + + + + + + + used to express surprise, anger or other emotions; damn, darn, shit, fuck, hell + + + + + + cock-a-doodle-doo + + + + + + just as, in the same moment + + + because + + + + + + to, up, on, for (especially in expressions borrowed from French) + + + + + + + from the north + + + + + + + + + + from the south + + + + + + + + + + from above + + + + + + + + + + + abracadabra (said when doing a magic trick) + + + + + + + a woof (a bark) + + + + + + + + if, provided that + + + + + + + + + alongside + + + + + + everything; all things + + + + + + twenty-one + + + + + + south of + + + + + + + + + used to express sorrow, pain or condemnation + + + + + + because + + + + + + + from above + + + + + + + + + + + towards + + + + + + + her, hers + + + + + + on the back (of) + + + + in addition + + + + + + from the east + + + + + + + + on the eastern side of + + + + + + + by, up to (about proximity) + + + + + + thump (used to imitate sound of something hitting/falling) + + + + + + that one (used behind pronouns) + + + + + + used to imitate the sound of a doorbell + + + + + + down by; via somewhere that lies further down from one's location + + + + in a place that is further down + + + + + + tallet 0 + + + + + + + + every second + + + + + + + he; third-person singular pronoun + + + + + + tallet 20 + + + + + + off + + + of + + + + + + in front of + + + in relation to + + + in support of + + + considering + + + in order (to) + + + because of + + + intended for + + + in spite of + + + for (about time) + + + too (much, little, etc.) + + + + + + one; a general pronoun + + + + + + + + + + thus + + + + + + + + + no/none + + + + + + by, within + + + + + + high up + + + inside of + + + + + + yes + + + + + + yes (in opposition to a negatively phrased question) + + + + + + per + + + + + + along + + + + + + used to express surprise + + + used to express impatience + + + used to express annoyance + + + used to calm someone down + + + + + + each other + + + + + + sound ducks make + + + + + + + + + one of several + + + lots, plenty + + + several, many + + + + + + higher up (than) + + + + above (about text) + + + + + + + in a southerly direction + + + + + + + in a southerly direction + + + + + + + post (after) + + + + + + farewell + + + + + + + used to mimic the sound of a (steam) train + + + + + + from + + + + + + + + + + (one's) own + + + + + + + further down + + + + below + + + + + + + + used to imitate the sound of a duck or goose + + + + + + from the north + + + + + + + from Northern Norway + + + + + + from the north + + + + + + + from Northern Norway + + + + + + from the east + + + + + + + + from the east + + + + + + + + from below + + + + + + + + + + + inside (of) + + + + + + exclamation used to praise God + + + exclamation of joy, happiness + + + + + + east of + + + + + + + + + + west of + + + + + + + + + + a yell of warning + + + + + + + used to replicate the sound of clearing one's throat + + + + + + sound used to expressed surprise + + + + + + even + + + up to and including + + + + + + from the east + + + + + + + + in an easterly direction + + + + + + + although/despite + + + + + a/an (indefinite article) + + + tallet 18 + + + tallet 19 + + + if, whether + + + among + + + because + + + about or around + + + in front of + + + behind + + + partikkel som brukes til å danne genitiv + + + for sure + + + (one's) own + + + this + + + used in expressions to express displeasure + + + oof + + + used for scaring someone + + + sound used to imitate a caw (crow call) + + + the sound a cow makes + + + maybe/I don't know + + + the sound a pigeon makes + + + sound that pigs make + + + the sound of a bang (especially gunshots) + + + the sound of deflation + + + face to face, turned towards + + + in relation to + + + whether + + + except, besides + + + (pass) by + + + like + + + in a way, almost, apparently + + + pretend + + + between + + + some times, once in a while + + + next to, near + + + touching, in contact with + + + over in + + + from some distance away + + + opposite, facing + + + from the south + + + out of, from (only used in some Latin-based expressions) + + + abracadabra (said when doing a magic trick) + + + oh my god + + + the + + + the + + + beyond + + + fuck! + + + on top of, on the surface of + + + east of + + + used to give a hesitant answer; neither yes nor no + + + for (only in Latin-derived terms) + + + outside (of) + + + anti (against) + + + behind + + + to somewhere behind + + + behind, following something/someone + + + bottoms-up! + + + in an easterly direction + + + contra; against + + + when (starting a clause) + + + since, because (starting a clause) + + + damn! + + + used as an amplified version of "jo" + + + better (used to amplify; as in "you better stop") + + + all right + + + second-person singular pronoun + + + one (impersonal pronoun) + + + tallet 0 + + + tallet 8 + + + tallet 30 + + + tallet 80 + + + tallet 100 + + + tallet 1000 + + + like + + + that + + + as well as + + + both + + + no matter what + + + according to + + + yuck + + + used to express contempt or blame + + + used to express confusion + + + used to express disagreement or contempt + + + either (or) + + + whether (or not) + + + towards + + + later + + + out from and downwards + + + further, more than + + + used to imitate a duck or a frog + + + used to imitate the sound of frogs or ducks + + + used to repeat a beeping sound + + + in as easterly direction + + + forward; in a forward direction + + + in the near future + + + progress + + + in front of + + + rather than + + + along + + + the one and only + + + on the outside of + + + later on + + + on the outside (of) + + + on the other side of + + + beyond + + + exclamation said to one who sneezes ("Bless you!") + + + before; earlier than + + + a woof (a bark) + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + used to express surprise + + + thank you + + + word used to attract chickens + + + darn (mild version of "faen") + + + if, provided that + + + north of + + + haha; used to imitate laughter + + + used to make a horse stop + + + down on + + + touching + + + so + + + relating to, about + + + on the back (of) + + + in(side) the back part + + + billion (long scale)/trillion (short scale) + + + on the eastern side of + + + oops! + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + even though + + + my, mine + + + his, her/hers or its + + + all + + + every + + + each + + + she; third-person singular pronoun + + + tallet 1 + + + tallet 7 + + + tallet 7 + + + tallet 12 + + + tallet 40 + + + tallet 50 + + + around, about + + + via, by + + + next to + + + relating to, about + + + during + + + to (a destination) + + + towards + + + (intended) for + + + (in order) to + + + belonging to + + + towards + + + just before + + + against + + + self + + + through + + + both, as well as + + + at (about a location) + + + next to, with + + + belonging to + + + with(in one's mind) + + + previous + + + next + + + meow + + + used to show contempt + + + inside, behind + + + jeeze + + + used when something is overwhelming or surprising + + + sound bells make + + + the sound of a gun going off + + + used to express a weak, beeping sound + + + used to call a dog + + + used to mimic the sound of a bell + + + a plump sound, like a rock falling into water + + + past (passing by) + + + past (finished, over) + + + our + + + binde-s + + + on the top of + + + word used to lure cats + + + from above + + + from below + + + from below + + + cheers! (a toast) + + + than + + + used to attract attention + + + 42 (number) + + + if, provided that + + + on top of, on the surface of + + + down inside + + + amen + + + north of + + + hello! + + + out onto + + + out on + + + a yell of warning + + + wow! + + + used to make a horse stop + + + used to replicate laughter or giggling + + + around, encircling + + + around (in different parts of a place) + + + past, along + + + throughout (about time) + + + around (near, close) + + + from the outside + + + used to imitate the sound of clicking + + + used to express surprise + + + to the rear of (on a ship) + + + your, yours (plural) + + + their, theirs (plural) + + + bravissimo + + + of, from + + + of, in + + + and (in Latin expressions) + + + said when tickling children + + + last year + + + although/even though + + + even if + + + other + + + we; first-person plural pronoun + + + tallet 2 + + + tallet 3 + + + tallet 4 + + + tallet 5 + + + tallet 10 + + + tallet 13 + + + tallet 14 + + + tallet 15 + + + tallet 90 + + + with + + + including + + + concurrent + + + in the same direction as + + + having, containing + + + using + + + or + + + between + + + while + + + only (one) + + + outside (of) + + + thusly + + + boo + + + used to express discomfort + + + used to imitate sobbing + + + used to mimic laughter + + + used to express surprise or schadenfreude + + + bang + + + used to express contempt or disgust + + + used in front of "hurra" (hooray) + + + oof + + + hush + + + yum (used to indicate something tastes good) + + + in an easterly direction + + + neither (... nor ...) + + + used to mimic the sound of a loud bang + + + used to mimic the sound of something hitting water + + + forward; in a forward direction + + + in the near future + + + progress + + + via, by (as in "stop by") + + + just inside + + + in between + + + some times + + + in some places + + + despite + + + instead of + + + the one and only + + + from the outside + + + inwards, in towards + + + further down + + + below + + + towards the underside of something + + + towards the lower part of something + + + used to imitate a sudden, loud sound + + + to, up, on, for (especially in expressions borrowed from French) + + + exclamation said to one who sneezes ("Bless you!") + + + they; gender-neutral third-person singular pronoun + + + goodbye + + + used to express a sudden understanding of something + + + east of + + + west of + + + from the inside + + + haha; used to imitate laughter + + + used to express surprise + + + around, about + + + O!, oh! + + + used when teasing (mostly by children) + + + à la; in the style/manner of + + + behind (of a ship) + + + his + + + forward, along + + + from the east + + + over on, over there + + + bravo! + + + by the time, before + + + sorry + + + better (used to amplify; as in "you better stop") + + + damn! + + + even though + + + any + + + they; third-person plural pronoun + + + it (for words of neuter genus) + + + in + + + inside + + + near, nearby + + + around (about time) + + + by + + + on + + + on top of + + + because, since + + + after + + + under, below + + + some + + + any + + + for sure + + + what + + + if + + + regarding + + + used to show contempt + + + used to express disgust + + + used to give well-wishes + + + next to + + + until + + + towards + + + later + + + out from and downwards + + + further, more than + + + around, about + + + good morning, hello (greeting) + + + goodbye + + + higher up (than) + + + above (about text) + + + towards + + + against, in opposition to + + + in addition to, except for + + + without + + + away (from) + + + right next to, against + + + up to + + + all; every single one + + + everyone + + + through + + + like + + + in a way, almost, apparently + + + pretend + + + indeterminate, large amount + + + a woof (a bark) + + + if, provided that + + + south of + + + hah! + + + out onto + + + out on + + + given (what) + + + forward, along + + + along + + + away and through + + + below and over there + + + they (undetermined) + + + used to replicate the sound of snapping a photo + + + the other (out of two, when used in singular); the others (out of several, when used in plural) + + + remote (in time) + + + used to imitate the sound of a small bell + + + even if + + + your, yours + + + which (one) + + + what kind + + + second-person plural pronoun + + + tallet 16 + + + tallet 70 + + + and + + + infinitivsmerke + + + from + + + over, above + + + from above + + + along the surface of + + + via + + + more than + + + self + + + no + + + because, due to + + + if + + + if + + + one and a half + + + the sound a sheep makes + + + used when teasing + + + hello + + + inside, behind + + + something said to children to make them sleep + + + hail! + + + hush + + + yep + + + wonder if + + + in a westerly direction + + + except + + + neither (... nor ...) + + + used to express a neutral feeling towards something + + + used to mimic the sound of a splash + + + upwards + + + northwards + + + downwards + + + along, down (the street, etc.) + + + southwards + + + instead of + + + from the outside + + + one's (as in "one's own ...") + + + thus (in certain expressions) + + + hurrah + + + on the outside (of) + + + opposite, facing + + + sound that ringing bells make + + + sound one makes when in pain + + + sound used to express unexpected disappointment + + + from the west + + + used for something that happens suddenly + + + beyond + + + fuck! + + + downhill + + + used to express laughter or joy + + + used to imitate the sound of something hitting something else + + + used to replicate laughter + + + à la; in the style/manner of + + + their (possessive, singular gender-neutral) + + + behind + + + to somewhere behind + + + behind + + + used to indicate that something is decided + + + used to express surprise + + + of course, no problem + + + past, on the other side + + + over there and next to + + + oh well, oh really + + + better (used to amplify; as in "you better stop") + + + thank God, thank heavens + + + thank God, thank heavens + + + damn! + + + below + + + down by; via somewhere that lies further down from one's location + + + who (in questions) + + + whoever + + + I; first-person singular pronoun + + + it (for words of masculine genus) + + + it (for words of feminine genus) + + + tallet 6 + + + tallet 9 + + + tallet 11 + + + tallet 17 + + + tallet 60 + + + that (as in "he thought that ...") + + + one(self) + + + but + + + same + + + without + + + used as an expression of glee or surprise + + + used to attract someone's attention + + + used when observing something speedy + + + huh + + + via + + + jeeze + + + used to call goats + + + despite + + + the sound chickens make + + + though, despite + + + in a northerly direction + + + sound used to imitate (steam) trains + + + from (in Dutch names) + + + in front of + + + rather than + + + farewell + + + binde-e + + + amongst + + + now and then + + + one (impersonal pronoun) + + + used to express surprise, anger or other emotions; damn, darn, shit, fuck, hell + + + cock-a-doodle-doo + + + just as, in the same moment + + + because + + + to, up, on, for (especially in expressions borrowed from French) + + + from the north + + + from the south + + + from above + + + abracadabra (said when doing a magic trick) + + + a woof (a bark) + + + if, provided that + + + alongside + + + everything; all things + + + twenty-one + + + south of + + + used to express sorrow, pain or condemnation + + + because + + + from above + + + towards + + + her, hers + + + on the back (of) + + + in addition + + + from the east + + + on the eastern side of + + + by, up to (about proximity) + + + thump (used to imitate sound of something hitting/falling) + + + that one (used behind pronouns) + + + used to imitate the sound of a doorbell + + + down by; via somewhere that lies further down from one's location + + + in a place that is further down + + + tallet 0 + + + every second + + + he; third-person singular pronoun + + + tallet 20 + + + off + + + of + + + in front of + + + in relation to + + + in support of + + + considering + + + in order (to) + + + because of + + + intended for + + + in spite of + + + for (about time) + + + too (much, little, etc.) + + + one; a general pronoun + + + thus + + + no/none + + + by, within + + + high up + + + inside of + + + yes + + + yes (in opposition to a negatively phrased question) + + + per + + + along + + + used to express surprise + + + used to express impatience + + + used to express annoyance + + + used to calm someone down + + + each other + + + sound ducks make + + + one of several + + + lots, plenty + + + several, many + + + higher up (than) + + + above (about text) + + + in a southerly direction + + + in a southerly direction + + + post (after) + + + farewell + + + used to mimic the sound of a (steam) train + + + from + + + (one's) own + + + further down + + + below + + + used to imitate the sound of a duck or goose + + + from the north + + + from Northern Norway + + + from the north + + + from Northern Norway + + + from the east + + + from the east + + + from below + + + inside (of) + + + exclamation used to praise God + + + exclamation of joy, happiness + + + east of + + + west of + + + a yell of warning + + + used to replicate the sound of clearing one's throat + + + sound used to expressed surprise + + + even + + + up to and including + + + from the east + + + in an easterly direction + + + although/despite + + + diff --git a/extensions/wikidata-lexemes/output/nl.xml b/extensions/wikidata-lexemes/output/nl.xml new file mode 100644 index 00000000..e30f5d9a --- /dev/null +++ b/extensions/wikidata-lexemes/output/nl.xml @@ -0,0 +1,835 @@ + + + + + + + + + + "400", het getal tussen driehonderdnegenennegentig en vierhonderdeen, vier maal honderd + We zaten er met z'n vierhonderden op een kluitje, ingeklemd door een strand en een weg met tientallen vrijwel eendere hotels. + + + + + + it + + + + + + + + + + + van jou + + + + + + (stemresultaat) + + + + + + + one + + + + + + + + the number two + + + + + + + the number 9 + + + + + + the number 19 + + + + + + hello + + + + + + + onverbogen vorm van de overtreffende trap van goed + + + als bevestiging dat iets goed is om te doen + + + tamelijk + + + + + + + één en een half, 1,5 + + + + + + Begroeting bij een ontmoeting met iemand. + + + + + + + + you + + + you all + + + + + + + + + + + persoonlijk voornaamwoord (enkelvoud) + + + + + + + + + + he, third person masculine singular pronoun + + + + + + + + + + persoonlijk voornaamwoord + + + + + + verbonden met, tegen, tegenaan + + + de ontvangende persoon (datief) + + + + + + op het tijdstip dat + + + + + + + + persoonlijk voornaamwoord + + + + + + + the number 11 + + + + + + + the number 30 + + + + + + uitroep om iemands opmerkzaamheid te wekken + + + uiting van verwondering + + + + + + (used to call animals) + + + + + + en anders + + + dat wel of niet + + + anders gezegd + + + bij benadering + + + + + + + + + + + plaats waar delfstoffen worden gewonnen + + + + + + + + + + the (definite article) + Het huis. + + + + + + + + de een en de ander van twee, het tweetal + Wat een schattige foto van beide honden. + + + + + + + + + alle ; allemaal + Mag ik ervan uitgaan dat allen hiermee instemmen. + + + + + + the number five + + + + + + the number 20 + + + + + + and + + + + + + + + + + your + + + + + + + + a small amount + + + + + + each other + + + + + + + uiting van verbazing en/of misnoegen + + + + + + van, uit + + + + + + than + + + then + + + + + + the number three + + + + + + + the number 8 + + + + + + the number 18 + + + + + + vragend in welke richting? + + + betrekkelijk in welke richting + + + + + + goodbye + + + + + + dewijl + + + + + + hè! / echt! + + + + + + + + + + komt na nul en vóór twee, in Arabische cijfers 1, in Romeinse cijfers + + + + + + + + + + + + bezit aanduidend door een derde persoon vrouwelijk enkelvoud + + + accusatief van zij, derde persoon enkelvoud + + + + + + such + + + + + + such + + + + + + the number 14 + + + + + + the number 16 + + + + + + niets + + + + + + + + + + + (voornaamwoord) + + + + + + omdat, sinds + + + + + + the number four + + + + + + + the number 12 + + + + + + the number 13 + + + + + + Acthername + + + + + + + + + + you + + + + + + familienaam prefix + + + + + + such + + + + + + one another + + + + + + + de handelende persoon bij een lijdende vorm + + + de oorzaak + + + in + + + tijdens, gedurende + + + doorheen, binnenin van de ene kant naar de andere kant + + + doorheen, aan de ene kant naar binnen en aan de andere kant naar buiten + + + als achterzetsel: doorheen, van de ene kant naar de andere kant, aan de ene kant naar binnen en aan de andere kant naar buiten + + + als achterzetsel: van het begin tot het einde, gedurende + + + door ... te + infinitief; de procedure die gevolgd wordt om het doel te bereiken + + + de ene stof is door de andere gemengd + + + + + + een onbepaalde of niet-gespecificeerde, stoffelijke of onstoffelijke zaak; een ongenoemd voorwerp + + + + + + the number six + + + + + + the number seven + + + + + + the number 15 + + + + + + the number 17 + + + + + + ontkenning + + + + + + drukt uit dat men dit eigenlijk had kunnen weten + + + + "400", het getal tussen driehonderdnegenennegentig en vierhonderdeen, vier maal honderd + We zaten er met z'n vierhonderden op een kluitje, ingeklemd door een strand en een weg met tientallen vrijwel eendere hotels. + + + it + + + van jou + + + (stemresultaat) + + + one + + + the number two + + + the number 9 + + + the number 19 + + + hello + + + onverbogen vorm van de overtreffende trap van goed + + + als bevestiging dat iets goed is om te doen + + + tamelijk + + + één en een half, 1,5 + + + Begroeting bij een ontmoeting met iemand. + + + you + + + you all + + + persoonlijk voornaamwoord (enkelvoud) + + + he, third person masculine singular pronoun + + + persoonlijk voornaamwoord + + + verbonden met, tegen, tegenaan + + + de ontvangende persoon (datief) + + + op het tijdstip dat + + + persoonlijk voornaamwoord + + + the number 11 + + + the number 30 + + + uitroep om iemands opmerkzaamheid te wekken + + + uiting van verwondering + + + (used to call animals) + + + en anders + + + dat wel of niet + + + anders gezegd + + + bij benadering + + + plaats waar delfstoffen worden gewonnen + + + the (definite article) + Het huis. + + + de een en de ander van twee, het tweetal + Wat een schattige foto van beide honden. + + + alle ; allemaal + Mag ik ervan uitgaan dat allen hiermee instemmen. + + + the number five + + + the number 20 + + + and + + + your + + + a small amount + + + each other + + + uiting van verbazing en/of misnoegen + + + van, uit + + + than + + + then + + + the number three + + + the number 8 + + + the number 18 + + + vragend in welke richting? + + + betrekkelijk in welke richting + + + goodbye + + + dewijl + + + hè! / echt! + + + komt na nul en vóór twee, in Arabische cijfers 1, in Romeinse cijfers + + + bezit aanduidend door een derde persoon vrouwelijk enkelvoud + + + accusatief van zij, derde persoon enkelvoud + + + such + + + such + + + the number 14 + + + the number 16 + + + niets + + + (voornaamwoord) + + + omdat, sinds + + + the number four + + + the number 12 + + + the number 13 + + + Acthername + + + you + + + familienaam prefix + + + such + + + one another + + + de handelende persoon bij een lijdende vorm + + + de oorzaak + + + in + + + tijdens, gedurende + + + doorheen, binnenin van de ene kant naar de andere kant + + + doorheen, aan de ene kant naar binnen en aan de andere kant naar buiten + + + als achterzetsel: doorheen, van de ene kant naar de andere kant, aan de ene kant naar binnen en aan de andere kant naar buiten + + + als achterzetsel: van het begin tot het einde, gedurende + + + door ... te + infinitief; de procedure die gevolgd wordt om het doel te bereiken + + + de ene stof is door de andere gemengd + + + een onbepaalde of niet-gespecificeerde, stoffelijke of onstoffelijke zaak; een ongenoemd voorwerp + + + the number six + + + the number seven + + + the number 15 + + + the number 17 + + + ontkenning + + + drukt uit dat men dit eigenlijk had kunnen weten + + + diff --git a/extensions/wikidata-lexemes/output/nn.xml b/extensions/wikidata-lexemes/output/nn.xml new file mode 100644 index 00000000..92bf9d8d --- /dev/null +++ b/extensions/wikidata-lexemes/output/nn.xml @@ -0,0 +1,3416 @@ + + + + + + + + + who (in questions) + + + whoever + + + + + + + + + some + + + any + + + + + + + along + + + + + + + + yes (in opposition to a negatively phrased question) + + + + + + + on (in certain expressions) + + + + + + + we; first-person plural pronoun + + + + + + next to + + + + + + around, about + + + + + + + + any + + + + + + + from the inside + + + + + + + inside, behind + + + + + + to (a destination) + + + towards + + + (intended) for + + + (in order) to + + + belonging to + + + + + + + from below + + + + + + + a connecting morpheme often used when words are combined + + + + + + used for scaring someone + + + + + + than + + + + + + from + + + + + + + nothing + + + + + + + both, as well as + + + + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + + + + + + that (one) + + + + + + because + + + + + + + right next to, against + + + up to + + + + + + like + + + that + + + + + + exclamation said to one who sneezes ("Bless you!") + + + + + + + à la; in the style/manner of + + + + + + + used to imitate the sound of clicking + + + + + + their (possessive, singular gender-neutral) + + + + + + east of + + + + + + + in an easterly direction + + + + + + over on, over there + + + + + + by, up to (about proximity) + + + + + + below and over there + + + + + + something said to children to make them sleep + + + + + + out of, from (only used in some Latin-based expressions) + + + + + + and (in Latin expressions) + + + + + + used as a dummy subject + + + used as a dummy object + + + used as a predicative + + + + + + used to imitate the sound of frogs or ducks + + + + + + they; third-person plural pronoun + + + + + + tal + + + + + + tal + + + + + + tal + + + + + + talet 5 + + + + + + tal + + + + + + tal + + + + + + away (from) + + + + + + if, whether + + + + + + on the top of + + + + + + it; third-person singular pronoun (for words of neuter genus) + + + + + + + + some (a few) + + + + + + below + + + + + + and + + + + + + second-person plural pronoun + + + + + + but + + + + + + around, encircling + + + around (in different parts of a place) + + + past, along + + + throughout (about time) + + + around (near, close) + + + + + + if + + + + + + + because + + + + + + + face to face, turned towards + + + in relation to + + + + + + zero + + + + + + + from below + + + + + + + used to replicate laughter or giggling + + + + + + goodbye + + + + + + used to express a sudden understanding of something + + + + + + used to express surprise + + + + + + even + + + up to and including + + + + + + on the back (of) + + + + in addition + + + + + + sound one makes when in pain + + + sound used to express unexpected disappointment + + + + + + from the east + + + + + + + + from the east + + + + + + + + in as easterly direction + + + + + + away towards + + + + + + bravo! + + + + + + contra; against + + + + + + damn! + + + + + + + oh well, oh really + + + + + + + + + + + + the other (out of two, when used in singular); the others (out of several, when used in plural) + + + remote (in time) + + + + + + said when tickling children + + + + + + used to imitate the sound of a doorbell + + + + + + used to imitate the sound of something hitting something else + + + + + + hush + + + + + + + zero + + + + + + + + we; first-person plural pronoun + + + + + + + second-person plural pronoun + + + + + + + she; third-person singular pronoun + + + it (for words of feminine genus) + + + + + + talet 40 + + + + + + tal + + + + + + outside (of) + + + + + + + + + + (one's) own + + + + + + talet 3 + + + + + + in front of + + + + + + + + + a/an (indefinite article) + + + + + + of + + + off + + + + + + next to, beside + + + close by + + + + + + further down + + + below + + + + + + + from the outside + + + + + + + + + + + your, yours + + + + + + through + + + + + + + + + + his, her/hers or its + + + + + + at (about a location) + + + + next to, with + + + + belonging to + + + + with(in one's mind) + + + + + + + according to + + + + + + + + according to + + + + + + + + unless + + + + + + + used to mimic laughter + + + used to express surprise or schadenfreude + + + + + + used to express confusion + + + used to express disagreement or contempt + + + + + + used when something is overwhelming or surprising + + + + + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + + + + + + à la; in the style/manner of + + + + + + + away and through + + + + + + + everything; all things + + + + + + anti (against) + + + + + + either (or) + + + + whether (or not) + + + + + + + their, theirs (plural) + + + + + + behind + + + + to somewhere behind + + + + + + + used to indicate that something is decided + + + + + + bottoms-up! + + + + + + east of + + + + + + + from the east + + + + + + + + beyond + + + + + + + along + + + + + + + + touching, in contact with + + + over in + + + + + + oh well, oh really + + + + + + + + + of, from + + + of, in + + + + + + used to imitate the sound of a small bell + + + + + + down by; via somewhere that lies further down from one's location + + + + in a place that is further down + + + + + + meow + + + + + + while + + + + + + + + I; first-person singular pronoun; the speaker + + + + + + talet 6 + + + + + + talet 1000 + + + + + + tal + + + + + + twenty-one + + + + + + after + + + + + + infinitive marker + + + + + + under, below + + + + + + out from + + + + + + each other + + + + + + + both + + + + + + + in front of + + + in relation to + + + in support of + + + considering + + + in order (to) + + + because of + + + + intended for + + + in spite of + + + for (about time) + + + too (much, little, etc.) + + + + + + + + + my, mine + + + + + + between + + + + + + through + + + + + + + one(self) + + + + + + near, nearby + + + around (about time) + + + by + + + + + + thus + + + + + + used to express contempt or blame + + + + + + opposite, facing + + + + + + + to, up, on, for (especially in expressions borrowed from French) + + + + + + + to, up, on, for (especially in expressions borrowed from French) + + + + + + + used in expressions to express displeasure + + + + + + her, hers + + + + + + behind + + + + to somewhere behind + + + + + + + among + + + + + + on the eastern side of + + + + + + past, on the other side + + + + + + thump (used to imitate sound of something hitting/falling) + + + + + + used to express contempt or disgust + + + + + + hush + + + + + + + below + + + + down by; via somewhere that lies further down from one's location + + + + + + + used to give a hesitant answer; neither yes nor no + + + + + + tal + + + + + + tal + + + + + + forward; in a forward direction + + + in the near future + + + progress + + + + + + with + + + including + + + concurrent + + + in the same direction as + + + having, containing + + + using + + + + + + face-to-face + + + opposite (location-wise) + + + in regards to + + + + + + + every + + + each + + + + + + by, within + + + + + + tal + + + + + + or + + + + + + hello + + + + + + towards + + + + just before + + + against + + + + + + used to express surprise + + + + used to express impatience + + + + used to express annoyance + + + + used to calm someone down + + + + + + + the sound a sheep makes + + + used when teasing + + + + + + huh + + + + + + used to show contempt + + + + + + + behind, following something/someone + + + + + + billion (long scale)/trillion (short scale) + + + + + + when (starting a clause) + + + + since, because (starting a clause) + + + + + + + used to replicate the sound of snapping a photo + + + + + + oh well, oh really + + + + + + + + + regarding + + + + + + that one (used behind pronouns) + + + + + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + + + + + + because, due to + + + + + + what + + + + + + at (about a location) + + + + next to, with + + + + belonging to + + + + with(in one's mind) + + + + + + + talet 9 + + + + + + tal + + + + + + tal + + + + + + tal + + + + + + around, about + + + via, by + + + next to + + + relating to, about + + + during + + + + + + towards the back + + + + + + downwards + + + along, down (the street, etc.) + + + + + southwards + + + + + + on + + + on top of + + + + + + from above + + + + + + + + behind + + + + + + + in + + + inside + + + + + + both + + + + + + + used for "it" in some common phrases + + + + + + + + talet 1 + + + + + + no + + + + + + if + + + + + + + no matter what + + + + + + around, about + + + + + + from the outside + + + + + + + + from the outside + + + + + + + + exclamation said to one who sneezes ("Bless you!") + + + + + + + used to replicate the sound of clearing one's throat + + + + + + the sound a cow makes + + + + + + sound used to expressed surprise + + + + + + opposite, facing + + + + + + + abracadabra (said when doing a magic trick) + + + + + + amen + + + + + + one's (as in "one's own ...") + + + + + + bang + + + + + + that one (used behind pronouns) + + + + + + + hello! + + + + + + from + + + + + + + without + + + + + + + + rekkjetal til to + + + + + + talet 10 + + + + + + tal + + + + + + over, above + + + from above + + + along the surface of + + + via + + + more than + + + + + + upwards + + + northwards + + + + + + towards + + + + because of + + + + belonging to + + + + + + + tal + + + + + + either (or) + + + + whether (or not) + + + + + + + + second-person singular pronoun + + + + + + he; third-person singular pronoun + + + it (for words of masculine genus) + + + + + + except, besides + + + (pass) by + + + + + + unless + + + + + + + tal + + + + + + + + this + + + + + + one; a general pronoun + + + + + + because, since + + + + + + used to express surprise + + + + used to express impatience + + + + used to express annoyance + + + + used to calm someone down + + + + + + + while + + + + + + + + + our + + + + + + according to + + + + + + + + from above + + + + + + + + from above + + + + + + + + used to express discomfort + + + used to imitate sobbing + + + + + + used when something is overwhelming or surprising + + + + + + + used to show contempt + + + + + + + used to express sorrow, pain or condemnation + + + + + + cock-a-doodle-doo + + + + + + away and through + + + + + + + on the back (of) + + + + + + + used to attract attention + + + + + + used as an amplified version of "jo" + + + + + + thank God, thank heavens + + + + + + + thank God, thank heavens + + + + + + + oof + + + + + + + nothing + + + + + + + + self + + + + + + tal + + + + + + tal + + + + + + tal + + + + + + tal + + + + + + before; earlier than + + + + + + forward, along + + + + + + out from + + + + + + by the time, before + + + + + + each other + + + + + + + beyond + + + + + + + + + all + + + + + + that (as in "he thought that ...") + + + + + + boo + + + + + + past (passing by) + + + past (finished, over) + + + + + + + + no/none + + + + + + yes (in opposition to a negatively phrased question) + + + + + + + same + + + + + + via, by (as in "stop by") + + + just inside + + + + + + used to imitate a sudden, loud sound + + + + + + yes + + + + + + used to mimic the sound of a (steam) train + + + + + + thank you + + + + + + from the inside + + + + + + + outside (of) + + + + + + + used when teasing (mostly by children) + + + + + + hah! + + + + + + used to replicate laughter + + + + + + used to express laughter or joy + + + + + + used to express surprise + + + + + + his + + + + + + in(side) the back part + + + + + + behind + + + + + + + + they; gender-neutral third-person singular pronoun + + + + + + from the east + + + + + + from some distance away + + + + + + over there and next to + + + + + + bravissimo + + + + + + when (starting a clause) + + + + since, because (starting a clause) + + + + + + + oh well, oh really + + + + + + + + + damn! + + + + + + + oof + + + + + + + fuck! + + + + who (in questions) + + + whoever + + + some + + + any + + + along + + + yes (in opposition to a negatively phrased question) + + + on (in certain expressions) + + + we; first-person plural pronoun + + + next to + + + around, about + + + any + + + from the inside + + + inside, behind + + + to (a destination) + + + towards + + + (intended) for + + + (in order) to + + + belonging to + + + from below + + + a connecting morpheme often used when words are combined + + + used for scaring someone + + + than + + + from + + + nothing + + + both, as well as + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + that (one) + + + because + + + right next to, against + + + up to + + + like + + + that + + + exclamation said to one who sneezes ("Bless you!") + + + à la; in the style/manner of + + + used to imitate the sound of clicking + + + their (possessive, singular gender-neutral) + + + east of + + + in an easterly direction + + + over on, over there + + + by, up to (about proximity) + + + below and over there + + + something said to children to make them sleep + + + out of, from (only used in some Latin-based expressions) + + + and (in Latin expressions) + + + used as a dummy subject + + + used as a dummy object + + + used as a predicative + + + used to imitate the sound of frogs or ducks + + + they; third-person plural pronoun + + + tal + + + tal + + + tal + + + talet 5 + + + tal + + + tal + + + away (from) + + + if, whether + + + on the top of + + + it; third-person singular pronoun (for words of neuter genus) + + + some (a few) + + + below + + + and + + + second-person plural pronoun + + + but + + + around, encircling + + + around (in different parts of a place) + + + past, along + + + throughout (about time) + + + around (near, close) + + + if + + + because + + + face to face, turned towards + + + in relation to + + + zero + + + from below + + + used to replicate laughter or giggling + + + goodbye + + + used to express a sudden understanding of something + + + used to express surprise + + + even + + + up to and including + + + on the back (of) + + + in addition + + + sound one makes when in pain + + + sound used to express unexpected disappointment + + + from the east + + + from the east + + + in as easterly direction + + + away towards + + + bravo! + + + contra; against + + + damn! + + + oh well, oh really + + + the other (out of two, when used in singular); the others (out of several, when used in plural) + + + remote (in time) + + + said when tickling children + + + used to imitate the sound of a doorbell + + + used to imitate the sound of something hitting something else + + + hush + + + zero + + + we; first-person plural pronoun + + + second-person plural pronoun + + + she; third-person singular pronoun + + + it (for words of feminine genus) + + + talet 40 + + + tal + + + outside (of) + + + (one's) own + + + talet 3 + + + in front of + + + a/an (indefinite article) + + + of + + + off + + + next to, beside + + + close by + + + further down + + + below + + + from the outside + + + your, yours + + + through + + + his, her/hers or its + + + at (about a location) + + + next to, with + + + belonging to + + + with(in one's mind) + + + according to + + + according to + + + unless + + + used to mimic laughter + + + used to express surprise or schadenfreude + + + used to express confusion + + + used to express disagreement or contempt + + + used when something is overwhelming or surprising + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + à la; in the style/manner of + + + away and through + + + everything; all things + + + anti (against) + + + either (or) + + + whether (or not) + + + their, theirs (plural) + + + behind + + + to somewhere behind + + + used to indicate that something is decided + + + bottoms-up! + + + east of + + + from the east + + + beyond + + + along + + + touching, in contact with + + + over in + + + oh well, oh really + + + of, from + + + of, in + + + used to imitate the sound of a small bell + + + down by; via somewhere that lies further down from one's location + + + in a place that is further down + + + meow + + + while + + + I; first-person singular pronoun; the speaker + + + talet 6 + + + talet 1000 + + + tal + + + twenty-one + + + after + + + infinitive marker + + + under, below + + + out from + + + each other + + + both + + + in front of + + + in relation to + + + in support of + + + considering + + + in order (to) + + + because of + + + intended for + + + in spite of + + + for (about time) + + + too (much, little, etc.) + + + my, mine + + + between + + + through + + + one(self) + + + near, nearby + + + around (about time) + + + by + + + thus + + + used to express contempt or blame + + + opposite, facing + + + to, up, on, for (especially in expressions borrowed from French) + + + to, up, on, for (especially in expressions borrowed from French) + + + used in expressions to express displeasure + + + her, hers + + + behind + + + to somewhere behind + + + among + + + on the eastern side of + + + past, on the other side + + + thump (used to imitate sound of something hitting/falling) + + + used to express contempt or disgust + + + hush + + + below + + + down by; via somewhere that lies further down from one's location + + + used to give a hesitant answer; neither yes nor no + + + tal + + + tal + + + forward; in a forward direction + + + in the near future + + + progress + + + with + + + including + + + concurrent + + + in the same direction as + + + having, containing + + + using + + + face-to-face + + + opposite (location-wise) + + + in regards to + + + every + + + each + + + by, within + + + tal + + + or + + + hello + + + towards + + + just before + + + against + + + used to express surprise + + + used to express impatience + + + used to express annoyance + + + used to calm someone down + + + the sound a sheep makes + + + used when teasing + + + huh + + + used to show contempt + + + behind, following something/someone + + + billion (long scale)/trillion (short scale) + + + when (starting a clause) + + + since, because (starting a clause) + + + used to replicate the sound of snapping a photo + + + oh well, oh really + + + regarding + + + that one (used behind pronouns) + + + oh (used as an exclamation of joy, fear, surprise, etc.) + + + because, due to + + + what + + + at (about a location) + + + next to, with + + + belonging to + + + with(in one's mind) + + + talet 9 + + + tal + + + tal + + + tal + + + around, about + + + via, by + + + next to + + + relating to, about + + + during + + + towards the back + + + downwards + + + along, down (the street, etc.) + + + southwards + + + on + + + on top of + + + from above + + + behind + + + in + + + inside + + + both + + + used for "it" in some common phrases + + + talet 1 + + + no + + + if + + + no matter what + + + around, about + + + from the outside + + + from the outside + + + exclamation said to one who sneezes ("Bless you!") + + + used to replicate the sound of clearing one's throat + + + the sound a cow makes + + + sound used to expressed surprise + + + opposite, facing + + + abracadabra (said when doing a magic trick) + + + amen + + + one's (as in "one's own ...") + + + bang + + + that one (used behind pronouns) + + + hello! + + + from + + + without + + + rekkjetal til to + + + talet 10 + + + tal + + + over, above + + + from above + + + along the surface of + + + via + + + more than + + + upwards + + + northwards + + + towards + + + because of + + + belonging to + + + tal + + + either (or) + + + whether (or not) + + + second-person singular pronoun + + + he; third-person singular pronoun + + + it (for words of masculine genus) + + + except, besides + + + (pass) by + + + unless + + + tal + + + this + + + one; a general pronoun + + + because, since + + + used to express surprise + + + used to express impatience + + + used to express annoyance + + + used to calm someone down + + + while + + + our + + + according to + + + from above + + + from above + + + used to express discomfort + + + used to imitate sobbing + + + used when something is overwhelming or surprising + + + used to show contempt + + + used to express sorrow, pain or condemnation + + + cock-a-doodle-doo + + + away and through + + + on the back (of) + + + used to attract attention + + + used as an amplified version of "jo" + + + thank God, thank heavens + + + thank God, thank heavens + + + oof + + + nothing + + + self + + + tal + + + tal + + + tal + + + tal + + + before; earlier than + + + forward, along + + + out from + + + by the time, before + + + each other + + + beyond + + + all + + + that (as in "he thought that ...") + + + boo + + + past (passing by) + + + past (finished, over) + + + no/none + + + yes (in opposition to a negatively phrased question) + + + same + + + via, by (as in "stop by") + + + just inside + + + used to imitate a sudden, loud sound + + + yes + + + used to mimic the sound of a (steam) train + + + thank you + + + from the inside + + + outside (of) + + + used when teasing (mostly by children) + + + hah! + + + used to replicate laughter + + + used to express laughter or joy + + + used to express surprise + + + his + + + in(side) the back part + + + behind + + + they; gender-neutral third-person singular pronoun + + + from the east + + + from some distance away + + + over there and next to + + + bravissimo + + + when (starting a clause) + + + since, because (starting a clause) + + + oh well, oh really + + + damn! + + + oof + + + fuck! + + + diff --git a/extensions/wikidata-lexemes/output/nv.xml b/extensions/wikidata-lexemes/output/nv.xml new file mode 100644 index 00000000..bcdd86d1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/nv.xml @@ -0,0 +1,30 @@ + + + + + + + + + one + + + + + + one + + + + one + + + one + + + diff --git a/extensions/wikidata-lexemes/output/oc.xml b/extensions/wikidata-lexemes/output/oc.xml new file mode 100644 index 00000000..854fdf00 --- /dev/null +++ b/extensions/wikidata-lexemes/output/oc.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + ce + + + + + + + + + + + + + + + + + + + + + + + the, definite article + + + + + + + bastiment fach per l'albèrgament + + + + ce + + + the, definite article + + + bastiment fach per l'albèrgament + + + diff --git a/extensions/wikidata-lexemes/output/oj.xml b/extensions/wikidata-lexemes/output/oj.xml new file mode 100644 index 00000000..98329978 --- /dev/null +++ b/extensions/wikidata-lexemes/output/oj.xml @@ -0,0 +1,22 @@ + + + + + + + + + + gichi- + + + + gichi- + + + diff --git a/extensions/wikidata-lexemes/output/pa.xml b/extensions/wikidata-lexemes/output/pa.xml new file mode 100644 index 00000000..20e0eee8 --- /dev/null +++ b/extensions/wikidata-lexemes/output/pa.xml @@ -0,0 +1,3656 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਪੁਰਾਣਾ ਲਹਿਜਾ ’ਚ ਹਉ + + + + ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਵੱਲ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ + + + + + + + + + + + ਓਧਰ, ਉਸ ਪਾਸੇ + + + ਵੱਧ + + + ਉਤਾਂਹ + + + ਉਪਰ ਵੱਲੋਂ, ਉਤਲੇ ਪਾਸਿਓਂ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ਪੰਜਾਬੀ ਦਾ ਇਕੱਲਾ ਕਿਰਿਆ ਪਦ ਹੈ, ਆਮ ਹੋਂਦ ਲਈ ਚਿੰਨ੍ਹ ਦਿੱਤਾ + + + ਇਹ ਚੀਜ਼ ਹੁੰਦੀ ਏ, ਹਾਂ ਹੁੰਦੀ ਏ + + + + + ਉਹ ਚੀਜ਼ ਹੈਗੀ ਸੀ + + + + ਸਿਫ਼ਤ ਜਿਹੀ ਵਰਤ ਕੇ ਜੋ ਉਹ ਚੀਜ਼ ਹੁੰਦੀ ਸੀ ਦਿਖਾਉਂਦਾ + + + + + + ਤਦ + ਤਾਂ ਫਿਰ ਦੇਰ ਕਿਉਂ? + + + ਤੋ + + + + + + + + + ਖ਼ੁਦ + + + + + + + self + + + + + + + approximately, nearly, roughly, a little bit + + + + + + anybody, somebody + + + + + + + + + + who, which, that, what + + + + + + ਬਿਨਾਂ, ਬਗੈਰ + + + + + + + + + + any Tom, Dick, or Harry + + + + + + + + + + + + ਤਮਾਮ + + + + + + ਕਦੋਂ? + ਆਪਾਂ ਕਦ ਹੁਣ ਮਿਲਣਾ ਫੇਰ? + + + + + + + ਵਾਂਗੂਰ, ਜਿਹਾ + + + + + + + + + + + ਮੁਸਲਮਾਨਾਂ ਨੂੰ ਪਹਿਲਾਂ ਲਫ਼ਜ਼ ਕਹਿੰਦੇ + + + + + + ਵੀ, ਭੀ, ਹੋਰ + + + + + + ਬਲਕਿ, ਭਾਵੇਂ + + + + + + ਤੋਂ + + + ਤਕ, ਤਾਈਂ, ਲੱਗ + + + + + + + ਪਰੇ ਹੋ, ਵਿੱਥ ਤੇ + + + + + + ਉੱਪਰ, ਉੱਤੇ + + + + + + + ਅਲੱਗ, ਫ਼ਾਸਲੇ ਤੇ + + + + + + ਪੇਟ ਵਿਚ + + + ਜ਼ਮੇ, ਦੇ ਨਾਂ + + + + + + ਪਰਤਾ ਦੇਵਣ, ਮੋੜ ਦੇਵਣ + ਪੈਸੇ ਦੀ ਤੰਗੀ ਹੋਣ ਦੇ ਬਾਵਜੂਦ ਮੈਂ ਸਕਾਲਰਸ਼ਿਪ ਵਾਪਸ ਕਰ ਦਿੱਤਾ। + + + ਰੱਦ ਕਰ ਦੇਵਣ + + + + + + + ਬਗ਼ੈਰ, ਸਿਵਾ + + + + + + ਸਲਾਮਤੀ ਨਾਲ, ਬਖ਼ੈਰ + + + + + + ਕਰਨ ਵਾਲਾ + + + + + + ਦੂਏ ਦੇ ਬਾਲ ਨੂੰ ਆਪਣਾ ਬਠਾਉਣਾ + + + + + + ਜੁੜ ਜਾਵਣ + + + ਕਬਜ਼ੇ ਵਿਚ ਆ ਜਾਵਣ + + + + + + ਕੋਈ ਇੱਕ + + + ਸਾਰੇ, ਕੁਲ + + + + + + + + ਦਰਮਿਆਨ, ਅੱਧ, ਵਿਚਾਲੇ + + + + + + + + + + + (ਅਰਬੀ ਨਾਵਾਂ ਦੇ ਵਿੱਚ ਇਸਮ ਤੇ ਸਿਫ਼ਤ ਦੇ ਸ਼ੁਰੂ ਵਿੱਚ ਲੱਗ ਕੇ ਪੈਦਾ ਕਰ ਦੇਂਦਾ ਏ) + + + + + + + + + + and + ਬਹੁਤ ਕੁਝ ਬਾਕੀ ਰਹਿ ਗਿਆ ਹੈ ਅਤੇ ਬਹੁਤ ਕੁਛ ਨਾ-ਠੀਕ ਪ੍ਰਗਟ ਹੋਇਆ ਹੈ + + + + + + + vocative for calling or drawing attention + + + + + + ਜੋ + + + ਯਾਨੀ, ਮਤਲਬ ਦੇ + + + ਵੀ, ਨੀਜ਼, ਹੋਰ + + + ਅਚਨਚੇਤ + + + + + + + (‘ਜ਼ਰੂਰ’ ਮਾਅਨੇ ਨਾਲ ਹਰਫ਼ ਤਾਕੀਦ) + + + + + + + (“ਭੀ” ਯਾ “ਹੋਰ” ਲਈ ਅੰਸ਼) + + + + + + + + + + + + + + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਦੇ + + + + + + ਵਲ, ਨੂੰ + + + + + + ਜੇ + + + + + + + ਭੀ, ਸਾਥ, ਪ੍ਰਤੇ + + + + + + ਚੰਗਾ, ਠੀਕ ਏ, ਆਹੋ + + + ਹੈਰਤ ਵਸਤੇ ਬੋਲ + + + ਹੁੰਗਾਰਾ ਦਿੱਤਾ + + + + + + + + + + ਕਿਵੇਂ ਦਾ + + + + + + ਨਾਲ, ਮਿਲਿਆ ਹੋ ਕੇ + + + + + + ਤਾਸੁਫ਼ ਦਾ ਕਲਮਾ; ਅਫ਼ਸੋਸ ਕਰਨ + + + + + + ਤੋਂ + + + + + + ਨਾਲ, ਦੇ ਨਾਲ + + + ਕਿਨਾਰੇ, ਕੰਢੇ + + + ਨਜੀਕ, ਨੇੜੇ, ਪਾਸੇ + + + ਤਰਫ਼ੋਂ, ਵੱਲੋਂ + + + + + + + + + + ਕਿਹੋ ਜਿਹਾ + + + + + + ਬਾਬਤ + + + ਆਖ਼ਿਰਕਾਰ + + + + + + ਕਰਨ ਤੋਂ ਮਗਰੋਂ + + + ਵਸੀਲੇ ਤੋਂ + + + + + + ਜਿਹਾ, ਵਾਂਗੂੰ, ਵਰਗਾ + + + + + + + ਮਿੱਟੀ ਵਿੱਚ ਰਲ ਜਾਵਣ + + + ਖ਼ਤਮ ਹੋਵਣ + + + + + + ਕੋਈ ਗ਼ਲਤੀ ਨਾਲ ਕਰ ਜਾਵਣ + + + + + + + ਕੰਮ ਮੁਕੰਮਲ ਕਰ ਲੈਣ + + + + + + ਧਰ ਜਾਵਣ, ਛੱਡ ਜਾਵਣ + + + + + + ਪੁੰਨ ਕਰ ਛੱਡਣ + + + + + + ਬਰਬਾਦ ਹੋ ਜਾਵਣ + + + + + + ਬਰਬਾਦ ਕਰ ਦੇਵਣ + + + + + + ਜਿਸ ਵੇਲੇ ਤੋਂ + + + + + + ਖ਼ੋ ਪੈ ਜਾਵਣ + + + + + + ਜ਼ਿਦ ਤੇ ਪੱਕਿਆਂ ਹੋ ਜਾਵਣ + + + ਫਸ ਜਾਵਣ + + + + + + ਹਾਸਲ ਕਰ ਲੈਣ + + + + + + ਪੱਕੇ ਕਰ ਕੇ ਸਵਾਲ ਪੁੱਛਣ ਵਾਲਾ ਬੋਲ + + + + + + ਅਚਨਚੇਤੀ ਆ ਜਾਵਣ + + + ਨਿਝਕ ਹੋ ਕੇ ਆ ਜਾਵਣ + + + ਬਿੰਨਾਂ ਸੱਦਿਓਂ ਆ ਜਾਵਣ + + + + + + ਅਪੜ ਜਾਵਣ + + + ਪਹੁੰਚ ਜਾਵਣ + + + ਮੁਹਾਰਤ ਹੋ ਜਾਵਣ + + + ਰੀਝ ਪੈਣ, ਭਾ ਜਾਵਣ + + + + + + ਤਿਆਰ ਕਰ ਰੱਖਣਾ + + + + + + ਕੋਈ ਕੰਮ ਤਿਆਰ ਕਰ ਛੱਡਣ + + + + + + + + (“ਅਸੀਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + + + + ਕੰਮ ਬਣਨ + + + ਕੰਮ ਠੀਕ ਹੋਵਣ + + + ਮੁਰਾਦ ਪੂਰੀ ਹੋਵਣ + + + ਕਿਸਮਤ ਖੁੱਲ੍ਹਣ + + + + + + ਕੋ, ਕੋਲ, ਦੋ + + + + + + + ਆਪਣੇ ਨਾਲ ਦੂਏ ਨੂੰ ਬੀ ਬਰਬਾਦ ਕਰਨਾ + + + + + + + ਅਤੇ + + + + ਹੋਰ, ਨਾਲੇ + + + + + + ਨੋਸ਼ ਕਰ ਲੈਣ + + + ਬਰਦਾਸ਼ਤ ਕਰਨ, ਸਬਰ ਕਰ ਲੈਣ + + + ਕਿਸੇ ਦੀ ਅਮਾਨਤ ਨੂੰ ਹਜ਼ਮ ਕਰਨ + + + + + + + ਉਚਾਈ ਤੇ, ਬੁਲੰਦੀ ਤੇ + + + ਕਿਸੇ ਸਵਾਰੀ ਤੇ + + + ਬਾਲਾ ਬਾਲਾ + + + + + + in front + + + + + + why + + + + + + + + ਇਕੋ ਵਾਰ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ਪਹਿਲੇ ਪੁਰਖ ਦਾ + + + + + + + + + + + + + + ਦੂਜੇ ਪੁਰਖ ਦਾ + + + + + + ਬਾਵਜੂਦ ਉਸ ਦੇ + + + + + + O, vocative particle, used by men referring to women + + + + + + ਜਾਂ + + + + + + + + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਨਿੱਜੀ ਪੜਨਾਂਵ + + + + + + ਤੀਕਰ, ਤੋੜੀ + + + + + + ਖ਼ਤਮ ਹੋ ਜਾਵਣ + + + ਆਸ਼ਿਕ ਹੋ ਜਾਵਣ + + + + + + ਯਾਂ, ਯਾ + + + + ਫਿਰ, ਮੁੜ, ਭਾਵੇਂ + + + + + + ਕੋਈ ਗ਼ਲਤੀ ਨਾਲ ਕਰ ਜਾਵਣ + + + + + + + ਆਜ਼ਮਾ ਵੇਖਣ + + + ਨਾਮੁਮਕਿਨ ਕੰਮ ਦੱਸ ਦੇਵਣ + + + + + + ਕੱਲ ਕਲਾਂ + + + + + + ਕੋਈ ਚੀਜ਼ ਹਾਸਲ ਕਰ ਕੇ ਕਿੱਸੇ ਨੂੰ ਦੇਵਣ + + + + + + + ਕੋਲ, ਨੇੜੇ + + + + + + ਅੱਖਾਂ ਵਿੱਚ ਅੱਥਰੂ ਆ ਜਾਵਣ + + + ਤਰਸ ਆ ਜਾਵਣ + + + ਰਹਿਮ ਆ ਜਾਵਣ + + + + + + ਸਹਾਰਾ ਲੈਣ, ਆ ਥੁੰਮਣ + + + + + + ਜਿਸ ਥਾਂ, ਜਿੱਥੇ + + + + + + ਹੋ ਜਾਵਣ, ਪੂਰਾ ਹੋਵਣ + + + ਕਿਸੇ ਇੱਕ ਰਸਤੇ ਤੇ ਟੁਰ ਪੈਣ + + + ਕਿਸੇ ਇੱਕ ਦਾ ਹੋ ਜਾਵਣ + + + ਨਾਲ ਟੁਰਨ + + + + + + ਅਨੋਖੀ ਗੱਲ ਕਹਿਣ ਲੱਗ ਪੈਣਾ + + + + + + ਲੈ ਕੇ ਸਾਂਭ ਰੱਖਣ + + + + + + + (ਕਲਮਾ-ਏ-ਤਾਅਸੁਫ਼ ਦੇ ਬਤੌਰ) ਦੁੱਖ, ਰੰਜ, ਹੈਰਤ + + + + + + ਦੇ ਮੂਹਰੇ, ਨਾਲੋਂ ਪਹਿਲਾਂ + + + + + + + + ਥੱਲੇ, ਨੀਚੇ + + + ਨੀਵੇਂ ਪਾਸੇ + + + + + + + + + + + + + + + + + + + + + + + + (ਹਰਫ਼-ਏ-ਇਜ਼ਾਫ਼ਤ); ਕਾ, ਜੋ + + + + + + + + + + ਦੂਜੇ ਪੁਰਖ ਦਾ ਪੜਨਾਂਵ + + + + + + + + + + + + ਅੰਦਰ, ਵਿਚਾਲ਼ੇ, ਦਰਮਿਆਨ + + + ਅੰਦਰੋਂ + + + ਦਿਲੋਂ + + + + + + internally + + + covertly, secretly + + + + + + ਕਿਸੇ ਵੇਲ਼ੇ? + + + + + + + + how? + + + + + + + + + + + + ਕਿਹੜੇ ਬੰਦੇ ਦਾ + + + + + + + + + + ਕੌਣ + + + + + + ਕਿਛ, ਥੋੜਾ + + + + + + + + + + + ਹਾਂ ਕਰਨ ਦਾ ਭਾਵ, ਹਾਮੀ, ਹੰਘੂਰਾ + + + + + + ਲੇਕਨ + + + + + + + + (ergative/agentive postposition, used for marking initiator in clauses) + + + + + + ਬਿਨਾਂ + + + except for + + + ਪਰ ਲਈ + + + + + + ਰੱਬ ਰਾਖਾ + + + + + + one more, encore! + + + + + + ਉਰਦੂ ਤੋਂ “ਅਤੇ” ਲਈ ਮਧੇਤਰ + + + + + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਮੈਂ + + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਆਪਣਾ + + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਵੱਲ ਬਾਰੇ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਮੈਨੂੰ + + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਕਬਜ਼ੇ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਮੇਰਾ + + + + + + + + + + + + ਉਹ, ਇਹ, ਜੈਸਾ + + + + + + ਵੱਲੋਂ + + + ਤੋਂ + + + + + + ਬਗ਼ੈਰ, ਬਿਨਾ, ਅਲਾਵਾ + + + + + + + + + + + + + + ਦਾ, ਨਾ + + + + + + + + ਮਰ ਜਾਵਣ + + + + + + ਰਵਾਂ ਰਵੇਂ ਵਿੱਚ + + + ਹੀਲੇ ਬਹਾਨੇ ਨਾਲ + + + + + + ਹੋਰ ਵੀ, ਨਾਲੇ + + + ਬਹੁਤਾ, ਜ਼ਿਆਦਾ + + + + + + ਜਾ ਅਪੜਨ + + + + + + + ਨੀਂਦਰੇ ਪੈ ਜਾਵਣ + + + ਬੇਹਰਕਤ ਹੋ ਜਾਵਣ + + + ਚੁੱਪ ਹੋ ਜਾਵਣ + + + + + + ਨਾਲ ਲੈ ਟੁਰਨ + + + + + + ਪਿੱਛਾਂਹ ਹੱਟ ਜਾਵਣ + + + + + + ਹਮਲਾ ਕਰ ਦੇਵਣ + + + + + + ਕਾਬੂ ਆ ਜਾਵਣ + + + + + + ਉੱਤੋਂ ਆ ਨੱਪਣ + + + + + + ਬਹੁਤ ਅਮੀਰ ਹੋ ਜਾਵਣ + + + ਸੱਜ ਜਾਵਣ + + + ਜ਼ਾਇਕਾ ਦਰੁਸਤ ਹੋ ਜਾਵਣ + + + ਮੁਸੀਬਤ ਪੈ ਜਾਵਣ + + + ਮੁਕੰਮਲ ਹੋ ਜਾਵਣ + + + + + + ਪਰੇ ਹੱਦੋਂ ਬਾਹਰ + + + + + + + + + + + + + ਸਮੇਤ, ਸੰਗ, ਦਾ ਸਾਥ + + + ਕੋਲ, ਪਾਸ, ਨੇੜੇ ਈ + + + ਲਾਗੇ, ਕਰਕੇ + + + + + + how + + + + + + + + + + + + + ਜੇਹੜਾ, ਜਿਸ ਨੂੰ + + + + + + therefore + + + + + + ਕੋ, ਕੋਲ, ਦੋ + + + + + + + + ਵਧੇਰਾ, ਸਗੋਂ + + + + + + infix referential to Gogera Branch canal in Pakistani Punjabi village names + + + + + + ਵਾਸਤੇ, ਖ਼ਾਤਰ, ਕਰਕੇ + + + + + + then, after that + + + + + + ਅਤੇ, ਤੇ, ਔਰ + + + + + + ਹਮਾਰਾ + + + ਨੇੜੇ ਨੇੜੇ, ਕੋਲ ਕੋਲ + + + + + + ਕਾਨ, ਲਈ, ਵਾਸਤੇ + + + ਦੇ ਕੋਲ + + + + + + ਨੇੜੇ, ਲਾਗੇ, ਕਨਾਰੇ ਤੇ + + + + + + ਉੱਪਰ, ਉੱਤੇ + + + + + + + ਦੇ ਪਾਸੇ, ਪਰਨੇ + + + ਦੀ ਤਰਫ਼, ਦੋ + + + ਮੁੜ ਕੇ + + + + + + ਜਾ ਪਹੁੰਚਣ + + + + + + + ਅਪੜ ਜਾਵਣ + + + + + + ਤਿਆਰ ਕਰ ਬਹਿਣ, ਗ਼ਲਤੀ ਨਾਲ ਬਣਾ ਲੈਣ + + + + + + ਚਲਾਣਾ ਕਰ ਜਾਵਣ + + + ਮਰ ਜਾਵਣ + + + + + + ਧਰ ਲੈਣ + + + ਬਚਾ ਲੈਣ + + + ਰੋਕ ਲੈਣ, ਠਹਿਰ ਲੈਣ + + + ਢਾ ਲੈਣ, ਮਗ਼ਲੂਬ ਕਰ ਲੈਣ + + + + + + ਡਰ ਜਾਵਣ, ਕੰਬ ਜਾਵਣ + + + + + + ਖੜਿਆਂ ਹੋ ਜਾਵਣ + + + ਬਗ਼ਾਵਤ ਹੋਵਣ + + + ਸਿਹਤ ਹਾਸਲ ਹੋ ਜਾਵਣ + + + + + + ਕਿੱਤੇ ਜਾ ਕੇ ਪਰਤ ਆਉਣ + + + + + + ਅੱਲਾਹ ਕਰੇ + + + + + + (ਫ਼ਿਅਲ ਤੋਂ ਜ਼ਿੱਦ ਬਣਾਉਂਦਾ, ਮਸਲਨ “ਨਾ ਮਿਲਨ” ਪਰ “ਨਹੀਂ ਮਿਲਦਾ”) + + + + + + ਉੱਤੇ, ਉੱਪਰ, ਉੱਚਾ + + + ਨੂੰ + + + ਵਿਚ + + + + + + + + + ਗਿਰਦੇ, ਚੁਫੇਰੇ, ਆਸੇ ਪਾਸੇ + + + + + + + + + + ਭੀਤਰ + + + + + + + ਵੱਲੋਂ, ਕੋਲੋਂ + + + + + + + + + + + ਕੇਹੜਾ + + + + + + ਕਿਸ ਤਰ੍ਹਾਂ + + + + + + + + + + + + how much, how many + + + + + + + + + + ਆਪੋ ਆਪਣਾ, ਜ਼ਾਤੀ + + + ਵੱਖਰਾ ਵੱਖਰਾ, ਅੱਡੋ ਅੱਡ + + + + + + + + + + + is not (definite sense) + + + + + + honourific particle conferring respect, politeness towards addressee + + + + + + ਹੇ! ਰੇ! ਓ! + + + + + + ਇਜ਼ਾਫ਼ੇ ਬਣਾਉਣ + + + + + + ਅਗਰ, ਜੇਕਰ + ਜੇ ਬਲਵਾਨ ਹੋਵਾਂ, ਹਿੰਦੁਸਤਾਨ ਖ਼ਾਤਰ, ਲੋੜ ਪਵੇ ਤਾਂ ਜਾਨ ਘੁਮਾ ਦੇਵਾਂ। + + + + + + + + + (“ਮੈਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + + + + ਨਾਲ, ਸਾਥ + + + ਵਾਲਾ, ਸਾਹਿਬ + + + ਭਾਵੇਂ + + + ਮੁਤਾਬਕ + + + + + + ਪਰ, ਮਗਰ + + + + + + + + ਦਾ, ਨਾ + + + + + + (“ਭਲਾ” ਅੰਸ਼ ਨਾਲ ਹੋਰ ਜ਼ੋਰ ਦਿੰਦਾ) + + + (ਫ਼ਿਅਲ ਅਮਰ ਨੂੰ ਜ਼ੋਰ ਦਿੰਦਾ) + + + + + + ਹਾਈ, ਖ਼ੁਦਾ! + + + + + + + ਲਾਗੇ, ਨੇੜੇ + + + ਵੱਸ ਵਿਚ + + + + + + + + + + + + + + ਵਾਨ, ਵੰਤ, ਕਾਜ ਦਾ ਕਰਤਾ + + + + + + ਤੰਨੂੰ ਮੰਨੂੰ + + + + + + ਖ਼ਤਮ ਹੋ ਜਾਵਣ + + + + + + + + ਖ਼ਤਮ ਹੋ ਵੰਞਣ + + + + + + + + ਕੋਈ ਕੰਮ ਕਰ ਕੇ ਟੁਰ ਜਾਵਣ + + + + + + ਕੋਈ ਕੰਮ ਮੁਕੰਮਲ ਕਰਨ + + + ਵਿਆਹ ਕਰਨ + + + ਅਮਲ ਕਰਾਉਣ + + + + + + + + + + ਗੰਦੀ ਹਵਾ ਖ਼ਾਰਿਜ ਕਰਨ + + + ਬੇ ਸ਼ਰਮੀ ਬੋਲਣ + + + + + + ਉਧਾਲਾ ਕਰਨ + + + ਮਸ਼ਹੂਰ ਕਰ ਦੇਵਣ + + + ਨਕਲ ਲਾਹੁਣ + + + + + + ਚੁੱਪ ਕੀਤੇ ਖਲੇ ਰਹਿਣਾ + + + + + + ਦੀ ਪਾਰੋਂ, ਵੱਜਾ ਨਾਲ + + + + + + ਰੱਜ ਜਾਵਣ + + + ਅੱਕ ਜਾਵਣ + + + ਬੇਜ਼ਾਰ ਹੋ ਜਾਵਣ + + + + + + (“ਤੂੰ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + + + + ਕੰਮ ਬਣ ਜਾਵਣ + + + ਫੇਰਾ ਮਾਰ ਜਾਵਣ, ਆ ਕੇ ਚਲਾ ਜਾਵਣ + + + ਸਿਰ ਚੜ੍ਹ ਜਾਵਣ, ਜ਼ੰਮੇ ਚੜ੍ਹਨ + + + ਮੁੱਕ ਜਾਵਣ, ਕੰਮ ਪੂਰਾ ਹੋ ਜਾਵਣ + + + + + + ਆਪਣੇ ਨਾਲ ਦੂਏ ਨੂੰ ਬੀ ਬਰਬਾਦ ਕਰਨਾ + + + + + + + ਜ਼ਮਾਨੇ ਤੋਂ ਪਿੱਛੇ + + + + + + + + + + + ਏਦਾਂ ਦਾ, ਇਸ ਤਰ੍ਹਾਂ ਦਾ + + + ਇਸ ਸ਼ਕਲ ਸੂਰਤ ਦਾ + + + + + + (ਕਲਮਾ-ਏ-ਹੈਰਤ) ਖ਼ੁਦਾ ਤੋਂ ਸਿਵਾ ਕਿਸੇ ਨੂੰ ਤਾਕਤ ਹਾਸਲ ਨਹੀਂ + + + + + + + + + + + + ਇਥੇ ਕੁਝ ਮੱਦ + + + + + + + + + + + + + ਕਿਆ + + + + + + + up to + + + + + + + ਕਿਧਰ, ਕਿਸ ਪਾਸੇ + + + + + + ਇਸ ਲਈ ਜੇ + + + + + + + + + + + + + + ਸ੍ਵੈ ਦਾ + + + + ਸਾਥੀ, ਅੰਗ ਸਾਕ, ਦੋਸਤ ਦਾ + + + ਘਰੋਕਾ, ਘਰੇਲੂ, ਘਰ ਦਾ + + + + + + + + + + + + + + ਪਹਿਲਾ ਪੁਰਖ, ਜਮ੍ਹਾ ਪੜਨਾਂਵ + + + inclusive "we," as in, including the listener + + + + + + because of this + + + + + + + + + + + + + + + ਇਸ ਦਾ + + + + + + ਜਿਹੜਾ ਕਿਹੜਾ, ਕੁਝ ਇਕ + + + ਕੁਝ + + + ਇਕ ਕੁਝ ਖ਼ਾਸ + + + + + + + + + + who all + + + + + + ਹੇ! (ਔਰਤਾਂ ਤੋਂ ਮਰਦਾਂ ਨੂੰ) + + + + + + + (infix forming subtractive phase forms of verbs) + + + + + + ਕੀ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (ਲੇਟ ਲਕਾਰ ਦਾ ਹਰਫ਼) + + + + + + + + ਦਾ + + + + + + + + ਚਾਹੇ, ਭਾਵੇਂ + + + + + + + (ਜ਼ੋਰ ਦੇਣ ਦਾ ਅੰਸ਼) + + + (“ਹੀ” ~ “ਈ” ਅੰਸ਼ ਨਾਲ ਇਹਨਾਂ ਜ਼ੋਰ ਦੇ ਹਿੱਸੇ ਤੋਂ ਹੋਰ ਛੋਟੀ ਜ਼ੋਰ ਦਿੰਦਾ) + + + + + + ਓਏ ਯਾਰ! + + + + + + ਬਗ਼ੈਰ, ਬਿਨਾ, ਬਾਝੋਂ + + + + + + (ਦੇ) ਕੋਲ + + + + + + ਵਿੱਚ, ਅੰਦਰ + + + + + + ਕੰਮ ਨੂੰ ਕਰ ਕੇ ਛੱਡਣ + + + ਅਣਹੋਣੀ ਗੱਲ ਕਰ ਬੈਠਣ + + + ਬਿਨਾਂ ਸੋਚੇ ਸਮਝੇ ਕੋਈ ਕੰਮ ਕਰ ਬਹਿਣ + + + + + + ਕਿਤੇ ਜਾ ਕੇ ਕਾਬੂ ਆ ਜਾਵਣ + + + ਧੋਖੇ ਵਿੱਚ ਆ ਜਾਵਣ + + + + + + ਚਲਾ ਜਾਵਣ, ਲੰਘ ਜਾਵਣ + + + ਬੀਤ ਜਾਵਣ + + + ਮਰ ਜਾਵਣ + + + + + + ਧਰ ਦੇਵਣ + + + + + + ਧਰ ਛੱਡਣ, ਸਾਂਭ ਛੱਡਣ + + + + + + ਨੋਸ਼ ਕਰ ਦੇਣ + + + ਨੋਸ਼ ਕਰ ਦੇਈਦਾ + + + + + + ਸ਼ਾਮਲ ਕਰ ਦੇਵਣ + + + + + + ਦੇ ਛੱਡਣ + + + + + + ਹੈ ਨਾ, ਹੈਗੇ ਆ, ਠੀਕ ਏ ਨਾ? + + + + + + ਨੇੜੇ ਉੱਪਰ ਪੈਣ + + + ਤਾਕ ਵਿਚ ਰਹਿਣ + + + + + + ਆ ਕੇ ਕਿਸੇ ਨੂੰ ਯਕਦਮ ਪੈ ਜਾਵਣ + + + ਮਸੀਬਤ ਪੈ ਜਾਵਣ + + + ਅਚਾਨਕ ਕਿਸੇ ਆਫ਼ਤ ਦਾ ਆ ਜਾਵਣ + + + + ਢੈ ਪੈਣ, ਡਿੱਗ ਪੈਣ + + + + + + ਔਖ ਆਉਣ, ਮੁਸ਼ਕਲ ਬਣਨ + + + ਮਸੀਬਤ ਪੈ ਜਾਵਣ, ਬਿਪਤਾ ਵਿੱਚ ਫਸਣ + + + + + + + ਦੇ ਬਗ਼ੈਰ + + + + + + ਫੇਰ, ਤਾਂ, ਮੁੜ + + + + + + + + + + + + + + ਪਹਿਲੇ ਪੁਰਖ, ਵਾਹਿਦ ਦਾ + + + + + + + + + + + + + + + ਤੀਜਾ ਪੁਰਖ ਵਿਚ ਮੱਦ ਨਹੀਂ ਨੇੜੇ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ਉਸ ਕਾ + + + + + + + + + + whose + + + + + + (vocative particle used to mark addressee) + + + + + + don't know + + + + + + فعل ناقص ندائیہ – امر تے کجھ ہور روپاں نال پرکھ نوں چنھ دتا + + + + + + فعل ناقص جہا تے ضمیر جہا انش، صرف ہی تیجا پرکھ کئی مفعول نوں چنھ دتا + + + + + + + (ਸੁਤੰਤਰਤਾ ਕਿਰਦੰਤਕ ਦੇ ਲਹਿਕੇ ਦਾ ਅੱਖਰ) + + + + + + ਅਤੇ ਨਹੀਂ ਹੈ + + + + + + ਨਹੀਂ ਏ + + + + + + + ਤਕ, ਤੀਕਰ + + + ਜੇਕਰ + + + ਜਿੱਥੋਂ ਤੀਕਰ + + + ਤਦ, ਤਦੋਂ + + + ਆਖ਼ਰ ਤਾਈਂ + + + + + + ਅੜੀਏ, ਨੀ + + + + + + + + + ਅਫਰੀਂ! ਹੰਬਡੇ! + + + + + + + + + + + + + + + + + + + + + + + ਨਹੀਂ ਏ, ਨਾ ਹੋ + + + + ਨਹੀਂ ਸੀਗੀ + + + + + + + + ਔਰਤਾਂ, ਕੁੜੀਆਂ ਨੂੰ ਮੁਖਾਤਿਬ ਕਰ ਕੇ ਬੋਲਦਾ + + + ਔਰਤਾਂ, ਕੁੜੀਆਂ ਨੂੰ ਬੁਲਾਉਂਦਾ + + + + + + + ਖ਼ਿਆਲ ਵਿਚ, ਜਾਚੇ + + + + + + ਵਿਚ, ਅੰਦਰ + + + ਨਾਲ, ਸਾਥ + + + ਹਰ, ਹਰ ਇੱਕ + + + ਉੱਪਰ + + + + + + + ਵਜਹੋਂ + + + + + + ਉੱਡਾ ਖੜਨ + + + ਨਾਲ ਲੈ ਕੇ ਖੜਨ + + + + + + + + ਆਹਾ, ਇਹੋ + + + ਹਾ ਜਹਿੜਾ + + + ਇਹ ਸਾਮ੍ਹਣੇ ਵਾਲਾ + + + + + + ਮੁਕਾਬਲੇ ਤੇ ਆਉਣ, ਆ ਮਿਲਨ + + + + + + ਪਿੱਛੋਂ ਆ ਅਪੜਨ + + + ਆ ਫਿੜਨ, ਛੂਹਣ + + + ਮੁਖ਼ਾਲਿਫ਼ ਨੂੰ ਜਾ ਪੈਣ + + + + + + ਕਿਵੇਂ, ਕਿੰਜ, ਕਿੱਦਾਂ + + + ਕਿਸ ਤਰ੍ਹਾਂ ਨਾਲ + + + + + + ਭੁੱਲ ਜਾਵਣ + + + + + + ਜਿਸ ਦਿਨ + + + ਜਿਸ ਵੇਰ + + + + + + ਲੈ ਕੇ ਸਾਂਭ ਰੱਖਣ + + + + + + + ਕਿਹੜੀ ਥਾਂ? + + + + + + ਠਹਿਰ ਜਾਵਣ, ਰੁਕ ਜਾਵਣ + + + ਮੁੱਕ ਜਾਵਣ, ਬਸ ਹੋ ਜਾਵਣ + + + ਪਿੱਛੇ ਰਹਿ ਜਾਵਣ + + + ਸ਼ੈ ਜਾਂ ਬੰਦੇ ਦਾ ਪਿੱਛੇ ਭੁੱਲ ਜਾਵਣ + + + ਨਾਕਾਮ ਹੋ ਜਾਵਣ + + + + + + + + + + ਉਸ ਵਰਗਾ, ਉਹਦੇ ਰੰਗਾ + + + ਉਹੋ ਜਿਹਾ + + + + + + ਦੇ ਦੇਵਣ + + + + + + ਇਸ ਸਬਬੋਂ + + + + ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਪੁਰਾਣਾ ਲਹਿਜਾ ’ਚ ਹਉ + + + ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਵੱਲ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ + + + ਓਧਰ, ਉਸ ਪਾਸੇ + + + ਵੱਧ + + + ਉਤਾਂਹ + + + ਉਪਰ ਵੱਲੋਂ, ਉਤਲੇ ਪਾਸਿਓਂ + + + ਪੰਜਾਬੀ ਦਾ ਇਕੱਲਾ ਕਿਰਿਆ ਪਦ ਹੈ, ਆਮ ਹੋਂਦ ਲਈ ਚਿੰਨ੍ਹ ਦਿੱਤਾ + + + ਇਹ ਚੀਜ਼ ਹੁੰਦੀ ਏ, ਹਾਂ ਹੁੰਦੀ ਏ + + + ਉਹ ਚੀਜ਼ ਹੈਗੀ ਸੀ + + + ਸਿਫ਼ਤ ਜਿਹੀ ਵਰਤ ਕੇ ਜੋ ਉਹ ਚੀਜ਼ ਹੁੰਦੀ ਸੀ ਦਿਖਾਉਂਦਾ + + + ਤਦ + ਤਾਂ ਫਿਰ ਦੇਰ ਕਿਉਂ? + + + ਤੋ + + + ਖ਼ੁਦ + + + self + + + approximately, nearly, roughly, a little bit + + + anybody, somebody + + + who, which, that, what + + + ਬਿਨਾਂ, ਬਗੈਰ + + + any Tom, Dick, or Harry + + + ਤਮਾਮ + + + ਕਦੋਂ? + ਆਪਾਂ ਕਦ ਹੁਣ ਮਿਲਣਾ ਫੇਰ? + + + ਵਾਂਗੂਰ, ਜਿਹਾ + + + ਮੁਸਲਮਾਨਾਂ ਨੂੰ ਪਹਿਲਾਂ ਲਫ਼ਜ਼ ਕਹਿੰਦੇ + + + ਵੀ, ਭੀ, ਹੋਰ + + + ਬਲਕਿ, ਭਾਵੇਂ + + + ਤੋਂ + + + ਤਕ, ਤਾਈਂ, ਲੱਗ + + + ਪਰੇ ਹੋ, ਵਿੱਥ ਤੇ + + + ਉੱਪਰ, ਉੱਤੇ + + + ਅਲੱਗ, ਫ਼ਾਸਲੇ ਤੇ + + + ਪੇਟ ਵਿਚ + + + ਜ਼ਮੇ, ਦੇ ਨਾਂ + + + ਪਰਤਾ ਦੇਵਣ, ਮੋੜ ਦੇਵਣ + ਪੈਸੇ ਦੀ ਤੰਗੀ ਹੋਣ ਦੇ ਬਾਵਜੂਦ ਮੈਂ ਸਕਾਲਰਸ਼ਿਪ ਵਾਪਸ ਕਰ ਦਿੱਤਾ। + + + ਰੱਦ ਕਰ ਦੇਵਣ + + + ਬਗ਼ੈਰ, ਸਿਵਾ + + + ਸਲਾਮਤੀ ਨਾਲ, ਬਖ਼ੈਰ + + + ਕਰਨ ਵਾਲਾ + + + ਦੂਏ ਦੇ ਬਾਲ ਨੂੰ ਆਪਣਾ ਬਠਾਉਣਾ + + + ਜੁੜ ਜਾਵਣ + + + ਕਬਜ਼ੇ ਵਿਚ ਆ ਜਾਵਣ + + + ਕੋਈ ਇੱਕ + + + ਸਾਰੇ, ਕੁਲ + + + ਦਰਮਿਆਨ, ਅੱਧ, ਵਿਚਾਲੇ + + + (ਅਰਬੀ ਨਾਵਾਂ ਦੇ ਵਿੱਚ ਇਸਮ ਤੇ ਸਿਫ਼ਤ ਦੇ ਸ਼ੁਰੂ ਵਿੱਚ ਲੱਗ ਕੇ ਪੈਦਾ ਕਰ ਦੇਂਦਾ ਏ) + + + and + ਬਹੁਤ ਕੁਝ ਬਾਕੀ ਰਹਿ ਗਿਆ ਹੈ ਅਤੇ ਬਹੁਤ ਕੁਛ ਨਾ-ਠੀਕ ਪ੍ਰਗਟ ਹੋਇਆ ਹੈ + + + vocative for calling or drawing attention + + + ਜੋ + + + ਯਾਨੀ, ਮਤਲਬ ਦੇ + + + ਵੀ, ਨੀਜ਼, ਹੋਰ + + + ਅਚਨਚੇਤ + + + (‘ਜ਼ਰੂਰ’ ਮਾਅਨੇ ਨਾਲ ਹਰਫ਼ ਤਾਕੀਦ) + + + (“ਭੀ” ਯਾ “ਹੋਰ” ਲਈ ਅੰਸ਼) + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਦੇ + + + ਵਲ, ਨੂੰ + + + ਜੇ + + + ਭੀ, ਸਾਥ, ਪ੍ਰਤੇ + + + ਚੰਗਾ, ਠੀਕ ਏ, ਆਹੋ + + + ਹੈਰਤ ਵਸਤੇ ਬੋਲ + + + ਹੁੰਗਾਰਾ ਦਿੱਤਾ + + + ਕਿਵੇਂ ਦਾ + + + ਨਾਲ, ਮਿਲਿਆ ਹੋ ਕੇ + + + ਤਾਸੁਫ਼ ਦਾ ਕਲਮਾ; ਅਫ਼ਸੋਸ ਕਰਨ + + + ਤੋਂ + + + ਨਾਲ, ਦੇ ਨਾਲ + + + ਕਿਨਾਰੇ, ਕੰਢੇ + + + ਨਜੀਕ, ਨੇੜੇ, ਪਾਸੇ + + + ਤਰਫ਼ੋਂ, ਵੱਲੋਂ + + + ਕਿਹੋ ਜਿਹਾ + + + ਬਾਬਤ + + + ਆਖ਼ਿਰਕਾਰ + + + ਕਰਨ ਤੋਂ ਮਗਰੋਂ + + + ਵਸੀਲੇ ਤੋਂ + + + ਜਿਹਾ, ਵਾਂਗੂੰ, ਵਰਗਾ + + + ਮਿੱਟੀ ਵਿੱਚ ਰਲ ਜਾਵਣ + + + ਖ਼ਤਮ ਹੋਵਣ + + + ਕੋਈ ਗ਼ਲਤੀ ਨਾਲ ਕਰ ਜਾਵਣ + + + ਕੰਮ ਮੁਕੰਮਲ ਕਰ ਲੈਣ + + + ਧਰ ਜਾਵਣ, ਛੱਡ ਜਾਵਣ + + + ਪੁੰਨ ਕਰ ਛੱਡਣ + + + ਬਰਬਾਦ ਹੋ ਜਾਵਣ + + + ਬਰਬਾਦ ਕਰ ਦੇਵਣ + + + ਜਿਸ ਵੇਲੇ ਤੋਂ + + + ਖ਼ੋ ਪੈ ਜਾਵਣ + + + ਜ਼ਿਦ ਤੇ ਪੱਕਿਆਂ ਹੋ ਜਾਵਣ + + + ਫਸ ਜਾਵਣ + + + ਹਾਸਲ ਕਰ ਲੈਣ + + + ਪੱਕੇ ਕਰ ਕੇ ਸਵਾਲ ਪੁੱਛਣ ਵਾਲਾ ਬੋਲ + + + ਅਚਨਚੇਤੀ ਆ ਜਾਵਣ + + + ਨਿਝਕ ਹੋ ਕੇ ਆ ਜਾਵਣ + + + ਬਿੰਨਾਂ ਸੱਦਿਓਂ ਆ ਜਾਵਣ + + + ਅਪੜ ਜਾਵਣ + + + ਪਹੁੰਚ ਜਾਵਣ + + + ਮੁਹਾਰਤ ਹੋ ਜਾਵਣ + + + ਰੀਝ ਪੈਣ, ਭਾ ਜਾਵਣ + + + ਤਿਆਰ ਕਰ ਰੱਖਣਾ + + + ਕੋਈ ਕੰਮ ਤਿਆਰ ਕਰ ਛੱਡਣ + + + (“ਅਸੀਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + ਕੰਮ ਬਣਨ + + + ਕੰਮ ਠੀਕ ਹੋਵਣ + + + ਮੁਰਾਦ ਪੂਰੀ ਹੋਵਣ + + + ਕਿਸਮਤ ਖੁੱਲ੍ਹਣ + + + ਕੋ, ਕੋਲ, ਦੋ + + + ਆਪਣੇ ਨਾਲ ਦੂਏ ਨੂੰ ਬੀ ਬਰਬਾਦ ਕਰਨਾ + + + ਅਤੇ + + + ਹੋਰ, ਨਾਲੇ + + + ਨੋਸ਼ ਕਰ ਲੈਣ + + + ਬਰਦਾਸ਼ਤ ਕਰਨ, ਸਬਰ ਕਰ ਲੈਣ + + + ਕਿਸੇ ਦੀ ਅਮਾਨਤ ਨੂੰ ਹਜ਼ਮ ਕਰਨ + + + ਉਚਾਈ ਤੇ, ਬੁਲੰਦੀ ਤੇ + + + ਕਿਸੇ ਸਵਾਰੀ ਤੇ + + + ਬਾਲਾ ਬਾਲਾ + + + in front + + + why + + + ਇਕੋ ਵਾਰ + + + ਪਹਿਲੇ ਪੁਰਖ ਦਾ + + + ਦੂਜੇ ਪੁਰਖ ਦਾ + + + ਬਾਵਜੂਦ ਉਸ ਦੇ + + + O, vocative particle, used by men referring to women + + + ਜਾਂ + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਨਿੱਜੀ ਪੜਨਾਂਵ + + + ਤੀਕਰ, ਤੋੜੀ + + + ਖ਼ਤਮ ਹੋ ਜਾਵਣ + + + ਆਸ਼ਿਕ ਹੋ ਜਾਵਣ + + + ਯਾਂ, ਯਾ + + + ਫਿਰ, ਮੁੜ, ਭਾਵੇਂ + + + ਕੋਈ ਗ਼ਲਤੀ ਨਾਲ ਕਰ ਜਾਵਣ + + + ਆਜ਼ਮਾ ਵੇਖਣ + + + ਨਾਮੁਮਕਿਨ ਕੰਮ ਦੱਸ ਦੇਵਣ + + + ਕੱਲ ਕਲਾਂ + + + ਕੋਈ ਚੀਜ਼ ਹਾਸਲ ਕਰ ਕੇ ਕਿੱਸੇ ਨੂੰ ਦੇਵਣ + + + ਕੋਲ, ਨੇੜੇ + + + ਅੱਖਾਂ ਵਿੱਚ ਅੱਥਰੂ ਆ ਜਾਵਣ + + + ਤਰਸ ਆ ਜਾਵਣ + + + ਰਹਿਮ ਆ ਜਾਵਣ + + + ਸਹਾਰਾ ਲੈਣ, ਆ ਥੁੰਮਣ + + + ਜਿਸ ਥਾਂ, ਜਿੱਥੇ + + + ਹੋ ਜਾਵਣ, ਪੂਰਾ ਹੋਵਣ + + + ਕਿਸੇ ਇੱਕ ਰਸਤੇ ਤੇ ਟੁਰ ਪੈਣ + + + ਕਿਸੇ ਇੱਕ ਦਾ ਹੋ ਜਾਵਣ + + + ਨਾਲ ਟੁਰਨ + + + ਅਨੋਖੀ ਗੱਲ ਕਹਿਣ ਲੱਗ ਪੈਣਾ + + + ਲੈ ਕੇ ਸਾਂਭ ਰੱਖਣ + + + (ਕਲਮਾ-ਏ-ਤਾਅਸੁਫ਼ ਦੇ ਬਤੌਰ) ਦੁੱਖ, ਰੰਜ, ਹੈਰਤ + + + ਦੇ ਮੂਹਰੇ, ਨਾਲੋਂ ਪਹਿਲਾਂ + + + ਥੱਲੇ, ਨੀਚੇ + + + ਨੀਵੇਂ ਪਾਸੇ + + + (ਹਰਫ਼-ਏ-ਇਜ਼ਾਫ਼ਤ); ਕਾ, ਜੋ + + + ਦੂਜੇ ਪੁਰਖ ਦਾ ਪੜਨਾਂਵ + + + ਅੰਦਰ, ਵਿਚਾਲ਼ੇ, ਦਰਮਿਆਨ + + + ਅੰਦਰੋਂ + + + ਦਿਲੋਂ + + + internally + + + covertly, secretly + + + ਕਿਸੇ ਵੇਲ਼ੇ? + + + how? + + + ਕਿਹੜੇ ਬੰਦੇ ਦਾ + + + ਕੌਣ + + + ਕਿਛ, ਥੋੜਾ + + + ਹਾਂ ਕਰਨ ਦਾ ਭਾਵ, ਹਾਮੀ, ਹੰਘੂਰਾ + + + ਲੇਕਨ + + + (ergative/agentive postposition, used for marking initiator in clauses) + + + ਬਿਨਾਂ + + + except for + + + ਪਰ ਲਈ + + + ਰੱਬ ਰਾਖਾ + + + one more, encore! + + + ਉਰਦੂ ਤੋਂ “ਅਤੇ” ਲਈ ਮਧੇਤਰ + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਮੈਂ + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਆਪਣਾ + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਆਪਣੇ ਆਪ ਵੱਲ ਬਾਰੇ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਮੈਨੂੰ + + + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ ਕਬਜ਼ੇ ਨੂੰ ਚਿੰਨ੍ਹ ਦਿੱਤਾ, ਮੇਰਾ + + + ਉਹ, ਇਹ, ਜੈਸਾ + + + ਵੱਲੋਂ + + + ਤੋਂ + + + ਬਗ਼ੈਰ, ਬਿਨਾ, ਅਲਾਵਾ + + + ਦਾ, ਨਾ + + + ਮਰ ਜਾਵਣ + + + ਰਵਾਂ ਰਵੇਂ ਵਿੱਚ + + + ਹੀਲੇ ਬਹਾਨੇ ਨਾਲ + + + ਹੋਰ ਵੀ, ਨਾਲੇ + + + ਬਹੁਤਾ, ਜ਼ਿਆਦਾ + + + ਜਾ ਅਪੜਨ + + + ਨੀਂਦਰੇ ਪੈ ਜਾਵਣ + + + ਬੇਹਰਕਤ ਹੋ ਜਾਵਣ + + + ਚੁੱਪ ਹੋ ਜਾਵਣ + + + ਨਾਲ ਲੈ ਟੁਰਨ + + + ਪਿੱਛਾਂਹ ਹੱਟ ਜਾਵਣ + + + ਹਮਲਾ ਕਰ ਦੇਵਣ + + + ਕਾਬੂ ਆ ਜਾਵਣ + + + ਉੱਤੋਂ ਆ ਨੱਪਣ + + + ਬਹੁਤ ਅਮੀਰ ਹੋ ਜਾਵਣ + + + ਸੱਜ ਜਾਵਣ + + + ਜ਼ਾਇਕਾ ਦਰੁਸਤ ਹੋ ਜਾਵਣ + + + ਮੁਸੀਬਤ ਪੈ ਜਾਵਣ + + + ਮੁਕੰਮਲ ਹੋ ਜਾਵਣ + + + ਪਰੇ ਹੱਦੋਂ ਬਾਹਰ + + + ਸਮੇਤ, ਸੰਗ, ਦਾ ਸਾਥ + + + ਕੋਲ, ਪਾਸ, ਨੇੜੇ ਈ + + + ਲਾਗੇ, ਕਰਕੇ + + + how + + + ਜੇਹੜਾ, ਜਿਸ ਨੂੰ + + + therefore + + + ਕੋ, ਕੋਲ, ਦੋ + + + ਵਧੇਰਾ, ਸਗੋਂ + + + infix referential to Gogera Branch canal in Pakistani Punjabi village names + + + ਵਾਸਤੇ, ਖ਼ਾਤਰ, ਕਰਕੇ + + + then, after that + + + ਅਤੇ, ਤੇ, ਔਰ + + + ਹਮਾਰਾ + + + ਨੇੜੇ ਨੇੜੇ, ਕੋਲ ਕੋਲ + + + ਕਾਨ, ਲਈ, ਵਾਸਤੇ + + + ਦੇ ਕੋਲ + + + ਨੇੜੇ, ਲਾਗੇ, ਕਨਾਰੇ ਤੇ + + + ਉੱਪਰ, ਉੱਤੇ + + + ਦੇ ਪਾਸੇ, ਪਰਨੇ + + + ਦੀ ਤਰਫ਼, ਦੋ + + + ਮੁੜ ਕੇ + + + ਜਾ ਪਹੁੰਚਣ + + + ਅਪੜ ਜਾਵਣ + + + ਤਿਆਰ ਕਰ ਬਹਿਣ, ਗ਼ਲਤੀ ਨਾਲ ਬਣਾ ਲੈਣ + + + ਚਲਾਣਾ ਕਰ ਜਾਵਣ + + + ਮਰ ਜਾਵਣ + + + ਧਰ ਲੈਣ + + + ਬਚਾ ਲੈਣ + + + ਰੋਕ ਲੈਣ, ਠਹਿਰ ਲੈਣ + + + ਢਾ ਲੈਣ, ਮਗ਼ਲੂਬ ਕਰ ਲੈਣ + + + ਡਰ ਜਾਵਣ, ਕੰਬ ਜਾਵਣ + + + ਖੜਿਆਂ ਹੋ ਜਾਵਣ + + + ਬਗ਼ਾਵਤ ਹੋਵਣ + + + ਸਿਹਤ ਹਾਸਲ ਹੋ ਜਾਵਣ + + + ਕਿੱਤੇ ਜਾ ਕੇ ਪਰਤ ਆਉਣ + + + ਅੱਲਾਹ ਕਰੇ + + + (ਫ਼ਿਅਲ ਤੋਂ ਜ਼ਿੱਦ ਬਣਾਉਂਦਾ, ਮਸਲਨ “ਨਾ ਮਿਲਨ” ਪਰ “ਨਹੀਂ ਮਿਲਦਾ”) + + + ਉੱਤੇ, ਉੱਪਰ, ਉੱਚਾ + + + ਨੂੰ + + + ਵਿਚ + + + ਗਿਰਦੇ, ਚੁਫੇਰੇ, ਆਸੇ ਪਾਸੇ + + + ਭੀਤਰ + + + ਵੱਲੋਂ, ਕੋਲੋਂ + + + ਕੇਹੜਾ + + + ਕਿਸ ਤਰ੍ਹਾਂ + + + how much, how many + + + ਆਪੋ ਆਪਣਾ, ਜ਼ਾਤੀ + + + ਵੱਖਰਾ ਵੱਖਰਾ, ਅੱਡੋ ਅੱਡ + + + is not (definite sense) + + + honourific particle conferring respect, politeness towards addressee + + + ਹੇ! ਰੇ! ਓ! + + + ਇਜ਼ਾਫ਼ੇ ਬਣਾਉਣ + + + ਅਗਰ, ਜੇਕਰ + ਜੇ ਬਲਵਾਨ ਹੋਵਾਂ, ਹਿੰਦੁਸਤਾਨ ਖ਼ਾਤਰ, ਲੋੜ ਪਵੇ ਤਾਂ ਜਾਨ ਘੁਮਾ ਦੇਵਾਂ। + + + (“ਮੈਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + ਨਾਲ, ਸਾਥ + + + ਵਾਲਾ, ਸਾਹਿਬ + + + ਭਾਵੇਂ + + + ਮੁਤਾਬਕ + + + ਪਰ, ਮਗਰ + + + ਦਾ, ਨਾ + + + (“ਭਲਾ” ਅੰਸ਼ ਨਾਲ ਹੋਰ ਜ਼ੋਰ ਦਿੰਦਾ) + + + (ਫ਼ਿਅਲ ਅਮਰ ਨੂੰ ਜ਼ੋਰ ਦਿੰਦਾ) + + + ਹਾਈ, ਖ਼ੁਦਾ! + + + ਲਾਗੇ, ਨੇੜੇ + + + ਵੱਸ ਵਿਚ + + + ਵਾਨ, ਵੰਤ, ਕਾਜ ਦਾ ਕਰਤਾ + + + ਤੰਨੂੰ ਮੰਨੂੰ + + + ਖ਼ਤਮ ਹੋ ਜਾਵਣ + + + ਖ਼ਤਮ ਹੋ ਵੰਞਣ + + + ਕੋਈ ਕੰਮ ਕਰ ਕੇ ਟੁਰ ਜਾਵਣ + + + ਕੋਈ ਕੰਮ ਮੁਕੰਮਲ ਕਰਨ + + + ਵਿਆਹ ਕਰਨ + + + ਅਮਲ ਕਰਾਉਣ + + + ਗੰਦੀ ਹਵਾ ਖ਼ਾਰਿਜ ਕਰਨ + + + ਬੇ ਸ਼ਰਮੀ ਬੋਲਣ + + + ਉਧਾਲਾ ਕਰਨ + + + ਮਸ਼ਹੂਰ ਕਰ ਦੇਵਣ + + + ਨਕਲ ਲਾਹੁਣ + + + ਚੁੱਪ ਕੀਤੇ ਖਲੇ ਰਹਿਣਾ + + + ਦੀ ਪਾਰੋਂ, ਵੱਜਾ ਨਾਲ + + + ਰੱਜ ਜਾਵਣ + + + ਅੱਕ ਜਾਵਣ + + + ਬੇਜ਼ਾਰ ਹੋ ਜਾਵਣ + + + (“ਤੂੰ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) + + + ਕੰਮ ਬਣ ਜਾਵਣ + + + ਫੇਰਾ ਮਾਰ ਜਾਵਣ, ਆ ਕੇ ਚਲਾ ਜਾਵਣ + + + ਸਿਰ ਚੜ੍ਹ ਜਾਵਣ, ਜ਼ੰਮੇ ਚੜ੍ਹਨ + + + ਮੁੱਕ ਜਾਵਣ, ਕੰਮ ਪੂਰਾ ਹੋ ਜਾਵਣ + + + ਆਪਣੇ ਨਾਲ ਦੂਏ ਨੂੰ ਬੀ ਬਰਬਾਦ ਕਰਨਾ + + + ਜ਼ਮਾਨੇ ਤੋਂ ਪਿੱਛੇ + + + ਏਦਾਂ ਦਾ, ਇਸ ਤਰ੍ਹਾਂ ਦਾ + + + ਇਸ ਸ਼ਕਲ ਸੂਰਤ ਦਾ + + + (ਕਲਮਾ-ਏ-ਹੈਰਤ) ਖ਼ੁਦਾ ਤੋਂ ਸਿਵਾ ਕਿਸੇ ਨੂੰ ਤਾਕਤ ਹਾਸਲ ਨਹੀਂ + + + ਇਥੇ ਕੁਝ ਮੱਦ + + + ਕਿਆ + + + up to + + + ਕਿਧਰ, ਕਿਸ ਪਾਸੇ + + + ਇਸ ਲਈ ਜੇ + + + ਸ੍ਵੈ ਦਾ + + + ਸਾਥੀ, ਅੰਗ ਸਾਕ, ਦੋਸਤ ਦਾ + + + ਘਰੋਕਾ, ਘਰੇਲੂ, ਘਰ ਦਾ + + + ਪਹਿਲਾ ਪੁਰਖ, ਜਮ੍ਹਾ ਪੜਨਾਂਵ + + + inclusive "we," as in, including the listener + + + because of this + + + ਇਸ ਦਾ + + + ਜਿਹੜਾ ਕਿਹੜਾ, ਕੁਝ ਇਕ + + + ਕੁਝ + + + ਇਕ ਕੁਝ ਖ਼ਾਸ + + + who all + + + ਹੇ! (ਔਰਤਾਂ ਤੋਂ ਮਰਦਾਂ ਨੂੰ) + + + (infix forming subtractive phase forms of verbs) + + + ਕੀ + + + (ਲੇਟ ਲਕਾਰ ਦਾ ਹਰਫ਼) + + + ਦਾ + + + ਚਾਹੇ, ਭਾਵੇਂ + + + (ਜ਼ੋਰ ਦੇਣ ਦਾ ਅੰਸ਼) + + + (“ਹੀ” ~ “ਈ” ਅੰਸ਼ ਨਾਲ ਇਹਨਾਂ ਜ਼ੋਰ ਦੇ ਹਿੱਸੇ ਤੋਂ ਹੋਰ ਛੋਟੀ ਜ਼ੋਰ ਦਿੰਦਾ) + + + ਓਏ ਯਾਰ! + + + ਬਗ਼ੈਰ, ਬਿਨਾ, ਬਾਝੋਂ + + + (ਦੇ) ਕੋਲ + + + ਵਿੱਚ, ਅੰਦਰ + + + ਕੰਮ ਨੂੰ ਕਰ ਕੇ ਛੱਡਣ + + + ਅਣਹੋਣੀ ਗੱਲ ਕਰ ਬੈਠਣ + + + ਬਿਨਾਂ ਸੋਚੇ ਸਮਝੇ ਕੋਈ ਕੰਮ ਕਰ ਬਹਿਣ + + + ਕਿਤੇ ਜਾ ਕੇ ਕਾਬੂ ਆ ਜਾਵਣ + + + ਧੋਖੇ ਵਿੱਚ ਆ ਜਾਵਣ + + + ਚਲਾ ਜਾਵਣ, ਲੰਘ ਜਾਵਣ + + + ਬੀਤ ਜਾਵਣ + + + ਮਰ ਜਾਵਣ + + + ਧਰ ਦੇਵਣ + + + ਧਰ ਛੱਡਣ, ਸਾਂਭ ਛੱਡਣ + + + ਨੋਸ਼ ਕਰ ਦੇਣ + + + ਨੋਸ਼ ਕਰ ਦੇਈਦਾ + + + ਸ਼ਾਮਲ ਕਰ ਦੇਵਣ + + + ਦੇ ਛੱਡਣ + + + ਹੈ ਨਾ, ਹੈਗੇ ਆ, ਠੀਕ ਏ ਨਾ? + + + ਨੇੜੇ ਉੱਪਰ ਪੈਣ + + + ਤਾਕ ਵਿਚ ਰਹਿਣ + + + ਆ ਕੇ ਕਿਸੇ ਨੂੰ ਯਕਦਮ ਪੈ ਜਾਵਣ + + + ਮਸੀਬਤ ਪੈ ਜਾਵਣ + + + ਅਚਾਨਕ ਕਿਸੇ ਆਫ਼ਤ ਦਾ ਆ ਜਾਵਣ + + + ਢੈ ਪੈਣ, ਡਿੱਗ ਪੈਣ + + + ਔਖ ਆਉਣ, ਮੁਸ਼ਕਲ ਬਣਨ + + + ਮਸੀਬਤ ਪੈ ਜਾਵਣ, ਬਿਪਤਾ ਵਿੱਚ ਫਸਣ + + + ਦੇ ਬਗ਼ੈਰ + + + ਫੇਰ, ਤਾਂ, ਮੁੜ + + + ਪਹਿਲੇ ਪੁਰਖ, ਵਾਹਿਦ ਦਾ + + + ਤੀਜਾ ਪੁਰਖ ਵਿਚ ਮੱਦ ਨਹੀਂ ਨੇੜੇ + + + ਉਸ ਕਾ + + + whose + + + (vocative particle used to mark addressee) + + + don't know + + + فعل ناقص ندائیہ – امر تے کجھ ہور روپاں نال پرکھ نوں چنھ دتا + + + فعل ناقص جہا تے ضمیر جہا انش، صرف ہی تیجا پرکھ کئی مفعول نوں چنھ دتا + + + (ਸੁਤੰਤਰਤਾ ਕਿਰਦੰਤਕ ਦੇ ਲਹਿਕੇ ਦਾ ਅੱਖਰ) + + + ਅਤੇ ਨਹੀਂ ਹੈ + + + ਨਹੀਂ ਏ + + + ਤਕ, ਤੀਕਰ + + + ਜੇਕਰ + + + ਜਿੱਥੋਂ ਤੀਕਰ + + + ਤਦ, ਤਦੋਂ + + + ਆਖ਼ਰ ਤਾਈਂ + + + ਅੜੀਏ, ਨੀ + + + ਅਫਰੀਂ! ਹੰਬਡੇ! + + + ਨਹੀਂ ਏ, ਨਾ ਹੋ + + + ਨਹੀਂ ਸੀਗੀ + + + ਔਰਤਾਂ, ਕੁੜੀਆਂ ਨੂੰ ਮੁਖਾਤਿਬ ਕਰ ਕੇ ਬੋਲਦਾ + + + ਔਰਤਾਂ, ਕੁੜੀਆਂ ਨੂੰ ਬੁਲਾਉਂਦਾ + + + ਖ਼ਿਆਲ ਵਿਚ, ਜਾਚੇ + + + ਵਿਚ, ਅੰਦਰ + + + ਨਾਲ, ਸਾਥ + + + ਹਰ, ਹਰ ਇੱਕ + + + ਉੱਪਰ + + + ਵਜਹੋਂ + + + ਉੱਡਾ ਖੜਨ + + + ਨਾਲ ਲੈ ਕੇ ਖੜਨ + + + ਆਹਾ, ਇਹੋ + + + ਹਾ ਜਹਿੜਾ + + + ਇਹ ਸਾਮ੍ਹਣੇ ਵਾਲਾ + + + ਮੁਕਾਬਲੇ ਤੇ ਆਉਣ, ਆ ਮਿਲਨ + + + ਪਿੱਛੋਂ ਆ ਅਪੜਨ + + + ਆ ਫਿੜਨ, ਛੂਹਣ + + + ਮੁਖ਼ਾਲਿਫ਼ ਨੂੰ ਜਾ ਪੈਣ + + + ਕਿਵੇਂ, ਕਿੰਜ, ਕਿੱਦਾਂ + + + ਕਿਸ ਤਰ੍ਹਾਂ ਨਾਲ + + + ਭੁੱਲ ਜਾਵਣ + + + ਜਿਸ ਦਿਨ + + + ਜਿਸ ਵੇਰ + + + ਲੈ ਕੇ ਸਾਂਭ ਰੱਖਣ + + + ਕਿਹੜੀ ਥਾਂ? + + + ਠਹਿਰ ਜਾਵਣ, ਰੁਕ ਜਾਵਣ + + + ਮੁੱਕ ਜਾਵਣ, ਬਸ ਹੋ ਜਾਵਣ + + + ਪਿੱਛੇ ਰਹਿ ਜਾਵਣ + + + ਸ਼ੈ ਜਾਂ ਬੰਦੇ ਦਾ ਪਿੱਛੇ ਭੁੱਲ ਜਾਵਣ + + + ਨਾਕਾਮ ਹੋ ਜਾਵਣ + + + ਉਸ ਵਰਗਾ, ਉਹਦੇ ਰੰਗਾ + + + ਉਹੋ ਜਿਹਾ + + + ਦੇ ਦੇਵਣ + + + ਇਸ ਸਬਬੋਂ + + + diff --git a/extensions/wikidata-lexemes/output/pl.xml b/extensions/wikidata-lexemes/output/pl.xml new file mode 100644 index 00000000..072d2b1c --- /dev/null +++ b/extensions/wikidata-lexemes/output/pl.xml @@ -0,0 +1,931 @@ + + + + + + + + + + + o jeden więcej niż dwadzieścia dziewięć + + + + + + + + + we; first-person plural pronoun + + + + + + każdy jeden bez wyjątku + + + + + + o wykonywanej czynności: robiąc bardzo wolno, ślimacząc się + Papierosa podnosił do ust jak na zwolnionym filmie. Jego powolność spowodowała, że zelżało napięcie w moich mięśniach. + Woda była tu zimniejsza niż na otwartej plaży, tak czysta, że bajkowo kolorowy świat alg, ławic rybnych, meduz i skorupiaków oblepiających omszałe głazy przesuwał się jak na zwolnionym filmie przed oczyma nurków. + + + + + + systematycznie każdego tygodnia + + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Rolnicy pracują codziennie - w świątek, piątek i niedzielę. Nie mają świąt, nie mają urlopu wypoczynkowego. + + + + + + + + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Jej skrywanym marzeniem jest, aby ludzkość chodziła w dresach świątek i piątek. + + + + + + + + + + + + + wskazanie, że to o czym mowa jest prawdą, ponieważ to co było powiedziane wcześniej jest prawdą + Polacy, z którymi się stykał po wojnie, nie znali go, nie byli więc wcale wylewni, ani tym bardziej przyjaźni. + - Proszę mi wybaczyć, Suzanne, pomyliłem się. Takie pomyłki zdarzają się w życiu, tym bardziej mogą się zdarzyć tu. + + + + + + wyrok w zawieszeniu + + + + + + wyraźnie + + + naprawdę, na pewno, zaiste + + + + + + further, next, come on + + + + + + zaimek przymiotny pytajny, służący do tworzenia pytań o numer elementu w danej grupie + + + + + + partykuła wzmacniająca wypowiedź + + + + + + partykuła stwierdzająca, że nie wiadomo czy tak jest + Aby zrozumieliście, o co pytałem? + + + partykuła określająca życzenie + Aby wam się dobrze działo! + + + partykuła określająca wątpliwość co do stwierdzenia zawierającego się w pytaniu + Aby nie za późno na wizytę? + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Józek, jej zięć, przez wiele lat mleko woził. W świątek, piątek. Dobrze się natyrał przez kilkanaście lat. + + + + + + + + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Na granicy służbę trzeba pełnić w świątek i piątek, niezależnie od pogody. + + + + + + + + + + + + + liczba + + + + + + każdy jeden + + + + + + ile + + + + + + skrót: na przykład + + + + + + + + + + first person singular, I + + + + + + wprowadzający porównanie + + + + + + nawiązanie do kontekstu lub sytuacji i jednocześnie wprowadzenie wypowiedzenia o zróżnicowanych odcieniach intonacyjnych + A nie mówiłam? + A niech sobie śpiewa. + + + + + + taktownie, dyplomatycznie, bez rozgłosu + + + + + + + + + potwierdzenie tego co zostało powiedziane + - Łaskawy kolego! - pyta Franek. - Czy rzeczywiście w tych sprawach radził się pan u naszego kochanego Rokity? - Ależ jak najbardziej! Wspominałem mu o tych planach i zamiarach! - puszy się odurzony nadziejami adiunkt Piaskawy. + - Pan mówi poważnie? - Jak najbardziej, szefie - mówię. + + + + + + poddanie działaniu gazów celem pozbycia się szkodliwych organizmów z obiektu + + + + + + drewniana łaska, regionalizm + + + + + + ssać, np. cukierek + + + + + + gdzie + + + + + + sytuacja, w której trzeba coś wybrać, a obie możliwości są tak samo ważne + + + + + + + + + + + + + + pierwszy posiłek dnia + + + + + + wykrzyknik wyrażający przypomnienie sobie o czymś lub zauważenie czegoś + - Aaa, listy - policjant machnął lekceważąco ręką. + - A, pan Edek! Proszę, niech pan wejdzie. + + + + + + + + + + + you; second-person singular pronoun + + + + + + przekleństwo, w mowie potocznej często jako przerywnik w zdaniu + + + + + + systematycznie każdego tygodnia + + + + + + + w ciągu dni roboczych, z pominięciem niedzieli + + + + + + w taki sposób, że omawiana cecha występuje w większym nasileniu niż zwykle u równolatków + Okazał się bowiem młodzieńcem inteligentnym, nad wiek dojrzałym i o ogromnym poczuciu humoru. + Była to siedmioletnia, chuda i nad wiek długa dziewczynka, oczy miała równie piękne jak ojciec, ale o daleko przyjemniejszym wyrazie. + + + + + + + przecież + + + + + + + + + + + + + he or it + + + + + + spójnik przyłączający nową informację ułatwiającą zrozumienie tego, co powiedziano wcześniej + Ośrodek znowu wyglądał jak wymarły, albowiem wczasowicze gnieździli się na malutkiej plaży, skąd dochodziły krzyki kąpiących się. + Najpierw się schował na widok obcej kobiety, albowiem był tylko w spodniach i podkoszulku, a potem zaraz rozpoznał w obcej kobiecie Kreskę i wszedł do kuchni z powrotem, oznajmiając, że chyba zjadłby coś smażonego. + + + + + + + + + + zaimek zwrotny + + + + + + zdrobn. od: każdy + + + + + + gdy coś znajduje się pomiędzy obiektami + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Kowalski należy do klubu morsów, tapla się w przeręblach, u szyi, na tasiemce, zawieszony ma krokomierz, wedle którego w świątek czy piątek, wykonać ma rekruckim truchtem cztery kilometry. + + + + + + + + + + + + + ogarnięty (o osobie) + + + + + + sytuacja, w której trzeba coś wybrać, a obie możliwości są tak samo ważne + + + + + + + partykuła twierdząca + + + + + + spójnik wprowadzający zdanie podrzędne określające cel tego, o czym mowa w zdaniu nadrzędnym + Wyciągnął rękę, aby zerwać kwiat. + + + spójnik wprowadzający zdanie podrzędne określające to, co jest warunkiem tego, o czym mowa w zdaniu nadrzędnym + Od dawna bliskie mi jest przekonanie, że trzeba być konserwatystą, aby móc być liberałem. + + + spójnik wprowadzający zdanie podrzędne określające sposób osiągniecia tego, o czym mowa w zdaniu nadrzędnym + Chciała zaznać rozkoszy, ale tak, aby on się nie zorientował. + + + spójnik wprowadzający zdanie podrzędne określające cel zależny od stopnia tego, o czym mowa w zdaniu nadrzędnym + Był zbyt dumny, aby przyjąć pomoc. + + + spójnik wprowadzający zdanie podrzędne komunikujące o zdarzeniu nieoczekiwanym w stosunku do tego, o czym mowa w zdaniu nadrzędnym + Deszcz przestał siąpić, aby po chwili rozpadać się na dobre. + + + spójnik wprowadzający zdanie podrzędne, po zdaniu nadrzędnym wyrażającym wolę, sąd, propozycję lub inny cel jaki chce osiągnąć osoba mówiąca + Prezydent Andrzej Duda chce, aby 10 i 11 listopada 2018 roku odbyło się referendum konstytucyjne. + + + spójnik wprowadzający składnik wyrażający życzenie albo warunek + Napisz coś, aby na temat. + + + spójnik wprowadzający składnik mówiący o tym, że to co jest robione nie przynosi efektów + Daj jakieś argumenty sensowne, bo jak masz gadać aby gadać, to szkoda mojego i Twojego czasu. + + + + + + stopniowo, przez kilka i więcej tygodni + + + + + + + wulgarne określenie na oddawanie kału + + + + + + dosyć + + + + + + rzeczywiście + + + + + + ale + + + + + + przeciw + + + + + + zamiast + + + zamiast + + + + + + taktownie, dyplomatycznie, bez rozgłosu + + + + + + + + + koło, około, wokół + Było to kole Gwiozdki 1918, pore dni potem, kiedy to tyn dekorz ze Śródki wlozł na rotusz poznański, dycht na samum szpycę. + + + + + + spójnik łączący słowa i zdania równorzędne + + + + + + w taki sposób, że omawiana cecha występuje w większym nasileniu niż zwykle u równolatków + Moja nadzwyczajna, ponad wiek rozwinięta mądrość nie przysparzała mi sympatii otoczenia, budząc raczej podejrzenie o konszachty z demonem. + Staraliśmy się być poważni ponad wiek. + + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Brakuje 70 000 ludzi w górnictwie. Pracujemy świątek, piątek, na okrągło. + + + + + + + + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + A może dziewczyny z ONR wysłać na studia pielęgniarskie, a potem w imię patriotyzmu niech zasuwają za dwa tysiące świątek, piątek i niedziela? + + + + + + + + + + + + + i, oraz + + + + + + tam + + + + + + z określonego miejsca oddalonego od nadawcy komunikatu + + + + + + taktownie, dyplomatycznie, bez rozgłosu + + + + + + + + + taktownie, dyplomatycznie, bez rozgłosu + + + + + + + + + jakikolwiek, wszystek, wszelki + + + + + + tak, że trwa to przez okres zbliżony do tygodnia lub przez cały tydzień na okrągło + Ciepły, przypieczony chleb, to moje ukochane śniadanie i mogłabym jeść takie kromki jak tydzień długi, nawet same samiuteńkie, bez żadnych dodatków! + Jak tydzień długi, przez godzinę dziennie bus ten staje się moim mobilnym biurem na kółkach, miejscem, w którym pracuję… zanim jeszcze do pracy dotrę. + + + + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + - Dobrze, ci tak mówić. Ty, który nie masz zobowiązań na wolnym powietrzu. Ale ja pracuję, świątek czy piątek, i to właśnie pod gołym niebem. Trzeba żyć. + + + + + + + + + + + + + do uzdrowiska, w którym znajdują się źródła wód mineralnych + - Dla mnie też jest za gorąco - wtrącił się do rozmowy pan Campilli. - Ale póki kuria czynna, to znaczy, dopóki monsignorowie nie porozjeżdżają się do wód na wielkie wakacje, muszę siedzieć w Rzymie. + Zawsze mnie coś spotyka, gdy taka niespokojna chodzę i nie mogę sobie miejsca znaleźć. Że też to na mnie popadło. Do wód mogłam jechać. Już się od trzech lat wybieram. + + + + + + 100 + + + + + + albo + + + + + + where + + + + + + during + + + + o jeden więcej niż dwadzieścia dziewięć + + + we; first-person plural pronoun + + + każdy jeden bez wyjątku + + + o wykonywanej czynności: robiąc bardzo wolno, ślimacząc się + Papierosa podnosił do ust jak na zwolnionym filmie. Jego powolność spowodowała, że zelżało napięcie w moich mięśniach. + Woda była tu zimniejsza niż na otwartej plaży, tak czysta, że bajkowo kolorowy świat alg, ławic rybnych, meduz i skorupiaków oblepiających omszałe głazy przesuwał się jak na zwolnionym filmie przed oczyma nurków. + + + systematycznie każdego tygodnia + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Rolnicy pracują codziennie - w świątek, piątek i niedzielę. Nie mają świąt, nie mają urlopu wypoczynkowego. + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Jej skrywanym marzeniem jest, aby ludzkość chodziła w dresach świątek i piątek. + + + wskazanie, że to o czym mowa jest prawdą, ponieważ to co było powiedziane wcześniej jest prawdą + Polacy, z którymi się stykał po wojnie, nie znali go, nie byli więc wcale wylewni, ani tym bardziej przyjaźni. + - Proszę mi wybaczyć, Suzanne, pomyliłem się. Takie pomyłki zdarzają się w życiu, tym bardziej mogą się zdarzyć tu. + + + wyrok w zawieszeniu + + + wyraźnie + + + naprawdę, na pewno, zaiste + + + further, next, come on + + + zaimek przymiotny pytajny, służący do tworzenia pytań o numer elementu w danej grupie + + + partykuła wzmacniająca wypowiedź + + + partykuła stwierdzająca, że nie wiadomo czy tak jest + Aby zrozumieliście, o co pytałem? + + + partykuła określająca życzenie + Aby wam się dobrze działo! + + + partykuła określająca wątpliwość co do stwierdzenia zawierającego się w pytaniu + Aby nie za późno na wizytę? + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Józek, jej zięć, przez wiele lat mleko woził. W świątek, piątek. Dobrze się natyrał przez kilkanaście lat. + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Na granicy służbę trzeba pełnić w świątek i piątek, niezależnie od pogody. + + + liczba + + + każdy jeden + + + ile + + + skrót: na przykład + + + first person singular, I + + + wprowadzający porównanie + + + nawiązanie do kontekstu lub sytuacji i jednocześnie wprowadzenie wypowiedzenia o zróżnicowanych odcieniach intonacyjnych + A nie mówiłam? + A niech sobie śpiewa. + + + taktownie, dyplomatycznie, bez rozgłosu + + + potwierdzenie tego co zostało powiedziane + - Łaskawy kolego! - pyta Franek. - Czy rzeczywiście w tych sprawach radził się pan u naszego kochanego Rokity? - Ależ jak najbardziej! Wspominałem mu o tych planach i zamiarach! - puszy się odurzony nadziejami adiunkt Piaskawy. + - Pan mówi poważnie? - Jak najbardziej, szefie - mówię. + + + poddanie działaniu gazów celem pozbycia się szkodliwych organizmów z obiektu + + + drewniana łaska, regionalizm + + + ssać, np. cukierek + + + gdzie + + + sytuacja, w której trzeba coś wybrać, a obie możliwości są tak samo ważne + + + pierwszy posiłek dnia + + + wykrzyknik wyrażający przypomnienie sobie o czymś lub zauważenie czegoś + - Aaa, listy - policjant machnął lekceważąco ręką. + - A, pan Edek! Proszę, niech pan wejdzie. + + + you; second-person singular pronoun + + + przekleństwo, w mowie potocznej często jako przerywnik w zdaniu + + + systematycznie każdego tygodnia + + + w ciągu dni roboczych, z pominięciem niedzieli + + + w taki sposób, że omawiana cecha występuje w większym nasileniu niż zwykle u równolatków + Okazał się bowiem młodzieńcem inteligentnym, nad wiek dojrzałym i o ogromnym poczuciu humoru. + Była to siedmioletnia, chuda i nad wiek długa dziewczynka, oczy miała równie piękne jak ojciec, ale o daleko przyjemniejszym wyrazie. + + + przecież + + + he or it + + + spójnik przyłączający nową informację ułatwiającą zrozumienie tego, co powiedziano wcześniej + Ośrodek znowu wyglądał jak wymarły, albowiem wczasowicze gnieździli się na malutkiej plaży, skąd dochodziły krzyki kąpiących się. + Najpierw się schował na widok obcej kobiety, albowiem był tylko w spodniach i podkoszulku, a potem zaraz rozpoznał w obcej kobiecie Kreskę i wszedł do kuchni z powrotem, oznajmiając, że chyba zjadłby coś smażonego. + + + zaimek zwrotny + + + zdrobn. od: każdy + + + gdy coś znajduje się pomiędzy obiektami + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Kowalski należy do klubu morsów, tapla się w przeręblach, u szyi, na tasiemce, zawieszony ma krokomierz, wedle którego w świątek czy piątek, wykonać ma rekruckim truchtem cztery kilometry. + + + ogarnięty (o osobie) + + + sytuacja, w której trzeba coś wybrać, a obie możliwości są tak samo ważne + + + partykuła twierdząca + + + spójnik wprowadzający zdanie podrzędne określające cel tego, o czym mowa w zdaniu nadrzędnym + Wyciągnął rękę, aby zerwać kwiat. + + + spójnik wprowadzający zdanie podrzędne określające to, co jest warunkiem tego, o czym mowa w zdaniu nadrzędnym + Od dawna bliskie mi jest przekonanie, że trzeba być konserwatystą, aby móc być liberałem. + + + spójnik wprowadzający zdanie podrzędne określające sposób osiągniecia tego, o czym mowa w zdaniu nadrzędnym + Chciała zaznać rozkoszy, ale tak, aby on się nie zorientował. + + + spójnik wprowadzający zdanie podrzędne określające cel zależny od stopnia tego, o czym mowa w zdaniu nadrzędnym + Był zbyt dumny, aby przyjąć pomoc. + + + spójnik wprowadzający zdanie podrzędne komunikujące o zdarzeniu nieoczekiwanym w stosunku do tego, o czym mowa w zdaniu nadrzędnym + Deszcz przestał siąpić, aby po chwili rozpadać się na dobre. + + + spójnik wprowadzający zdanie podrzędne, po zdaniu nadrzędnym wyrażającym wolę, sąd, propozycję lub inny cel jaki chce osiągnąć osoba mówiąca + Prezydent Andrzej Duda chce, aby 10 i 11 listopada 2018 roku odbyło się referendum konstytucyjne. + + + spójnik wprowadzający składnik wyrażający życzenie albo warunek + Napisz coś, aby na temat. + + + spójnik wprowadzający składnik mówiący o tym, że to co jest robione nie przynosi efektów + Daj jakieś argumenty sensowne, bo jak masz gadać aby gadać, to szkoda mojego i Twojego czasu. + + + stopniowo, przez kilka i więcej tygodni + + + wulgarne określenie na oddawanie kału + + + dosyć + + + rzeczywiście + + + ale + + + przeciw + + + zamiast + + + zamiast + + + taktownie, dyplomatycznie, bez rozgłosu + + + koło, około, wokół + Było to kole Gwiozdki 1918, pore dni potem, kiedy to tyn dekorz ze Śródki wlozł na rotusz poznański, dycht na samum szpycę. + + + spójnik łączący słowa i zdania równorzędne + + + w taki sposób, że omawiana cecha występuje w większym nasileniu niż zwykle u równolatków + Moja nadzwyczajna, ponad wiek rozwinięta mądrość nie przysparzała mi sympatii otoczenia, budząc raczej podejrzenie o konszachty z demonem. + Staraliśmy się być poważni ponad wiek. + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + Brakuje 70 000 ludzi w górnictwie. Pracujemy świątek, piątek, na okrągło. + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + A może dziewczyny z ONR wysłać na studia pielęgniarskie, a potem w imię patriotyzmu niech zasuwają za dwa tysiące świątek, piątek i niedziela? + + + i, oraz + + + tam + + + z określonego miejsca oddalonego od nadawcy komunikatu + + + taktownie, dyplomatycznie, bez rozgłosu + + + taktownie, dyplomatycznie, bez rozgłosu + + + jakikolwiek, wszystek, wszelki + + + tak, że trwa to przez okres zbliżony do tygodnia lub przez cały tydzień na okrągło + Ciepły, przypieczony chleb, to moje ukochane śniadanie i mogłabym jeść takie kromki jak tydzień długi, nawet same samiuteńkie, bez żadnych dodatków! + Jak tydzień długi, przez godzinę dziennie bus ten staje się moim mobilnym biurem na kółkach, miejscem, w którym pracuję… zanim jeszcze do pracy dotrę. + + + codziennie, czy to dzień powszedni, czy święto; zawsze, stale + - Dobrze, ci tak mówić. Ty, który nie masz zobowiązań na wolnym powietrzu. Ale ja pracuję, świątek czy piątek, i to właśnie pod gołym niebem. Trzeba żyć. + + + do uzdrowiska, w którym znajdują się źródła wód mineralnych + - Dla mnie też jest za gorąco - wtrącił się do rozmowy pan Campilli. - Ale póki kuria czynna, to znaczy, dopóki monsignorowie nie porozjeżdżają się do wód na wielkie wakacje, muszę siedzieć w Rzymie. + Zawsze mnie coś spotyka, gdy taka niespokojna chodzę i nie mogę sobie miejsca znaleźć. Że też to na mnie popadło. Do wód mogłam jechać. Już się od trzech lat wybieram. + + + 100 + + + albo + + + where + + + during + + + diff --git a/extensions/wikidata-lexemes/output/ps.xml b/extensions/wikidata-lexemes/output/ps.xml new file mode 100644 index 00000000..1c112e2e --- /dev/null +++ b/extensions/wikidata-lexemes/output/ps.xml @@ -0,0 +1,112 @@ + + + + + + + + + (diminutive affix forming distinctions in new words) + + + + + + + upon, on + + + by, with + + + + + + (genitive adposition) of + + + + + + up to, until + + + than + + + + + + without + + + + + + from + + + + + + like + + + + + + to + + + for + + + + + + one + + + + (diminutive affix forming distinctions in new words) + + + upon, on + + + by, with + + + (genitive adposition) of + + + up to, until + + + than + + + without + + + from + + + like + + + to + + + for + + + one + + + diff --git a/extensions/wikidata-lexemes/output/pt.xml b/extensions/wikidata-lexemes/output/pt.xml new file mode 100644 index 00000000..83a5cfeb --- /dev/null +++ b/extensions/wikidata-lexemes/output/pt.xml @@ -0,0 +1,1479 @@ + + + + + + + + + + + + a, an + Após a morte de Lênin, em 1924, Stalin ascende ao poder, iniciando um período de autoritarismo + + + + + + + número cardinal + Dois dias depois, convidou os seus dous validos para um banquete no palacio + + + + + + + + + + + + + + + + + + + + + + + pronominal pessoal masculino + Para ele, nada existe além da natureza observável. + + + pronome pessoal epiceno + + + + pronome genérico + + + + + indica a terceira pessoa gramatical + + + + + + + + + indica qualquer um dos indivíduos da espécie mencionada, mas sem determinar qual + De um modo geral, literatura é o que foi escrito sobre algum assunto + + + + + + each + Quero cada uma dessas folhas carimbadas. + + + + + + no qual + A Idade do Bronze foi a era quando as civilizações surgiram + + + + + + + + + um diferente + + + em adição a + + + + + + since + Não o vejo desde aquele dia. + + + com a condição + Vou deixar você entrar, desde que se comporte. + + + de + Percorremos tudo, desde o norte até o sul. + + + + + + desprovido de + Nunca vi uma cadeira sem encosto. + + + deixando de fazer + E você está indo sem avisar? + + + + + + + + + + pronominal pessoal feminino + Mas ela não lhe foi fiel. + + + pronome pessoal epiceno + + + pronome genérico + + + + + + + + + todo, todos + Qualquer pessoa nota sua presença. + + + pessoa ou coisa indeterminada + Agora, quem for flagrado em qualquer situação, também pode ser preso. + + + + + + faz referência a algo que está perto de quem fala + O que é isto aqui na mesa? + + + faz referência a algo que ainda será falado + É isto o que querem: justiça. + + + + + + when + Culpamos ele quando na verdade tinha sido sua irmã. + + + + + + + + + número ordinal para 1 + + + + + + expressa surpresa + + + + + + expressa surpresa + + + expressa admiração + + + expressa desapontamento + + + + + + expressa surpresa + + + expressa desapontamento + + + expressa admiração + + + + + + expressa dor + + + expressa desespero + Uma barata! Ai, uma barata! + + + + + + expressa descrença + + + + + + indica limite temporal + Num sentido amplo, o Absolutismo sempre existiu em muitos países da Terra e continua sendo praticado até hoje. + + + indica limite espacial + + + indica limite quantitativo + + + + + + ao ar livre + + + + + + + + totalmente + Cuidado com José, que ele é doidinho da silva. + + + + + + forma de saudação usada para despedida + + + + + + muito rapidamente + + + + + + + + + artigo definido que denota gênero e número à palavra a que se refere + + + + + + the number five + + + + + + na parte superior de, em cima de, por cima ou acima de + O jornal dobrado sobre a mesa simples. + + + em posição superior e distante + O sol estava aberto sobre mim. + + + acima de, em lugar superior, em situação dominante ou de influência + Pedro II reinou sobre o Brasil. + + + pela superfície de + A Bíblia diz que Jesus andou sobre o mar. + + + em comparação de, para + Três metros de comprimento sobre dois de largura. + + + a respeito de, assunto + Felipe e Márcia amam conversar sobre política. + + + direção + O soldado ansiava por ir sobre seu adversário. + + + + + + + + + faz referência a algo que está perto de quem ouve + Pegue esse copo aí. + + + faz referência a algo que já foi falado + Ficar quieto e imóvel, essas eram as regras. + + + + + + + indica direção + Ele pediu que você fosse pra lá. + + + denota destino + Vamos para a minha casa. + + + indica objetivo + + + indica tempo + + + indica finalidade + Comprei um baixo para tocar numa banda. + + + de acordo com, segundo + Para mim, esse livro é um dos melhores da história. + + + prestes a + Fiquem quietos que o filme está para começar. + + + + + + + + + many, much + + + + + + so + Então, o que aconteceu? + + + introduz resposta mais complexa que a esperada + Então... era sobre isso mesmo que eu queria falar. + + + exatamente, isso, exato + + + + + + em oposição a + Não obtivemos sucesso, éramos dois contra cinco. + + + de encontro com + João atirou a garrafa contra a parede. + + + + + + + refere-se a algo anteriormente falado + Vi Júlio, o qual não encontrava fazia anos. + + + um entre vários + Qual dos carrinhos é o seu? + + + + + + olhe + + + + + + expressa surpresa + + + expressa desapontamento + + + + + + expressa desapontamento + + + + + + exprime raiva, desprezo, decepção ou indignação + + + no contexto da dramaturgia, exprime desejo de boa sorte, bons augúrios + + + + + + um fato que + + + + + + + + + faz referência a algo que está longe de quem fala e de quem ouve + + + + + + where (place in which something happens) + + + + + + de maneira forçada + + + + + + [ir] de uma situação ruim para uma pior + + + + + + in an absurd manner + + + using reasoning in the opposite direction to what is proposed to arrive at a result + + + + + + hello + + + + + + + número cardinal + + + + + + + + + + + + + + + + + + + pronome neutro de terceira pessoa + + + + + + + + indica localidade + Ontem eu não pude dormir em casa. + + + denota preço ou valor + A mansão está avaliada em oito milhões de reais. + + + indica tempo + Maria faz aniversário em agosto. + + + indica meio ou modo + Vocês deverão permanecer em silêncio. + + + + + + indica meio ou modo + Ele veio a pé. + + + indica distância + Estávamos a um quilómetro daqui. + + + indica preço + O pão está a dez centavos cada. + + + indica tempo + Esses animais entraram em extinção a aproximadamente 65 milhões de anos atrás. + + + + + + + + + faz referência a algo que está perto de quem fala + Pegue este copo aqui. + + + faz referência a algo que ainda será falado + Minha ideia é esta: esperar até que venham. + + + + + + faz referência a algo que está perto de quem ouve + O que é isso aí em seu bolso? + + + faz referência a algo que já foi falado + Justiça, era isso o que queriam. + + + + + + indica uma contradição + Formou-se, mas nunca fez uso da carta. + + + indica a informação correta a partir de algo negado anteriormente + Fomos recebidos não com aplausos, mas pedradas. + + + indica a causa de algo, implicando que aquilo já era esperado acontecer + Todos alunos reprovaram em matemática, mas ninguém estudou mesmo. + + + + + + em lugar algum + + + de maneira alguma, de jeito nenhum + Isso não é arte nem aqui, nem na China. + + + + + + e outros + + + + + + + acalme-se + + + espere + + + + + + ave! + + + + + + + + + ave! + + + + + + a céu aberto + + + + circunstância de um objeto ou evento + + + + + + + tu + + + + + + the number 3 between two and four + + + + + + the number seven + + + + + + and + + + + + + ao mesmo tempo em que + Maria fazia biscoitos enquanto as crianças brincavam no jardim. + + + introduz situação que contrasta com outra + Enquanto eles são violentos e perigosos, nós somos pacíficos e amigáveis. + + + + + + porque + Amanhã não poderei ir, pois terei ensaio. + + + + + + explica trecho anterior + Aproveita tua vida porque ela é curta! + + + + + + literally, "not even if the cow coughs": by no means, definitely not + O que ele disse a mim não te conto nem que a vaca tussa! + + + + + + expressa surpresa + + + expressa desapontamento + + + expressa admiração + + + + + + expressa total concordância + + + + + + por cima + As quaes se ajuntavaõ por baixo, e tambem se ajuntavaõ por riba com huã argola: assi fez com ellas ambas em as duas esquinas. + + + + + + the number four + + + + + + the number ten + + + + + + indica companhia ou associação + Sara saiu com as crianças. + + + indica modo, meio ou instrumento + Ele ficou rico com aquele trabalho. + + + indica conteúdo de algo + Traga para mim o pote com geleia. + + + indica causa ou motivo + Ele ficou tonto com o empurrão que levou. + + + + + + + + + + + + + indica posse na segunda pessoa + + + + + + + + + indica posse na terceira pessoa + Entre seus triunfos, notável é a conquista da Índia, dominando o povo pelo seu poder místico. + + + + + + indica incerteza + Não sei se escolho a gravata de listras ou a de bolinhas. + + + expõe alternativas + Esse comprimido pode ser tomado antes ou depois das refeições. + + + indica equivalência + Héracles, entre os gregos, ou Hércules para os romanos. + + + + + + + + + + + + indica a primeira pessoa gramatical + + + pronome singular de primeira pessoa + + + + + + faz referência a algo que está longe de quem fala e de quem ouve + + + + + + portanto, consequentemente + A previsão diz que choverá mais tarde, então teremos que esperar aqui mais um pouco. + + + + + + + tu, você + + + + + + da maneira que se fazia antigamente + + + + + + the number six + + + + + + the number eight + + + + + + o número 9 + + + + + + + + + + + + + indica posse na primeira pessoa + + + + + + + + + + + + + indica a segunda pessoa gramatical + + + + + + + indica a segunda pessoa gramatical + + + pronome pessoal de tratamento + + + + + + depois de + Almoçaremos após a aula. + + + além de + O prédio fica logo após da escola. + + + e mais + Um ano inteiro de fracasso após fracasso. + + + + + + no papel de, na função de, no status de + + + + + + that + + + + + + "at the price of bananas": cheaply + + + + + + qual pessoa + Quem deixou isso aqui? + + + a pessoa que + Foi ela quem pediu. + + + aqueles que + Não lembro quem me chamou. + + + + a, an + Após a morte de Lênin, em 1924, Stalin ascende ao poder, iniciando um período de autoritarismo + + + número cardinal + Dois dias depois, convidou os seus dous validos para um banquete no palacio + + + pronominal pessoal masculino + Para ele, nada existe além da natureza observável. + + + pronome pessoal epiceno + + + pronome genérico + + + indica a terceira pessoa gramatical + + + indica qualquer um dos indivíduos da espécie mencionada, mas sem determinar qual + De um modo geral, literatura é o que foi escrito sobre algum assunto + + + each + Quero cada uma dessas folhas carimbadas. + + + no qual + A Idade do Bronze foi a era quando as civilizações surgiram + + + um diferente + + + em adição a + + + since + Não o vejo desde aquele dia. + + + com a condição + Vou deixar você entrar, desde que se comporte. + + + de + Percorremos tudo, desde o norte até o sul. + + + desprovido de + Nunca vi uma cadeira sem encosto. + + + deixando de fazer + E você está indo sem avisar? + + + pronominal pessoal feminino + Mas ela não lhe foi fiel. + + + pronome pessoal epiceno + + + pronome genérico + + + todo, todos + Qualquer pessoa nota sua presença. + + + pessoa ou coisa indeterminada + Agora, quem for flagrado em qualquer situação, também pode ser preso. + + + faz referência a algo que está perto de quem fala + O que é isto aqui na mesa? + + + faz referência a algo que ainda será falado + É isto o que querem: justiça. + + + when + Culpamos ele quando na verdade tinha sido sua irmã. + + + número ordinal para 1 + + + expressa surpresa + + + expressa surpresa + + + expressa admiração + + + expressa desapontamento + + + expressa surpresa + + + expressa desapontamento + + + expressa admiração + + + expressa dor + + + expressa desespero + Uma barata! Ai, uma barata! + + + expressa descrença + + + indica limite temporal + Num sentido amplo, o Absolutismo sempre existiu em muitos países da Terra e continua sendo praticado até hoje. + + + indica limite espacial + + + indica limite quantitativo + + + ao ar livre + + + totalmente + Cuidado com José, que ele é doidinho da silva. + + + forma de saudação usada para despedida + + + muito rapidamente + + + artigo definido que denota gênero e número à palavra a que se refere + + + the number five + + + na parte superior de, em cima de, por cima ou acima de + O jornal dobrado sobre a mesa simples. + + + em posição superior e distante + O sol estava aberto sobre mim. + + + acima de, em lugar superior, em situação dominante ou de influência + Pedro II reinou sobre o Brasil. + + + pela superfície de + A Bíblia diz que Jesus andou sobre o mar. + + + em comparação de, para + Três metros de comprimento sobre dois de largura. + + + a respeito de, assunto + Felipe e Márcia amam conversar sobre política. + + + direção + O soldado ansiava por ir sobre seu adversário. + + + faz referência a algo que está perto de quem ouve + Pegue esse copo aí. + + + faz referência a algo que já foi falado + Ficar quieto e imóvel, essas eram as regras. + + + indica direção + Ele pediu que você fosse pra lá. + + + denota destino + Vamos para a minha casa. + + + indica objetivo + + + indica tempo + + + indica finalidade + Comprei um baixo para tocar numa banda. + + + de acordo com, segundo + Para mim, esse livro é um dos melhores da história. + + + prestes a + Fiquem quietos que o filme está para começar. + + + many, much + + + so + Então, o que aconteceu? + + + introduz resposta mais complexa que a esperada + Então... era sobre isso mesmo que eu queria falar. + + + exatamente, isso, exato + + + em oposição a + Não obtivemos sucesso, éramos dois contra cinco. + + + de encontro com + João atirou a garrafa contra a parede. + + + refere-se a algo anteriormente falado + Vi Júlio, o qual não encontrava fazia anos. + + + um entre vários + Qual dos carrinhos é o seu? + + + olhe + + + expressa surpresa + + + expressa desapontamento + + + expressa desapontamento + + + exprime raiva, desprezo, decepção ou indignação + + + no contexto da dramaturgia, exprime desejo de boa sorte, bons augúrios + + + um fato que + + + faz referência a algo que está longe de quem fala e de quem ouve + + + where (place in which something happens) + + + de maneira forçada + + + [ir] de uma situação ruim para uma pior + + + in an absurd manner + + + using reasoning in the opposite direction to what is proposed to arrive at a result + + + hello + + + número cardinal + + + pronome neutro de terceira pessoa + + + indica localidade + Ontem eu não pude dormir em casa. + + + denota preço ou valor + A mansão está avaliada em oito milhões de reais. + + + indica tempo + Maria faz aniversário em agosto. + + + indica meio ou modo + Vocês deverão permanecer em silêncio. + + + indica meio ou modo + Ele veio a pé. + + + indica distância + Estávamos a um quilómetro daqui. + + + indica preço + O pão está a dez centavos cada. + + + indica tempo + Esses animais entraram em extinção a aproximadamente 65 milhões de anos atrás. + + + faz referência a algo que está perto de quem fala + Pegue este copo aqui. + + + faz referência a algo que ainda será falado + Minha ideia é esta: esperar até que venham. + + + faz referência a algo que está perto de quem ouve + O que é isso aí em seu bolso? + + + faz referência a algo que já foi falado + Justiça, era isso o que queriam. + + + indica uma contradição + Formou-se, mas nunca fez uso da carta. + + + indica a informação correta a partir de algo negado anteriormente + Fomos recebidos não com aplausos, mas pedradas. + + + indica a causa de algo, implicando que aquilo já era esperado acontecer + Todos alunos reprovaram em matemática, mas ninguém estudou mesmo. + + + em lugar algum + + + de maneira alguma, de jeito nenhum + Isso não é arte nem aqui, nem na China. + + + e outros + + + acalme-se + + + espere + + + ave! + + + ave! + + + a céu aberto + + + circunstância de um objeto ou evento + + + tu + + + the number 3 between two and four + + + the number seven + + + and + + + ao mesmo tempo em que + Maria fazia biscoitos enquanto as crianças brincavam no jardim. + + + introduz situação que contrasta com outra + Enquanto eles são violentos e perigosos, nós somos pacíficos e amigáveis. + + + porque + Amanhã não poderei ir, pois terei ensaio. + + + explica trecho anterior + Aproveita tua vida porque ela é curta! + + + literally, "not even if the cow coughs": by no means, definitely not + O que ele disse a mim não te conto nem que a vaca tussa! + + + expressa surpresa + + + expressa desapontamento + + + expressa admiração + + + expressa total concordância + + + por cima + As quaes se ajuntavaõ por baixo, e tambem se ajuntavaõ por riba com huã argola: assi fez com ellas ambas em as duas esquinas. + + + the number four + + + the number ten + + + indica companhia ou associação + Sara saiu com as crianças. + + + indica modo, meio ou instrumento + Ele ficou rico com aquele trabalho. + + + indica conteúdo de algo + Traga para mim o pote com geleia. + + + indica causa ou motivo + Ele ficou tonto com o empurrão que levou. + + + indica posse na segunda pessoa + + + indica posse na terceira pessoa + Entre seus triunfos, notável é a conquista da Índia, dominando o povo pelo seu poder místico. + + + indica incerteza + Não sei se escolho a gravata de listras ou a de bolinhas. + + + expõe alternativas + Esse comprimido pode ser tomado antes ou depois das refeições. + + + indica equivalência + Héracles, entre os gregos, ou Hércules para os romanos. + + + indica a primeira pessoa gramatical + + + pronome singular de primeira pessoa + + + faz referência a algo que está longe de quem fala e de quem ouve + + + portanto, consequentemente + A previsão diz que choverá mais tarde, então teremos que esperar aqui mais um pouco. + + + tu, você + + + da maneira que se fazia antigamente + + + the number six + + + the number eight + + + o número 9 + + + indica posse na primeira pessoa + + + indica a segunda pessoa gramatical + + + indica a segunda pessoa gramatical + + + pronome pessoal de tratamento + + + depois de + Almoçaremos após a aula. + + + além de + O prédio fica logo após da escola. + + + e mais + Um ano inteiro de fracasso após fracasso. + + + no papel de, na função de, no status de + + + that + + + "at the price of bananas": cheaply + + + qual pessoa + Quem deixou isso aqui? + + + a pessoa que + Foi ela quem pediu. + + + aqueles que + Não lembro quem me chamou. + + + diff --git a/extensions/wikidata-lexemes/output/qu.xml b/extensions/wikidata-lexemes/output/qu.xml new file mode 100644 index 00000000..d8bf0f6d --- /dev/null +++ b/extensions/wikidata-lexemes/output/qu.xml @@ -0,0 +1,30 @@ + + + + + + + + + four (non-human) + + + + + + how beautiful + + + + four (non-human) + + + how beautiful + + + diff --git a/extensions/wikidata-lexemes/output/rn.xml b/extensions/wikidata-lexemes/output/rn.xml new file mode 100644 index 00000000..a8c29e02 --- /dev/null +++ b/extensions/wikidata-lexemes/output/rn.xml @@ -0,0 +1,36 @@ + + + + + + + + + by (agent marker) + + + with, together with (comitative marker) + + + + + + and + + + + by (agent marker) + + + with, together with (comitative marker) + + + and + + + diff --git a/extensions/wikidata-lexemes/output/ro.xml b/extensions/wikidata-lexemes/output/ro.xml new file mode 100644 index 00000000..726c4b0e --- /dev/null +++ b/extensions/wikidata-lexemes/output/ro.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + I; first-person singular pronoun + + + + + + farvel + + + + + + + one + + + + + + undskyld + + + + I; first-person singular pronoun + + + farvel + + + one + + + undskyld + + + diff --git a/extensions/wikidata-lexemes/output/ru.xml b/extensions/wikidata-lexemes/output/ru.xml new file mode 100644 index 00000000..1ec52c65 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ru.xml @@ -0,0 +1,2672 @@ + + + + + + + + + звук, издаваемый кукушкой + «Ку-ку! ку-ку!» раздавалось в лесу. + + + + + + натуральное число + Скряга Скрудж и три добрых духа. + + + цифра + + + + + + + + + натуральное число + Один из крупнейших словарей русского языка. + + + + + + + + + + + + + + + + + + + + + + помещённый внутрь + + + имеющийся, содержащийся в ком-либо, чём-либо + + + законченный, завершённый + + + + + + указывает на объект рядом + + + указывает на приблизительное значение + + + + + + натуральное число + + + + + + натуральное число + + + + + + холодно + + + + + + обозначает начальную точку движения + + + + + + + указывает предмет, на поверхности которого происходит действие + + + указывает место или пространство, в пределах которого совершается действие + + + до (указывает на предмет, являющийся границей или пределом распространения действия) + + + указывает предмет, на который направлено или обращено действие + + + указывает лицо или предмет, о которых думают, тоскуют, скорбят и т. п. + + + из-за какой-либо причины (указывает на причину, источник чего-либо) + + + после (указывает на временную или пространственную границу) + + + указывает на предмет, на который распространяется работа, влияние, действие, деятельность и т. п. субъекта + + + + + + подчёркивает высокую степень проявления признака, указывая на лицо, предмет, действие и прочее, на которые распространяется данный признак вопреки ожиданиям + + + + выделяет слово, которое свидетельствует об интенсивности какого-либо действия, состояния + + + + усиливает, эмоционально выделяет, подчёркивает следующее за ним слово + И какой чудный воздух: дышишь ― и сердце веселится. + + + подчёркивает, что действие или предмет вполне соответствуют чему-либо предварительно упомянутому + + + + + + предупреждение об опасности + + + + + + место позади + + + направление позади + + + место рядом с предметом, имеющим функциональное назначение + + + направление на место рядом с предметом, имеющим функциональное назначение + + + за пределы чего направлено действие + + + на расстоянии + + + в течение + + + интервал времени до + + + указывает предмет, за который кусают или хватают + + + лицо или предмет, который вызывает чувство + + + указание на цель + + + указание предмета в обмен на что + + + лицо, от имени которого совершается действие + + + в качестве, заместо + + + благотворствовать, быть в согласии + + + за пределами, дальше + + + после + + + во время + + + указание на цель или причину, из-за + + + + + + натуральное число + + + + + + натуральное число + + + + + + выражает приказ, требование + + + + + + con-, co- + + + + + + обозначает действие, направленное на самого актора + + + + + + деепричастие от «рассказывать» + + + + + + соединительный союз + + + логическая операция + + + + + + + внутрь (о направлении) + + + внутри (о местонахождении) + + + конечная точка движения + + + + на поверхность + + + через, сквозь + + + похожий на + + + имеющий силу + + + с целью + + + при указании на внешний признак + + + способ действия + + + при указании на группу лиц или деятельность + + + при указании на результат превращения лица или предмета + + + при указании на внутреннее состояние + + + время совершения действия + + + на расстоянии + + + одетый или обутый во что-либо, измазанный чем-либо и т. п. + + + вид деятельности + + + конкретное время или период + + + внутреннее состояние субъекта или отношение субъектов + + + область применения + + + для + + + в конструкциях вида "Х в Х" + + + + + + сопутствующее действие + + + + + + натуральное число + + + + + + + употребляется как вопросительный отклик, ответ на обращение или при переспросе нерасслышанного + + + выражает удивление, недоумение, возмущение, негодование, насмешку, иронию, раздражение, упрёк и т. п. + + + употребляется для усиления вопроса (в том числе риторического) + + + народно-поэтическое; употребляется в начале стиха + + + + + + + + + + + + + + тот предмет, человек и т. п.; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным м. р. ед. ч. + Тогда он оглянулся назад и, увидев меня, позвал меня. + + + местоимение третьего лица + + + + + + + + выражает несогласие со словами собеседника, возражение ему, увещание + ― Ел? ― И-и! Боже упаси, и смотреть не стал… + + + подчёркивает высокую степень, величину чего-либо + Не смотрите, он таким общипанным кажет: он это так, для виду… у него деньги-то и-и! + ― Учится-то он хорошо? — И-и, как учится! первый ученик-с + + + + + + + русская буква + + + + + + употребляется при выражении эмоций + + + + + + за вычетом, вычтя + + + меньше, ниже ноля + + + символ, используемый в математике + + + + + + + + + + + + + + это лицо женского пола или этот объект, ассоциируемый с женским родом; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным женского рода + Поэзия — светлый и свежий водоём, и когда душа прикасается к этой влаге, она пьёт из источника вечной юности. + + + + + + принадлежащий или относящийся к тому, что выражено третьим лицом женского рода + + + + + + утвердительная частица для ответа + + + внутри речи для подчёркивания + + + в начале повествовательного предложения, глубокомысленно + + + в начале предложения, когда неожиданно вспомнилось + + + в качестве недоверия, возражения + + + в конце вопроса для побуждения к ответу + + + как отклик на обращение или телефонный вызов + + + восклицательно-вопросительная реплика для выражения удивления, недоверия + + + + + + + + + + + + + + + + + + данный, находящийся там, далеко от говорящего + + + указывает на какой-л. предмет, лицо, выделяемые из ряда других + + + указывает на уже упоминавшееся в речи и уже известное + + + такой, который нужен или должен быть + + + + + + внутри, в пределах + + + между началом и концом + + + в составе какого-то множества, в окружении других + + + + + + добавляется для отрицания слова + + + применяется для придания неопределённости или предположительности + + + применяется для указания неполноты действия или состояния + + + применяется для указания ограниченного утверждения + + + применяется для указания утвердительности + + + + + + употребляется как категорическое решение окончить, прекратить, завершить что-либо + Ну всё! Я ухожу. + + + употребляется как констатация чьей-то наступившей кончины; умер, скончался + Изя всё + + + + + + + + + + натуральное число + + + + + + + + + + употребляется для формирования вопроса, с помощью которого говорящий хочет получить информацию о предмете, признаке, действии + + + употребляется для формирования вопроса о состоянии, положении и т. п. кого-, чего-либо + + + употребляется для формирования вопроса о причине действия; почему + + + употребляется для формирования вопроса о цели действия; зачем + + + употребляется для формирования вопроса о количестве; сколько + + + употребляется для формирования риторических вопросов и восклицательных предложений, в которых указывается на несущественность, неважность чего-либо + + + всё без исключения, очень многое (в риторических вопросах и восклицательных предложениях с отрицанием) + + + неизвестный говорящему или безразлично какой для него объект; что-нибудь, что-то + + + употребляется для присоединения придаточного предложения + + + + + + то же, что каким образом + + + то же, что словно, будто + + + то же, что в качестве + + + то же что так как + + + указывает на признак или действие + + + + + + новый вид на территории + + + + + + выражение одобрения + + + оценка ситуации как ужасной + + + + + + слово приветствия + + + + + + выражает сильное удивление + + + + + + часть союза "если...то" + + + используется для чередования перечисляемых объектов или действий + + + + + + натуральное число + + + + + + натуральное число + + + + + + команда прекратить движение + + + + + + выражение несогласия + + + + + + до чего-нибудь, раньше чего-нибудь, за какое-нибудь время до чего-нибудь + + + + + + впереди, раньше кого-нибудь + + + + + + + звук, издаваемый кошкой + + + + + + находясь ниже + + + в окрестности, недалеко + + + в зоне или периоде действия + + + приблизительно, ненамного меньше + + + незадолго до времени + + + указывает на предмет, для хранения, размещения, нахождения которого что-либо предназначено, используется + + + имитируя что-либо + + + на фоне + + + указывает на непрямое, наклонное направление + + + + + + поверх, над + + + указывает объект или цель действия, движения + + + (с некоторыми объектами) при указании направления + + + указание количества + + + при указании клиента, заказчика + + + объект действия, распространения + + + указывает источник финансирования + + + (с некоторыми объектами) при указании места + + + указывает на объект, являющийся основой, важной составляющей какой-либо системы или субстанции + + + при указании времени + + + в сочетаниях вида Х на Х + + + употребляется при обозначении орудия или средства или орудия действия + + + при указании на средство, с помощью которого кто-, что-л. работает, действует, что-л. делается, производится + + + при указании на средство, с помощью которого кто-, что-л. работает, действует, что-л. делается, производится + + + + + + изъяснительный; употребляется для присоединения придаточного предложения + + + употребляется для присоединения сравнительных оборотов + + + употребляется для присоединения придаточного предложения, называющего явление, событие, факт и т. п., которые служат достаточным основанием для предположения или утверждения, излагаемых в главном предложении, одновременно выступая в качестве следствия по отношению к ним + + + употребляется для присоединения придаточного предложения, действие которого происходит одновременно с действием главного предложения + + + + + + + обозначение исходной точки передвижения предмета или информации + + + обозначение положения точки в пространстве по сравнению с исходной + + + в соединении с предлогом до (от — до) и другим существительным употребляется при обозначении границ какой-либо части пространства, протяжённости чего-либо, расстояния и т. п. + + + обозначение момента времени, даты + + + в соединении с предлогом до (от — до) и другим существительным употребляется при обозначении границ какого-либо отрезка времени, периода + + + в соединении с числительным и предлогом до с другим числительным употребляется при обозначении величин, ограничивающих что-либо + + + в соединении с предлогом до (от — до) и другим существительным или прилагательным употребляется при указании на полный охват всех предметов, свойств и т. п., начиная с данного и кончая каким-либо + + + обозначение причины + + + обозначение средства против чего-либо + + + обозначение соотношения части и целого + + + обозначение принадлежности продукта к производителю + + + обозначение характера действия + + + + + + частица, используемая при выделении или при усилении значения слова или словосочетания, к которым относится + + + + + + + + болезнь + + + + + + падение концентрации озона + + + + + + поток заряженных частиц + + + + + + тёмная область на Солнце + + + + + + гирд, дар гирди + + + + + + употребляется при соотнесении однородных членов предложения или целых предложений (по значению взаимоисключающих или заменяющих друг друга), указывая на необходимость выбора между ними + + + употребляется при введении слов и предложений, имеющих пояснительный характер, соответствуя по значению словам: то есть, иначе, иначе говоря + + + употребляется при введении вставной конструкции, вводного предложения + + + употребляется при присоединении последнего члена перечисления, соответствуя по значению слов: и, а также + + + употребляется при присоединении предложений, дополняющих предыдущее высказывание + + + + + + + + + + продукт питания пчёл + + + + + + нахождение чего-либо в пространстве, ограниченном двумя или несколькими объектами + + + указание на связь двух точек или двух предметов в пространстве: от … до … + + + обозначение промежутка времени, в который что-либо совершается + + + обозначение взаимосвязанных лиц (предметов или явлений) + + + обозначение сравниваемых лиц (предметов или явлений) + + + обозначение группы предметов, явлений, лиц, в пределах которой совершается распределение, разделение чего-либо + + + в ситуации выбора: =из + + + положение предмета среди других предметов; среди + + + + + + выражает сильную эмоцию + + + + + + усилительная частица + + + + + + but, and + + + + + + + + указывает на объект глагола: предмет, на который направлена мысль, речь, чувство, действие + + + указывает, что действие одного предмета на другой приводит к их сближению, столкновению, соприкосновению + + + указывает, что что-либо находятся рядом, вплотную с чем-нибудь + + + указывает место + + + при обозначении времени, около которого или в пределах которого происходит действие + + + указаывает на свойство какого-либо предмета, качество, признак + + + при обозначении времени, около которого или в пределах которого происходит действие + + + + + + имеется возможность + + + разрешено, дозволено + + + + + + + + + + + + + + местоимение первого лица + + + личность + + + + + + употребляется при выражении противопоставления + Дай, — думает, — отвернусь, — всё не так страшно. + + + употребляется при подчёркивании, усилении значения (обычно в сочетании со сравнительной степенью прилагательных или наречий, а также с глаголами, обозначающими увеличение или уменьшение чего-либо) + Она гуляла одна, всё в том же берете, с белым шпицем; никто не знал, кто она, и называли её просто так: дама с собачкой. + + + + + + о чувстве удовлетворения, удовольствия, радости и т. п., испытываемом кем-либо + + + + + + обращение к отцу + + + + + + натуральное число + + + + + + натуральное число + + + + + + + + натуральное число + + + + + + + + + + + + + + + число + + + цифра + + + + + + падение концентрации озона + + + + + + газы, вызывающие парниковый эффект + + + + + + противопоставительный союз + + + + + + + + + + + + указывает на (обычно ранее упомянутые) предметы (лица) во множественном числе, к которым говорящий не относит ни себя, ни адресатов высказывания + + + именно те, а не другие; те самые + + + с частицей вот приобретает указательный или усилительный характер + + + указывает на одно лицо, используется как уважительная форма называния + + + + + + натуральное число + + + + + + натуральное число + + + + + + + + + некоторое небольшое число + + + + + + натуральное число + + + + + + присоединяет придаточное цели + + + присоединяет придаточное с описанием возможной ситуаци + + + + + + выражает желание, со словом "бы" или "б" + + + после вопросительных местоимений и местоименных наречий усиливает их выразительность + + + усиление в риторическом вопросе + + + исключительно + + + выражает математическую необходимость в составе выражений + + + + + + why + + + + + + натуральное число + + + digit 4 (four) + + + + + + натуральное число + + + + + + то же, что вот + + + + + + союз, используемый при присоединении целых предложений или отдельных членов предложения, развивающих, дополняющих или уточняющих ранее высказанную мысль + + + + + + выражает сопоставление + + + + выражает противопоставление + + + + + + для ограничения, исключения: только, исключительно + + + употребляется в предложениях, выражающих пожелание + + + + + + + для сослагательного наклонения + + + при обозначении предположительной или условно-предположительной возможности действия + + + при обозначении различных оттенков желаемости действия + + + указывает на вежливо-предупредительное пожелание кому-либо, совет, предложение + + + употребляется при выражении опасения по поводу какого-либо нежелательного действия + + + указывает на обусловленность действия + + + указывает на различные оттенки условности, предположительности, желаемости действия + + + + + + употребляется для присоединения предложений или отдельных членов предложений, дополняющих, уточняющих высказанную мысль + + + употребляется для присоединения придаточных временных предложений + + + для присоединения придаточных предложений цели + + + присоединяет предложение, выражающее пожелание + + + + + + + + + + большое количество, значительное число кого-либо, чего-либ + + + + + + натуральное число + + + + + + натуральное число + + + + + + + указывает на место или объект, с которого что-либо удаляется, снимается + + + указывает на место, из которого что-либо исходит + + + в обозначении интервала или множества указывает на его начальную точку + + + обозначает совместность, сочетание + + + обозначает наличие, присутствие кого-нибудь или чего-нибудь, обладание кем-нибудь или чем-нибудь у лица или предмета, производящего какое-нибудь действие или испытывающего какое-нибудь состояние + + + употребляется для указания на лицо или предмет, наличие, присутствие которого является источником того или иного состояния, испытываемого кем-нибудь или чем-нибудь, или причиной действия, совершаемого кем-нибудь или чем-нибудь + + + обозначает приблизительную меру + + + заменяет предлог из + + + входит в состав сложных слов в качестве одного из элементов + + + + + + имея целью сделать что-то такое, что полезно или приятно другому человеку и чего этому человеку нормально хотеть + + + описывает цель, предназначение чего-либо + + + обозначает субъект, на который направлено какое-либо действие или который является адресатом чего-либо либо воспринимает что-то + + + указывает на сравнение свойств объекта со свойствами класса, к которому этот объект относится + + + + + + + + + + + + + + + + при обращении к знакомому собеседнику + + + местоимение второго лица + + + + + + диоксид углерода + + + + + + атмосферное явление + + + + + + новый вид на территории + + + + + + по окончании, позднее чего-либо + + + + + по отъезду, уходу или смерти кого-либо + + + + + следуя за чем-либо в ряду + + + + + + разве, неужели (употр. в начале предложения с оттенком противопоставления чему-нибудь другому, возможному + + + + + + употребляется при подчёркивании, выделении того или иного члена предложения + + + употребляется при усилении значения вопросительного местоимения или наречия, входящего в состав вопросительного предложения + + + употребляется на границе двух предложений, из которых второе содержит в себе истолкование, разъяснение первого + + + употребляется при усилении выразительности, значимости всего высказывания или какой-либо его части + + + + + + натуральное число + + + + + + натуральное число + + + + + + прямо перед кем-либо (чем-либо) + + + навстречу, в обратном, противоположном направлении + + + вопреки, наперекор кому-либо (чему-либо) + + + для борьбы с кем-либо (чем-либо), противодействия чему-то + + + в сравнении, в сопоставлении с кем-либо (чем-либо) + + + + + + со словами как, лишь, едва в их значении + + + сейчас же, как…, сразу после того, как…, в тот момент, как… + + + противительный союз, после слов "но, однако, при условии" + + + противительный союз, со словами а, но, да + + + + + + + + + + + + + + + + + + + натуральное число между 999 и 1001, десять сотен + Вы, я вижу, бескорыстно любите деньги. Скажите, какая сумма вам нравится? ― Пять тысяч, ― быстро ответил Балаганов. + + + большое неопределённое кол-во + + + + + + звук капающей воды + + + + + + натуральное число + + + + + + + + + + + + + + + число + + + полное ничто + + + цифра + + + + + + порядковое прилагательное, третий по порядку + + + + + + + по направлению к, соприкасаясь с + + + обозначение принадлежности + + + до момента + + + обозначение цели + + + по отношению к + + + обозначение следствия + + + в вводных словосочетаниях: к счастью, к несчастью, к сожалению + + + + + + вопросительная частица + + + + + + равным образом, в равной мере + + + в сочет с "а", "но", "и" — образует сложные союзы с присоединительным значением + + + + + + + + + + + + + + + + + + целый, полный, без исключений + + + совершенно, целиком + + + (израсходовалось, кончилось) совсем + + + всё, что есть, целиком, без исключений + + + в сочетании со сравн. ст. прил. или нареч. образует превосходную степень + + + в полном составе, без исключения (о людях) + + + + + + + + + + + + + + + + + + данный, находящийся здесь, близко к говорящему или слушающему + + + + + + сквозь, поперёк + + + поверх + + + по истечении времени + + + с помощью, посредством + + + + + + после этого, потом + + + с этой целью + + + + + + в какой-то мере, хоть + + + + + + + пространственное отношение - свыше, поверх + + + обозначает направленность, нацеленность соответствующего действия на какой-то объект + + + + + + употребляется для указания на расстояние между какими-нибудь пунктами, отделяющее один пункт от другого, на промежуток времени, отделяющий одно событие от другого или какое-нибудь событие от какого-нибудь момента + + + употребляется для указания на пространственный предел чего-нибудь, на временный предел какого-нибудь действия + + + прежде, раньше чего-нибудь / кого-нибудь + + + + + + + употребляется для указания предела, степени какого-нибудь качества, действия + + + употребляется для указания на какой-нибудь предел, как результат действия. + + + употребляется для указания на количественный предел чего-нибудь + + + указывает на кого-что-нибудь, в чем существует нужда, интерес, стремление + + + употребляется для указания предметов, лиц, к к-рым имеется склонность, тяготение + + + + звук, издаваемый кукушкой + «Ку-ку! ку-ку!» раздавалось в лесу. + + + натуральное число + Скряга Скрудж и три добрых духа. + + + цифра + + + натуральное число + Один из крупнейших словарей русского языка. + + + помещённый внутрь + + + имеющийся, содержащийся в ком-либо, чём-либо + + + законченный, завершённый + + + указывает на объект рядом + + + указывает на приблизительное значение + + + натуральное число + + + натуральное число + + + холодно + + + обозначает начальную точку движения + + + указывает предмет, на поверхности которого происходит действие + + + указывает место или пространство, в пределах которого совершается действие + + + до (указывает на предмет, являющийся границей или пределом распространения действия) + + + указывает предмет, на который направлено или обращено действие + + + указывает лицо или предмет, о которых думают, тоскуют, скорбят и т. п. + + + из-за какой-либо причины (указывает на причину, источник чего-либо) + + + после (указывает на временную или пространственную границу) + + + указывает на предмет, на который распространяется работа, влияние, действие, деятельность и т. п. субъекта + + + подчёркивает высокую степень проявления признака, указывая на лицо, предмет, действие и прочее, на которые распространяется данный признак вопреки ожиданиям + + + выделяет слово, которое свидетельствует об интенсивности какого-либо действия, состояния + + + усиливает, эмоционально выделяет, подчёркивает следующее за ним слово + И какой чудный воздух: дышишь ― и сердце веселится. + + + подчёркивает, что действие или предмет вполне соответствуют чему-либо предварительно упомянутому + + + предупреждение об опасности + + + место позади + + + направление позади + + + место рядом с предметом, имеющим функциональное назначение + + + направление на место рядом с предметом, имеющим функциональное назначение + + + за пределы чего направлено действие + + + на расстоянии + + + в течение + + + интервал времени до + + + указывает предмет, за который кусают или хватают + + + лицо или предмет, который вызывает чувство + + + указание на цель + + + указание предмета в обмен на что + + + лицо, от имени которого совершается действие + + + в качестве, заместо + + + благотворствовать, быть в согласии + + + за пределами, дальше + + + после + + + во время + + + указание на цель или причину, из-за + + + натуральное число + + + натуральное число + + + выражает приказ, требование + + + con-, co- + + + обозначает действие, направленное на самого актора + + + деепричастие от «рассказывать» + + + соединительный союз + + + логическая операция + + + внутрь (о направлении) + + + внутри (о местонахождении) + + + конечная точка движения + + + на поверхность + + + через, сквозь + + + похожий на + + + имеющий силу + + + с целью + + + при указании на внешний признак + + + способ действия + + + при указании на группу лиц или деятельность + + + при указании на результат превращения лица или предмета + + + при указании на внутреннее состояние + + + время совершения действия + + + на расстоянии + + + одетый или обутый во что-либо, измазанный чем-либо и т. п. + + + вид деятельности + + + конкретное время или период + + + внутреннее состояние субъекта или отношение субъектов + + + область применения + + + для + + + в конструкциях вида "Х в Х" + + + сопутствующее действие + + + натуральное число + + + употребляется как вопросительный отклик, ответ на обращение или при переспросе нерасслышанного + + + выражает удивление, недоумение, возмущение, негодование, насмешку, иронию, раздражение, упрёк и т. п. + + + употребляется для усиления вопроса (в том числе риторического) + + + народно-поэтическое; употребляется в начале стиха + + + тот предмет, человек и т. п.; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным м. р. ед. ч. + Тогда он оглянулся назад и, увидев меня, позвал меня. + + + местоимение третьего лица + + + выражает несогласие со словами собеседника, возражение ему, увещание + ― Ел? ― И-и! Боже упаси, и смотреть не стал… + + + подчёркивает высокую степень, величину чего-либо + Не смотрите, он таким общипанным кажет: он это так, для виду… у него деньги-то и-и! + ― Учится-то он хорошо? — И-и, как учится! первый ученик-с + + + русская буква + + + употребляется при выражении эмоций + + + за вычетом, вычтя + + + меньше, ниже ноля + + + символ, используемый в математике + + + это лицо женского пола или этот объект, ассоциируемый с женским родом; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным женского рода + Поэзия — светлый и свежий водоём, и когда душа прикасается к этой влаге, она пьёт из источника вечной юности. + + + принадлежащий или относящийся к тому, что выражено третьим лицом женского рода + + + утвердительная частица для ответа + + + внутри речи для подчёркивания + + + в начале повествовательного предложения, глубокомысленно + + + в начале предложения, когда неожиданно вспомнилось + + + в качестве недоверия, возражения + + + в конце вопроса для побуждения к ответу + + + как отклик на обращение или телефонный вызов + + + восклицательно-вопросительная реплика для выражения удивления, недоверия + + + данный, находящийся там, далеко от говорящего + + + указывает на какой-л. предмет, лицо, выделяемые из ряда других + + + указывает на уже упоминавшееся в речи и уже известное + + + такой, который нужен или должен быть + + + внутри, в пределах + + + между началом и концом + + + в составе какого-то множества, в окружении других + + + добавляется для отрицания слова + + + применяется для придания неопределённости или предположительности + + + применяется для указания неполноты действия или состояния + + + применяется для указания ограниченного утверждения + + + применяется для указания утвердительности + + + употребляется как категорическое решение окончить, прекратить, завершить что-либо + Ну всё! Я ухожу. + + + употребляется как констатация чьей-то наступившей кончины; умер, скончался + Изя всё + + + натуральное число + + + употребляется для формирования вопроса, с помощью которого говорящий хочет получить информацию о предмете, признаке, действии + + + употребляется для формирования вопроса о состоянии, положении и т. п. кого-, чего-либо + + + употребляется для формирования вопроса о причине действия; почему + + + употребляется для формирования вопроса о цели действия; зачем + + + употребляется для формирования вопроса о количестве; сколько + + + употребляется для формирования риторических вопросов и восклицательных предложений, в которых указывается на несущественность, неважность чего-либо + + + всё без исключения, очень многое (в риторических вопросах и восклицательных предложениях с отрицанием) + + + неизвестный говорящему или безразлично какой для него объект; что-нибудь, что-то + + + употребляется для присоединения придаточного предложения + + + то же, что каким образом + + + то же, что словно, будто + + + то же, что в качестве + + + то же что так как + + + указывает на признак или действие + + + новый вид на территории + + + выражение одобрения + + + оценка ситуации как ужасной + + + слово приветствия + + + выражает сильное удивление + + + часть союза "если...то" + + + используется для чередования перечисляемых объектов или действий + + + натуральное число + + + натуральное число + + + команда прекратить движение + + + выражение несогласия + + + до чего-нибудь, раньше чего-нибудь, за какое-нибудь время до чего-нибудь + + + впереди, раньше кого-нибудь + + + звук, издаваемый кошкой + + + находясь ниже + + + в окрестности, недалеко + + + в зоне или периоде действия + + + приблизительно, ненамного меньше + + + незадолго до времени + + + указывает на предмет, для хранения, размещения, нахождения которого что-либо предназначено, используется + + + имитируя что-либо + + + на фоне + + + указывает на непрямое, наклонное направление + + + поверх, над + + + указывает объект или цель действия, движения + + + (с некоторыми объектами) при указании направления + + + указание количества + + + при указании клиента, заказчика + + + объект действия, распространения + + + указывает источник финансирования + + + (с некоторыми объектами) при указании места + + + указывает на объект, являющийся основой, важной составляющей какой-либо системы или субстанции + + + при указании времени + + + в сочетаниях вида Х на Х + + + употребляется при обозначении орудия или средства или орудия действия + + + при указании на средство, с помощью которого кто-, что-л. работает, действует, что-л. делается, производится + + + при указании на средство, с помощью которого кто-, что-л. работает, действует, что-л. делается, производится + + + изъяснительный; употребляется для присоединения придаточного предложения + + + употребляется для присоединения сравнительных оборотов + + + употребляется для присоединения придаточного предложения, называющего явление, событие, факт и т. п., которые служат достаточным основанием для предположения или утверждения, излагаемых в главном предложении, одновременно выступая в качестве следствия по отношению к ним + + + употребляется для присоединения придаточного предложения, действие которого происходит одновременно с действием главного предложения + + + обозначение исходной точки передвижения предмета или информации + + + обозначение положения точки в пространстве по сравнению с исходной + + + в соединении с предлогом до (от — до) и другим существительным употребляется при обозначении границ какой-либо части пространства, протяжённости чего-либо, расстояния и т. п. + + + обозначение момента времени, даты + + + в соединении с предлогом до (от — до) и другим существительным употребляется при обозначении границ какого-либо отрезка времени, периода + + + в соединении с числительным и предлогом до с другим числительным употребляется при обозначении величин, ограничивающих что-либо + + + в соединении с предлогом до (от — до) и другим существительным или прилагательным употребляется при указании на полный охват всех предметов, свойств и т. п., начиная с данного и кончая каким-либо + + + обозначение причины + + + обозначение средства против чего-либо + + + обозначение соотношения части и целого + + + обозначение принадлежности продукта к производителю + + + обозначение характера действия + + + частица, используемая при выделении или при усилении значения слова или словосочетания, к которым относится + + + болезнь + + + падение концентрации озона + + + поток заряженных частиц + + + тёмная область на Солнце + + + гирд, дар гирди + + + употребляется при соотнесении однородных членов предложения или целых предложений (по значению взаимоисключающих или заменяющих друг друга), указывая на необходимость выбора между ними + + + употребляется при введении слов и предложений, имеющих пояснительный характер, соответствуя по значению словам: то есть, иначе, иначе говоря + + + употребляется при введении вставной конструкции, вводного предложения + + + употребляется при присоединении последнего члена перечисления, соответствуя по значению слов: и, а также + + + употребляется при присоединении предложений, дополняющих предыдущее высказывание + + + продукт питания пчёл + + + нахождение чего-либо в пространстве, ограниченном двумя или несколькими объектами + + + указание на связь двух точек или двух предметов в пространстве: от … до … + + + обозначение промежутка времени, в который что-либо совершается + + + обозначение взаимосвязанных лиц (предметов или явлений) + + + обозначение сравниваемых лиц (предметов или явлений) + + + обозначение группы предметов, явлений, лиц, в пределах которой совершается распределение, разделение чего-либо + + + в ситуации выбора: =из + + + положение предмета среди других предметов; среди + + + выражает сильную эмоцию + + + усилительная частица + + + but, and + + + указывает на объект глагола: предмет, на который направлена мысль, речь, чувство, действие + + + указывает, что действие одного предмета на другой приводит к их сближению, столкновению, соприкосновению + + + указывает, что что-либо находятся рядом, вплотную с чем-нибудь + + + указывает место + + + при обозначении времени, около которого или в пределах которого происходит действие + + + указаывает на свойство какого-либо предмета, качество, признак + + + при обозначении времени, около которого или в пределах которого происходит действие + + + имеется возможность + + + разрешено, дозволено + + + местоимение первого лица + + + личность + + + употребляется при выражении противопоставления + Дай, — думает, — отвернусь, — всё не так страшно. + + + употребляется при подчёркивании, усилении значения (обычно в сочетании со сравнительной степенью прилагательных или наречий, а также с глаголами, обозначающими увеличение или уменьшение чего-либо) + Она гуляла одна, всё в том же берете, с белым шпицем; никто не знал, кто она, и называли её просто так: дама с собачкой. + + + о чувстве удовлетворения, удовольствия, радости и т. п., испытываемом кем-либо + + + обращение к отцу + + + натуральное число + + + натуральное число + + + натуральное число + + + число + + + цифра + + + падение концентрации озона + + + газы, вызывающие парниковый эффект + + + противопоставительный союз + + + указывает на (обычно ранее упомянутые) предметы (лица) во множественном числе, к которым говорящий не относит ни себя, ни адресатов высказывания + + + именно те, а не другие; те самые + + + с частицей вот приобретает указательный или усилительный характер + + + указывает на одно лицо, используется как уважительная форма называния + + + натуральное число + + + натуральное число + + + некоторое небольшое число + + + натуральное число + + + присоединяет придаточное цели + + + присоединяет придаточное с описанием возможной ситуаци + + + выражает желание, со словом "бы" или "б" + + + после вопросительных местоимений и местоименных наречий усиливает их выразительность + + + усиление в риторическом вопросе + + + исключительно + + + выражает математическую необходимость в составе выражений + + + why + + + натуральное число + + + digit 4 (four) + + + натуральное число + + + то же, что вот + + + союз, используемый при присоединении целых предложений или отдельных членов предложения, развивающих, дополняющих или уточняющих ранее высказанную мысль + + + выражает сопоставление + + + выражает противопоставление + + + для ограничения, исключения: только, исключительно + + + употребляется в предложениях, выражающих пожелание + + + для сослагательного наклонения + + + при обозначении предположительной или условно-предположительной возможности действия + + + при обозначении различных оттенков желаемости действия + + + указывает на вежливо-предупредительное пожелание кому-либо, совет, предложение + + + употребляется при выражении опасения по поводу какого-либо нежелательного действия + + + указывает на обусловленность действия + + + указывает на различные оттенки условности, предположительности, желаемости действия + + + употребляется для присоединения предложений или отдельных членов предложений, дополняющих, уточняющих высказанную мысль + + + употребляется для присоединения придаточных временных предложений + + + для присоединения придаточных предложений цели + + + присоединяет предложение, выражающее пожелание + + + большое количество, значительное число кого-либо, чего-либ + + + натуральное число + + + натуральное число + + + указывает на место или объект, с которого что-либо удаляется, снимается + + + указывает на место, из которого что-либо исходит + + + в обозначении интервала или множества указывает на его начальную точку + + + обозначает совместность, сочетание + + + обозначает наличие, присутствие кого-нибудь или чего-нибудь, обладание кем-нибудь или чем-нибудь у лица или предмета, производящего какое-нибудь действие или испытывающего какое-нибудь состояние + + + употребляется для указания на лицо или предмет, наличие, присутствие которого является источником того или иного состояния, испытываемого кем-нибудь или чем-нибудь, или причиной действия, совершаемого кем-нибудь или чем-нибудь + + + обозначает приблизительную меру + + + заменяет предлог из + + + входит в состав сложных слов в качестве одного из элементов + + + имея целью сделать что-то такое, что полезно или приятно другому человеку и чего этому человеку нормально хотеть + + + описывает цель, предназначение чего-либо + + + обозначает субъект, на который направлено какое-либо действие или который является адресатом чего-либо либо воспринимает что-то + + + указывает на сравнение свойств объекта со свойствами класса, к которому этот объект относится + + + при обращении к знакомому собеседнику + + + местоимение второго лица + + + диоксид углерода + + + атмосферное явление + + + новый вид на территории + + + по окончании, позднее чего-либо + + + по отъезду, уходу или смерти кого-либо + + + следуя за чем-либо в ряду + + + разве, неужели (употр. в начале предложения с оттенком противопоставления чему-нибудь другому, возможному + + + употребляется при подчёркивании, выделении того или иного члена предложения + + + употребляется при усилении значения вопросительного местоимения или наречия, входящего в состав вопросительного предложения + + + употребляется на границе двух предложений, из которых второе содержит в себе истолкование, разъяснение первого + + + употребляется при усилении выразительности, значимости всего высказывания или какой-либо его части + + + натуральное число + + + натуральное число + + + прямо перед кем-либо (чем-либо) + + + навстречу, в обратном, противоположном направлении + + + вопреки, наперекор кому-либо (чему-либо) + + + для борьбы с кем-либо (чем-либо), противодействия чему-то + + + в сравнении, в сопоставлении с кем-либо (чем-либо) + + + со словами как, лишь, едва в их значении + + + сейчас же, как…, сразу после того, как…, в тот момент, как… + + + противительный союз, после слов "но, однако, при условии" + + + противительный союз, со словами а, но, да + + + натуральное число между 999 и 1001, десять сотен + Вы, я вижу, бескорыстно любите деньги. Скажите, какая сумма вам нравится? ― Пять тысяч, ― быстро ответил Балаганов. + + + большое неопределённое кол-во + + + звук капающей воды + + + натуральное число + + + число + + + полное ничто + + + цифра + + + порядковое прилагательное, третий по порядку + + + по направлению к, соприкасаясь с + + + обозначение принадлежности + + + до момента + + + обозначение цели + + + по отношению к + + + обозначение следствия + + + в вводных словосочетаниях: к счастью, к несчастью, к сожалению + + + вопросительная частица + + + равным образом, в равной мере + + + в сочет с "а", "но", "и" — образует сложные союзы с присоединительным значением + + + целый, полный, без исключений + + + совершенно, целиком + + + (израсходовалось, кончилось) совсем + + + всё, что есть, целиком, без исключений + + + в сочетании со сравн. ст. прил. или нареч. образует превосходную степень + + + в полном составе, без исключения (о людях) + + + данный, находящийся здесь, близко к говорящему или слушающему + + + сквозь, поперёк + + + поверх + + + по истечении времени + + + с помощью, посредством + + + после этого, потом + + + с этой целью + + + в какой-то мере, хоть + + + пространственное отношение - свыше, поверх + + + обозначает направленность, нацеленность соответствующего действия на какой-то объект + + + употребляется для указания на расстояние между какими-нибудь пунктами, отделяющее один пункт от другого, на промежуток времени, отделяющий одно событие от другого или какое-нибудь событие от какого-нибудь момента + + + употребляется для указания на пространственный предел чего-нибудь, на временный предел какого-нибудь действия + + + прежде, раньше чего-нибудь / кого-нибудь + + + употребляется для указания предела, степени какого-нибудь качества, действия + + + употребляется для указания на какой-нибудь предел, как результат действия. + + + употребляется для указания на количественный предел чего-нибудь + + + указывает на кого-что-нибудь, в чем существует нужда, интерес, стремление + + + употребляется для указания предметов, лиц, к к-рым имеется склонность, тяготение + + + diff --git a/extensions/wikidata-lexemes/output/sa.xml b/extensions/wikidata-lexemes/output/sa.xml new file mode 100644 index 00000000..d92576a3 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sa.xml @@ -0,0 +1,1322 @@ + + + + + + + + + (aorist affix) + + + + + + + + + + + I + + + + + + جے، جیکر، اگر + + + + + + (پچھیتر توں کوئی مطلب نہیں دتا) + + + + + + atop, upon + + + + + + + + + کو، کوݨ + + + + + + (अवस्रंसन) + + + + + + (बन्धन) + + + + + + (श्लेषण) + + + + + + (क्षरण) + + + + + + (गति) + + + + + + (संसिद्धि) + + + + + + (बोधन) + + + + + + (पालन) + + + + + + (प्राणधारण) + + + + + + (वृद्धि) + + + + + + (छेदन) + + + + + + (क्षेप) + + + + + + here, this + + + + + + thus + + + + + + وی + + + + + + غصے کے لیے بنائی گئی آواز + + + + + + (ڈالݨ دا عمل) + + + + + + (अध्ययन) + + + + + + (وسݨ دا عمل‌) + + + + + + (भरण) + + + + + + (व्यक्तायां वाचि) + + + + + + (निगरण) + + + + + + (कम्पन) + + + + + + (दीप्ति) + + + + + + (गति) + + + + + + تک، لئی + + + + + + (بھٹک جاوݨ دا عمل) + + + + + + (पिपासा) + + + + + + (لداوݨ دا عمل) + + + + + + (प्रेरण) + + + + + + (गति) + + + + + + (ہل واہݨ دا عمل) + + + + + + (کنبݨ دا عمل) + + + + + + be big + + + + + + (going) + + + + + + (प्रादुर्भाव) + + + + + + (प्रीति) + + + (सेवन) + + + (चलन) + + + + + + (म्रक्षण) + + + + + + (श्लेषण) + + + + + + (भङ्ग) + + + + + + on + + + to, towards + + + + + + for; because + + + + + + who, what, which + + + + + + (خوشی بھری ہووݨ دا عمل) + + + + + + (یادگار قائم کرن دا عمل) + + + (سلاہݨ دا عمل) + + + + + + (covering) + + + + + + (seizing) + + + + + + (दान) + + + + + + (गति) + + + + + + (हिंसा) + + + + + + (bend) + + + + + + (वाक्यप्रबन्ध) + + + + + + (अतिसर्जन) + + + + + + (धारण) + + + + + + (दीप्ति) + + + + + + (दीप्ति) + + + + + + (राग) + + + + + + (बाधते) + + + + + + self, one's self + + + voluntarily, of one's own accord + + + self + + + + + + + + + + + + who, which, what + + + + + + کوݨ، کیہڑا + + + + + + (गतउ) + + + + + + (ترن دا عمل) + + + (لنگھݨ دا عمل) + + + + + + (ज्ञान) + + + + + + (शय) + + + + + + (कुत्सित शब्द) + + + + + + (गात्रविक्षेप) + + + + + + (सन्दीपन) + + + + + + (हिंसा) + + + + + + (tinkling) + + + + + + (पान) + + + + + + (प्रह्णत्व) + + + + + + + + + + + + + + (लट) + + + + + + (verbal affix creating nominal forms) + + + + + + (اُڈݨ دا عمل) + + + + + + (संयमन) + + + + + + (सन्दर्भ) + + + + + + يا + + + + + + (गत्यर्थः) + + + + + + (वेष्टन) + + + + + + (स्वप्न) + + + + + + (वृद्धि) + + + + + + (प्राणत्याग) + + + + + + (अदन) + + + + + + posterior + + + different, other + + + + + + (अश्रुविमोचन) + + + + + + اور + + + + + + + بھوِکھت کال دا حرف + + + + + + آہو + + + اچھا + + + + + + + one + + + only + + + same, identical + + + + + + ”میں“ معنے توں لاحقہ + + + + + + + (affix forming passive verb stems) + + + + + + (verbal affix indicating performance of an action) + + + + + + (ڈھوݨ دا عمل) + + + + + + (ہووݨ دا عمل) + + + (بݨن دا عمل) + + + + + + (विभाजन) + + + + + + (warding off, driving) + + + (going) + + + + + + (resorting or going to) + + + + + + (sewing or darning, stitching together) + + + + + + (growing, increasing, expanding) + + + + + + + + + + this + + + + + + (भक्षणे) + + + + + + (उपदेह) + + + + + + (अवखण्डन) + + + + + + (दर्शन) + + + + + + (क्रीडा) + + + + + + (परिभाषण) + + + + + + (nominal forming affix) + + + + + + ول + + + + + + om (sacred syllable) + + + + + + (لگݨ دا عمل) + + + + + + (क्षय) + + + + + + (پھڑن دا عمل) + + + (ملاوݨ دا عمل) + + + + + + (getting, in obtaining) + + + + + + (خوش ہووݨ دا عمل) + + + + + + (دیکھݨ دا عمل) + + + + + + (becoming bad or corrupted) + + + + + + (प्रपूरण) + + + + + + (द्रव्यविनिमये) + + + + + + (आवरण) + + + + + + (विदारणे) + + + + + + (मान) + + + + + + (प्रीणन) + + + + + + (अनवस्थान) + + + + + + (व्यक्तायां वाचि) + + + + + + (हसन) + + + + + + (निवासे) + + + + (aorist affix) + + + I + + + جے، جیکر، اگر + + + (پچھیتر توں کوئی مطلب نہیں دتا) + + + atop, upon + + + کو، کوݨ + + + (अवस्रंसन) + + + (बन्धन) + + + (श्लेषण) + + + (क्षरण) + + + (गति) + + + (संसिद्धि) + + + (बोधन) + + + (पालन) + + + (प्राणधारण) + + + (वृद्धि) + + + (छेदन) + + + (क्षेप) + + + here, this + + + thus + + + وی + + + غصے کے لیے بنائی گئی آواز + + + (ڈالݨ دا عمل) + + + (अध्ययन) + + + (وسݨ دا عمل‌) + + + (भरण) + + + (व्यक्तायां वाचि) + + + (निगरण) + + + (कम्पन) + + + (दीप्ति) + + + (गति) + + + تک، لئی + + + (بھٹک جاوݨ دا عمل) + + + (पिपासा) + + + (لداوݨ دا عمل) + + + (प्रेरण) + + + (गति) + + + (ہل واہݨ دا عمل) + + + (کنبݨ دا عمل) + + + be big + + + (going) + + + (प्रादुर्भाव) + + + (प्रीति) + + + (सेवन) + + + (चलन) + + + (म्रक्षण) + + + (श्लेषण) + + + (भङ्ग) + + + on + + + to, towards + + + for; because + + + who, what, which + + + (خوشی بھری ہووݨ دا عمل) + + + (یادگار قائم کرن دا عمل) + + + (سلاہݨ دا عمل) + + + (covering) + + + (seizing) + + + (दान) + + + (गति) + + + (हिंसा) + + + (bend) + + + (वाक्यप्रबन्ध) + + + (अतिसर्जन) + + + (धारण) + + + (दीप्ति) + + + (दीप्ति) + + + (राग) + + + (बाधते) + + + self, one's self + + + voluntarily, of one's own accord + + + self + + + who, which, what + + + کوݨ، کیہڑا + + + (गतउ) + + + (ترن دا عمل) + + + (لنگھݨ دا عمل) + + + (ज्ञान) + + + (शय) + + + (कुत्सित शब्द) + + + (गात्रविक्षेप) + + + (सन्दीपन) + + + (हिंसा) + + + (tinkling) + + + (पान) + + + (प्रह्णत्व) + + + (लट) + + + (verbal affix creating nominal forms) + + + (اُڈݨ دا عمل) + + + (संयमन) + + + (सन्दर्भ) + + + يا + + + (गत्यर्थः) + + + (वेष्टन) + + + (स्वप्न) + + + (वृद्धि) + + + (प्राणत्याग) + + + (अदन) + + + posterior + + + different, other + + + (अश्रुविमोचन) + + + اور + + + بھوِکھت کال دا حرف + + + آہو + + + اچھا + + + one + + + only + + + same, identical + + + ”میں“ معنے توں لاحقہ + + + (affix forming passive verb stems) + + + (verbal affix indicating performance of an action) + + + (ڈھوݨ دا عمل) + + + (ہووݨ دا عمل) + + + (بݨن دا عمل) + + + (विभाजन) + + + (warding off, driving) + + + (going) + + + (resorting or going to) + + + (sewing or darning, stitching together) + + + (growing, increasing, expanding) + + + this + + + (भक्षणे) + + + (उपदेह) + + + (अवखण्डन) + + + (दर्शन) + + + (क्रीडा) + + + (परिभाषण) + + + (nominal forming affix) + + + ول + + + om (sacred syllable) + + + (لگݨ دا عمل) + + + (क्षय) + + + (پھڑن دا عمل) + + + (ملاوݨ دا عمل) + + + (getting, in obtaining) + + + (خوش ہووݨ دا عمل) + + + (دیکھݨ دا عمل) + + + (becoming bad or corrupted) + + + (प्रपूरण) + + + (द्रव्यविनिमये) + + + (आवरण) + + + (विदारणे) + + + (मान) + + + (प्रीणन) + + + (अनवस्थान) + + + (व्यक्तायां वाचि) + + + (हसन) + + + (निवासे) + + + diff --git a/extensions/wikidata-lexemes/output/sd.xml b/extensions/wikidata-lexemes/output/sd.xml new file mode 100644 index 00000000..aa67e4fa --- /dev/null +++ b/extensions/wikidata-lexemes/output/sd.xml @@ -0,0 +1,701 @@ + + + + + + + + + پِڻ، ڀِي + + + + + + + + + + + + + + + میں + + + + + + کیہہ + + + + + + افسوس! + + + + + + + + + + + + + + + + + + + + + + ਦਾ + + + + + + + + + + + + اے، ہے + + + ਇਹ ਚੀਜ਼ ਹੁੰਦੀ ਏ, ਹਾਂ ਹੁੰਦੀ ਏ + + + + + + + + توں + + + + + + + + + + + + + + + + + + + + + + + ایہہ + + + + + + + + ایہہ جو + + + + + + + + ہر کوئی + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + جو، وارو + + + + + + + + + + + + + ساڈا + + + + + + + + + + + + + + + واهر لاءِ دانهن + + + + + + + + + اُتّے + + + جي مٿان + + + هنڌان، ماڳان، وٽان + + + کان + + + مان، وچان + + + سببان، جي ڪري + + + + + + ماڳَهِين + + + + + + + + + + + + + + + + + + + جيڪو + + + + + + + + + + + + وٽ، ڀر، لڳ + + + + + + ساڻ، سين + + + + سَهاءِ، ڳَرِ، وَٽِ، کان + + + ڀرسان + + + هٿان + + + جهڙو، جيهو + + + ساٿ، سميت + + + + + + + + + + + + + + + + + + + ڪوئِي هڪڙو + + + + + + + + + + + اسیں + + + + + + + کیوں + + + + + + يا، يان + + + وانگر، جيان + + + جنهن وقت، جنهن مهل + + + + + + + + + + + + + + + کوݨ + + + + + + ذرو، ٿورو، رَتي، ڪُڇُ + + + + + + هر هڪ تي + + + + + + ہاۓ! + + + + + + + + + ڏي، ڪول + + + + + + + + + + + + سان، سين ڀيڙو + + + + + + + + + + + + تُوں + + + + + + + + + + + + + اندر، منجهه + + + وچان، منجهان + + + + + + ٻيو وڌيڪ + + + + + + + + + + + + + + + + + + + + + + + + + + تسیں + + + + + + + + + + + + + + + + + + + + + + + + + اوہ + + + + + + + + + + + + + + خود، پنڊ + + + + + + + + + + + + ويجهو، نزديڪ + + + + + + + + + + + + میرا + + + + + + “ਮੈਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ + + + + + + + + اوہ جو + + + + + + + کیوں + + + + پِڻ، ڀِي + + + میں + + + کیہہ + + + افسوس! + + + ਦਾ + + + اے، ہے + + + ਇਹ ਚੀਜ਼ ਹੁੰਦੀ ਏ, ਹਾਂ ਹੁੰਦੀ ਏ + + + توں + + + ایہہ + + + ایہہ جو + + + ہر کوئی + + + جو، وارو + + + ساڈا + + + واهر لاءِ دانهن + + + اُتّے + + + جي مٿان + + + هنڌان، ماڳان، وٽان + + + کان + + + مان، وچان + + + سببان، جي ڪري + + + ماڳَهِين + + + جيڪو + + + وٽ، ڀر، لڳ + + + ساڻ، سين + + + سَهاءِ، ڳَرِ، وَٽِ، کان + + + ڀرسان + + + هٿان + + + جهڙو، جيهو + + + ساٿ، سميت + + + ڪوئِي هڪڙو + + + اسیں + + + کیوں + + + يا، يان + + + وانگر، جيان + + + جنهن وقت، جنهن مهل + + + کوݨ + + + ذرو، ٿورو، رَتي، ڪُڇُ + + + هر هڪ تي + + + ہاۓ! + + + ڏي، ڪول + + + سان، سين ڀيڙو + + + تُوں + + + اندر، منجهه + + + وچان، منجهان + + + ٻيو وڌيڪ + + + تسیں + + + اوہ + + + خود، پنڊ + + + ويجهو، نزديڪ + + + میرا + + + “ਮੈਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ + + + اوہ جو + + + کیوں + + + diff --git a/extensions/wikidata-lexemes/output/se.xml b/extensions/wikidata-lexemes/output/se.xml new file mode 100644 index 00000000..194497c4 --- /dev/null +++ b/extensions/wikidata-lexemes/output/se.xml @@ -0,0 +1,57 @@ + + + + + + + + + the number three + + + + + + good morning + + + + + + the number four + + + + + + thank you + + + + + + one + + + + the number three + + + good morning + + + the number four + + + thank you + + + one + + + diff --git a/extensions/wikidata-lexemes/output/si.xml b/extensions/wikidata-lexemes/output/si.xml new file mode 100644 index 00000000..eae2fb1f --- /dev/null +++ b/extensions/wikidata-lexemes/output/si.xml @@ -0,0 +1,21 @@ + + + + + + + + + one + + + + one + + + diff --git a/extensions/wikidata-lexemes/output/sk.xml b/extensions/wikidata-lexemes/output/sk.xml new file mode 100644 index 00000000..e10f285b --- /dev/null +++ b/extensions/wikidata-lexemes/output/sk.xml @@ -0,0 +1,580 @@ + + + + + + + + + číslo označujúce tisíc miliónov + + + + + + spätosť s kontextom + + + + + + v miere + + + + + + zdôraznenie emocionálnosti + + + zdôraznenie výzvy + + + odporovací význam + + + zdôraznenie odporu + + + zdôraznenie kladnej odpovede + + + + + + začudovanie + + + varovanie + + + + + + v účinkovej vete + + + v podmienkovej vete + + + v časovej vete + + + stupňovanie + + + + + + one + + + + + + zdôrazňuje čas + + + zdôrazňuje miesto + + + rozpätie + + + v extrémnej miere + + + konečnosť + + + + + + číslo označujúce tisíc tisícov + + + + + + výlučnosť + + + zápor + + + negatívny postoj + + + + + + smerovanie + + + + + + v podstate + + + + + + zvuk + + + + + + zlučovací vzťah + + + odporovací vzťah + + + prípustkový vzťah + + + + + + prirovnanie + + + porovnanie + + + v predemtovej vete + + + v doplnku + + + v prívlastku + + + v časovej vete + + + uvádza vsuvku + + + uvádza zoznam + + + rovnakosť + + + + + + otázka na spôsob + + + v zvolacích vetách + + + + + + zdôraznenie + + + + + + výzva na ukončenie + + + + + + zdôraznenie + + + potvrdenie + + + + + + prekvapenie + + + rozhorčenie + + + radosť + + + nespokojnosť + + + + + + zdôraznenie + + + nadviazanie + + + + + + v podstate + + + + + + hnev + + + + + + váhanie + + + uvádza vsuvku + + + + + + + smerovanie + + + + + + nadávka + + + + + + negatívna emócia + + + + + + stupňovací vzťah + + + zlučovací vzťah + + + podraďovacia spojka + + + + + + odporovací vzťah + + + stupňovací vzťah + + + odporovací/prípustkový vzťah + + + + + + zlučovací vzťah + + + vylúčenie oboch možnosti + + + stupňovanie + + + prirovnanie + + + + + + zdôraznenie + + + možno + + + najviac v medziach + + + dokonca + + + vystupňovanie miery + + + okrem toho + + + + + + postačujúco veľa + + + + + + pomerne + + + vôbec + + + pradepodobne + + + + číslo označujúce tisíc miliónov + + + spätosť s kontextom + + + v miere + + + zdôraznenie emocionálnosti + + + zdôraznenie výzvy + + + odporovací význam + + + zdôraznenie odporu + + + zdôraznenie kladnej odpovede + + + začudovanie + + + varovanie + + + v účinkovej vete + + + v podmienkovej vete + + + v časovej vete + + + stupňovanie + + + one + + + zdôrazňuje čas + + + zdôrazňuje miesto + + + rozpätie + + + v extrémnej miere + + + konečnosť + + + číslo označujúce tisíc tisícov + + + výlučnosť + + + zápor + + + negatívny postoj + + + smerovanie + + + v podstate + + + zvuk + + + zlučovací vzťah + + + odporovací vzťah + + + prípustkový vzťah + + + prirovnanie + + + porovnanie + + + v predemtovej vete + + + v doplnku + + + v prívlastku + + + v časovej vete + + + uvádza vsuvku + + + uvádza zoznam + + + rovnakosť + + + otázka na spôsob + + + v zvolacích vetách + + + zdôraznenie + + + výzva na ukončenie + + + zdôraznenie + + + potvrdenie + + + prekvapenie + + + rozhorčenie + + + radosť + + + nespokojnosť + + + zdôraznenie + + + nadviazanie + + + v podstate + + + hnev + + + váhanie + + + uvádza vsuvku + + + smerovanie + + + nadávka + + + negatívna emócia + + + stupňovací vzťah + + + zlučovací vzťah + + + podraďovacia spojka + + + odporovací vzťah + + + stupňovací vzťah + + + odporovací/prípustkový vzťah + + + zlučovací vzťah + + + vylúčenie oboch možnosti + + + stupňovanie + + + prirovnanie + + + zdôraznenie + + + možno + + + najviac v medziach + + + dokonca + + + vystupňovanie miery + + + okrem toho + + + postačujúco veľa + + + pomerne + + + vôbec + + + pradepodobne + + + diff --git a/extensions/wikidata-lexemes/output/sl.xml b/extensions/wikidata-lexemes/output/sl.xml new file mode 100644 index 00000000..443edf83 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sl.xml @@ -0,0 +1,30 @@ + + + + + + + + + by, per + + + + + + every, each + + + + by, per + + + every, each + + + diff --git a/extensions/wikidata-lexemes/output/so.xml b/extensions/wikidata-lexemes/output/so.xml new file mode 100644 index 00000000..32c9ceb4 --- /dev/null +++ b/extensions/wikidata-lexemes/output/so.xml @@ -0,0 +1,30 @@ + + + + + + + + + one + + + + + + swear to God + + + + one + + + swear to God + + + diff --git a/extensions/wikidata-lexemes/output/sq.xml b/extensions/wikidata-lexemes/output/sq.xml new file mode 100644 index 00000000..3b3220c1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sq.xml @@ -0,0 +1,175 @@ + + + + + + + + + piróll! brávo! aferim! + + + + + + + (vocative particle used to call out to someone) hey! + + + + + + numri 1 + + + + + + if; whether + + + + + + each + + + + + + in fact; even, indeed; especially; furthermore + + + + + + in; on, upon; into + + + at (a time or event) + + + approaching; at the point of + + + + + + Përdoret zakonisht me folje të mënyrës urdhërore, lidhore e dëshirore, si dhe me trajta të pashtjelluara për t'u dhënë fjalive kuptim mohues ose për t'u dhënë fjalive mohuese nuancën e dëshirës, të urimit, të mallkimit, të qortimit, të këshillës, të kushtit, të ndalimit etj. + + + + + + piróll! brávo! aferin! + + + + + + + and + + + + + + or + + + + + + and also + + + + + + + + + (attributive proclitic) + + + + + + that + + + + + + lidhë së paku dy alternativa (inkluzive) + + + + + + + + we + + + + piróll! brávo! aferim! + + + (vocative particle used to call out to someone) hey! + + + numri 1 + + + if; whether + + + each + + + in fact; even, indeed; especially; furthermore + + + in; on, upon; into + + + at (a time or event) + + + approaching; at the point of + + + Përdoret zakonisht me folje të mënyrës urdhërore, lidhore e dëshirore, si dhe me trajta të pashtjelluara për t'u dhënë fjalive kuptim mohues ose për t'u dhënë fjalive mohuese nuancën e dëshirës, të urimit, të mallkimit, të qortimit, të këshillës, të kushtit, të ndalimit etj. + + + piróll! brávo! aferin! + + + and + + + or + + + and also + + + (attributive proclitic) + + + that + + + lidhë së paku dy alternativa (inkluzive) + + + we + + + diff --git a/extensions/wikidata-lexemes/output/sr.xml b/extensions/wikidata-lexemes/output/sr.xml new file mode 100644 index 00000000..daa114d2 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sr.xml @@ -0,0 +1,331 @@ + + + + + + + + + временски раније него нешто друго + + + + + + + предлог који означава де је нешто заједно, или коришћено + + + + + + од једне до друге стране, директно + + + + + + they; third-person feminine plural pronoun + + + + + + предлог који означава близину, приближно, итд. + + + + + + оно што није унутра + + + + + + предлог који означава место где се нешто ставља или налази + + + + + + наспрам нечега + + + + + + we; first-person plural pronoun + + + + + + местоимение + + + + + + + протеже се између једног и другог у времену или простору; између + + + + + + предлог који означава кретање на површини, одлазак да се нешто узме, итд + + + + + + + ниже него; према доле + + + + + + предлог који означава predmet разговора + + + + + + I; first-person singular pronoun + + + + + + it; third-person singular pronoun + + + + + + предлог који означава почетак + + + + + + налази се у нечему; не изван + + + + + + предлог који означава сврху, намеру, корист, размену, положај иза, итд + + + + + + више него; на другој страни; + + + + + + he; third-person masculine singular pronoun + + + + + + you; second-person plural pronoun + + + + + + предлог који означава крај + + + + + + предлог који означава правац, смер, извор + + + + + + you; second-person singular pronoun + + + + + + they; third-person masculine plural pronoun + + + + + + у исто време као и нешто друго, или делом тог времена + + + + + + предлог који означава разлог, намеру + + + + + + предлог који означава порекло, узрок, излазак + + + + + + предлог који означава да се нешто налази унутра, време дешавања + + + + + + + preko; više nego; više vrijedno; prima gore + + + + + + предлог који означава дасе налази или дешава близу нечега + + + + + + предлог који означава да се нешто десило након, иза нечег другог, касније + + + + + + изнад; више + + + + + + предлог који означава близину или кретање узбрдо + + + + временски раније него нешто друго + + + предлог који означава де је нешто заједно, или коришћено + + + од једне до друге стране, директно + + + they; third-person feminine plural pronoun + + + предлог који означава близину, приближно, итд. + + + оно што није унутра + + + предлог који означава место где се нешто ставља или налази + + + наспрам нечега + + + we; first-person plural pronoun + + + местоимение + + + протеже се између једног и другог у времену или простору; између + + + предлог који означава кретање на површини, одлазак да се нешто узме, итд + + + ниже него; према доле + + + предлог који означава predmet разговора + + + I; first-person singular pronoun + + + it; third-person singular pronoun + + + предлог који означава почетак + + + налази се у нечему; не изван + + + предлог који означава сврху, намеру, корист, размену, положај иза, итд + + + више него; на другој страни; + + + he; third-person masculine singular pronoun + + + you; second-person plural pronoun + + + предлог који означава крај + + + предлог који означава правац, смер, извор + + + you; second-person singular pronoun + + + they; third-person masculine plural pronoun + + + у исто време као и нешто друго, или делом тог времена + + + предлог који означава разлог, намеру + + + предлог који означава порекло, узрок, излазак + + + предлог који означава да се нешто налази унутра, време дешавања + + + preko; više nego; više vrijedno; prima gore + + + предлог који означава дасе налази или дешава близу нечега + + + предлог који означава да се нешто десило након, иза нечег другог, касније + + + изнад; више + + + предлог који означава близину или кретање узбрдо + + + diff --git a/extensions/wikidata-lexemes/output/ss.xml b/extensions/wikidata-lexemes/output/ss.xml new file mode 100644 index 00000000..25bb68b3 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ss.xml @@ -0,0 +1,21 @@ + + + + + + + + + liquid water + + + + liquid water + + + diff --git a/extensions/wikidata-lexemes/output/st.xml b/extensions/wikidata-lexemes/output/st.xml new file mode 100644 index 00000000..c622e216 --- /dev/null +++ b/extensions/wikidata-lexemes/output/st.xml @@ -0,0 +1,84 @@ + + + + + + + + + the number ten + + + + + + the number five + + + + + + but + + + + + + thousand + + + + + + and (between words) + + + + + + the number nine + + + + + + the number three + + + + + + the number seven + + + + the number ten + + + the number five + + + but + + + thousand + + + and (between words) + + + the number nine + + + the number three + + + the number seven + + + diff --git a/extensions/wikidata-lexemes/output/su.xml b/extensions/wikidata-lexemes/output/su.xml new file mode 100644 index 00000000..de59a285 --- /dev/null +++ b/extensions/wikidata-lexemes/output/su.xml @@ -0,0 +1,21 @@ + + + + + + + + + i + + + + i + + + diff --git a/extensions/wikidata-lexemes/output/sv.xml b/extensions/wikidata-lexemes/output/sv.xml new file mode 100644 index 00000000..27404595 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sv.xml @@ -0,0 +1,2008 @@ + + + + + + + + + inleder en bisats och binder den till huvudsatsen + Det är helt otänkbart att hon skulle avgå. + Jag tycker att det är en fantastisk idé. + + + + + + i överensstämmelse med någon eller något + Bara var femte anmälan om våld i nära relationer klaras upp i Stockholms län, enligt en ny rapport. + + + + + + cardinal number 1 + + + + + + uttrycker motsats i en sats + Det var inte jag, utan hon som gjorde det. + + + + + + lägesbeskrivning i förhållande till två andra objekt, på vardera sida om subjektet + + + + + + cardinal number + + + + + + vid viss tid + + + + + + som har nummer sju (7) i ordningen + + + + + + på baksidan av + + + + + + fifteen + + + + + + refererar till något som är i anslutning till något föregående + + + + + + som har nummer sjutton (17) i ordningen + + + + + + uttrycker ett alternativ, val eller en möjlighet mellan flera saker + Därför bör man alltid hava 4 eller 5 hektar äng mot 1 hektar åker, och där det finnes mera sandjord än lerjord, lönar sig ängen bättre än åkern. + + + + + + nummer mellan 99 och 101 + + + + + + siffran 500 + + + + + + riktning mot referenspunkten + + + + + + + efternamn + I dag behandlar vi Anderssons betänkande. + + + + + + talet noll + + + + + + vorbei + + + + + + + + + hälsning + + + + + + + siffran 34 + + + + + + används om något som är gjort i materialet trä + + + + + + påkalla uppmärksamhet + + + + + + något som är först, tex om en källa, den första källan + + + + + + lära eller vetenskap + + + + + + utrop varmed man markerar företrädesrätt till plats i lek + + + + + + när man hoppas nånting inte ska hända + + + + + + båda + + + + + + uttryck för avsmak + + + + + + på en plats belägen närmast något i riktning framåt + Hennes bil stod fortfarande parkerad framför kommunhuset. + + + + + + och också + Denna sistnämnda kyrka har ett aflångfyrkantigt skepp, ett fyrkantigt och mindre kor samt ett fyrkantigt torn i vester. + + + + + + + + first + + + + + + together with/in the company of + + + including/containing/in addition to + + + by means of/with the use of + + + with respect to + + + + + + ordinaltal + + + + + + siffran 14 + Sverige har i dag fjorton världsarv. + + + + + + siffran 7 + + + + + + + + definite article, when preceding an adjective preceding a noun + + + + + + koncept + + + + + + the previous year + + + + + + rörelsen mot det inre av något + + + + + + kontinuitetskoncept mellan olika fiktiva verk + + + kulturell samling med särskilt framträdande verk + + + väletablerade regler inom exempelvis en konstform eller filosofi + + + + + + so long (farewell) + + + + + + som kommer på plats tio i ordningen + + + + + + ord som används för att visa nekande + + + + + + + som har nummer 11 i ordningen + + + + + + fysisk botten tex. flatbottnad + + + abstrakt botten tex. mångbottnad + + + + + + glatt utrop + + + + + + person som ofta gör tvärt emot andras vilja + + + + + + hören i icke + + + + + + + + pronomen för personer av manskön + Det var hans ord. + ofattbara 19 år har den eritreanska regimen hållit honom fången. + Men framför allt har han inspirerat till barnkonventionen som blir svensk lag nästa år. + + + + + + i skepnad av + + + + + + + + + + you (plural or formal singular) + + + + + + i rörelse bort eller med härkomst i särskild plats + + + + + + + talet mellan fyra och sex + Fyra av fem nya jobb skapas bland Sveriges småföretag och det är där potentialen finns. + + + + + + + + + + talarna eller talaren och minst en till + Låt oss enas om en sak. + + + + + + naturligt tal + + + + + + impersonal subject of impersonal verb + + + + + + + + + första person singular + Det är min önskan. + + + + + + som har nummer tolv (12) i ordningen + + + + + + som kommer på plats nio i ordningen + + + + + + i tillägg till + Utöver en generell närvaro måste den polisiära förmågan finnas på landsbygden. + + + + + + sure!/certainly! (affirmation) + + + + + + + naturligt tal + + + + + + + naturligt tal + + + + + + + okay + + + + + + följ med mig; kom med mig + + + + + + uttryck för stark förvåning eller upprördhet + + + + + + vid vilken tidpunkt som helst + + + + + + exakt, korrekt + + + + + + motsatt + + + + + + runt omkring + + + + + + som kommer på plats åttio i ordningen + + + + + + som kommer på plats sextusen i ordningen + + + + + + + samordnar språkliga enheter (ord, fraser, satsdelar och satser) på samma grammatiska nivå + Envar skall äga rätt till tankefrihet, samvetsfrihet och religionsfrihet. + + + + + + + + + + + inte den tidigare nämnda + + + + + + third-person gender-neutral pronoun + + + könsneutralt personligt pronomen som används för att beteckna en person vars könstillhörighet är irrelevant eller okänd + När en person har sin sysselsättning inom daglig verksamhet erhåller hen ingen lön. + Genomsnittssvensken flyttar minst tio gånger per liv, ofta till en helt annan plats än där hen föddes och växte upp. + + + personligt pronomen som används för att beteckna en person med icke-binär könstillhörighet + Freja insåg att hen var icke-binär förra sommaren. + + + + + + + + (third-person singular personal possessive) belonging to him + + + + + + tal + + + + + + siffran 19 + + + + + + uttrycker syfte + + + + + + som har nummer sexton (16) i ordningen + + + + + + siffran 40 + + + + + + riktning från referenspunkten + + + + + + both + + + + + + vid sidan av + + + + + + concerning + + + + + + yes + + + + + + slang för gammal + + + + + + både och + + + + + + usch; används vid avsmak eller äckel + + + + + + ta det lugnt + + + + + + var tyst + + + + + + god jul (används efter juldagen) + + + gott nytår (används efter nyår) + + + + + + stopp + + + + + + springa fort + + + + + + + gjort bort sig + + + + + + anger läge inuti något eller innanför någots gränser + Hon föddes i Gällivare. + Skruvmejseln låg i lådan. + + + något har kommit till uttryck med användning av en viss formell notation; ett datorprogram uttryckt i ett visst programspråk + + + + + + kvalificerar något (början av något, begivenhet eller dato) som er sket tidigare i förhållande till något annat + + + + + + samtidigt som något annat händer + Medan män får bostad och jobb erbjuds kvinnor färdtjänst och sjukersättning. + + + + + + talet mellan nio och elva + Under de senaste åren har minst tio personer dödats i mc-krigen i Norden. + + + + + + + + + + + someone/anyone + + + + + + som till exempel + Bland de så kallade mångsökarna av sjukvård är besvär såsom nedstämdhet, ångest och oförklarlig värk vanligt. + + + + + + punishing call + + + + + + among + + + + + + (forms adjectives from nouns) + + + + + + tillbaka, på nytt, igen + + + + + + + talet 700 + + + + + + hej + + + + + + liten + + + + + + lyckönskning + + + + + + suffix som skapar substantiv från verb + + + + + + mittemot + + + + + + uppmaning till hund att gå och hämta ett föremål + + + + + + + + + viss, en del + + + + + + siffran 2 + + + + + + används för att binda samman två motsatta eller kontrasterande element + + + + + + nära eller intill viss plats + + + + + + + of (a part of something) + + + + + + anger frånvaron av något + De växte upp utan föräldrar. + + + + + + + + personligt pronomen som refererar till en kvinna + + + + + + + + inte någon + + + + + + räkneordet mellan sju och nio + + + + + + siffran 9 + Skottdådet inträffade i byn Nutaarmiut, cirka nio mil norr om den nordgrönländska staden Upernavik. + + + + + + siffran 4 + De fyra nordligaste länen har under lång tid och i varierande grad kännetecknats av befolkningsförändringar. + + + + + + som har nummer fjorton (14) i ordningen + + + + + + som kommer på plats tjugo i ordningen + + + + + + som gäller för alla enskilda element av något + Där finnas små uddar och små vikar och små kullerstenar, som rasslande sköljas upp och ner vid varje böljeslag. + + + + + + siffran 50 + + + + + + siffran 60 + + + + + + väldigt, mycket + + + + + + i sista stund; precis innan det är för sent + + + + + + person som arbetar med eller har expertis inom ett angivet ämnesområde + + + + + + nothing + + + + + + på plats nr 8 + + + + + + + när något inte går som man vill + + + + + + + + one + + + + + + siffran 20 + + + + + + siffran 200 + + + + + + anger att man talar ett visst språk + + + anger att något är skapat på eller genomförs på ett visst språk + + + + + + hälsningsfras när man träffar nån + + + + + + hej + + + + + + något som har med elteknik att göra + + + + + + you're welcome + + + + + + används för att uttrycka avsmak eller leda + + + + + + aw poor thing + + + if I have to + + + now I get it + + + I guess that's it + + + good for you + + + so what? + + + oh really? + + + + + + när man hoppas att lyckas med något + + + + + + + uttryck för att gratulera någon, ofta vid firande eller lyckliga händelser + + + + + + och + + + + + + + + + hela mängden + + + + + + i riktning mot något + + + + + + betyder att nånting är pågående + + + + + + metafysiskt begrepp om allt som finns + + + + + + siffran 16 + + + + + + naturligt tal + + + + + + ändelse som betecknar att någon egenskap saknas + + + + + + som har nummer femton (15) i ordningen + + + + + + siffran 70 + + + + + + siffran 45 + Fyrtiofem år är ingen lång tid sett i ett historiskt perspektiv. + + + + + + binde-o som limmar ihop ord som tex. födokälla + + + + + + ett sätt att visa uppskattning + + + + + + i riktning mot strömmen + Vi behöver arbeta uppströms liksom nedströms för att säkerställa att skadliga ämnen inte kommer ut i vår natur. + + + + + + uttrycker affirmerande + + + + + + mera än en + + + + + + ljudhärmande + + + + + + kraftuttryck vid avsmak, leda, äckel + + + + + + inget att oroa sig för + + + + + + något som är över och i kontakt med något annat + + + något som har kommit till uttryck med användning av ettvisst naturligt språk eller en viss dialekt + + + + + + + + som tillhör mig + + + + + + anger verbets grundform + Det enda rimliga var att avgå. + Vi kommer att ringa upp dig. + Att lära sig ett nytt språk är inte lätt. + + + + + + från insidan av något + Pojken tog cykeln ur cykelstället. + + + + + + 3; the cardinal number three + + + + + + + indefinite article + + + + + + som har nummer tre (3) i ordningen + + + + + + som kommer på plats fyra i ordningen + + + + + + som kommer på plats sex i ordningen + + + + + + naturligt tal + + + + + + som har nummer tretton (13) i ordningen + + + + + + + + + + personligt pronomen + + + + + + siffran 30 + + + + + + trots att + + + + + + until + + + + + + informell hälsning + Hej jag kan inte ta emot ditt samtal just nu + + + informal farewell (shortening of 'hej då') + + + + + + + + utan hjälp eller påverkan + + + ensam + + + + + + passerande + + + + + + som har att göra med livet eller levande organismer + + + + + + sorrow exclamation + + + + + + indikerar att något gäller eller kan användas endast en gång + + + + + + oops! + + + + + + verbal smekning som utbyts vid sänggående + + + + + + som har med döden att göra + + + + + + när man hoppas att lyckas med något + + + + + + + utrop av irritation + + + + + + som har med självmord att göra + + + + inleder en bisats och binder den till huvudsatsen + Det är helt otänkbart att hon skulle avgå. + Jag tycker att det är en fantastisk idé. + + + i överensstämmelse med någon eller något + Bara var femte anmälan om våld i nära relationer klaras upp i Stockholms län, enligt en ny rapport. + + + cardinal number 1 + + + uttrycker motsats i en sats + Det var inte jag, utan hon som gjorde det. + + + lägesbeskrivning i förhållande till två andra objekt, på vardera sida om subjektet + + + cardinal number + + + vid viss tid + + + som har nummer sju (7) i ordningen + + + på baksidan av + + + fifteen + + + refererar till något som är i anslutning till något föregående + + + som har nummer sjutton (17) i ordningen + + + uttrycker ett alternativ, val eller en möjlighet mellan flera saker + Därför bör man alltid hava 4 eller 5 hektar äng mot 1 hektar åker, och där det finnes mera sandjord än lerjord, lönar sig ängen bättre än åkern. + + + nummer mellan 99 och 101 + + + siffran 500 + + + riktning mot referenspunkten + + + efternamn + I dag behandlar vi Anderssons betänkande. + + + talet noll + + + vorbei + + + hälsning + + + siffran 34 + + + används om något som är gjort i materialet trä + + + påkalla uppmärksamhet + + + något som är först, tex om en källa, den första källan + + + lära eller vetenskap + + + utrop varmed man markerar företrädesrätt till plats i lek + + + när man hoppas nånting inte ska hända + + + båda + + + uttryck för avsmak + + + på en plats belägen närmast något i riktning framåt + Hennes bil stod fortfarande parkerad framför kommunhuset. + + + och också + Denna sistnämnda kyrka har ett aflångfyrkantigt skepp, ett fyrkantigt och mindre kor samt ett fyrkantigt torn i vester. + + + first + + + together with/in the company of + + + including/containing/in addition to + + + by means of/with the use of + + + with respect to + + + ordinaltal + + + siffran 14 + Sverige har i dag fjorton världsarv. + + + siffran 7 + + + definite article, when preceding an adjective preceding a noun + + + koncept + + + the previous year + + + rörelsen mot det inre av något + + + kontinuitetskoncept mellan olika fiktiva verk + + + kulturell samling med särskilt framträdande verk + + + väletablerade regler inom exempelvis en konstform eller filosofi + + + so long (farewell) + + + som kommer på plats tio i ordningen + + + ord som används för att visa nekande + + + som har nummer 11 i ordningen + + + fysisk botten tex. flatbottnad + + + abstrakt botten tex. mångbottnad + + + glatt utrop + + + person som ofta gör tvärt emot andras vilja + + + hören i icke + + + pronomen för personer av manskön + Det var hans ord. + ofattbara 19 år har den eritreanska regimen hållit honom fången. + Men framför allt har han inspirerat till barnkonventionen som blir svensk lag nästa år. + + + i skepnad av + + + you (plural or formal singular) + + + i rörelse bort eller med härkomst i särskild plats + + + talet mellan fyra och sex + Fyra av fem nya jobb skapas bland Sveriges småföretag och det är där potentialen finns. + + + talarna eller talaren och minst en till + Låt oss enas om en sak. + + + naturligt tal + + + impersonal subject of impersonal verb + + + första person singular + Det är min önskan. + + + som har nummer tolv (12) i ordningen + + + som kommer på plats nio i ordningen + + + i tillägg till + Utöver en generell närvaro måste den polisiära förmågan finnas på landsbygden. + + + sure!/certainly! (affirmation) + + + naturligt tal + + + naturligt tal + + + okay + + + följ med mig; kom med mig + + + uttryck för stark förvåning eller upprördhet + + + vid vilken tidpunkt som helst + + + exakt, korrekt + + + motsatt + + + runt omkring + + + som kommer på plats åttio i ordningen + + + som kommer på plats sextusen i ordningen + + + samordnar språkliga enheter (ord, fraser, satsdelar och satser) på samma grammatiska nivå + Envar skall äga rätt till tankefrihet, samvetsfrihet och religionsfrihet. + + + inte den tidigare nämnda + + + third-person gender-neutral pronoun + + + könsneutralt personligt pronomen som används för att beteckna en person vars könstillhörighet är irrelevant eller okänd + När en person har sin sysselsättning inom daglig verksamhet erhåller hen ingen lön. + Genomsnittssvensken flyttar minst tio gånger per liv, ofta till en helt annan plats än där hen föddes och växte upp. + + + personligt pronomen som används för att beteckna en person med icke-binär könstillhörighet + Freja insåg att hen var icke-binär förra sommaren. + + + (third-person singular personal possessive) belonging to him + + + tal + + + siffran 19 + + + uttrycker syfte + + + som har nummer sexton (16) i ordningen + + + siffran 40 + + + riktning från referenspunkten + + + both + + + vid sidan av + + + concerning + + + yes + + + slang för gammal + + + både och + + + usch; används vid avsmak eller äckel + + + ta det lugnt + + + var tyst + + + god jul (används efter juldagen) + + + gott nytår (används efter nyår) + + + stopp + + + springa fort + + + gjort bort sig + + + anger läge inuti något eller innanför någots gränser + Hon föddes i Gällivare. + Skruvmejseln låg i lådan. + + + något har kommit till uttryck med användning av en viss formell notation; ett datorprogram uttryckt i ett visst programspråk + + + kvalificerar något (början av något, begivenhet eller dato) som er sket tidigare i förhållande till något annat + + + samtidigt som något annat händer + Medan män får bostad och jobb erbjuds kvinnor färdtjänst och sjukersättning. + + + talet mellan nio och elva + Under de senaste åren har minst tio personer dödats i mc-krigen i Norden. + + + someone/anyone + + + som till exempel + Bland de så kallade mångsökarna av sjukvård är besvär såsom nedstämdhet, ångest och oförklarlig värk vanligt. + + + punishing call + + + among + + + (forms adjectives from nouns) + + + tillbaka, på nytt, igen + + + talet 700 + + + hej + + + liten + + + lyckönskning + + + suffix som skapar substantiv från verb + + + mittemot + + + uppmaning till hund att gå och hämta ett föremål + + + viss, en del + + + siffran 2 + + + används för att binda samman två motsatta eller kontrasterande element + + + nära eller intill viss plats + + + of (a part of something) + + + anger frånvaron av något + De växte upp utan föräldrar. + + + personligt pronomen som refererar till en kvinna + + + inte någon + + + räkneordet mellan sju och nio + + + siffran 9 + Skottdådet inträffade i byn Nutaarmiut, cirka nio mil norr om den nordgrönländska staden Upernavik. + + + siffran 4 + De fyra nordligaste länen har under lång tid och i varierande grad kännetecknats av befolkningsförändringar. + + + som har nummer fjorton (14) i ordningen + + + som kommer på plats tjugo i ordningen + + + som gäller för alla enskilda element av något + Där finnas små uddar och små vikar och små kullerstenar, som rasslande sköljas upp och ner vid varje böljeslag. + + + siffran 50 + + + siffran 60 + + + väldigt, mycket + + + i sista stund; precis innan det är för sent + + + person som arbetar med eller har expertis inom ett angivet ämnesområde + + + nothing + + + på plats nr 8 + + + när något inte går som man vill + + + one + + + siffran 20 + + + siffran 200 + + + anger att man talar ett visst språk + + + anger att något är skapat på eller genomförs på ett visst språk + + + hälsningsfras när man träffar nån + + + hej + + + något som har med elteknik att göra + + + you're welcome + + + används för att uttrycka avsmak eller leda + + + aw poor thing + + + if I have to + + + now I get it + + + I guess that's it + + + good for you + + + so what? + + + oh really? + + + när man hoppas att lyckas med något + + + uttryck för att gratulera någon, ofta vid firande eller lyckliga händelser + + + och + + + hela mängden + + + i riktning mot något + + + betyder att nånting är pågående + + + metafysiskt begrepp om allt som finns + + + siffran 16 + + + naturligt tal + + + ändelse som betecknar att någon egenskap saknas + + + som har nummer femton (15) i ordningen + + + siffran 70 + + + siffran 45 + Fyrtiofem år är ingen lång tid sett i ett historiskt perspektiv. + + + binde-o som limmar ihop ord som tex. födokälla + + + ett sätt att visa uppskattning + + + i riktning mot strömmen + Vi behöver arbeta uppströms liksom nedströms för att säkerställa att skadliga ämnen inte kommer ut i vår natur. + + + uttrycker affirmerande + + + mera än en + + + ljudhärmande + + + kraftuttryck vid avsmak, leda, äckel + + + inget att oroa sig för + + + något som är över och i kontakt med något annat + + + något som har kommit till uttryck med användning av ettvisst naturligt språk eller en viss dialekt + + + som tillhör mig + + + anger verbets grundform + Det enda rimliga var att avgå. + Vi kommer att ringa upp dig. + Att lära sig ett nytt språk är inte lätt. + + + från insidan av något + Pojken tog cykeln ur cykelstället. + + + 3; the cardinal number three + + + indefinite article + + + som har nummer tre (3) i ordningen + + + som kommer på plats fyra i ordningen + + + som kommer på plats sex i ordningen + + + naturligt tal + + + som har nummer tretton (13) i ordningen + + + personligt pronomen + + + siffran 30 + + + trots att + + + until + + + informell hälsning + Hej jag kan inte ta emot ditt samtal just nu + + + informal farewell (shortening of 'hej då') + + + utan hjälp eller påverkan + + + ensam + + + passerande + + + som har att göra med livet eller levande organismer + + + sorrow exclamation + + + indikerar att något gäller eller kan användas endast en gång + + + oops! + + + verbal smekning som utbyts vid sänggående + + + som har med döden att göra + + + när man hoppas att lyckas med något + + + utrop av irritation + + + som har med självmord att göra + + + diff --git a/extensions/wikidata-lexemes/output/sw.xml b/extensions/wikidata-lexemes/output/sw.xml new file mode 100644 index 00000000..cc682e25 --- /dev/null +++ b/extensions/wikidata-lexemes/output/sw.xml @@ -0,0 +1,344 @@ + + + + + + + + + with + + + by + + + + + + + (third-person plural personal pronoun) they, them + + + + + + or + + + + + + until, upto + + + + + + all, whole, entire + + + + + + + (second-person singular personal pronoun) you + + + + + + + + (second-person plural personal pronoun) you, ye + + + + + + + + + + + + any + + + + + + look out! + + + + + + + + (first-person singular pronoun) I, me + + + + + + + + + + + + + + + + + + + + (prefixed to verb roots for object concord) + + + + + + to + + + with (means) + + + by (means of) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (prefixed to verbs in the affirmative for subject concord) + + + + + + and + + + + + + + + + + + + + + + + (genitive-associative relationship marking connector) + + + + + + + + + + + + + + + + + (distinguishes morphological noun classes) + + + + + + who + + + + + + + (as copulative verb) am, is, are + + + (as focus copula) it is, is indeed + + + + + + (first-person plural possessive adjectival root) our, ours + + + + + + + + + + + + (prefixed to verbs in the negative for subject concord) + + + + + + + (third-person singular personal pronoun) he, she + + + + + + God forbid! + + + + + + + + (first-person plural personal pronoun) we, us + + + + + + (first-person singular possessive adjectival root) my, mine + + + + + + who, which, where + + + + with + + + by + + + (third-person plural personal pronoun) they, them + + + or + + + until, upto + + + all, whole, entire + + + (second-person singular personal pronoun) you + + + (second-person plural personal pronoun) you, ye + + + any + + + look out! + + + (first-person singular pronoun) I, me + + + (prefixed to verb roots for object concord) + + + to + + + with (means) + + + by (means of) + + + (prefixed to verbs in the affirmative for subject concord) + + + and + + + (genitive-associative relationship marking connector) + + + (distinguishes morphological noun classes) + + + who + + + (as copulative verb) am, is, are + + + (as focus copula) it is, is indeed + + + (first-person plural possessive adjectival root) our, ours + + + (prefixed to verbs in the negative for subject concord) + + + (third-person singular personal pronoun) he, she + + + God forbid! + + + (first-person plural personal pronoun) we, us + + + (first-person singular possessive adjectival root) my, mine + + + who, which, where + + + diff --git a/extensions/wikidata-lexemes/output/ta.xml b/extensions/wikidata-lexemes/output/ta.xml new file mode 100644 index 00000000..5a073627 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ta.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத ஆணைச் சுட்டும் பெயர் + + + + + + + + + + + + + + + first person singular, I + + + + + + அந்த + + + + + + + + + + + + + + one + + + + + + + + + that, indicating something that is far away from both the speaker and the listener + + + + + + 1 மற்றும் 3 இடையே உள்ள எண் + + + + + + + five, a numeral + + + + + + and + + + + + + + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people + + + + + + + + + + + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத பெண்ணைச் சுட்டும் பெயர் + + + + + + + + + + + + + அருகில் இல்லாத படர்க்கை இடத்து ஆணையோ பெண்ணையோ மரியாதையுடன் சுட்டும் பெயர் + + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத ஆணைச் சுட்டும் பெயர் + + + first person singular, I + + + அந்த + + + one + + + that, indicating something that is far away from both the speaker and the listener + + + 1 மற்றும் 3 இடையே உள்ள எண் + + + five, a numeral + + + and + + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத பெண்ணைச் சுட்டும் பெயர் + + + அருகில் இல்லாத படர்க்கை இடத்து ஆணையோ பெண்ணையோ மரியாதையுடன் சுட்டும் பெயர் + + + diff --git a/extensions/wikidata-lexemes/output/te.xml b/extensions/wikidata-lexemes/output/te.xml new file mode 100644 index 00000000..8711115c --- /dev/null +++ b/extensions/wikidata-lexemes/output/te.xml @@ -0,0 +1,21 @@ + + + + + + + + + alas + + + + alas + + + diff --git a/extensions/wikidata-lexemes/output/th.xml b/extensions/wikidata-lexemes/output/th.xml new file mode 100644 index 00000000..43a7c20f --- /dev/null +++ b/extensions/wikidata-lexemes/output/th.xml @@ -0,0 +1,62 @@ + + + + + + + + + แห่ง (ใช้สำหรับนำหน้านามที่เป็นผู้ครอบครอง) + + + + + + + + แห่ง, ของ + พระราชนิพนธ์ในพระบาทสมเด็จพระมงกุฎเกล้าเจ้าอยู่หัว + + + + + (of time) on; at; during. + + + + + + of. + + + + + + + + one + + + + แห่ง (ใช้สำหรับนำหน้านามที่เป็นผู้ครอบครอง) + + + แห่ง, ของ + พระราชนิพนธ์ในพระบาทสมเด็จพระมงกุฎเกล้าเจ้าอยู่หัว + + + (of time) on; at; during. + + + of. + + + one + + + diff --git a/extensions/wikidata-lexemes/output/tk.xml b/extensions/wikidata-lexemes/output/tk.xml new file mode 100644 index 00000000..a8b89fdb --- /dev/null +++ b/extensions/wikidata-lexemes/output/tk.xml @@ -0,0 +1,21 @@ + + + + + + + + + cardinal number 1 + + + + cardinal number 1 + + + diff --git a/extensions/wikidata-lexemes/output/tl.xml b/extensions/wikidata-lexemes/output/tl.xml new file mode 100644 index 00000000..fa9b72ee --- /dev/null +++ b/extensions/wikidata-lexemes/output/tl.xml @@ -0,0 +1,52 @@ + + + + + + + + + one + + + + + + + + + + + long live! + + + + + + + + forms the complete aspect in all triggers except the active trigger + + + forms the progressive aspect in all triggers except in the active trigger + + + + one + + + long live! + + + forms the complete aspect in all triggers except the active trigger + + + forms the progressive aspect in all triggers except in the active trigger + + + diff --git a/extensions/wikidata-lexemes/output/tn.xml b/extensions/wikidata-lexemes/output/tn.xml new file mode 100644 index 00000000..5eaf88e9 --- /dev/null +++ b/extensions/wikidata-lexemes/output/tn.xml @@ -0,0 +1,21 @@ + + + + + + + + + milk + + + + milk + + + diff --git a/extensions/wikidata-lexemes/output/to.xml b/extensions/wikidata-lexemes/output/to.xml new file mode 100644 index 00000000..e294dab2 --- /dev/null +++ b/extensions/wikidata-lexemes/output/to.xml @@ -0,0 +1,30 @@ + + + + + + + + + no + + + + + + capital of Tonga + + + + no + + + capital of Tonga + + + diff --git a/extensions/wikidata-lexemes/output/tr.xml b/extensions/wikidata-lexemes/output/tr.xml new file mode 100644 index 00000000..e90b75a2 --- /dev/null +++ b/extensions/wikidata-lexemes/output/tr.xml @@ -0,0 +1,953 @@ + + + + + + + + + + you (singular) + sen kökü değil, ancak kök seni taşıyor. + + + + + + + + + (converb which, attached to both duplicates of a duplicated verb, expresses a continuous/repeated manner of action) + + + + + + + + + + tümce içinde görevdeş iki öğeyi birbirine bağlar + + + + + + + everybody/everyone + + + + + + other than + + + + + + öyle ise + + + + + + + + + (indicates genitive relationship between preceding and following noun) + + + + + + saymaya başlarken söylenen, ilk pozitif tam sayı + Yeruşalimde Koyun kapısı yanında, İbranice Beythesta denilen, beş eyvanlı bir havuz vardı. + + + 1 ve I rakamlarının ismi + + + bir sayısı miktarında olan + + + + + + Asla + Aman matmazel, sakın dışarı çıkmayınız! + + + “Korkutma potansiyeli olacak bir şey olmasın” anlamında kullanılan tabir + Sakın vefat etmiş olmasın? + + + + + + bir tanesi + + + bilinmeyen bir kimse + + + + + + similar to/like + + + + + + + + + (question particle) + + + + + + each/every + + + + + + who/what (subordinating conjunction) + + + + + + towards + + + + + + all, entire + + + + + + + all, entire + + + + + + + now that... + + + + + + öyle olmazsa + + + + + + about, concerning + + + + + + evet + + + başüstüne + + + peki, tamam; okey + + + + + + this + Barbarlar hayvanı onun eline asılmış görünce, birbirlerine dediler: Her halde bu adam katildir; denizden kurtuldu ise de, Adalet onu yaşamağa bırakmadı. + + + + + + Futbolda Fenerbahçe'ye karşı söylenen bir tezahürat + + + + + + + + + + sözcüğün sonuna getirilerek birliktelik, işteşlik, araç, neden ya da durum bildiren tümleçler oluşturmaya yarar + + + + + + either/or (conjunction) + + + + + + however/but + + + + + + even, already + + + + + + içinde + + + + + + eachother + + + + + + six + + + + + + piróll! brávo! aferim! + + + + + + + (harf-i tarif) + + + + + + birtakım, kimi + + + + + + buradayım?! + + + anlamadım?! duymadım?! + + + + + + Allâh’a yemin olsun + + + + + + you (plural) + Siz aşağıdansınız, ben yukarıdanım; siz bu dünyadansınız, ben bu dünyadan değilim. + + + + + + there + + + + + + + as well/too/also + + + even if/although + + + + + + since + + + + + + that + + + + + + (used before two entities to mean 'both ... and') + + + + + + (expression of surprise) + + + + + + + oğul + + + + + + bu durum karşısında + + + + + + (vocative particle used to call out to someone) hey! + + + + + + קדימה + + + + + + avoiding (Islamically non-canonical) interactions with the opposite sex + + + + + + what + + + + + + but + + + + + + because of/due to + + + + + + (with effect) from + + + + + + (distal demonstrative determiner) + + + + + + bütün günler + + + + + + evet + + + + + + piróll! brávo! aferim! + + + + + + + + we + + + + + + Hangi kişi anlamında kullanılan söz + Kim sesini çıkarırsa karşısında beni bulur. + + + + + + as much as + + + until/as far as + + + + + + in order to + + + + + + despite + + + + + + in spite of + + + + + + but/however + + + + + + till/until + + + + + + or + + + + + + + + + + + + + (generalizing epistemic modality marker) + + + + + + with, by + + + + + + öyle olunca + + + + + + + ilişkin, değgin + Zihnimden Afganistan’a âit bütün mâlûmâtımı geçirmekteyim + + + + + + + Tekil üçüncü şahısı gösteren söz + + + + + + kelimeleri ve cümleleri birleştirir + Ben gerçek asmayım, ve Babam bağcıdır. + + + + + + + for + + + + + + much/many + + + + + + according to + + + + + + till/until + + + + + + other + + + + + + yes + + + + + + three + + + + + + (bezginlik anlatan bir ünlem) + + + + + + yeter, kâfî + + + + + + + + + + + kişi kendini belirtir + + + + + + (one)self + + + + + + because of/due to + + + + + + before (temporal) + + + + + + first + + + + + + but/however + + + + + + hep + + + + + + tümü + + + + + + oldukça çok, epeyce fazla, bir hayli + + + + + + niyet, gaye, amaç bildirir + + + şart bildirir; şartıyle + + + olmaya yaklaştığını bildirir + + + gibi, olduğu yolda, olduğu biçimde + + + + + + self + + + + you (singular) + sen kökü değil, ancak kök seni taşıyor. + + + (converb which, attached to both duplicates of a duplicated verb, expresses a continuous/repeated manner of action) + + + tümce içinde görevdeş iki öğeyi birbirine bağlar + + + everybody/everyone + + + other than + + + öyle ise + + + (indicates genitive relationship between preceding and following noun) + + + saymaya başlarken söylenen, ilk pozitif tam sayı + Yeruşalimde Koyun kapısı yanında, İbranice Beythesta denilen, beş eyvanlı bir havuz vardı. + + + 1 ve I rakamlarının ismi + + + bir sayısı miktarında olan + + + Asla + Aman matmazel, sakın dışarı çıkmayınız! + + + “Korkutma potansiyeli olacak bir şey olmasın” anlamında kullanılan tabir + Sakın vefat etmiş olmasın? + + + bir tanesi + + + bilinmeyen bir kimse + + + similar to/like + + + (question particle) + + + each/every + + + who/what (subordinating conjunction) + + + towards + + + all, entire + + + all, entire + + + now that... + + + öyle olmazsa + + + about, concerning + + + evet + + + başüstüne + + + peki, tamam; okey + + + this + Barbarlar hayvanı onun eline asılmış görünce, birbirlerine dediler: Her halde bu adam katildir; denizden kurtuldu ise de, Adalet onu yaşamağa bırakmadı. + + + Futbolda Fenerbahçe'ye karşı söylenen bir tezahürat + + + sözcüğün sonuna getirilerek birliktelik, işteşlik, araç, neden ya da durum bildiren tümleçler oluşturmaya yarar + + + either/or (conjunction) + + + however/but + + + even, already + + + içinde + + + eachother + + + six + + + piróll! brávo! aferim! + + + (harf-i tarif) + + + birtakım, kimi + + + buradayım?! + + + anlamadım?! duymadım?! + + + Allâh’a yemin olsun + + + you (plural) + Siz aşağıdansınız, ben yukarıdanım; siz bu dünyadansınız, ben bu dünyadan değilim. + + + there + + + as well/too/also + + + even if/although + + + since + + + that + + + (used before two entities to mean 'both ... and') + + + (expression of surprise) + + + oğul + + + bu durum karşısında + + + (vocative particle used to call out to someone) hey! + + + קדימה + + + avoiding (Islamically non-canonical) interactions with the opposite sex + + + what + + + but + + + because of/due to + + + (with effect) from + + + (distal demonstrative determiner) + + + bütün günler + + + evet + + + piróll! brávo! aferim! + + + we + + + Hangi kişi anlamında kullanılan söz + Kim sesini çıkarırsa karşısında beni bulur. + + + as much as + + + until/as far as + + + in order to + + + despite + + + in spite of + + + but/however + + + till/until + + + or + + + (generalizing epistemic modality marker) + + + with, by + + + öyle olunca + + + ilişkin, değgin + Zihnimden Afganistan’a âit bütün mâlûmâtımı geçirmekteyim + + + Tekil üçüncü şahısı gösteren söz + + + kelimeleri ve cümleleri birleştirir + Ben gerçek asmayım, ve Babam bağcıdır. + + + for + + + much/many + + + according to + + + till/until + + + other + + + yes + + + three + + + (bezginlik anlatan bir ünlem) + + + yeter, kâfî + + + kişi kendini belirtir + + + (one)self + + + because of/due to + + + before (temporal) + + + first + + + but/however + + + hep + + + tümü + + + oldukça çok, epeyce fazla, bir hayli + + + niyet, gaye, amaç bildirir + + + şart bildirir; şartıyle + + + olmaya yaklaştığını bildirir + + + gibi, olduğu yolda, olduğu biçimde + + + self + + + diff --git a/extensions/wikidata-lexemes/output/ts.xml b/extensions/wikidata-lexemes/output/ts.xml new file mode 100644 index 00000000..d6665678 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ts.xml @@ -0,0 +1,21 @@ + + + + + + + + + beer + + + + beer + + + diff --git a/extensions/wikidata-lexemes/output/tw.xml b/extensions/wikidata-lexemes/output/tw.xml new file mode 100644 index 00000000..04272cb3 --- /dev/null +++ b/extensions/wikidata-lexemes/output/tw.xml @@ -0,0 +1,144 @@ + + + + + + + + + + Ɛyɛ edu mu mmɔho du + + + + + + adeɛ a yɛkɔ nsuo gu mu + + + + + + ɛyɛ adeɛ a ɔwɔ yafunu mu a ɛsusua na yɛdidi a ɛfa mu + + + + + + + ɔyɛ mmoa bi a kasɛɛ nni wɔn mu + + + + + + + obi a ne nua yɛ barima + + + + + + + nipa a ɔyɛ ɔbaa na ɔnyinii pii. + + + + + + + adeɛ bi ɛyɛ dwuma a ɛmerɛ + + + + + + ɛyɛ ntomasini bi a mmaa tae de bɔ wɔn ti + + + + + + obi aotwa ahwedeɛ + + + + + + + ɔyɛ mmoa be a nnompe nni wcn mu + + + + + + ɛyɛ mmoa nkumaa bi a wɔtu na eduru anadwo awɔn to sɔ kanea + + + + + + ɛyɛ adeɛ kurukuruwa bi a yɛde mea adeɛ mu + + + + + + (denotes a distal deictic tense that picks out non-present temporal intervals) + + + + + + ɛyɛ aduaba a yɛdie a ɛhoo yɛ nkasɛɛ kasɛɛ na biribi tua n'apampam + + + + Ɛyɛ edu mu mmɔho du + + + adeɛ a yɛkɔ nsuo gu mu + + + ɛyɛ adeɛ a ɔwɔ yafunu mu a ɛsusua na yɛdidi a ɛfa mu + + + ɔyɛ mmoa bi a kasɛɛ nni wɔn mu + + + obi a ne nua yɛ barima + + + nipa a ɔyɛ ɔbaa na ɔnyinii pii. + + + adeɛ bi ɛyɛ dwuma a ɛmerɛ + + + ɛyɛ ntomasini bi a mmaa tae de bɔ wɔn ti + + + obi aotwa ahwedeɛ + + + ɔyɛ mmoa be a nnompe nni wcn mu + + + ɛyɛ mmoa nkumaa bi a wɔtu na eduru anadwo awɔn to sɔ kanea + + + ɛyɛ adeɛ kurukuruwa bi a yɛde mea adeɛ mu + + + (denotes a distal deictic tense that picks out non-present temporal intervals) + + + ɛyɛ aduaba a yɛdie a ɛhoo yɛ nkasɛɛ kasɛɛ na biribi tua n'apampam + + + diff --git a/extensions/wikidata-lexemes/output/ug.xml b/extensions/wikidata-lexemes/output/ug.xml new file mode 100644 index 00000000..7fef26b1 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ug.xml @@ -0,0 +1,67 @@ + + + + + + + + + they; third person plural pronoun + + + + + + he, she, it; third person singular pronoun + + + + + + + + + + + we; first-person plural pronoun + + + + + + + + + + + I; first person singular pronoun + + + + + + yes + + + + they; third person plural pronoun + + + he, she, it; third person singular pronoun + + + we; first-person plural pronoun + + + I; first person singular pronoun + + + yes + + + diff --git a/extensions/wikidata-lexemes/output/uk.xml b/extensions/wikidata-lexemes/output/uk.xml new file mode 100644 index 00000000..dd4980f5 --- /dev/null +++ b/extensions/wikidata-lexemes/output/uk.xml @@ -0,0 +1,256 @@ + + + + + + + + + the number 10 + + + + + + простий єднальний сполучник сурядності + + + + символ Юнікоду + + + + + + позначає предмет мовлення, виражений іменником чоловічого роду однини в попередньому реченні або після цього займенника + + + + + + двоє чи багато осіб, до яких звертаються + + + особа, до якої ввічливо звертаються + + + + + + позначає предмет мовлення, виражений іменником середнього роду однини в попередньому реченні або після цього займенника + + + + + + + + + відсутність когось + + + + + + + + + + + украинская фамилия + + + + + + двоє чи багато осіб разом із мовцем + + + мовець про себе + + + + + + мовець про себе + + + + + + located within + + + moving into + + + + + + + + + + позначає предмет мовлення, виражений іменником у множині до або після цього займенника + + + одна особа будь-якої статі, до якої виражається пошана + + + + + + + + + + + + + + + українське прізвище + + + + + + особа, до якої звертаються + + + + + + число, що означає 0 + + + рік + + + + + + позначає предмет мовлення, виражений іменником жіночого роду однини в попередньому реченні або після цього займенника + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + числівник, що означає число 1 + + + + + + простий єднальний сполучник сурядності + + + + символ Юнікоду + + + + the number 10 + + + простий єднальний сполучник сурядності + + + символ Юнікоду + + + позначає предмет мовлення, виражений іменником чоловічого роду однини в попередньому реченні або після цього займенника + + + двоє чи багато осіб, до яких звертаються + + + особа, до якої ввічливо звертаються + + + позначає предмет мовлення, виражений іменником середнього роду однини в попередньому реченні або після цього займенника + + + відсутність когось + + + украинская фамилия + + + двоє чи багато осіб разом із мовцем + + + мовець про себе + + + мовець про себе + + + located within + + + moving into + + + позначає предмет мовлення, виражений іменником у множині до або після цього займенника + + + одна особа будь-якої статі, до якої виражається пошана + + + українське прізвище + + + особа, до якої звертаються + + + число, що означає 0 + + + рік + + + позначає предмет мовлення, виражений іменником жіночого роду однини в попередньому реченні або після цього займенника + + + числівник, що означає число 1 + + + простий єднальний сполучник сурядності + + + символ Юнікоду + + + diff --git a/extensions/wikidata-lexemes/output/uz.xml b/extensions/wikidata-lexemes/output/uz.xml new file mode 100644 index 00000000..4f2a8fdf --- /dev/null +++ b/extensions/wikidata-lexemes/output/uz.xml @@ -0,0 +1,49 @@ + + + + + + + + + you (singular) + + + + + + and + + + + + + третье лицо единственное число - он, она, оно + + + + + + + (indicates genitive relationship between preceding and following noun) + + + + you (singular) + + + and + + + третье лицо единственное число - он, она, оно + + + (indicates genitive relationship between preceding and following noun) + + + diff --git a/extensions/wikidata-lexemes/output/ve.xml b/extensions/wikidata-lexemes/output/ve.xml new file mode 100644 index 00000000..1832bdf6 --- /dev/null +++ b/extensions/wikidata-lexemes/output/ve.xml @@ -0,0 +1,30 @@ + + + + + + + + + yes + + + + + + no + + + + yes + + + no + + + diff --git a/extensions/wikidata-lexemes/output/vi.xml b/extensions/wikidata-lexemes/output/vi.xml new file mode 100644 index 00000000..1892311e --- /dev/null +++ b/extensions/wikidata-lexemes/output/vi.xml @@ -0,0 +1,113 @@ + + + + + + + + + + liên kết các từ và câu với nhau + + + từ nối + + + + + + via + + + through + + + + + + indicates an inanimate object + + + precedes another classifier for emphasis + + + + + + indicates an individual animal or human + + + indicates a knife or razor + + + indicates a boat, ship, train, or airplane + + + indicates a road, river, stream, or wave + + + indicates a wheeled vehicle + + + + indicates a written character + + + indicates a film, television show, or video game + + + + + + a ball of + + + + liên kết các từ và câu với nhau + + + từ nối + + + via + + + through + + + indicates an inanimate object + + + precedes another classifier for emphasis + + + indicates an individual animal or human + + + indicates a knife or razor + + + indicates a boat, ship, train, or airplane + + + indicates a road, river, stream, or wave + + + indicates a wheeled vehicle + + + indicates a written character + + + indicates a film, television show, or video game + + + a ball of + + + diff --git a/extensions/wikidata-lexemes/output/wa.xml b/extensions/wikidata-lexemes/output/wa.xml new file mode 100644 index 00000000..6862c0a9 --- /dev/null +++ b/extensions/wikidata-lexemes/output/wa.xml @@ -0,0 +1,21 @@ + + + + + + + + + I; first-person singular pronoun + + + + I; first-person singular pronoun + + + diff --git a/extensions/wikidata-lexemes/output/wo.xml b/extensions/wikidata-lexemes/output/wo.xml new file mode 100644 index 00000000..88f18068 --- /dev/null +++ b/extensions/wikidata-lexemes/output/wo.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + the; these, those + + + + + + + + + + + + + (links nominals in genitive construction) of + + + + the; these, those + + + (links nominals in genitive construction) of + + + diff --git a/extensions/wikidata-lexemes/output/xh.xml b/extensions/wikidata-lexemes/output/xh.xml new file mode 100644 index 00000000..06bdb576 --- /dev/null +++ b/extensions/wikidata-lexemes/output/xh.xml @@ -0,0 +1,21 @@ + + + + + + + + + thank you + + + + thank you + + + diff --git a/extensions/wikidata-lexemes/output/yi.xml b/extensions/wikidata-lexemes/output/yi.xml new file mode 100644 index 00000000..f8125a57 --- /dev/null +++ b/extensions/wikidata-lexemes/output/yi.xml @@ -0,0 +1,486 @@ + + + + + + + + + than + + + rather than + + + + + + that, which + + + + + + + she; third-person singular pronoun + + + + + + + not + + + + + + not a; no + + + + + + the number 2 + + + + + + when + + + if + + + + + + + we; first-person plural pronoun + + + + + + like + + + + + + around, about + + + over + + + + + + indefinite pronoun; one, you + + + + + + and + + + + + + + with + + + + + + anybody + + + no matter who + + + + + + + + + definite article; the + + + + + + + on + + + upon + + + up + + + at + + + in + + + + + + all + + + + + + but + + + but that + + + and yet + + + any, no matter + + + + + + God forbid + + + + + + + in front of + + + + + + who + + + + + + + which/what kind of + + + + + + anywhere + + + + + + anything + + + no matter what + + + + + + anyhow (carelessly or haphazardly) + + + + + + but/however + + + + + + + he; masculine third person pronoun + + + + + + + + I; first-person singular pronoun + + + + + + + + second-person plural pronoun + + + + + + they; third-person plural pronoun + + + + + + + + after + + + + + + + of + + + from + + + + + + the number 1 + + + + + + that + + + if + + + + + + + + second-person singular pronoun + + + + + + the number eight + + + + + + in + + + + + + but + + + + + + + a, an; indefinite article + + + + + + number 7 + + + + + + although + + + + than + + + rather than + + + that, which + + + she; third-person singular pronoun + + + not + + + not a; no + + + the number 2 + + + when + + + if + + + we; first-person plural pronoun + + + like + + + around, about + + + over + + + indefinite pronoun; one, you + + + and + + + with + + + anybody + + + no matter who + + + definite article; the + + + on + + + upon + + + up + + + at + + + in + + + all + + + but + + + but that + + + and yet + + + any, no matter + + + God forbid + + + in front of + + + who + + + which/what kind of + + + anywhere + + + anything + + + no matter what + + + anyhow (carelessly or haphazardly) + + + but/however + + + he; masculine third person pronoun + + + I; first-person singular pronoun + + + second-person plural pronoun + + + they; third-person plural pronoun + + + after + + + of + + + from + + + the number 1 + + + that + + + if + + + second-person singular pronoun + + + the number eight + + + in + + + but + + + a, an; indefinite article + + + number 7 + + + although + + + diff --git a/extensions/wikidata-lexemes/output/yo.xml b/extensions/wikidata-lexemes/output/yo.xml new file mode 100644 index 00000000..fda69112 --- /dev/null +++ b/extensions/wikidata-lexemes/output/yo.xml @@ -0,0 +1,39 @@ + + + + + + + + + he + + + + + + she + + + + + + they (emphatically used to indicate plurals) + + + + he + + + she + + + they (emphatically used to indicate plurals) + + + diff --git a/extensions/wikidata-lexemes/output/za.xml b/extensions/wikidata-lexemes/output/za.xml new file mode 100644 index 00000000..6f24a2fe --- /dev/null +++ b/extensions/wikidata-lexemes/output/za.xml @@ -0,0 +1,219 @@ + + + + + + + + + eight + + + + + + exclusive we; first-person plural pronoun + + + + + + one + + + + + + two + + + + + + four + + + + + + seven + + + + + + nine + + + + + + thousand + + + + + + you; second-person plural pronoun + + + + + + they; third-person plural pronoun + + + + + + three + + + + + + five + + + + + + hundred + + + + + + inclusive we; first-person plural pronoun + + + + + + he/she/it; third-person singular pronoun + + + + + + six + + + + + + you; second-person singular pronoun + + + + + + ten + + + + + + I; first-person singular pronoun + + + + + + one + + + + + + zero + + + + + + six + + + + + + hundred million + + + + eight + + + exclusive we; first-person plural pronoun + + + one + + + two + + + four + + + seven + + + nine + + + thousand + + + you; second-person plural pronoun + + + they; third-person plural pronoun + + + three + + + five + + + hundred + + + inclusive we; first-person plural pronoun + + + he/she/it; third-person singular pronoun + + + six + + + you; second-person singular pronoun + + + ten + + + I; first-person singular pronoun + + + one + + + zero + + + six + + + hundred million + + + diff --git a/extensions/wikidata-lexemes/output/zu.xml b/extensions/wikidata-lexemes/output/zu.xml new file mode 100644 index 00000000..2eff1e12 --- /dev/null +++ b/extensions/wikidata-lexemes/output/zu.xml @@ -0,0 +1,470 @@ + + + + + + + + + + + thou (second-person singular pronoun) + + + + + + how many/how much + + + + + + (to be) sweet + + + + + + + + + + + + + + + this + + + + + + short + + + + + + many + + + + + + + + + + + + + + + + + + (negative subject concord) + + + + + + all of/every + + + + + + + + + + + + + + + + + + + + + + + + full noun prefix + + + + + + enumerative and + + + + + + (to be) wide/broad + + + + + + (immediate future tense marker) + + + + + + (remote future tense marker) + + + + + + big + + + large + + + + + + ugly + + + bad + + + evil + + + + + + four + + + + + + (to be) black + + + + + + small or little + + + few + + + young + + + + + + tall + + + long + + + high + + + + + + (to be) wet + + + + + + (imperative plural suffix) + + + + + + beautiful + + + good + + + + + + new + + + young + + + + + + five + + + + + + old + + + + + + + + + + + + + + + + + (regular relative concord) + + + + + + + + + + + + + + + + + + + + (basic noun prefix, without the augment) + + + + + + (to be) famous/renowned + + + + + + just as; like + + + + + + + I (first-person singular pronoun) + + + + + + + + + + + + + + + + + (adjectival concord) + + + + + + two + + + + + + three + + + + + + + + + + + + + + + + + (subject concord) + + + + + + with (instrumental sense) + + + + thou (second-person singular pronoun) + + + how many/how much + + + (to be) sweet + + + this + + + short + + + many + + + (negative subject concord) + + + all of/every + + + full noun prefix + + + enumerative and + + + (to be) wide/broad + + + (immediate future tense marker) + + + (remote future tense marker) + + + big + + + large + + + ugly + + + bad + + + evil + + + four + + + (to be) black + + + small or little + + + few + + + young + + + tall + + + long + + + high + + + (to be) wet + + + (imperative plural suffix) + + + beautiful + + + good + + + new + + + young + + + five + + + old + + + (regular relative concord) + + + (basic noun prefix, without the augment) + + + (to be) famous/renowned + + + just as; like + + + I (first-person singular pronoun) + + + (adjectival concord) + + + two + + + three + + + (subject concord) + + + with (instrumental sense) + + + diff --git a/pyproject.toml b/pyproject.toml index 33055464..c28727c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,9 @@ dependencies = [ ] [project.optional-dependencies] +web = [ + "starlette", +] editor = [ "wn-editor" ] @@ -59,6 +62,7 @@ exclude = [ extra-dependencies = [ "pytest-benchmark", ] +features = ["web"] [tool.hatch.envs.mypy] dependencies = [ diff --git a/tests/web_test.py b/tests/web_test.py new file mode 100644 index 00000000..240c7d4c --- /dev/null +++ b/tests/web_test.py @@ -0,0 +1,121 @@ +import pytest +from starlette.testclient import TestClient + +import wn +import wn._db +from wn import web + +# clearing connections on teardown (see conftest.py) isn't enough. For +# this we apparently need to monkeypatch the wn._db.pool as well. + +@pytest.fixture +def mini_db_web(monkeypatch, mini_db_dir): + with monkeypatch.context() as m: + m.setattr(wn._db, 'pool', {}) + m.setattr(wn.config, 'data_directory', mini_db_dir) + m.setattr(wn.config, 'allow_multithreading', True) + yield + wn._db.clear_connections() + + +client = TestClient(web.app) + + +@pytest.mark.usefixtures('mini_db_web') +def test_root(): + response = client.get('/') + assert response.status_code == 200 + data = response.json() + assert 'endpoints' in data + + +@pytest.mark.usefixtures('mini_db_web') +def test_lexicons(): + response = client.get("/lexicons") + assert response.status_code == 200 + data = response.json()["data"] + assert [lex["id"] for lex in data] == ["test-en:1", "test-es:1"] + + +@pytest.mark.usefixtures('mini_db_web') +def test_words(): + response = client.get("/words") + assert response.status_code == 200 + data = response.json()["data"] + word_ids = {word["id"] for word in data} + assert "test-en-information-n" in word_ids + assert "test-es-información-n" in word_ids + + response = client.get("/words", params={"lexicon": "test-en:1"}) + assert response.status_code == 200 + data = response.json()["data"] + word_ids = {word["id"] for word in data} + assert "test-en-information-n" in word_ids + assert "test-es-información-n" not in word_ids + + +@pytest.mark.usefixtures('mini_db_web') +def test_senses(): + response = client.get("/senses") + assert response.status_code == 200 + data = response.json()["data"] + sense_ids = {sense["id"] for sense in data} + assert "test-en-information-n-0001-01" in sense_ids + assert "test-es-información-n-0001-01" in sense_ids + + response = client.get("/senses", params={"lexicon": "test-en:1"}) + assert response.status_code == 200 + data = response.json()["data"] + sense_ids = {sense["id"] for sense in data} + assert "test-en-information-n-0001-01" in sense_ids + assert "test-es-información-n-0001-01" not in sense_ids + + +@pytest.mark.usefixtures('mini_db_web') +def test_synsets(): + response = client.get("/synsets") + assert response.status_code == 200 + data = response.json()["data"] + synset_ids = {synset["id"] for synset in data} + assert "test-en-0001-n" in synset_ids + assert "test-es-0001-n" in synset_ids + + response = client.get("/synsets", params={"lexicon": "test-en:1"}) + assert response.status_code == 200 + data = response.json()["data"] + synset_ids = {synset["id"] for synset in data} + assert "test-en-0001-n" in synset_ids + assert "test-es-0001-n" not in synset_ids + + +@pytest.mark.usefixtures('mini_db_web') +def test_lexicon_words(): + response1 = client.get("/lexicons/test-en:1/words") + response2 = client.get("/words", params={"lexicon": "test-en:1"}) + assert response1.status_code == 200 + assert response2.status_code == 200 + data1 = response1.json()["data"] + data2 = response2.json()["data"] + assert {word["id"] for word in data1} == {word["id"] for word in data2} + + +@pytest.mark.usefixtures('mini_db_web') +def test_lexicon_senses(): + response1 = client.get("/lexicons/test-en:1/senses") + response2 = client.get("/senses", params={"lexicon": "test-en:1"}) + assert response1.status_code == 200 + assert response2.status_code == 200 + data1 = response1.json()["data"] + data2 = response2.json()["data"] + assert {sense["id"] for sense in data1} == {sense["id"] for sense in data2} + + +@pytest.mark.usefixtures('mini_db_web') +def test_lexicon_synsets(): + response1 = client.get("/lexicons/test-en:1/synsets") + response2 = client.get("/synsets", params={"lexicon": "test-en:1"}) + assert response1.status_code == 200 + assert response2.status_code == 200 + data1 = response1.json()["data"] + data2 = response2.json()["data"] + assert {synset["id"] for synset in data1} == {synset["id"] for synset in data2} diff --git a/wn/__init__.py b/wn/__init__.py index 5e985d2e..12a4d4ee 100644 --- a/wn/__init__.py +++ b/wn/__init__.py @@ -37,7 +37,7 @@ "word", "words", ) -__version__ = "1.1.0" +__version__ = "1.3.0" from wn._add import add, add_lexical_resource, remove from wn._config import config # noqa: F401 diff --git a/wn/_config.py b/wn/_config.py index d058c854..e4e022bb 100644 --- a/wn/_config.py +++ b/wn/_config.py @@ -305,7 +305,7 @@ def update(self, data: dict[str, Any]) -> None: """ if datadir := data.get("data_directory"): - if not isinstance(datadir, (str, Path)): + if not isinstance(datadir, str | Path): raise ConfigurationError( "data_directory must be a str or Path, " f"not {type(datadir).__name__}" diff --git a/wn/_db.py b/wn/_db.py index 1ea371d6..2b134ae1 100644 --- a/wn/_db.py +++ b/wn/_db.py @@ -34,7 +34,15 @@ # >>> wn._db.schema_hash(conn) # COMPATIBLE_SCHEMA_HASHES = { - "f439c9bd27f809f64ee42896fb0fc20c5d00fd99", + "3fa665052067b50269de5b36d071215f6f42fe67", # Current schema with our indexes + "e50cacd2abf1c06c94f20bbabda9831f4e71cda8", + "4c8ad03af5422d6979039ee2b80838d07c12d2c8", # Original schema + "01909cb2d0cdee19ed687dbd95c5983d7b68f807", # Added form_lexicon_index + "4c2728bb7999685d9748ad6245638a210d0f099d", # form_lexicon_form_covering_index + "c1ef1e74d47810fd313383cdb8ecb9a2d9aef7db", # Migrated database with covering index + "d0c0f0301bdac6f9f1b81a3ec2c12875c06964a3", # After ANALYZE (sqlite_stat tables) + "f439c9bd27f809f64ee42896fb0fc20c5d00fd99", # Upstream v1.0+ maintenance-resilient + "0ad4cd9d89be2fc8e949331cd443ef414315f199", # Pronunciation/Tag as lexicon elements } diff --git a/wn/constants.py b/wn/constants.py index 01a3ae85..6c7712c9 100644 --- a/wn/constants.py +++ b/wn/constants.py @@ -276,6 +276,14 @@ OTHER = "x" #: UNKNOWN = "u" #: +# Extended parts of speech (function words not covered by classic WordNet) +PRON = PRONOUN = "h" #: +DET = DETERMINER = "d" #: +NUM = NUMERAL = "m" #: +INTJ = INTERJECTION = "i" #: +INTRG = INTERROGATIVE = "q" #: +PART = PARTICLE = "y" #: + PARTS_OF_SPEECH = frozenset( ( NOUN, @@ -288,6 +296,12 @@ ADPOSITION, OTHER, UNKNOWN, + PRONOUN, + DETERMINER, + NUMERAL, + INTERJECTION, + INTERROGATIVE, + PARTICLE, ) ) diff --git a/wn/schema.sql b/wn/schema.sql index 7ca82e6c..2637e8bf 100644 --- a/wn/schema.sql +++ b/wn/schema.sql @@ -100,6 +100,8 @@ CREATE TABLE forms ( CREATE INDEX form_entry_index ON forms (entry_rowid); CREATE INDEX form_index ON forms (form); CREATE INDEX form_norm_index ON forms (normalized_form); +CREATE INDEX form_lexicon_index ON forms (lexicon_rowid); +CREATE INDEX form_lexicon_form_covering_index ON forms (lexicon_rowid, form); CREATE TABLE pronunciations ( form_rowid INTEGER NOT NULL REFERENCES forms (rowid) ON DELETE CASCADE, diff --git a/wn/web.py b/wn/web.py new file mode 100644 index 00000000..32f80aba --- /dev/null +++ b/wn/web.py @@ -0,0 +1,535 @@ +"""Web interface for Wn databases.""" +from contextlib import asynccontextmanager +from datetime import UTC, datetime +from functools import lru_cache, wraps +from urllib.parse import parse_qs, urlencode, urlsplit + +from starlette.applications import Starlette # type: ignore +from starlette.exceptions import HTTPException # type: ignore +from starlette.middleware import Middleware # type: ignore +from starlette.middleware.cors import CORSMiddleware # type: ignore +from starlette.middleware.gzip import GZipMiddleware # type: ignore +from starlette.requests import Request # type: ignore +from starlette.responses import JSONResponse # type: ignore +from starlette.routing import Route # type: ignore + +import wn + +DEFAULT_PAGINATION_LIMIT = 50 + + +def paginate(proto): + def paginate_wrapper(func): + + @wraps(func) + async def _paginate_wrapper(request: Request) -> JSONResponse: + url = str(request.url) + query = dict(request.query_params) + offset = abs(int(query.pop('page[offset]', 0))) + limit = abs(int(query.pop('page[limit]', DEFAULT_PAGINATION_LIMIT))) + + obj = await func(request) + total = len(obj['data']) + prev = max(0, offset - limit) + next = offset + limit + last = (total // limit) * limit + + obj['data'] = [proto(x, request) for x in obj['data'][offset:next]] + obj.setdefault('meta', {}).update(total=total) + + links = {} + if offset > 0: + links['first'] = replace_query_params(url, **{'page[offset]': 0}) + links['prev'] = replace_query_params(url, **{'page[offset]': prev}) + if next < total: + links['next'] = replace_query_params(url, **{'page[offset]': next}) + links['last'] = replace_query_params(url, **{'page[offset]': last}) + if links: + obj.setdefault('links', {}).update(links) + + return JSONResponse(obj) + + return _paginate_wrapper + + return paginate_wrapper + + +def cached_response(months: float): + """Decorator to add Cache-Control header to responses.""" + + def decorator(func): + @wraps(func) + async def wrapper(request: Request): + response: JSONResponse = await func(request) + if not isinstance(response, JSONResponse): + response = JSONResponse(response) + + seconds = int(months * 30 * 24 * 60 * 60) + response.headers['Cache-Control'] = f'public, max-age={seconds}' + return response + + return wrapper + + return decorator + +def replace_query_params(url: str, **params) -> str: + u = urlsplit(url) + q = parse_qs(u.query) + q.update(params) + qs = urlencode(q, doseq=True) + return u._replace(query=qs).geturl() + + +# Wordnet-instantiation + +def _init_wordnet( + lexicon: str = '*', + lang: str | None = None, +) -> wn.Wordnet: + if lexicon == '*' and lang is not None: + lexicon = ' '.join(lex.specifier() for lex in wn.lexicons(lang=lang)) + return wn.Wordnet(lexicon) + + +# Data-making functions + +def _make_pronunciation_data(p: wn.Pronunciation) -> dict: + d: dict = {'value': p.value, 'phonemic': p.phonemic} + if p.variety: + d['variety'] = p.variety + if p.notation: + d['notation'] = p.notation + if p.audio: + d['audio'] = p.audio + return d + + +def _make_form_data(f: wn.Form) -> dict: + d: dict = {'form': f.value} + if f.script: + d['script'] = f.script + pronunciations = f.pronunciations() + if pronunciations: + d['pronunciations'] = [_make_pronunciation_data(p) for p in pronunciations] + return d + +def _url_for_obj( + request: Request, + name: str, + obj: wn.Word | wn.Sense | wn.Synset, + lexicon: str | None = None, +) -> str: + if lexicon is None: + lexicon = obj.lexicon().specifier() + kwargs = { + 'lexicon': lexicon, + name: obj.id + } + return str(request.url_for(name, **kwargs)) + + +def make_lexicon(lex: wn.Lexicon, request: Request) -> dict: + spec = lex.specifier() + return { + 'id': spec, + 'type': 'lexicon', + 'attributes': { + # cannot have 'id' as JSON:API disallows it + 'version': lex.version, + 'label': lex.label, + 'language': lex.language, + 'license': lex.license, + }, + 'links': { + 'self': str(request.url_for('lexicon', lexicon=spec)) + }, + 'relationships': { + 'words': { + 'links': {'related': str(request.url_for('words', lexicon=spec))}, + }, + 'synsets': { + 'links': {'related': str(request.url_for('synsets', lexicon=spec))}, + }, + 'senses': { + 'links': {'related': str(request.url_for('senses', lexicon=spec))}, + }, + } + } + + +def make_word(w: wn.Word, request: Request, basic: bool = False) -> dict: + lex_spec = w.lexicon().specifier() + d: dict = { + 'id': w.id, + 'type': 'word', + 'attributes': { + 'pos': w.pos, + 'lemma': w.lemma(), + 'forms': [_make_form_data(f) for f in w.forms(data=True)], + }, + 'links': { + 'self': _url_for_obj(request, 'word', w, lexicon=lex_spec) + } + } + if not basic: + synsets = w.synsets() + lex_link = str(request.url_for('lexicon', lexicon=lex_spec)) + senses_link = str(request.url_for('senses', word=w.id, lexicon=lex_spec)) + + sense_counts = {s.synset().id: sum(s.counts()) for s in w.senses()} + included = [] + for ss in synsets: + ss_data = make_synset(ss, request, basic=True) + ss_data['attributes']['count'] = sense_counts.get(ss.id, 0) + included.append(ss_data) + + d.update({ + 'relationships': { + 'senses': {'links': {'related': senses_link}}, + 'synsets': { + 'data': [{'type': 'synset', 'id': ss.id} for ss in synsets], + }, + 'lexicon': {'links': {'related': lex_link}} + }, + 'included': included + }) + return d + + +def make_sense(s: wn.Sense, request: Request, basic: bool = False) -> dict: + lex_spec = s.lexicon().specifier() + d: dict = { + 'id': s.id, + 'type': 'sense', + 'links': { + 'self': _url_for_obj(request, 'sense', s, lexicon=lex_spec) + } + } + if not basic: + w = s.word() + ss = s.synset() + lex_link = str(request.url_for('lexicon', lexicon=lex_spec)) + word_link = str(request.url_for('word', word=w.id, lexicon=lex_spec)) + synset_link = str(request.url_for('synset', synset=ss.id, lexicon=lex_spec)) + relationships: dict = { + 'word': {'links': {'related': word_link}}, + 'synset': {'links': {'related': synset_link}}, + 'lexicon': {'links': {'related': lex_link}} + } + included = [] + for relname, slist in s.relations().items(): + relationships[relname] = { + 'data': [{'type': 'sense', 'id': _s.id} for _s in slist] + } + included.extend([make_sense(_s, request, basic=True) for _s in slist]) + d.update({'relationships': relationships, 'included': included}) + return d + + +def make_synset(ss: wn.Synset, request: Request, basic: bool = False) -> dict: + lex_spec = ss.lexicon().specifier() + d: dict = { + 'id': ss.id, + 'type': 'synset', + 'attributes': { + 'pos': ss.pos, + 'ili': ss._ili, + 'definition': ss.definition(), + 'examples': ss.examples(), + }, + 'links': { + 'self': _url_for_obj(request, 'synset', ss, lexicon=lex_spec) + } + } + if not basic: + words = ss.words() + lex_link = str(request.url_for('lexicon', lexicon=lex_spec)) + members_link = str(request.url_for('senses', synset=ss.id, lexicon=lex_spec)) + relationships: dict = { + 'members': {'links': {'related': members_link}}, + 'words': {'data': [{'type': 'word', 'id': w.id} for w in words]}, + 'lexicon': {'links': {'related': lex_link}} + } + included = [make_word(w, request, basic=True) for w in words] + for relname, sslist in ss.relations().items(): + relationships[relname] = { + 'data': [{'type': 'synset', 'id': _s.id} for _s in sslist] + } + included.extend([make_synset(_s, request, basic=True) for _s in sslist]) + d.update({'relationships': relationships, 'included': included}) + return d + + +# Exception handlers + +async def http_exception_handler(request: Request, exc: Exception): + status_code = exc.status_code if hasattr(exc, 'status_code') else 500 + return JSONResponse({ + "error": { + "status": status_code, + "message": exc.detail if hasattr(exc, 'detail') else str(exc), + "type": type(exc).__name__ + } + }, status_code=status_code) + + +# Route handlers + +@cached_response(months=1) +@paginate(make_lexicon) +async def lexicons(request): + query = request.query_params + _lexicons = wn.lexicons( + lexicon=query.get('lexicon', '*'), + lang=query.get('lang'), + ) + return {'data': _lexicons} + + +async def lexicon(request): + path_params = request.path_params + lex = wn.lexicons(lexicon=path_params['lexicon'])[0] + return JSONResponse({'data': make_lexicon(lex, request)}) + + +def _get_words(wordnet: wn.Wordnet, request: Request) -> dict: + query = request.query_params + _words = wordnet.words( + form=query.get('form'), + pos=query.get('pos'), + ) + return {'data': _words} + + +@paginate(make_word) +async def all_words(request): + query = request.query_params + wordnet = _init_wordnet(lexicon=query.get('lexicon'), lang=query.get('lang')) + return _get_words(wordnet, request) + + +@paginate(make_word) +async def words(request): + wordnet = _init_wordnet(request.path_params['lexicon']) + return _get_words(wordnet, request) + + +@lru_cache(maxsize=10) +def _get_forms(lexicon: str, with_entities: bool = True): + from wn._db import connect + + conn = connect() + + # Parse lexicon specifier (format: "id:version") + parts = lexicon.split(':', 1) + if len(parts) != 2: + return [] + lex_id, lex_version = parts + + # Optimized query using indexed columns and SQL DISTINCT + # Direct join from forms to lexicons using the new index on forms.lexicon_rowid + query = ''' + SELECT DISTINCT f.form + FROM forms AS f + JOIN lexicons AS lex ON lex.rowid = f.lexicon_rowid + WHERE lex.id = ? AND lex.version = ? + ''' + if not with_entities: + query += ' AND f.form = LOWER(f.form)' + + rows = conn.execute(query, (lex_id, lex_version)).fetchall() + + return [row[0] for row in rows] + + +@cached_response(months=1) +async def forms(request): + lexicon = request.path_params['lexicon'] + with_entities = request.query_params.get('with_entities', 'true').lower() != 'false' + print(f"forms: got request lexicon={lexicon} with_entities={with_entities}") + + print("forms: getting forms") + forms = _get_forms(lexicon, with_entities=with_entities) + print(f"forms: got {len(forms)} forms") + + print("forms: constructing JSON response") + response = JSONResponse(content={ + "data": forms, + "meta": {"total": len(forms)} + }) + print("forms: finished") + return response + + +async def word(request): + path_params = request.path_params + wordnet = _init_wordnet(request.path_params['lexicon']) + word = wordnet.word(path_params['word']) + return JSONResponse({'data': make_word(word, request)}) + + +def _get_senses(wordnet: wn.Wordnet, request: Request) -> dict: + query = request.query_params + path = request.path_params + if 'word' in path: + _senses = wordnet.word(path['word']).senses() + elif 'synset' in path: + _senses = wordnet.synset(path['synset']).senses() + else: + _senses = wordnet.senses( + form=query.get('form'), + pos=query.get('pos'), + ) + return {'data': _senses} + + +@paginate(make_sense) +async def all_senses(request): + query = request.query_params + wordnet = _init_wordnet(lexicon=query.get('lexicon'), lang=query.get('lang')) + return _get_senses(wordnet, request) + + +@paginate(make_sense) +async def senses(request): + wordnet = _init_wordnet(request.path_params['lexicon']) + return _get_senses(wordnet, request) + + +async def sense(request): + path_params = request.path_params + wordnet = _init_wordnet(path_params['lexicon']) + sense = wordnet.sense(path_params['sense']) + return JSONResponse({'data': make_sense(sense, request)}) + + +def _get_synsets(wordnet: wn.Wordnet, request: Request) -> dict: + query = request.query_params + _synsets = wordnet.synsets( + form=query.get('form'), + pos=query.get('pos'), + ili=query.get('ili'), + ) + return {'data': _synsets} + + +@paginate(make_synset) +async def all_synsets(request): + query = request.query_params + wordnet = _init_wordnet(lexicon=query.get('lexicon'), lang=query.get('lang')) + return _get_synsets(wordnet, request) + + +@paginate(make_synset) +async def synsets(request): + wordnet = _init_wordnet(request.path_params['lexicon']) + return _get_synsets(wordnet, request) + + +async def synset(request): + path_params = request.path_params + wordnet = _init_wordnet(path_params['lexicon']) + synset = wordnet.synset(path_params['synset']) + return JSONResponse({'data': make_synset(synset, request)}) + + +async def index(request: Request): + endpoints = {route.path: str(request.url_for(route.name)) + for route in routes if len(route.param_convertors) == 0} + return JSONResponse({'endpoints': endpoints}) + + +async def health_check(request: Request): + body = { + 'status': 'healthy', + 'timestamp': datetime.now(tz=UTC).isoformat(), + 'service': 'wn.web', + } + return JSONResponse(body, status_code=200) + + +async def definitions(request: Request): + """Batch endpoint to get definitions for multiple word form/pos queries. + + POST body: {"queries": [{"form": "comfort", "pos": "n"}, ...]} + Response: {"data": [{"form": "comfort", "pos": "n", + "definitions": {synset_id: def, ...}}, ...]} + """ + path_params = request.path_params + wordnet = _init_wordnet(path_params['lexicon']) + + body = await request.json() + queries = body.get('queries', []) + + results = [] + for query in queries: + form = query.get('form') + pos = query.get('pos') + + # Get all synsets for this form/pos combination + synsets = wordnet.synsets(form=form, pos=pos) + + # Build synset_id -> definition mapping + definitions_map = { + ss.id: ss.definition() + for ss in synsets + if ss.definition() # Only include if definition exists + } + + results.append({ + 'form': form, + 'pos': pos, + 'definitions': definitions_map + }) + + return JSONResponse({'data': results}) + + +routes = [ + Route('/', endpoint=index), + Route('/health', endpoint=health_check), + Route('/lexicons', endpoint=lexicons), + Route('/lexicons/{lexicon}', endpoint=lexicon), + Route('/lexicons/{lexicon}/forms', endpoint=forms), + Route('/lexicons/{lexicon}/words', endpoint=words), + Route('/lexicons/{lexicon}/words/{word}', endpoint=word), + Route('/lexicons/{lexicon}/words/{word}/senses', endpoint=senses), + Route('/lexicons/{lexicon}/senses', endpoint=senses), + Route('/lexicons/{lexicon}/senses/{sense}', endpoint=sense), + Route('/lexicons/{lexicon}/synsets', endpoint=synsets), + Route('/lexicons/{lexicon}/synsets/{synset}', endpoint=synset), + Route('/lexicons/{lexicon}/synsets/{synset}/members', endpoint=senses), + Route('/lexicons/{lexicon}/definitions', endpoint=definitions, methods=['POST']), + Route('/words', endpoint=all_words), + Route('/senses', endpoint=all_senses), + Route('/synsets', endpoint=all_synsets), +] + +middlewares = [ + # Level 4: best size/speed tradeoff (29% ratio @ 23ms vs 28% @ 268ms for level 9) + Middleware(GZipMiddleware, minimum_size=1000, compresslevel=4), + Middleware( + CORSMiddleware, + allow_origins=['*'], + allow_methods=['*'], + allow_headers=['*'], + ) +] + +@asynccontextmanager +async def lifespan(app): + lexicons = wn.lexicons() + if lexicons: + _get_forms(lexicons[0].specifier()) + yield + + +app = Starlette(debug=True, + routes=routes, + middleware=middlewares, + lifespan=lifespan, + exception_handlers={ + HTTPException: http_exception_handler, + wn.Error: http_exception_handler, + Exception: http_exception_handler, + })