diff --git a/package.json b/package.json index 6286b3b..3b00b54 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "dependencies": { "@fortawesome/fontawesome-free": "^5.15.4", "@lingdocs/lingdocs-main": "^0.2.0", - "@lingdocs/pashto-inflector": "^1.3.2", + "@lingdocs/pashto-inflector": "^1.3.5", "@testing-library/jest-dom": "^5.11.4", "@testing-library/react": "^11.1.0", "@testing-library/user-event": "^12.1.10", diff --git a/scripts/get-words.js b/scripts/get-words.js index 828c8b2..c0b6dcd 100644 --- a/scripts/get-words.js +++ b/scripts/get-words.js @@ -4,10 +4,14 @@ const { readDictionary } = require("@lingdocs/pashto-inflector"); const path = require("path"); const wordsPath = path.join(".", "src", "words"); const wordsFile = "raw-words.ts"; + const verbCollectionPath = path.join(wordsPath, "verb-categories"); const nounAdjCollectionPath = path.join(wordsPath, "noun-adj-categories"); +const adverbCollectionPath = path.join(wordsPath, "adverbs"); + const verbTsFiles = fs.readdirSync(verbCollectionPath); const nounAdjTsFiles = fs.readdirSync(nounAdjCollectionPath); +const adverbTsFiles = fs.readdirSync(adverbCollectionPath); const allVerbTsS = verbTsFiles.flatMap(fileName => [ ...require(path.join("..", verbCollectionPath, fileName)).map(x => x.ts) @@ -17,6 +21,10 @@ const allNounAdjTsS = nounAdjTsFiles.flatMap(fileName => [ ...require(path.join("..", nounAdjCollectionPath, fileName)).map(x => x.ts) ]).filter((v, i, a) => a.findIndex(x => x === v) === i); +const allAdverbTsS = adverbTsFiles.flatMap(fileName => [ + ...require(path.join("..", adverbCollectionPath, fileName)).map(x => x.ts) +]).filter((v, i, a) => a.findIndex(x => x === v) === i); + console.log("getting words from dictionary..."); fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.arrayBuffer()).then(buffer => { @@ -61,7 +69,7 @@ function getVerbsFromTsS(entries) { } function getNounsAdjsFromTsS(entries) { - const b = allNounAdjTsS.map(ts => { + const b = [...allNounAdjTsS, ...allAdverbTsS].map(ts => { const entry = entries.find(x => ts === x.ts); if (!entry) { console.log("couldn't find ts", ts); diff --git a/scripts/misc-query.js b/scripts/misc-query.js index 5309c2e..dd5de03 100644 --- a/scripts/misc-query.js +++ b/scripts/misc-query.js @@ -3,20 +3,11 @@ const fetch = require("node-fetch"); const path = require("path"); const { readDictionary } = require("@lingdocs/pashto-inflector"); const verbsPath = path.join(".", "src", "words"); -const collectionPath = path.join(verbsPath, "verb-categories"); -const verbTsFiles = fs.readdirSync(collectionPath); - -const pConsonants = ["ب", "پ", "ت", "ټ", "ث", "ج", "چ", "ح", "خ", "څ", "ځ", "د", "ډ", "ذ", "ر", "ړ", "ز", "ژ", "ږ", "س", "ش", "ښ", "ص", "ض", "ط", "ظ", "غ", "ف", "ق", "ک", "ګ", "گ", "ل", "ل", "م", "ن", "ڼ"]; - -// const allTsS = [...new Set(verbTsFiles.reduce((arr, fileName) => { -// const TsS = require(path.join("..", collectionPath, fileName)); -// return [...arr, ...TsS]; -// }, []))]; fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.arrayBuffer()).then(data => { const { entries } = readDictionary(data); const filtered = entries.filter(e => ( - e.c?.includes("n. m. unisex") + e.c?.includes("loc. adv.") )); const content = `module.exports = [ ${filtered.reduce((text, entry) => ( @@ -25,21 +16,3 @@ ${filtered.reduce((text, entry) => ( ];`; fs.writeFileSync(path.join(verbsPath, "query-results.js"), content); }); - -// function getFromTsS(entries) { -// return allTsS.map(item => { -// const entry = entries.find(x => item.ts === x.ts); -// if (!entry) { -// console.log("couldn't find ts", ts); -// return undefined; -// } -// if (entry.c && entry.c.includes("comp.")) { -// const complement = entries.find(x => entry.l === x.ts); -// return { -// entry, -// complement, -// }; -// } -// return { entry, def: item.e }; -// }).filter(x => x); -// } diff --git a/src/components/InflectionCarousel.tsx b/src/components/InflectionCarousel.tsx index 08495b2..53c04da 100644 --- a/src/components/InflectionCarousel.tsx +++ b/src/components/InflectionCarousel.tsx @@ -8,7 +8,7 @@ import { getEnglishWord, } from "@lingdocs/pashto-inflector"; -function InflectionCarousel({ items }: { items: (Noun | Adjective)[] }) { +function InflectionCarousel({ items }: { items: (NounEntry | AdjectiveEntry)[] }) { if (!items.length) { return "no items for carousel"; } diff --git a/src/components/equative-explorer/EquativeDisplay.tsx b/src/components/equative-explorer/EquativeDisplay.tsx index 83f0d51..b5383dc 100644 --- a/src/components/equative-explorer/EquativeDisplay.tsx +++ b/src/components/equative-explorer/EquativeDisplay.tsx @@ -3,25 +3,31 @@ import { defaultTextOptions as opts, ButtonSelect, Types as T, + personGender, + personIsPlural, } from "@lingdocs/pashto-inflector"; import { ExplorerState, ExplorerReducerAction, } from "./explorer-types"; -import { - makeBlockWPronouns, -} from "./explorer-helpers"; +// import { +// makeBlockWPronouns, +// } from "./explorer-helpers"; import { equativeMachine, assembleEquativeOutput, - SubjectInput, - PredicateInput, - isParticipleInput, - ParticipleInput, } from "../../lib/equative-machine"; -import { isPluralEntry, isUnisexNoun, isAdjective, isSingularEntry } from "../../lib/type-predicates"; +import { + isPluralNounEntry, + isUnisexNounEntry, + isAdjectiveEntry, + isSingularEntry, + isVerbEntry, + isLocativeAdverbEntry, + isNounEntry, +} from "../../lib/type-predicates"; -export function chooseLength(o: T.SingleOrLengthOpts, length: "short" | "long"): O { +function chooseLength(o: T.SingleOrLengthOpts, length: "short" | "long"): O { return ("long" in o) ? o[length] : o; } @@ -30,10 +36,18 @@ function SingleItemDisplay({ state }: { state: ExplorerState }) { return
ERROR: Wrong display being used
; } try { - const subjInput = makeSubjectInput(state.subject[state.subject.type], state); - const predInput = makePredicateInput(state.predicate[state.predicate.type], state); + const se = state.subject[state.subject.type]; + const pe = state.predicate[state.predicate.type]; + const subject = makeNounPhrase(se, state, "subject"); + const predicate = (isAdjectiveEntry(pe) || isLocativeAdverbEntry(pe)) + ? makeComplement(pe) + : makeNounPhrase(pe, state, "predicate"); const block = assembleEquativeOutput( - equativeMachine(subjInput, predInput, state.tense) + equativeMachine({ + subject, + predicate, + tense: state.tense, + }) ); return
@@ -44,84 +58,99 @@ function SingleItemDisplay({ state }: { state: ExplorerState }) { } } -function makeSubjectInput(entry: Noun | ParticipleInput | UnisexNoun, state: ExplorerState): SubjectInput { - if (isParticipleInput(entry)) { - return entry; - } - const isUnisex = isUnisexNoun(entry); - if (isUnisex && isSingularEntry(entry)) { +function makeComplement(entry: AdjectiveEntry | LocativeAdverbEntry): Compliment { + return { + type: "compliment", + entry, + }; +} + +function makeNounPhrase(entry: NounEntry | UnisexNounEntry | VerbEntry, state: ExplorerState, entity: "subject" | "predicate"): NounPhrase { + if (isVerbEntry(entry)) { return { - ...state.subject.info, + type: "participle", entry, }; } - if (isUnisex && isPluralEntry(entry)) { + const isUnisex = isUnisexNounEntry(entry); + if (isUnisex && isSingularEntry(entry)) { return { - ...state.subject.info, - plural: true, + type: "unisex noun", + number: state[entity].info.number, + gender: state[entity].info.gender, + entry, + }; + } + if (isUnisex && isPluralNounEntry(entry)) { + return { + type: "unisex noun", + number: state[entity].info.number, + gender: state[entity].info.gender, entry, }; } if (isUnisex) { throw new Error("improper unisex noun"); } - if (isPluralEntry(entry)) { + if (isPluralNounEntry(entry)) { + const e = entry as PluralNounEntry; return { - plural: true, - entry, - } + type: "plural noun", + entry: e, + }; } if (isSingularEntry(entry)) { + const e = entry as SingularEntry; return { - entry, - plural: state.subject.info.plural, + type: "singular noun", + entry: e, + number: state[entity].info.number, }; } throw new Error("unable to make subject input from entry"); } -function makePredicateInput(entry: Noun | ParticipleInput | UnisexNoun | Adjective, state: ExplorerState): PredicateInput { - if (isParticipleInput(entry) || isAdjective(entry)) { - return entry; - } - const isUnisex = isUnisexNoun(entry); - if (isUnisex && state.subject.type === "pronouns") { - return entry; - } - if (isUnisex && isSingularEntry(entry)) { +export function makeBlockWPronouns(e: AdjectiveEntry | UnisexNounEntry | LocativeAdverbEntry, tense: EquativeTense, length?: "short" | "long"): T.SingleOrLengthOpts { + // if the output's gonna have long / short forms (if it's past or wouldBe) then recursive call to make the long and short versions + if (!length && "long" in assembleEquativeOutput(equativeMachine({ + subject: { type: "pronoun", pronounType: "near", person: 0 }, + predicate: (isAdjectiveEntry(e) || isLocativeAdverbEntry(e)) + ? { type: "compliment", entry: e } + : { type: "unisex noun", gender: "masc", number: "singular", entry: e }, + tense, + }))) { return { - ...state.predicate.info, - entry, + short: makeBlockWPronouns(e, tense, "short") as T.VerbBlock, + long: makeBlockWPronouns(e, tense, "long") as T.VerbBlock, }; } - if (isUnisex && isPluralEntry(entry)) { - return { - ...state.predicate.info, - plural: true, - entry, - }; - } - if (isUnisex) { - throw new Error("improper unisex noun"); - } - if (isPluralEntry(entry)) { - return { - plural: true, - entry, - } - } - if (isSingularEntry(entry)) { - return { - entry, - plural: state.predicate.info.plural, - }; - } - throw new Error("unable to make predicate input from entry"); + const makeP = (p: T.Person): T.ArrayOneOrMore => { + const b = assembleEquativeOutput(equativeMachine({ + subject: { type: "pronoun", pronounType: "far", person: p }, + predicate: (isAdjectiveEntry(e) || isLocativeAdverbEntry(e)) + ? { type: "compliment", entry: e } + : { type: "unisex noun", gender: personGender(p), number: personIsPlural(p) ? "plural" : "singular", entry: e }, + tense, + })); + if ("long" in b) { + if (!length) throw new Error("bad length processing"); + return b[length]; + } + return b; + }; + return [ + [makeP(0), makeP(6)], + [makeP(1), makeP(7)], + [makeP(2), makeP(8)], + [makeP(3), makeP(9)], + [makeP(4), makeP(10)], + [makeP(5), makeP(11)], + ]; } function PronounBlockDisplay({ state }: { state: ExplorerState }) { const pred = state.predicate[state.predicate.type]; - if (!isParticipleInput(pred) && (isAdjective(pred) || isUnisexNoun(pred))) { + if (!isVerbEntry(pred) && (isAdjectiveEntry(pred) || isLocativeAdverbEntry(pred) || (isNounEntry(pred) && isUnisexNounEntry(pred)))) { const block = makeBlockWPronouns(pred, state.tense); return void }) { return <> - {state.tense === "past" &&
+ {(state.tense === "past" || state.tense === "wouldBe") &&
} {state.subject.type === "pronouns" - ? + ? : } + {state.predicate.type === "participle" &&
+ Note: This means that the subject is the act of the participle/verb, not that the subject is currently doing the verb! +
} ; } diff --git a/src/components/equative-explorer/EquativeExplorer.tsx b/src/components/equative-explorer/EquativeExplorer.tsx index 267301c..a6927db 100644 --- a/src/components/equative-explorer/EquativeExplorer.tsx +++ b/src/components/equative-explorer/EquativeExplorer.tsx @@ -3,8 +3,7 @@ import { reducer, } from "./explorer-reducer"; import { - PredicateSelector, - SubjectSelector, + InputSelector, TenseSelector, } from "./explorer-selectors"; import { @@ -16,6 +15,7 @@ import { defaultAdjective, defaultNoun, defaultParticiple, + defaultAdverb, } from "./explorer-inputs"; import EquativeDisplay from "./EquativeDisplay"; @@ -25,11 +25,12 @@ const defaultState: ExplorerState = { predicate: { type: "adjective", adjective: defaultAdjective, + adverb: defaultAdverb, unisexNoun: defaultUnisexNoun, participle: defaultParticiple, noun: defaultNoun, info: { - plural: false, + number: "singular", gender: "masc", }, }, @@ -39,7 +40,7 @@ const defaultState: ExplorerState = { participle: defaultParticiple, unisexNoun: defaultUnisexNoun, info: { - plural: false, + number: "singular", gender: "masc", }, }, @@ -52,15 +53,13 @@ function EquativeExplorer() { unsafeSetState(newState); } return <> +
-
- +
+
- -
-
- +
diff --git a/src/components/equative-explorer/explorer-helpers.ts b/src/components/equative-explorer/explorer-helpers.ts deleted file mode 100644 index f7af0eb..0000000 --- a/src/components/equative-explorer/explorer-helpers.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { - Types as T, - removeFVarients, - getEnglishWord, -} from "@lingdocs/pashto-inflector"; -import { - equativeMachine, - assembleEquativeOutput, - ParticipleInput, - isParticipleInput, - getEnglishParticiple, -} from "../../lib/equative-machine"; - -export function sort(arr: Readonly): T[] { - return [...arr].sort((a, b) => a.p.localeCompare(b.p)); -} - -export function makeBlockWPronouns(e: Adjective | UnisexNoun, tense: EquativeTense, length?: "short" | "long"): T.SingleOrLengthOpts { - // if the output's gonna have long / short forms (if it's past or wouldBe) then recursive call to make the long and short versions - if (!length && "long" in assembleEquativeOutput(equativeMachine(0, e, tense))) { - return { - short: makeBlockWPronouns(e, tense, "short") as T.VerbBlock, - long: makeBlockWPronouns(e, tense, "long") as T.VerbBlock, - }; - } - const makeP = (p: T.Person): T.ArrayOneOrMore => { - const b = assembleEquativeOutput(equativeMachine(p, e, tense)); - if ("long" in b) { - if (!length) throw new Error("bad length processing"); - return b[length]; - } - return b; - }; - return [ - [makeP(0), makeP(6)], - [makeP(1), makeP(7)], - [makeP(2), makeP(8)], - [makeP(3), makeP(9)], - [makeP(4), makeP(10)], - [makeP(5), makeP(11)], - ]; -} - -export function makeOptionLabel(e: T.DictionaryEntry): string { - const eng = (isParticipleInput(e)) ? getEnglishParticiple(e) : getEnglishWord(e); - const english = typeof eng === "string" - ? eng - : !eng - ? "" - : ("singular" in eng && eng.singular !== undefined) - ? eng.singular - : eng.plural; - return `${e.p} - ${removeFVarients(e.f)} (${english})`; -} \ No newline at end of file diff --git a/src/components/equative-explorer/explorer-inputs.ts b/src/components/equative-explorer/explorer-inputs.ts index 68d3282..8a9448c 100644 --- a/src/components/equative-explorer/explorer-inputs.ts +++ b/src/components/equative-explorer/explorer-inputs.ts @@ -1,27 +1,37 @@ -import { nouns, adjectives, verbs } from "../../words/words"; +import { nouns, adjectives, verbs, adverbs } from "../../words/words"; import { - isUnisexNoun, + isLocativeAdverbEntry, + isUnisexNounEntry, } from "../../lib/type-predicates"; -import { sort } from "./explorer-helpers"; -import { - ParticipleInput, -} from "../../lib/equative-machine"; -const unisexNouns = sort(nouns.filter(x => isUnisexNoun(x)) as UnisexNoun[]); -const nonUnisexNouns = sort(nouns.filter(x => !isUnisexNoun(x)) as (MascNoun | FemNoun)[]); +function sort(arr: Readonly): T[] { + if ("entry" in arr[0]) { + return [...arr].sort((a, b) => ( + // @ts-ignore + a.entry.p.localeCompare(b.entry.p) + )); + } + return [...arr].sort((a, b) => ( + // @ts-ignore + a.p.localeCompare(b.p) + )); +} +const unisexNouns = sort(nouns.filter(x => isUnisexNounEntry(x)) as UnisexNounEntry[]); +const nonUnisexNouns = sort(nouns.filter(x => !isUnisexNounEntry(x)) as (MascNounEntry | FemNounEntry)[]); const inputs = { adjective: sort(adjectives), unisexNoun: unisexNouns, noun: nonUnisexNouns, - // @ts-ignore - participle: sort(verbs.map(e => e.entry) as ParticipleInput[]), + participle: sort(verbs), + adverb: sort(adverbs.filter(isLocativeAdverbEntry)), }; export const defaultAdjective = inputs.adjective.find(ps => ps.p === "زوړ") || inputs.adjective[0]; +export const defaultAdverb = inputs.adverb.find(ps => ps.p === "دلته") || inputs.adverb[0]; export const defaultUnisexNoun = inputs.unisexNoun.find(ps => ps.p === "پښتون") || inputs.unisexNoun[0]; export const defaultNoun = inputs.noun.find(ps => ps.p === "کتاب") || inputs.noun[0]; -export const defaultParticiple = inputs.participle.find(ps => ps.p === "لیکل") || inputs.participle[0]; +export const defaultParticiple = inputs.participle.find(ps => ps.entry.p === "لیکل") || inputs.participle[0]; export default inputs; \ No newline at end of file diff --git a/src/components/equative-explorer/explorer-reducer.ts b/src/components/equative-explorer/explorer-reducer.ts index e00abaa..a8057a3 100644 --- a/src/components/equative-explorer/explorer-reducer.ts +++ b/src/components/equative-explorer/explorer-reducer.ts @@ -3,7 +3,7 @@ import { ExplorerState, ExplorerReducerAction } from "./explorer-types"; export function reducer(state: ExplorerState, action: ExplorerReducerAction): ExplorerState { if (action.type === "setPredicate") { - const pile = inputs[state.predicate.type] as (UnisexNoun | Adjective)[]; + const pile = inputs[state.predicate.type] as (UnisexNounEntry | AdjectiveEntry)[]; const predicate = (pile.find(p => p.ts === action.payload) || pile[0]); return { ...state, @@ -19,7 +19,7 @@ export function reducer(state: ExplorerState, action: ExplorerReducerAction): Ex ...state, predicate: { ...state.predicate, - type: (predicateType === "unisexNoun" && state.subject.type === "noun") ? "adjective" : predicateType, + type: predicateType, }, }; } @@ -27,14 +27,17 @@ export function reducer(state: ExplorerState, action: ExplorerReducerAction): Ex const subjectType = action.payload; return { ...state, - predicate: { - ...state.predicate, - type: state.predicate.type === "unisexNoun" ? "adjective" : state.predicate.type, - }, subject: { ...state.subject, type: subjectType, - } + }, + predicate: { + ...state.predicate, + type: ( + subjectType === "pronouns" && + !["adjective", "adverb", "unisexNoun"].includes(state.predicate.type) + ) ? "adjective" : state.predicate.type, + }, }; } if (action.type === "setSubject") { @@ -50,26 +53,28 @@ export function reducer(state: ExplorerState, action: ExplorerReducerAction): Ex }, }; } - if (action.type === "setSubjectPlural") { + if (action.type === "setNumber") { + const entity = action.payload.entity; return { ...state, - subject: { - ...state.subject, + [entity]: { + ...state[entity], info: { - ...state.subject.info, - plural: action.payload, + ...state[entity].info, + number: action.payload.number, }, }, }; } - if (action.type === "setSubjectGender") { + if (action.type === "setGender") { + const entity = action.payload.entity; return { ...state, - subject: { - ...state.subject, + [entity]: { + ...state[entity], info: { - ...state.subject.info, - gender: action.payload, + ...state[entity].info, + gender: action.payload.gender, }, }, }; @@ -80,6 +85,15 @@ export function reducer(state: ExplorerState, action: ExplorerReducerAction): Ex tense: action.payload, }; } + // if (action.type === "setPredicateEntity") { + // return { + // ...state, + // predicate: { + // ...state.predicate, + // entity: action.payload, + // }, + // }; + // } return { ...state, length: action.payload, diff --git a/src/components/equative-explorer/explorer-selectors.tsx b/src/components/equative-explorer/explorer-selectors.tsx index 7ad7d83..c6c5c70 100644 --- a/src/components/equative-explorer/explorer-selectors.tsx +++ b/src/components/equative-explorer/explorer-selectors.tsx @@ -1,16 +1,21 @@ -import { makeOptionLabel } from "./explorer-helpers"; +// import { makeOptionLabel } from "./explorer-helpers"; import inputs from "./explorer-inputs"; import { ExplorerReducerAction, ExplorerState, - PredicateType, SubjectType, + PredicateType, } from "./explorer-types"; +import { + getEnglishParticiple, +} from "../../lib/np-tools"; import { ButtonSelect, + getEnglishWord, Types as T, + removeFVarients, } from "@lingdocs/pashto-inflector"; -import { isFemNoun, isMascNoun, isPluralEntry } from "../../lib/type-predicates"; +import { isAdjectiveEntry, isAdverbEntry, isFemNounEntry, isMascNounEntry, isNounEntry, isPluralNounEntry } from "../../lib/type-predicates"; import Select from "react-select"; const zIndexProps = { @@ -18,194 +23,166 @@ const zIndexProps = { styles: { menuPortal: (base: any) => ({ ...base, zIndex: 9999 }) }, }; -export function SubjectSelector({ state, dispatch }: { +const npTypeOptions: { type: SubjectType, label: string }[] = [ + { type: "unisexNoun", label: "Unisex Noun"}, + { type: "noun", label: "Noun" }, + { type: "participle", label: "Participle" }, +]; +const subjectTypeOptions: { type: SubjectType, label: string }[] = [ + { type: "pronouns" as SubjectType, label: "Pronouns" } +]; +const compTypeOptions: { type: PredicateType, label: string }[] = [ + { type: "adjective", label: "Adjective" }, + { type: "adverb", label: "Loc. Adverb" }, +]; + +export function InputSelector({ state, dispatch, entity }: { state: ExplorerState, dispatch: (action: ExplorerReducerAction) => void, + entity: "subject" | "predicate", }) { + const typeOptions = [ + ...entity === "subject" + ? subjectTypeOptions + : compTypeOptions, + ...npTypeOptions.filter(o => !(entity === "predicate" && ( + (state.subject.type === "pronouns" && ["noun", "participle"].includes(o.type)) + // || (state.subject.type === "unisexNoun" && o.type === "unisexNoun") + ))), + ]; + function onTypeSelect(e: React.ChangeEvent) { - const t = e.target.value as SubjectType; - dispatch({ type: "setSubjectType", payload: t }); - } - function onSubjectSelect({ value }: any) { - dispatch({ type: "setSubject", payload: parseInt(value) }); - } - const pluralNounSelected = ( - state.subject.type === "noun" && isPluralEntry(state.subject.noun) - ); - const options = state.subject.type === "pronouns" - ? [] - : inputs[state.subject.type].map(e => ({ - value: e.ts.toString(), - label: makeOptionLabel(e), - })); - const subject = state.subject.type === "pronouns" - ? undefined - : state.subject[state.subject.type]; - return
- -
- - -
-
- - -
-
- - -
-
- - -
- {state.subject.type !== "pronouns" && - <> - + +
+ } + + const type = state[entity].type; + const entry: NounEntry | VerbEntry | AdjectiveEntry | LocativeAdverbEntry | undefined = type === "pronouns" + ? undefined + // @ts-ignore + : state[entity][type]; + const options = type === "pronouns" + ? [] + : inputs[type].map(makeOption); + + return
+
{entity === "subject" ? "Subject:" : "Predicate:"}
+
+ {typeOptions.map(({ type, label }) => ( + + ))} +
+ {type !== "pronouns" && <> + +
+ null : (p) => dispatch({ type: "setGender", payload: { gender: p as T.Gender, entity }})} /> -
-
- + dispatch({ type: "setNumber", payload: { number: p as NounNumber, entity }})} /> -
- +You can use this tool to explore how to make different equative sentences. Everything that comes out of this will be **gramatically correct**, but the sentences might not always make sense! 🤪 + +
+ +
+ +### Equative Rules: 👨‍🏫 + +- The **subject** has to be a **noun phrase** +- The **predicate** can be a **noun phrase** or **compliment** +- In Pashto, if the predicate is a noun phrase, the equative agrees with the predicate. Otherwise, if the predicate is a compliment, the equative agrees with the subject. In English, the equative always agrees with the subject. diff --git a/src/content/inflection/feminine-inflection.mdx b/src/content/inflection/feminine-inflection.mdx index a64e686..3b4e4e3 100644 --- a/src/content/inflection/feminine-inflection.mdx +++ b/src/content/inflection/feminine-inflection.mdx @@ -30,12 +30,11 @@ import Link from "../../components/Link"; import Table from "../../components/Table"; import { startingWord } from "../../lib/starting-word"; import { - isFemNoun, - isPattern6FemNoun, - isPattern7FemNoun, + isFemNounEntry, + isPattern6FemEntry, } from "../../lib/type-predicates"; -export const femNouns = nouns.filter(isFemNoun); +export const femNouns = nouns.filter(isFemNounEntry); The 5 basic patterns in the last chapter work with both masculine and feminine words (nouns and adjectives). @@ -43,6 +42,6 @@ There are also a few more patterns that are only for **feminine nouns**. ## Feminine Nouns Ending in - + **Note:** This only works with **inanimate nouns**. (ie. words for people like will not inflect like this.) diff --git a/src/content/inflection/inflection-patterns.mdx b/src/content/inflection/inflection-patterns.mdx index 8b82eec..9da4d51 100644 --- a/src/content/inflection/inflection-patterns.mdx +++ b/src/content/inflection/inflection-patterns.mdx @@ -24,12 +24,12 @@ import { } from "@lingdocs/pashto-inflector"; import { isNounOrVerb, - isPattern1Word, - isPattern2Word, - isPattern3Word, - isPattern4Word, - isPattern5Word, - isUnisexNoun, + isPattern1Entry, + isPattern2Entry, + isPattern3Entry, + isPattern4Entry, + isPattern5Entry, + isUnisexNounEntry, } from "../../lib/type-predicates"; import InflectionCarousel from "../../components/InflectionCarousel"; import { nouns, adjectives } from "../../words/words"; @@ -37,7 +37,7 @@ import { startingWord } from "../../lib/starting-word"; import Link from "../../components/Link"; export const words = [ - ...nouns.filter(isUnisexNoun), + ...nouns.filter(isUnisexNounEntry), ...adjectives, ]; @@ -57,7 +57,7 @@ These words always end in: - **Feminine:** - @@ -92,7 +92,7 @@ Notice how it does not use the first feminine inflection @@ -101,7 +101,7 @@ Notice how it does not use the first feminine inflection @@ -113,7 +113,7 @@ These words are a little irregular but you can see a common patten based around: - shortening the other forms and adding the , , endings @@ -124,7 +124,7 @@ These words are a little irregular but you can see a common patten based around: These are also a little irregular but instead of lengthening the 1st masculine inflection they compress it as well and take just an on the end. diff --git a/src/games/sub-cores/GenderGame.tsx b/src/games/sub-cores/GenderGame.tsx index 514cd2e..f836d7b 100644 --- a/src/games/sub-cores/GenderGame.tsx +++ b/src/games/sub-cores/GenderGame.tsx @@ -18,38 +18,38 @@ import { firstVariation, } from "../../lib/text-tools"; import { - isMascNoun, - isFemNoun, - isUnisexNoun, + isMascNounEntry, + isFemNounEntry, + isUnisexNounEntry, } from "../../lib/type-predicates"; import { categorize } from "../../lib/categorize"; const genders: T.Gender[] = ["masc", "fem"]; -const mascNouns = nouns.filter(isMascNoun); +const mascNouns = nouns.filter(isMascNounEntry); const femNouns = [ - ...nouns.filter(isFemNoun), - ...getFemVersions(mascNouns.filter(isUnisexNoun)), + ...nouns.filter(isFemNounEntry), + ...getFemVersions(mascNouns.filter(isUnisexNounEntry)), ]; const types = { - masc: categorize(mascNouns, { consonantMasc: endsWith([{ p: pashtoConsonants }, { p: "و", f: "w" }]), eyMasc: endsWith({ p: "ی", f: "ey" }), uMasc: endsWith({ p: "ه", f: "u" }), yMasc: endsWith([{ p: "ای", f: "aay" }, { p: "وی", f: "ooy" }]), }), - fem: categorize(femNouns, { aaFem: endsWith({ p: "ا", f: "aa" }), eeFem: endsWith({ p: "ي", f: "ee" }), @@ -59,7 +59,7 @@ const types = { }), }; -function getFemVersions(uns: UnisexNoun[]): FemNoun[] { +function getFemVersions(uns: UnisexNounEntry[]): FemNounEntry[] { return uns.map((n) => { const infs = inflectWord(n); if (!infs || !infs.inflections) return undefined; @@ -68,18 +68,18 @@ function getFemVersions(uns: UnisexNoun[]): FemNoun[] { e: n.e, ...infs.inflections.fem[0][0], } as T.DictionaryEntry; - }).filter(n => !!n) as FemNoun[]; + }).filter(n => !!n) as FemNounEntry[]; } function flatten(o: Record): T[] { return Object.values(o).flat(); } -function nounNotIn(st: Noun[]): (n: Noun | T.DictionaryEntry) => boolean { +function nounNotIn(st: NounEntry[]): (n: NounEntry | T.DictionaryEntry) => boolean { return (n: T.DictionaryEntry) => !st.find(x => x.ts === n.ts); } -type CategorySet = Record; +type CategorySet = Record; // for some reason we need to use this CategorySet type here... 🤷‍♂️ const exceptions: Record = { masc: { diff --git a/src/games/sub-cores/UnisexNounGame.tsx b/src/games/sub-cores/UnisexNounGame.tsx index da245f7..8fc673f 100644 --- a/src/games/sub-cores/UnisexNounGame.tsx +++ b/src/games/sub-cores/UnisexNounGame.tsx @@ -19,10 +19,10 @@ import { firstVariation, } from "../../lib/text-tools"; import { - isUnisexNoun, + isUnisexNounEntry, } from "../../lib/type-predicates"; -const unisexNouns = nouns.filter(isUnisexNoun); +const unisexNouns = nouns.filter(isUnisexNounEntry); type NType = "pattern1" | "pattern2" | "pattern3" | "pattern4" | "pattern5" | "other"; // TODO: make pattern types as overlay types const types = intoPatterns(unisexNouns); @@ -41,7 +41,7 @@ export default function UnisexNounGame({ id, link }: { id: string, link: string do { type = getRandomFromList(keys); } while (!pool[type].length); - const entry = getRandomFromList( + const entry = getRandomFromList( // @ts-ignore pool[type] ); diff --git a/src/lib/categorize.ts b/src/lib/categorize.ts index f2074e6..786a7a2 100644 --- a/src/lib/categorize.ts +++ b/src/lib/categorize.ts @@ -1,9 +1,9 @@ import { - isPattern1Word, - isPattern2Word, - isPattern3Word, - isPattern4Word, - isPattern5Word, + isPattern1Entry, + isPattern2Entry, + isPattern3Entry, + isPattern4Entry, + isPattern5Entry, } from "./type-predicates"; /** @@ -75,31 +75,31 @@ export function categorize>( // TODO: uncategorizable words like ایرې - n. f. pl. -- could be pattern 1 or 2 🤷‍♂️ -export function intoPatterns(words: T[]): { - "pattern1": Pattern1Word[], - "pattern2": Pattern2Word[], - "pattern3": Pattern3Word[], - "pattern4": Pattern4Word[], - "pattern5": Pattern5Word[], +export function intoPatterns(words: T[]): { + "pattern1": Pattern1Entry[], + "pattern2": Pattern2Entry[], + "pattern3": Pattern3Entry[], + "pattern4": Pattern4Entry[], + "pattern5": Pattern5Entry[], "other": NonInflecting[], // "pattern6fem": Pattern6FemNoun[], } { - return categorize<(Noun | Adjective), { - "pattern1": Pattern1Word[], - "pattern2": Pattern2Word[], - "pattern3": Pattern3Word[], - "pattern4": Pattern4Word[], - "pattern5": Pattern5Word[], + return categorize<(NounEntry | AdjectiveEntry), { + "pattern1": Pattern1Entry[], + "pattern2": Pattern2Entry[], + "pattern3": Pattern3Entry[], + "pattern4": Pattern4Entry[], + "pattern5": Pattern5Entry[], "other": NonInflecting[], // "pattern6fem": Pattern6FemNoun[], }>( words, { - "pattern1": isPattern1Word, - "pattern2": isPattern2Word, - "pattern3": isPattern3Word, - "pattern4": isPattern4Word, - "pattern5": isPattern5Word, + "pattern1": isPattern1Entry, + "pattern2": isPattern2Entry, + "pattern3": isPattern3Entry, + "pattern4": isPattern4Entry, + "pattern5": isPattern5Entry, // "pattern6fem": (n) => (isNoun(n) && isPattern6FemNoun(n)), "other": "leftovers", }, diff --git a/src/lib/compliment-tools.ts b/src/lib/compliment-tools.ts new file mode 100644 index 0000000..23f4e84 --- /dev/null +++ b/src/lib/compliment-tools.ts @@ -0,0 +1,45 @@ +import { + Types as T, + getEnglishWord, + inflectWord, + isUnisexSet, + personGender, + personIsPlural, +} from "@lingdocs/pashto-inflector"; +import { isAdjectiveEntry, isLocativeAdverbEntry } from "./type-predicates"; +import { + psStringFromEntry, +} from "./text-tools"; + +export function evaluateCompliment(c: Compliment, person: T.Person): { ps: T.PsString[], e: string } { + const e = getEnglishWord(c.entry); + if (!e || typeof e !== "string") { + console.log(e); + throw new Error("error getting english for compliment"); + } + if (isLocativeAdverbEntry(c.entry)) { + return { + ps: [psStringFromEntry(c.entry)], + e, + }; + } + if (isAdjectiveEntry(c.entry)) { + const infs = inflectWord(c.entry); + if (!infs) return { + ps: [psStringFromEntry(c.entry)], + e, + } + if (!infs.inflections || !isUnisexSet(infs.inflections)) { + throw new Error("error getting inflections for adjective, looks like a noun's inflections"); + } + return { + ps: chooseInflection(infs.inflections, person), + e, + }; + } + throw new Error("noun complements not yet implemented"); +} + +function chooseInflection(inflections: T.UnisexSet, pers: T.Person): T.ArrayOneOrMore { + return inflections[personGender(pers)][personIsPlural(pers) ? 1 : 0]; +} \ No newline at end of file diff --git a/src/lib/equative-machine.ts b/src/lib/equative-machine.ts index 9ea822b..039afd1 100644 --- a/src/lib/equative-machine.ts +++ b/src/lib/equative-machine.ts @@ -1,356 +1,89 @@ import { - getPersonFromVerbForm, Types as T, - getEnglishWord, grammarUnits, - inflectWord, - personIsPlural, - removeFVarients, - isUnisexSet, - personGender, getVerbBlockPosFromPerson, - addEnglish, - parseEc, + getPersonFromVerbForm, concatPsString, } from "@lingdocs/pashto-inflector"; import { - isArrayOneOrMore, isPluralEntry, -} from "./type-predicates"; + personFromNP, + evaluateNP, +} from "./np-tools"; +import { + evaluateCompliment, +} from "./compliment-tools"; -export type EquativeMachineOutput = { - subject: T.PsString[], - predicate: T.PsString[], - equative: T.SingleOrLengthOpts>, - ba: boolean, -}; +// Equative Rules +// - An equative equates a SUBJECT: Noun Phrase and a PREDICATE: Noun Phrase | Compliment +// - In Pashto, the equative agrees with the predicate when the predicate is a Noun Phrase, +// otherwise it agrees with the subject +// - If the subject is a pronoun, always agree with the subject +// - In English, the equative agrees with the subject -export type NounInput = { - entry: SingularEntry, - plural: boolean, -} | { - entry: PluralEntry, - plural: true, -}; - -export type ParticipleInput = T.DictionaryEntry & { __brand: "a participle" }; -export type SpecifiedUnisexNounInput = NounInput & { gender: T.Gender }; -export type PersonInput = T.Person; - -export type EntityInput = SubjectInput | PredicateInput; -export type SubjectInput = PersonInput | NounInput | ParticipleInput | SpecifiedUnisexNounInput; -export type PredicateInput = PersonInput | NounInput | Adjective | SpecifiedUnisexNounInput | UnisexNoun | ParticipleInput; - -export function equativeMachine(sub: SubjectInput, pred: PredicateInput, tense: EquativeTense): EquativeMachineOutput { - // - english equative always agrees with subject - // - pashto equative agrees with predicate, unless it's an adjective, in which case the - // agreement reverts to the subject - const subjPerson = getInputPerson(sub, "subject"); - const predPerson = getInputPerson(pred, "predicate") || subjPerson; - const subject = makeEntity(sub); - const predicate = makeEntity(pred, subjPerson); - const equative = makeEquative(subjPerson, predPerson, sub, tense); - const ba = determineBa(tense); +export function equativeMachine(e: EquativeClause): EquativeClauseOutput { + const ba = (e.tense === "future" || e.tense === "wouldBe"); + const subject = evaluateNP(e.subject); + const predicate = ("type" in e.predicate && e.predicate.type === "compliment") + ? evaluateCompliment(e.predicate, personFromNP(e.subject)) + : evaluateNP(e.predicate); + const equative = makeEquative(e); return { + ba, subject, predicate, equative, - ba, }; } -export function assembleEquativeOutput(o: EquativeMachineOutput): T.SingleOrLengthOpts> { - if ("long" in o.equative) { +export function assembleEquativeOutput(o: EquativeClauseOutput): T.SingleOrLengthOpts> { + if ("long" in o.equative.ps) { return { - long: assembleEquativeOutput({ ...o, equative: o.equative.long }) as T.ArrayOneOrMore, - short: assembleEquativeOutput({ ...o, equative: o.equative.short }) as T.ArrayOneOrMore, + long: assembleEquativeOutput({ ...o, equative: { ...o.equative, ps: o.equative.ps.long }}) as T.ArrayOneOrMore, + short: assembleEquativeOutput({ ...o, equative: { ...o.equative, ps:o.equative.ps.short }}) as T.ArrayOneOrMore, } } // get all possible combinations of subject, predicate, and equative // soooo cool how this works 🤓 - const equatives = o.equative; - const predicates = o.predicate; + const equatives = o.equative.ps; + const predicates = o.predicate.ps; const ba = o.ba ? { p: " به", f: " ba" } : ""; - const ps = o.subject.flatMap(subj => ( + const ps = o.subject.ps.flatMap(subj => ( predicates.flatMap(pred => ( equatives.map(eq => ( concatPsString(subj, ba, " ", pred, " ", eq)) ) )) )); - const e = `${o.subject[0].e} ${o.equative[0].e} ${o.predicate[0].e}`; + const e = `${o.subject.e} ${o.equative.e[0]} ${o.predicate.e}`; return ps.map(x => ({ ...x, e })) as T.ArrayOneOrMore; } -// LEVEL 2 FUNCTIONS - -function determineBa(tense: EquativeTense): boolean { - return (tense === "future" || tense === "wouldBe"); -} - -function getInputPerson(e: SubjectInput, part: "subject"): T.Person; -function getInputPerson(e: PredicateInput, part: "predicate"): T.Person | undefined; -function getInputPerson(e: EntityInput, part: "subject" | "predicate"): T.Person | undefined { - function nounPerson(gender: T.Gender, plural: boolean): T.Person { - return plural - ? ((gender === "masc") ? T.Person.ThirdPlurMale : T.Person.ThirdPlurFemale) - : ((gender === "masc") ? T.Person.ThirdSingMale : T.Person.ThirdSingFemale); - } - - if (isPersonInput(e)) return e; - if (isNounInput(e)) { - const gender = e.entry.c?.includes("n. m.") ? "masc" : "fem" - return nounPerson(gender, e.plural); - } - if (isSpecifiedUnisexNounInput(e)) { - return nounPerson(e.gender, e.plural); - } - if (isParticipleInput(e)) return T.Person.ThirdPlurMale; - if (isUnisexNounInput(e)) return undefined; - if (isAdjectiveInput(e)) return undefined; -} - -function makeEntity(e: EntityInput, subjPerson?: T.Person): T.PsString[] { - const isSubject = subjPerson === undefined; - if (typeof e === "number") return makePronoun(e); - if ("entry" in e) { - return makeNoun(e, isSubject ? "subject" : "predicate"); - } - if (isAdjectiveInput(e) && subjPerson !== undefined) { - return makeAdjective(e, subjPerson); - } - if (isUnisexNounInput(e)) { - if (subjPerson === undefined) throw new Error("unspecified unisex noun must be in the predicate"); - return makeUnisexNoun(e, subjPerson); - } - if (isParticipleInput(e)) { - return makeParticiple(e); - } - throw new Error(`invalid entity in ${subjPerson ? "predicate" : "subject"}`); -} - -function makeEquative(subj: T.Person, pred: T.Person, subjectInput: SubjectInput, tense: EquativeTense): T.SentenceForm { - function getEngEq(row: number, col: number): string { - const t = grammarUnits.englishEquative[tense === "subjunctive" ? "present" : tense]; +function makeEquative(e: EquativeClause) { + function getEngEq(row: number, col: number): string[] { + const t = grammarUnits.englishEquative[e.tense === "subjunctive" ? "present" : e.tense]; return typeof t === "string" - ? t - : t[row][col]; + ? [t] + : [t[row][col]]; } - - const isPluralNoun = isNounInput(subjectInput) && isPluralEntry(subjectInput.entry); - // The subject's person information, for the English equative - const [eeRow, eeCol] = getVerbBlockPosFromPerson( - (isParticipleInput(subjectInput) || isPluralNoun) - ? T.Person.ThirdSingMale - : subj - ); - const baseTense = (tense === "future") + const baseTense = (e.tense === "future") ? "subjunctive" - : tense === "wouldBe" + : e.tense === "wouldBe" ? "past" - : tense; - return addEnglish( - getEngEq(eeRow, eeCol), - // pashto agrees with predicate (if possible) - getPersonFromVerbForm(grammarUnits.equativeEndings[baseTense], pred), - ); -} - -// LEVEL 3 FUNCTIONS - -function makePronoun(sub: T.Person): T.PsString[] { - const [row, col] = getVerbBlockPosFromPerson(sub); - return addEnglish( - grammarUnits.persons[sub].label.subject, - grammarUnits.pronouns.far.plain[row][col], - ); -} - -function makeUnisexNoun(e: UnisexNoun, subjPerson: T.Person): T.PsString[] { - // reuse english from make noun - do the a / an sensitivity - // if it's the predicate - get the inflection according to the subjPerson - const inf = inflectWord(e); - const english = getEnglishFromNoun(e, personIsPlural(subjPerson), "predicate"); - const gender = personGender(subjPerson); - if (!inf) { - return [psStringFromEntry(e, english)]; - } - // if (!inf.inflections && (!("plural" in inf) || (!inf.inflections || !isUnisexSet(inf.inflections)))) { - // throw Error("improper unisex noun"); - // } - // if plural // anim // chose that - // otherwise just chose inflection (or add both) - const pashto = ((): T.ArrayOneOrMore => { - const plural = personIsPlural(subjPerson); - function getPlural() { - const plural = getInf(inf, "plural", gender, true); - const arabicPlural = getInf(inf, "arabicPlural", gender, true); - const inflections = getInf(inf, "inflections", gender, true) - return [ - ...plural, - ...arabicPlural, - // avoid useless non-inflecting masculine inflection "plural" - ...(plural.length && inflections[0].p === e.p) ? [] : inflections, - ]; - } - const ps = plural - ? getPlural() - : getInf(inf, "inflections", gender, plural); - return isArrayOneOrMore(ps) - ? ps - : [psStringFromEntry(e, english)]; - })(); - return addEnglish(english, pashto); -} - -function getInf(infs: T.InflectorOutput, t: "plural" | "arabicPlural" | "inflections", gender: T.Gender, plural: boolean): T.PsString[] { - // @ts-ignore - if (infs && t in infs && infs[t] !== undefined && gender in infs[t] && infs[t][gender] !== undefined) { - // @ts-ignore - const iset = infs[t][gender] as T.InflectionSet; - const ipick = iset[(t === "inflections" && plural) ? 1 : 0]; - return ipick; - } - return []; -} - -function makeNoun(n: NounInput | SpecifiedUnisexNounInput, entity: "subject" | "predicate"): T.PsString[] { - const english = getEnglishFromNoun(n.entry, n.plural, entity); - - const pashto = ((): T.ArrayOneOrMore => { - const infs = inflectWord(n.entry); - const gender = "gender" in n - ? n.gender - : n.entry.c?.includes("n. f.") ? "fem" : "masc"; - const ps = !n.plural - ? getInf(infs, "inflections", gender, false) - : [ - ...getInf(infs, "plural", gender, true), - ...getInf(infs, "arabicPlural", gender, true), - ...getInf(infs, "inflections", gender, true), - ]; - return isArrayOneOrMore(ps) - ? ps - : [psStringFromEntry(n.entry, english)]; - })(); - return addEnglish(english, pashto); -} - -function makeAdjective(e: Adjective, pers: T.Person): T.PsString[] { - const inf = inflectWord(e); - const english = getEnglishWord(e); - if (!english) throw new Error("no english available for adjective"); - if (typeof english !== "string") throw new Error("error getting english for adjective, looks like a noun"); - // non-inflecting adjective - if (!inf) return [psStringFromEntry(e, english)]; - if (!inf.inflections) throw new Error("error getting inflections, looks like a noun") - if (!isUnisexSet(inf.inflections)) throw new Error("inflections for adjective were not unisex, looks like a noun"); - // inflecting adjective - inflected based on the subject person - return addEnglish( - english, - chooseInflection(inf.inflections, pers), - ); -} - -function makeParticiple(e: T.DictionaryEntry): T.PsString[] { - return [psStringFromEntry(e, getEnglishParticiple(e))]; -} - - -// LEVEL 4 FUNCTIONS - -function chooseInflection(inflections: T.UnisexSet, pers: T.Person): T.ArrayOneOrMore { - return inflections[personGender(pers)][personIsPlural(pers) ? 1 : 0]; -} - -function getEnglishFromNoun(entry: T.DictionaryEntry, plural: boolean, entity: "subject" | "predicate"): string { - const articles = { - singular: "(A/The)", - plural: "(The)", - }; - const article = articles[plural ? "plural" : "singular"]; - function addArticle(s: string) { - return `${entity === "subject" ? article : article.toLowerCase()} ${s}`; - } - const e = getEnglishWord(entry); - if (!e) throw new Error(`unable to get english from subject ${entry.f} - ${entry.ts}`); - - if (typeof e === "string") return ` ${e}`; - if (plural) return addArticle(e.plural); - if (!e.singular || e.singular === undefined) { - throw new Error(`unable to get english from subject ${entry.f} - ${entry.ts}`); - } - return addArticle(e.singular); -} - -// function getEnglishForUnisexNoun(pred: UnisexNounInput, pers: T.Person): string | undefined { -// const english = getEnglishWord(pred); -// const plurSing = personIsPlural(pers) ? "plural" : "singular"; -// return typeof english === "string" -// ? english -// : english === undefined -// ? undefined -// : english[plurSing] -// ? english[plurSing] -// : undefined; -// } - -function psStringFromEntry(entry: T.DictionaryEntry, e: string): T.PsString { + : e.tense; + const subjP = personFromNP(e.subject); + const englishPerson = (e.subject.type === "plural noun" || e.subject.type === "participle") + ? T.Person.ThirdSingMale + : subjP + const pashtoPerson = (e.subject.type === "pronoun") + ? e.subject.person + : ("type" in e.predicate && e.predicate.type === "compliment") + ? subjP + : personFromNP(e.predicate); return { - p: entry.p, - f: removeFVarients(entry.f), - e, + ps: getPersonFromVerbForm( + grammarUnits.equativeEndings[baseTense], + pashtoPerson, + ), + e: getEngEq(...getVerbBlockPosFromPerson(englishPerson)), }; } - -export function getEnglishParticiple(entry: T.DictionaryEntry): string { - if (!entry.ec) throw new Error("no english information for participle"); - const ec = parseEc(entry.ec); - const participle = ec[2]; - return (entry.ep) - ? `${participle} ${entry.ep}` - : participle; -} - -export function isPersonInput(e: EntityInput | T.DictionaryEntry): e is PersonInput { - return typeof e === "number"; -} - -export function isNounInput(e: EntityInput | T.DictionaryEntry): e is NounInput { - if (isPersonInput(e)) return false; - if ("entry" in e && !("gender" in e)) { - // e - return true; - } - return false; -} - -export function isParticipleInput(e: EntityInput | T.DictionaryEntry): e is ParticipleInput { - if (isPersonInput(e)) return false; - if ("entry" in e) return false; - return !!e.c?.startsWith("v."); -} - -export function isSpecifiedUnisexNounInput(e: EntityInput): e is SpecifiedUnisexNounInput { - if (isPersonInput(e)) return false; - if ("entry" in e && "gender" in e) { - // e - return true; - } - return false; -} - -export function isUnisexNounInput(e: EntityInput): e is UnisexNoun { - if (isPersonInput(e)) return false; - if ("entry" in e) return false; - return !!e.c?.includes("unisex"); -} - -export function isAdjectiveInput(e: EntityInput): e is Adjective { - if (isPersonInput(e)) return false; - if ("entry" in e) return false; - if (isNounInput(e)) return false; - if (isUnisexNounInput(e)) return false; - if (isSpecifiedUnisexNounInput(e)) return false; - return !!(e.c?.includes("adj.") && !(e.c.includes("n. m.") || e.c.includes("n. f."))); -} - diff --git a/src/lib/np-tools.ts b/src/lib/np-tools.ts new file mode 100644 index 0000000..a9e3462 --- /dev/null +++ b/src/lib/np-tools.ts @@ -0,0 +1,124 @@ +import { isMascNounEntry } from "./type-predicates"; +import { + Types as T, + getEnglishWord, + parseEc, + getVerbBlockPosFromPerson, + grammarUnits, + inflectWord, +} from "@lingdocs/pashto-inflector"; +import { + psStringFromEntry, +} from "./text-tools"; + +export function personFromNP(np: NounPhrase): T.Person { + if (np.type === "participle") { + return T.Person.ThirdPlurMale; + } + if (np.type === "pronoun") { + return np.person; + } + const gender: T.Gender = "gender" in np + ? np.gender + : isMascNounEntry(np.entry) + ? "masc" + : "fem"; + const number: NounNumber = np.type === "plural noun" + ? "plural" + : np.number; + return number === "plural" + ? (gender === "masc" ? T.Person.ThirdPlurMale : T.Person.ThirdPlurFemale) + : (gender === "masc" ? T.Person.ThirdSingMale : T.Person.ThirdSingFemale); +} + +export function evaluateNP(np: NounPhrase): { ps: T.PsString[], e: string } { + if (np.type === "participle") { + return evaluateParticiple(np); + } + if (np.type === "pronoun") { + return evaluatePronoun(np); + } + return evaluateNoun(np); +} + +function evaluatePronoun(p: Pronoun): { ps: T.PsString[], e: string } { + // TODO: Will need to handle inflecting and inflecting english pronouns etc. + const [row, col] = getVerbBlockPosFromPerson(p.person); + return { + ps: grammarUnits.pronouns[p.pronounType].plain[row][col], + e: grammarUnits.persons[p.person].label.subject, + }; +} + +function evaluateNoun(n: Noun): { ps: T.PsString[], e: string } { + const number: NounNumber = "number" in n ? n.number : "plural"; + const english = getEnglishFromNoun(n.entry, number); + const pashto = ((): T.PsString[] => { + const infs = inflectWord(n.entry); + const gender: T.Gender = "gender" in n ? n.gender : + (isMascNounEntry(n.entry) ? "masc" : "fem"); + const ps = number === "singular" + ? getInf(infs, "inflections", gender, false) + : [ + ...getInf(infs, "plural", gender, true), + ...getInf(infs, "arabicPlural", gender, true), + ...getInf(infs, "inflections", gender, true), + ]; + return ps.length > 0 + ? ps + : [psStringFromEntry(n.entry)]; + })(); + return { ps: pashto, e: english }; +} + +function getInf(infs: T.InflectorOutput, t: "plural" | "arabicPlural" | "inflections", gender: T.Gender, plural: boolean): T.PsString[] { + // @ts-ignore + if (infs && t in infs && infs[t] !== undefined && gender in infs[t] && infs[t][gender] !== undefined) { + // @ts-ignore + const iset = infs[t][gender] as T.InflectionSet; + const ipick = iset[(t === "inflections" && plural) ? 1 : 0]; + return ipick; + } + return []; +} + +export function getEnglishParticiple(entry: T.DictionaryEntry): string { + if (!entry.ec) { + console.log("errored participle"); + console.log(entry); + throw new Error("no english information for participle"); + } + const ec = parseEc(entry.ec); + const participle = ec[2]; + return (entry.ep) + ? `${participle} ${entry.ep}` + : participle; +} + +function evaluateParticiple({ entry: { entry }}: Participle): { ps: T.PsString[], e: string } { + return { + ps: [psStringFromEntry(entry)], + e: getEnglishParticiple(entry), + }; +} + +function getEnglishFromNoun(entry: T.DictionaryEntry, number: NounNumber): string { + const articles = { + singular: "(a/the)", + plural: "(the)", + }; + const article = articles[number]; + function addArticle(s: string) { + return `${article} ${s}`; + } + const e = getEnglishWord(entry); + if (!e) throw new Error(`unable to get english from subject ${entry.f} - ${entry.ts}`); + + if (typeof e === "string") return ` ${e}`; + if (number === "plural") return addArticle(e.plural); + if (!e.singular || e.singular === undefined) { + throw new Error(`unable to get english from subject ${entry.f} - ${entry.ts}`); + } + return addArticle(e.singular); +} + diff --git a/src/lib/equative-machine.test.ts b/src/lib/oldtestsuite.txt similarity index 99% rename from src/lib/equative-machine.test.ts rename to src/lib/oldtestsuite.txt index a9a51aa..9ebb730 100644 --- a/src/lib/equative-machine.test.ts +++ b/src/lib/oldtestsuite.txt @@ -248,7 +248,7 @@ const abilities: { { in: { subject: { - entry: {"ts":1527815008,"i":8433,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."} as PluralEntry, + entry: {"ts":1527815008,"i":8433,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."} as PluralNounEntry, plural: true, }, predicate: {"ts":1527812796,"i":8578,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."} as Adjective, @@ -264,7 +264,7 @@ const abilities: { { in: { subject: { - entry: {"ts":1527817330,"i":9204,"p":"غنم","f":"ghanúm","g":"ghanum","e":"wheat","c":"n. m. pl."} as PluralEntry, + entry: {"ts":1527817330,"i":9204,"p":"غنم","f":"ghanúm","g":"ghanum","e":"wheat","c":"n. m. pl."} as PluralNounEntry, plural: true, }, predicate: {"ts":1527815451,"i":7192,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"} as Adjective, diff --git a/src/lib/starting-word.ts b/src/lib/starting-word.ts index 0fbf3e8..23e8d8d 100644 --- a/src/lib/starting-word.ts +++ b/src/lib/starting-word.ts @@ -1,6 +1,6 @@ import shuffle from "./shuffle-array"; -export const startingWord = (words: Readonly<(Noun | Adjective)[]>, p: string) => { +export const startingWord = (words: Readonly<(NounEntry | AdjectiveEntry)[]>, p: string) => { const firstWord = words.find(w => w.p === p); return [ ...firstWord ? [firstWord] : [], diff --git a/src/lib/text-tools.ts b/src/lib/text-tools.ts index e94776c..ba9f57c 100644 --- a/src/lib/text-tools.ts +++ b/src/lib/text-tools.ts @@ -1,3 +1,15 @@ +import { + Types as T, + removeFVarients, +} from "@lingdocs/pashto-inflector"; + export function firstVariation(s: string): string { return s.split(/[,|;]/)[0].trim(); +} + +export function psStringFromEntry(entry: T.PsString): T.PsString { + return { + p: entry.p, + f: removeFVarients(entry.f), + }; } \ No newline at end of file diff --git a/src/lib/type-predicates.ts b/src/lib/type-predicates.ts index 9e56254..fccc7e8 100644 --- a/src/lib/type-predicates.ts +++ b/src/lib/type-predicates.ts @@ -5,39 +5,48 @@ import { Types as T, } from "@lingdocs/pashto-inflector"; -export function isNoun(e: Word): e is Noun { +export function isNounEntry(e: Entry): e is NounEntry { if ("entry" in e) return false; return !!(e.c && (e.c.includes("n. m.") || e.c.includes("n. f."))); } -export function isAdjective(e: Word): e is Adjective { +export function isAdjectiveEntry(e: Entry): e is AdjectiveEntry { if ("entry" in e) return false; - return !!e.c?.includes("adj.") && !isNoun(e); + return !!e.c?.includes("adj.") && !isNounEntry(e); } -export function isNounOrAdj(e: Word): e is (Noun | Adjective) { - return isNoun(e) || isAdjective(e); +export function isAdverbEntry(e: Entry): e is AdverbEntry { + if ("entry" in e) return false; + return !!e.c?.includes("adv."); } -export function isVerb(e: Word): e is Verb { +export function isLocativeAdverbEntry(e: Entry): e is LocativeAdverbEntry { + return isAdverbEntry(e) && e.c.includes("loc. adv."); +} + +export function isNounOrAdjEntry(e: Entry): e is (NounEntry | AdjectiveEntry) { + return isNounEntry(e) || isAdjectiveEntry(e); +} + +export function isVerbEntry(e: Entry): e is VerbEntry { return "entry" in e && !!e.entry.c?.startsWith("v."); } -export function isMascNoun(e: Noun | Adjective): e is MascNoun { +export function isMascNounEntry(e: NounEntry | AdjectiveEntry): e is MascNounEntry { return !!e.c && e.c.includes("n. m."); } -export function isFemNoun(e: Noun | Adjective): e is FemNoun { +export function isFemNounEntry(e: NounEntry | AdjectiveEntry): e is FemNounEntry { return !!e.c && e.c.includes("n. f."); } -export function isUnisexNoun(e: Noun | Adjective): e is UnisexNoun { - return isNoun(e) && e.c.includes("unisex"); +export function isUnisexNounEntry(e: NounEntry | AdjectiveEntry): e is UnisexNounEntry { + return isNounEntry(e) && e.c.includes("unisex"); } -export function isAdjOrUnisexNoun(e: Word): e is (Adjective | UnisexNoun) { - return isAdjective(e) || ( - isNoun(e) && isUnisexNoun(e) +export function isAdjOrUnisexNounEntry(e: Entry): e is (AdjectiveEntry | UnisexNounEntry) { + return isAdjectiveEntry(e) || ( + isNounEntry(e) && isUnisexNounEntry(e) ); } @@ -47,10 +56,10 @@ export function isAdjOrUnisexNoun(e: Word): e is (Adjective | UnisexNoun) { * @param e * @returns */ -export function isPattern1Word(e: T): e is Pattern1Word { +export function isPattern1Entry(e: T): e is Pattern1Entry { if (e.noInf) return false; if (e.infap) return false; - if (isFemNoun(e)) { + if (isFemNounEntry(e)) { return ( endsWith([{ p: "ه", f: "a" }, { p: "ح", f: "a" }], e) || (endsWith({ p: pashtoConsonants }, e) && !e.c.includes("anim.")) @@ -69,10 +78,10 @@ export function isPattern1Word(e: T): e is Pattern * @param e * @returns */ -export function isPattern2Word(e: T): e is Pattern2Word { +export function isPattern2Entry(e: T): e is Pattern2Entry { if (e.noInf) return false; if (e.infap) return false; - if (isFemNoun(e)) { + if (isFemNounEntry(e)) { return !e.c.includes("pl.") && endsWith({ p: "ې", f: "e" }, e, true); } // TODO: check if it's a single syllable word, in which case it would be pattern 1 @@ -85,10 +94,10 @@ export function isPattern2Word(e: T): e is Pattern * @param e * @returns */ -export function isPattern3Word(e: T): e is Pattern3Word { +export function isPattern3Entry(e: T): e is Pattern3Entry { if (e.noInf) return false; if (e.infap) return false; - if (isFemNoun(e)) { + if (isFemNounEntry(e)) { return endsWith({ p: "ۍ" }, e); } return (countSyllables(e.f) > 1) @@ -102,7 +111,7 @@ export function isPattern3Word(e: T): e is Pattern * @param e * @returns */ -export function isPattern4Word(e: T): e is Pattern4Word { +export function isPattern4Entry(e: T): e is Pattern4Entry { if (e.noInf) return false; return ( !!(e.infap && e.infaf && e.infbp && e.infbf) @@ -117,7 +126,7 @@ export function isPattern4Word(e: T): e is Pattern * @param e * @returns */ -export function isPattern5Word(e: T): e is Pattern5Word { +export function isPattern5Entry(e: T): e is Pattern5Entry { if (e.noInf) return false; return ( !!(e.infap && e.infaf && e.infbp && e.infbf) @@ -128,18 +137,18 @@ export function isPattern5Word(e: T): e is Pattern ); } -export function isPattern6FemNoun(e: FemNoun): e is Pattern6FemNoun { - if (!isFemNoun(e)) return false; +export function isPattern6FemEntry(e: FemNounEntry): e is Pattern6FemEntry { + if (!isFemNounEntry(e)) return false; if (e.c.includes("anim.")) return false; return e.p.slice(-1) === "ي"; } -export function isPluralEntry(e: U): e is PluralEntry { +export function isPluralNounEntry(e: U): e is PluralNounEntry { return e.c.includes("pl."); } -export function isSingularEntry(e: U): e is SingularEntry { - return !isPluralEntry(e); +export function isSingularEntry(e: U): e is SingularEntry { + return !isPluralNounEntry(e); } export function isArrayOneOrMore(a: U[]): a is T.ArrayOneOrMore { diff --git a/src/types.d.ts b/src/types.d.ts deleted file mode 100644 index 935e2d2..0000000 --- a/src/types.d.ts +++ /dev/null @@ -1,61 +0,0 @@ -type Progress = { - total: number, - current: number, -}; - -type Current = { - progress: Progress, - question: T, -}; - -type QuestionGenerator = Generator, void, unknown>; - -type QuestionDisplayProps = { - question: T, - callback: (correct: boolean) => void, -}; - -type GameRecord = { - title: string, - id: string, - studyLink: string, - Game: () => JSX.Element, -}; - -type Noun = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "a noun entry" }; -type MascNoun = Noun & { __brand2: "a masc noun entry" }; -type FemNoun = Noun & { __brand2: "a fem noun entry" }; -type UnisexNoun = MascNoun & { __brand3: "a unisex noun entry" }; -type Adjective = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "an adjective entry" }; -type Verb = { - entry: import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { __brand: "a verb entry" }, - complement?: import("@lingdocs/pashto-inflector").Types.DictionaryEntry, -}; - -type SingularEntry = T & { __brand7: "a singular noun - as opposed to an always plural noun" }; -type PluralEntry = T & { __brand7: "a noun that is always plural" }; - -type RawWord = T.DictionaryEntry | { - entry: T.DictionaryEntry, - complement?: T.DictionaryEntry, -}; - -// TODO: Write type predicates for these -type Pattern1Word = T & { __brand3: "basic inflection pattern" }; -type Pattern2Word = T & { __brand3: "ending in unstressed ی pattern" }; -type Pattern3Word = T & { __brand3: "ending in stressed ی pattern" }; -type Pattern4Word = T & { __brand3: "Pashtoon pattern" }; -type Pattern5Word = T & { __brand3: "short squish pattern" }; -type Pattern6FemNoun = FemNoun & { __brand3: "non anim. ending in ي" }; -type NonInflecting = T & { __brand3: "non-inflecting" }; -// PLUS FEM INFLECTING - -type Word = Noun | Adjective | Verb; - -type Words = { - nouns: Noun[], - adjectives: Adjective[], - verbs: Verb[], -} - -type EquativeTense = "present" | "subjunctive" | "past" | "future" | "wouldBe" | "pastSubjunctive"; \ No newline at end of file diff --git a/src/types/entry-types.d.ts b/src/types/entry-types.d.ts new file mode 100644 index 0000000..2551a8b --- /dev/null +++ b/src/types/entry-types.d.ts @@ -0,0 +1,32 @@ +type NounEntry = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "a noun entry" }; +type MascNounEntry = NounEntry & { __brand2: "a masc noun entry" }; +type FemNounEntry = NounEntry & { __brand2: "a fem noun entry" }; +type UnisexNounEntry = MascNounEntry & { __brand3: "a unisex noun entry" }; +type AdverbEntry = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "an adverb entry" }; +type LocativeAdverbEntry = AdverbEntry & { __brand2: "a locative adverb entry" }; +type AdjectiveEntry = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "an adjective entry" }; +type VerbEntry = { + entry: import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { __brand: "a verb entry" }, + // TODO: the compliment could also be typed? Maybe? + complement?: import("@lingdocs/pashto-inflector").Types.DictionaryEntry, +}; + +type SingularEntry = T & { __brand7: "a singular noun - as opposed to an always plural noun" }; +type PluralNounEntry = T & { __brand7: "a noun that is always plural" }; + +type Pattern1Entry = T & { __brand3: "basic inflection pattern" }; +type Pattern2Entry = T & { __brand3: "ending in unstressed ی pattern" }; +type Pattern3Entry = T & { __brand3: "ending in stressed ی pattern" }; +type Pattern4Entry = T & { __brand3: "Pashtoon pattern" }; +type Pattern5Entry = T & { __brand3: "short squish pattern" }; +type Pattern6FemEntry = T & { __brand3: "non anim. ending in ي" }; +type NonInflecting = T & { __brand3: "non-inflecting" }; + +type Entry = NounEntry | AdjectiveEntry | AdverbEntry | VerbEntry; + +type Words = { + nouns: NounEntry[], + adjectives: AdjectiveEntry[], + verbs: VerbEntry[], + adverbs: AdverbEntry[], +} diff --git a/src/types/game-types.d.ts b/src/types/game-types.d.ts new file mode 100644 index 0000000..c797070 --- /dev/null +++ b/src/types/game-types.d.ts @@ -0,0 +1,23 @@ +type Progress = { + total: number, + current: number, +}; + +type Current = { + progress: Progress, + question: T, +}; + +type QuestionGenerator = Generator, void, unknown>; + +type QuestionDisplayProps = { + question: T, + callback: (correct: boolean) => void, +}; + +type GameRecord = { + title: string, + id: string, + studyLink: string, + Game: () => JSX.Element, +}; diff --git a/src/types/gramm-types.d.ts b/src/types/gramm-types.d.ts new file mode 100644 index 0000000..f04d1c6 --- /dev/null +++ b/src/types/gramm-types.d.ts @@ -0,0 +1,63 @@ +type EquativeTense = "present" | "subjunctive" | "past" | "future" | "wouldBe" | "pastSubjunctive"; +type NounNumber = "singular" | "plural"; + +type EquativeClause = { + subject: NounPhrase, + predicate: NounPhrase | Compliment, + tense: EquativeTense, +}; + +type EquativeClauseOutput = { + subject: { + ps: (import("@lingdocs/pashto-inflector").Types.PsString)[], + e: string, + }, + predicate: { + ps: (import("@lingdocs/pashto-inflector").Types.PsString)[], + e: string, + }, + ba: boolean, + equative: { + ps: import("@lingdocs/pashto-inflector").Types.SentenceForm, + e: string[], + }, +}; + +type NounPhrase = Pronoun | Noun | Participle; + +// TODO: better, simpler type here +type Noun = { + type: "unisex noun", + number: NounNumber, + gender: import("@lingdocs/pashto-inflector").Types.Gender, + entry: UnisexNounEntry, + possesor?: Noun, + adjectives?: AdjectiveEntry[], +} | { + type: "plural noun", + entry: PluralNounEntry, + possesor?: Noun, + adjectives?: AdjectiveEntry[], +} | { + type: "singular noun", + number: NounNumber, + entry: SingularEntry, + possesor?: Noun, + adjectives?: AdjectiveEntry[], +}; + +type Compliment = { + type: "compliment", + entry: AdjectiveEntry | LocativeAdverbEntry | NounEntry, +}; + +type Participle = { + type: "participle", + entry: VerbEntry, +} + +type Pronoun = { + type: "pronoun", + pronounType: "near" | "far", + person: import("@lingdocs/pashto-inflector").Types.Person, +}; diff --git a/src/words/adverbs/locative-adverbs.js b/src/words/adverbs/locative-adverbs.js new file mode 100644 index 0000000..da9d321 --- /dev/null +++ b/src/words/adverbs/locative-adverbs.js @@ -0,0 +1,11 @@ +module.exports = [ + { ts: 1527811221, e: `above, overhead` }, // پورته - porta + { ts: 1578080952673, e: `outside, outside of, beyond` }, // دباندې - dubaande + { ts: 1527812558, e: `here` }, // دلته - dălta + { ts: 1527812449, e: `there` }, // هلته - halta + { ts: 1527813122, e: `inside, within, interior` }, // دننه - dununa + { ts: 1527812780, e: `down, beneath` }, // ښکته - xkuta + { ts: 1527814605, e: `far, distant` }, // لرې - lure + { ts: 1527814708, e: `close, near, soon, almost` }, // نژدې - nijzde, najzde + { ts: 1527814911, e: `near, close to, almost` }, // نږدې - naGde +]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/non-inflecting.js b/src/words/noun-adj-categories/non-inflecting.js new file mode 100644 index 0000000..435db84 --- /dev/null +++ b/src/words/noun-adj-categories/non-inflecting.js @@ -0,0 +1,5 @@ +module.exports = [ + {"ts":1527812798,"i":5593,"p":"خفه","f":"khúfa","g":"khufa","e":"sad, upset, angry; choked, suffocated","c":"adj."}, + {"ts":1527812792,"i":5773,"p":"خوشاله","f":"khoshaala","g":"khoshaala","e":"happy, glad","c":"adj."}, + {"ts":1527812761,"i":8534,"p":"ښایسته","f":"xáaysta","g":"xaayusta","e":"beautiful","c":"adj."}, +]; \ No newline at end of file diff --git a/src/words/query-results.js b/src/words/query-results.js deleted file mode 100644 index e69de29..0000000 diff --git a/src/words/raw-words.ts b/src/words/raw-words.ts index 364b7da..74d26e9 100644 --- a/src/words/raw-words.ts +++ b/src/words/raw-words.ts @@ -1,4 +1,4 @@ // @ts-ignore -const words: Word[] = [{"entry":{"ts":1577383674332,"i":979,"p":"انګولل","f":"angolul, angwUlul","g":"angolul,angwUlul","e":"to howl, wail","c":"v. gramm. trans.","sepOo":true,"ec":"howl"}},{"entry":{"ts":1527818962,"i":2346,"p":"پرنجل","f":"prunjúl","g":"prunjul","e":"to sneeze","c":"v. gramm. trans.","ec":"sneeze"}},{"entry":{"ts":1527821425,"i":4099,"p":"ټوخل","f":"Tookhúl","g":"Tookhul","e":"to cough","c":"v. gramm. trans.","ec":"cough"}},{"entry":{"ts":1527812767,"i":5644,"p":"خندل","f":"khandul","g":"khandul","e":"to laugh","c":"v. gramm. trans.","psp":"خاند","psf":"khaand","ec":"laugh"}},{"entry":{"ts":1605360223155,"i":6234,"p":"دنګل","f":"dangúl","g":"dangul","e":"to jump, leap, run, race","c":"v. gramm. trans.","psp":"دانګ","psf":"daang","ec":"jump"}},{"entry":{"ts":1605360127430,"i":7157,"p":"زنګل","f":"zangúl","g":"zangul","e":"to swing, rock (back and forth)","c":"v. gramm. trans.","psp":"زانګ","psf":"zaang","ec":"swing,swings,swinging,swung"}},{"entry":{"ts":1527812717,"i":7287,"p":"ژړل","f":"jzaRul","g":"jzaRul","e":"to cry","c":"v. gramm. trans.","psp":"ژاړ","psf":"jzaaR","ec":"cry"}},{"entry":{"ts":1591899573844,"i":13242,"p":"نڅل","f":"natsúl","g":"natsul","e":"to dance","c":"v. gramm. trans.","psp":"ناڅ","psf":"naats","ec":"dance"}},{"entry":{"ts":1527813473,"i":791,"p":"الوتل","f":"alwatul","g":"alwatul","e":"to fly","c":"v. intrans.","psp":"الوځ","psf":"aloodz","tppp":"الوت","tppf":"alwát","ec":"fly,flies,flying,flew,flown"}},{"entry":{"ts":1527814012,"i":1090,"p":"اوښتل","f":"awUxtul","g":"awUxtul","e":"to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon; to be sprained","c":"v. intrans.","psp":"اوړ","psf":"awR","ec":"pass","ep":"over"}},{"entry":{"ts":1527822843,"i":1562,"p":"برېښېدل","f":"brexedúl","g":"brexedul","e":"to appear, seem; to shine, sparkle; to smart, have a pricking pain","c":"v. intrans.","shortIntrans":true,"ec":"appear"}},{"entry":{"ts":1527815183,"i":2782,"p":"پوهېدل","f":"pohedul","g":"pohedul","e":"to understand (to do the act of understanding)","c":"v. intrans.","ec":"understand,understand,understanding,understood"}},{"entry":{"ts":1527816495,"i":3439,"p":"تښتېدل","f":"tuxtedul","g":"tuxtedul","e":"to run off, escape, flee","c":"v. intrans.","shortIntrans":true,"ec":"escape"}},{"entry":{"ts":1527813022,"i":4102,"p":"ټوخېدل","f":"Tookhedul","g":"Tookhedul","e":"to cough","c":"v. intrans.","ec":"cough"}},{"entry":{"ts":1527817259,"i":2401,"p":"پرېوتل","f":"prewatul","g":"prewatul","e":"to fall, to lie down, to go down","c":"v. intrans. seperable","l":1527823376,"psp":"پرېوځ","psf":"prewudz","tppp":"پرېواته","tppf":"prewaatu","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1577572987826,"i":4447,"p":"جنګېدل","f":"jangedul","g":"jangedul","e":"to fight, battle, war, to bump or crash into","c":"v. intrans.","ec":"fight,fights,fighting,fought"}},{"entry":{"ts":1527818535,"i":4564,"p":"ځړېدل","f":"dzaRedúl","g":"dzaRedul","e":"to hang, to be hung, to be lowered","c":"v. intrans.","ec":"hang,hangs,hanging,hung,hung"}},{"entry":{"ts":1527812273,"i":4588,"p":"ځلېدل","f":"dzaledul","g":"dzaledul","e":"to shine, glow, glitter","c":"v. intrans.","ec":"shine,shines,shining,shone"}},{"entry":{"ts":1577921634357,"i":4607,"p":"ځنډېدل","f":"dzanDedul","g":"dzanDedul","e":"to be delayed, postponed, held back, detained","c":"v. intrans.","ec":"be","ep":"delayed"}},{"entry":{"ts":1527814025,"i":5435,"p":"ختل","f":"khatul","g":"khatul","e":"to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...","c":"v. intrans.","psp":"خېژ","psf":"khejz","tppp":"خوت","tppf":"khot","ec":"climb"}},{"entry":{"ts":1527823376,"i":14059,"p":"وتل","f":"watul","g":"watul","e":"to go out, exit, leave, emerge","c":"v. intrans. irreg.","psp":"وځ","psf":"oodz","tppp":"واته","tppf":"waatu","ec":"go,goes,going,went,gone","ep":"out"}},{"entry":{"ts":1527814433,"i":5707,"p":"خوځېدل","f":"khwadzedul","g":"khwadzedul","e":"to shake, tremble, wiggle, move, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shaken"}},{"entry":{"ts":1527818980,"i":6681,"p":"رپېدل","f":"rapedúl","g":"rapedul","e":"to quiver, shake, flutter, shiver","c":"v. intrans.","ec":"quiver"}},{"entry":{"ts":1578191534500,"i":6699,"p":"رحمېدل","f":"rahmedul","g":"rahmedul","e":"to have mercy on, to have compassion on","c":"v. intrans.","shortIntrans":true,"ec":"have","ep":"mercy"}},{"entry":{"ts":1527813573,"i":6750,"p":"رسېدل","f":"rasedul","g":"rasedul","e":"reach, arrive; (fig.) understand, attain to; mature, ripen","c":"v. intrans.","shortIntrans":true,"ec":"reach"}},{"entry":{"ts":1527813837,"i":7929,"p":"سوځېدل","f":"swadzedul","g":"swadzedul","e":"to burn","c":"v. intrans.","shortIntrans":true,"ec":"burn,burns,burning,burnt,burned"}},{"entry":{"ts":1527814597,"i":8256,"p":"شرمېدل","f":"sharmedul","g":"sharmedul","e":"to be ashamed, to be embarrassed, to be shy","c":"v. intrans.","ec":"be","ep":"ashamed"}},{"entry":{"ts":1527821558,"i":8285,"p":"شړېدل","f":"shaRedúl","g":"shaRedul","e":"to be decomposed, break down, fall apart; to be boiled soft (meat)","c":"v. intrans.","ec":"fall","ep":"apart"}},{"entry":{"ts":1527811516,"i":8357,"p":"شلېدل","f":"shledul","g":"shledul","e":"to be torn, broken, rent, broken, severed","c":"v. intrans.","shortIntrans":true,"ec":"be","ep":"torn"}},{"entry":{"ts":1527812615,"i":9053,"p":"غځېدل","f":"ghadzedul","g":"ghadzedul","e":"stretch out, lie, be extended, expand","c":"v. intrans.","ec":"stretch","ep":"out"}},{"entry":{"ts":1527813680,"i":9131,"p":"غږېدل","f":"ghuGedul, ghaGedul","g":"ghugedul,ghagedul","e":"to speak, talk, converse, sing","c":"v. intrans.","ec":"speak,speaks,speaking,spoke"}},{"entry":{"ts":1527814867,"i":9248,"p":"غورځېدل","f":"ghwurdzedúl, ghoordzedúl","g":"ghwurdzedul,ghoordzedul","e":"to fall, jump, leap","c":"v. intrans.","shortIntrans":true,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823696,"i":9316,"p":"غولېدل","f":"ghwuledul","g":"ghwuledul","e":"to be deceived, cheated, fooled","c":"v. intrans.","ec":"be","ep":"deceived"}},{"entry":{"ts":1527812759,"i":10617,"p":"کېناستل","f":"kenaastul","g":"kenaastul","e":"to sit down, to have a seat","c":"v. intrans. irreg.","psp":"کېن","psf":"ken","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"sit,sits,sitting,sat","ep":"down"}},{"entry":{"ts":1527812645,"i":10723,"p":"ګرځېدل","f":"gurdzedul","g":"gurdzedul","e":"to walk, wander, turn about; to become, to be","c":"v. intrans.","shortIntrans":true,"ec":"walk"}},{"entry":{"ts":1527814430,"i":11197,"p":"لړزېدل","f":"laRzedul","g":"laRzedul","e":"to shake, shudder, tremble, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shook"}},{"entry":{"ts":1527814085,"i":11282,"p":"لګېدل","f":"lagedúl, lugedúl","g":"lagedul,lugedul","e":"to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem","c":"v. intrans.","shortIntrans":true,"ec":"hit,hits,hitting,hit"}},{"entry":{"ts":1527813994,"i":11477,"p":"لوېدل","f":"lwedul","g":"lwedul","e":"to fall, to tumble, go down, settle","c":"v. intrans.","ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823019,"i":14379,"p":"وېرېدل","f":"weredúl","g":"weredul","e":"to be afraid, scared, to fear","c":"v. intrans.","ec":"be","ep":"afraid"}},{"entry":{"ts":1581086654898,"i":10596,"p":"کېدل","f":"kedul","g":"kedul","e":"to become _____","c":"v. intrans. irreg.","ssp":"ش","ssf":"sh","prp":"شول","prf":"shwul","pprtp":"شوی","pprtf":"shúwey","noOo":true,"ec":"become","ep":"_____"}},{"entry":{"ts":1527812754,"i":10595,"p":"کېدل","f":"kedul","g":"kedul","e":"to happen, occur","c":"v. intrans. irreg.","ssp":"وش","ssf":"óosh","prp":"وشول","prf":"óoshwul","pprtp":"شوی","pprtf":"shúwey","diacExcept":true,"ec":"happen"}},{"entry":{"ts":1527815348,"i":3623,"p":"تلل","f":"tlul","g":"tlul","e":"to go","c":"v. intrans. irreg.","psp":"ځ","psf":"dz","ssp":"لاړ ش","ssf":"láaR sh","prp":"لاړ","prf":"láaR","ec":"go,goes,going,went,gone"}},{"entry":{"ts":1527815216,"i":6573,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"}},{"entry":{"ts":1527819674,"i":5110,"p":"څملاستل","f":"tsumlaastúl","g":"tsumlaastul","e":"to lie down","c":"v. intrans. seperable","l":1596485996977,"psp":"څمل","psf":"tsaml","noOo":true,"separationAtP":2,"separationAtF":4,"ec":"lay,lays,lying,lay,layed","ep":"down"}},{"entry":{"ts":1527814617,"i":13687,"p":"نیول","f":"neewul","g":"neewul","e":"to catch, grab, take, arrest; bear (fruit)","c":"v. trans. irreg.","psp":"نیس","psf":"nees","ec":"catch,catches,catching,caught,caught"}},{"entry":{"ts":1527811872,"i":224,"p":"اچول","f":"achawul","g":"achawul","e":"to put, pour, drop, throw, put on","c":"v. trans.","ec":"put,puts,putting,put,put"}},{"entry":{"ts":1527817298,"i":310,"p":"اخیستل","f":"akheestul","g":"akheestul","e":"to take, buy, purchase, receive; to shave, cut with scissors","c":"v. trans.","psp":"اخل","psf":"akhl","ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527816127,"i":436,"p":"اړول","f":"aRawul","g":"aRawul","e":"to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack","c":"v. trans.","ec":"turn","ep":"over"}},{"entry":{"ts":1527811605,"i":461,"p":"ازمویل","f":"azmoyul","g":"azmoyul","e":"to attempt, try; to experiment, test","c":"v. trans.","sepOo":true,"ec":"try"}},{"entry":{"ts":1527812458,"i":538,"p":"استول","f":"astawul","g":"astawul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527811397,"i":663,"p":"اغوستل","f":"aghostúl","g":"aghostul","e":"to wear, to put on (clothes)","c":"v. trans.","psp":"اغوند","psf":"aghond","ec":"wear,wears,wearing,wore,worn"}},{"entry":{"ts":1527816125,"i":795,"p":"الوزول","f":"alwuzawul","g":"alwuzawul","e":"to make fly, to toss, to release (birds); to blow up","c":"v. trans.","ec":"make,makes,making,made,made","ep":"fly"}},{"entry":{"ts":1527816146,"i":1148,"p":"ایستل","f":"eestul","g":"eestul","e":"to throw out, discard, chuck, toss; to extract, to take out","c":"v. trans.","psp":"باس","psf":"baas","ec":"take,takes,taking,took,taken","ep":"out"}},{"entry":{"ts":1527817786,"i":1366,"p":"بخښل","f":"bakhxul","g":"bakhxul","e":"to forgive, to pardon, to give, grant","c":"v. trans.","ec":"forgive"}},{"entry":{"ts":1527816092,"i":1689,"p":"بلل","f":"balul","g":"balul","e":"to call, invite; to consider, deem","c":"v. trans.","psp":"بول","psf":"bol","tppp":"باله","tppf":"baalu","ec":"deem"}},{"entry":{"ts":1577389204616,"i":2291,"p":"پرانیستل","f":"praaneestul","g":"praaneestul","e":"to open; to undo; to initiate","c":"v. trans.","psp":"پرانیز","psf":"praaneez","noOo":true,"separationAtP":3,"separationAtF":4,"ec":"open"}},{"entry":{"ts":1527816874,"i":2555,"p":"پلورل","f":"plorul","g":"plorul","e":"to sell","c":"v. trans.","ec":"sell,sells,selling,sold,sold"}},{"entry":{"ts":1527815190,"i":2390,"p":"پرېښودل","f":"prexodúl","g":"prexodul","e":"to leave, abandon, forsake, let go, allow","c":"v. trans. seperable irreg.","l":1527812280,"psp":"پرېږد","psf":"preGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"abandon"}},{"entry":{"ts":1527812284,"i":10607,"p":"کېښودل","f":"kexodul","g":"kexodul","e":"to put, to put down, to set in place","c":"v. trans. irreg.","psp":"ږد","psf":"Gd","ssp":"کېږد","ssf":"kéGd","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"put,puts,putting,put,put"}},{"entry":{"ts":1577394422280,"i":2781,"p":"پوهول","f":"pohawul","g":"pohawul","e":"to explain, to try to make understand","c":"v. trans.","ec":"make","ep":"understand"}},{"entry":{"ts":1527815165,"i":2871,"p":"پېژندل","f":"pejzandul","g":"pejzandul","e":"to recognize, know, meet","c":"v. trans.","psp":"پېژن","psf":"pejzan","tppp":"پېژاند","tppf":"pejzaand","ec":"recognize"}},{"entry":{"ts":1527813405,"i":3357,"p":"تړل","f":"taRul","g":"taRul","e":"to connect, tie, bind, close","c":"v. trans.","tppp":"تاړه","tppf":"taaRu","ec":"tie,ties,tying,tied,tied"}},{"entry":{"ts":1527813394,"i":3985,"p":"ټاکل","f":"Taakul","g":"Taakul","e":"to select, appoint","c":"v. trans.","tppp":"ټاکه","tppf":"Taaku","ec":"appoint"}},{"entry":{"ts":1527813755,"i":4623,"p":"ځورول","f":"dzawrawul","g":"dzawrawul","e":"to bother, irritate, torture, distress, vex, grind on","c":"v. trans.","ec":"bother"}},{"entry":{"ts":1527814586,"i":4843,"p":"چلول","f":"chalawul","g":"chalawul","e":"to drive, operate, handle, put forward, circulate","c":"v. trans.","ec":"drive,drives,driving,drove,drove"}},{"entry":{"ts":1527816564,"i":4957,"p":"چیچل","f":"cheechul","g":"cheechul","e":"to bite, chew, grind (teeth), clench (teeth), sting","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527812790,"i":5746,"p":"خوړل","f":"khoRul","g":"khoRul","e":"to eat, to bite","c":"v. trans.","psp":"خور","psf":"khor","tppp":"خوړ","tppf":"khoR","ec":"eat,eats,eating,ate,eaten"}},{"entry":{"ts":1527815489,"i":5928,"p":"داړل","f":"daaRul","g":"daaRul","e":"to bite, tear, gnaw","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527813572,"i":6747,"p":"رسول","f":"rasawul","g":"rasawul","e":"to deliver, to make arrive, provide, send, supply, bring to,","c":"v. trans.","ec":"deliver"}},{"entry":{"ts":1527816064,"i":7096,"p":"زغمل","f":"zghamul","g":"zghamul","e":"to endure, bear, tolerate, take on, digest","c":"v. trans.","tppp":"زغامه","tppf":"zghaamu","ec":"endure"}},{"entry":{"ts":1527813637,"i":7507,"p":"ستایل","f":"staayul","g":"staayul","e":"to praise, commend, glorify, mention","c":"v. trans.","tppp":"ستایه","tppf":"staayu","ec":"praise"}},{"entry":{"ts":1527817750,"i":7775,"p":"سکل","f":"skul","g":"skul","e":"to drink","c":"v. trans.","ec":"drink,drinks,drinking,drank,drank"}},{"entry":{"ts":1527814596,"i":8255,"p":"شرمول","f":"shărmawul","g":"sharmawul","e":"to shame, to disgrace, to dishonor","c":"v. trans.","ec":"shame"}},{"entry":{"ts":1527814908,"i":8278,"p":"شړل","f":"shaRul","g":"shaRul","e":"to drive out, fire, evict, push out","c":"v. trans.","tppp":"شاړه","tppf":"shaaRu","ec":"drive,drives,driving,drove,drove","ep":"out"}},{"entry":{"ts":1527815531,"i":8333,"p":"شکول","f":"shkawul","g":"shkawul","e":"to tear, to break of, to dig up, to pull out","c":"v. trans.","ec":"tear,tears,tearing,torn,torn"}},{"entry":{"ts":1527815296,"i":8360,"p":"شمارل","f":"shmaarul","g":"shmaarul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527815273,"i":8388,"p":"شمېرل","f":"shmerul","g":"shmerul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527811293,"i":8583,"p":"ښودل","f":"xodul","g":"xodul","e":"to show; to teach; to suit, look good with (fig.), befit","c":"v. trans.","psp":"ښای","psf":"xaay","ec":"show,shows,showing,showed,shown"}},{"entry":{"ts":1527817865,"i":9052,"p":"غځول","f":"ghadzawul","g":"ghadzawul","e":"to extend, to stretch out, to expand","c":"v. trans.","ec":"extend"}},{"entry":{"ts":1527815886,"i":9198,"p":"غندل","f":"ghandul","g":"ghandul","e":"to condemn, reproach, to criticize","c":"v. trans.","tppp":"غانده","tppf":"ghaandu","ec":"condemn"}},{"entry":{"ts":1527816122,"i":9245,"p":"غورځول","f":"ghoordzawul, ghwurdzawul","g":"ghoordzawul,ghwurdzawul","e":"to throw, hurl, fling","c":"v. trans.","ec":"throw,throws,throwing,threw,thrown"}},{"entry":{"ts":1527812627,"i":9293,"p":"غوښتل","f":"ghwuxtul, ghoxtul","g":"ghwuxtul,ghoxtul","e":"to want, to request","c":"v. trans.","psp":"غواړ","psf":"ghwaaR","ec":"want"}},{"entry":{"ts":1527819301,"i":9313,"p":"غولول","f":"ghwulawúl","g":"ghwulawul","e":"to deceive, cheat, fool","c":"v. trans.","ec":"deceive"}},{"entry":{"ts":1527813568,"i":9813,"p":"کارول","f":"kaarawul","g":"kaarawul","e":"to use, utilize","c":"v. trans.","ec":"use"}},{"entry":{"ts":1527816300,"i":10033,"p":"کرل","f":"karul","g":"karul","e":"to sow, to plant","c":"v. trans.","tppp":"کاره","tppf":"kaaru","ec":"sow"}},{"entry":{"ts":1527817577,"i":10184,"p":"کښېښودل","f":"kxexodul","g":"kxexodul","e":"to put, to put down, to set in place","c":"v. trans.","psp":"ږد","psf":"Gd","ssp":"کښېږد","ssf":"kxéGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"put,puts,putting,put"}},{"entry":{"ts":1527811289,"i":10623,"p":"کېنول","f":"kenawul","g":"kenawul","e":"to seat, to make or have someone sit down","c":"v. trans.","noOo":true,"ec":"seat,seats,seating,sat,sat"}},{"entry":{"ts":1527817661,"i":10646,"p":"ګالل","f":"gaalul","g":"gaalul","e":"to bear up under (diffucult things), to suffer, to take, to endure","c":"v. trans.","ec":"endure"}},{"entry":{"ts":1527812649,"i":10668,"p":"ګټل","f":"gaTul, guTul","g":"gaTul,guTul","e":"to earn (money), to win","c":"v. trans.","tppp":"ګاټه","tppf":"gaaTu","ec":"earn"}},{"entry":{"ts":1527812612,"i":10863,"p":"ګنډل","f":"ganDul","g":"ganDul","e":"to sew, mend, make, knit","c":"v. trans.","tppp":"ګانډه","tppf":"gaanDu","ec":"sew,sews,sewing,sewed,sown"}},{"entry":{"ts":1527812000,"i":10884,"p":"ګڼل","f":"gaNul, guNul","g":"gaNul,guNul","e":"to count, consider, reckon, suppose, assume","c":"v. trans.","tppp":"ګاڼه","tppf":"gaaNu","ec":"deem"}},{"entry":{"ts":1527812873,"i":11441,"p":"لوستل","f":"lwastul, lwustul","g":"lwastul,lwustul","e":"to read, study","c":"v. trans. irreg.","psp":"لول","psf":"lwul","tppp":"لوست","tppf":"lwast","ec":"read,reads,reading,read,read"}},{"entry":{"ts":1527812869,"i":11156,"p":"لټول","f":"luTawul","g":"luTawul","e":"to search, seek","c":"v. trans.","ec":"search"}},{"entry":{"ts":1527813866,"i":11511,"p":"لېږل","f":"leGul","g":"legul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527812856,"i":11521,"p":"لیکل","f":"leekul","g":"leekul","e":"to write","c":"v. trans.","ec":"write,writes,writing,wrote,wrote"}},{"entry":{"ts":1527815085,"i":12758,"p":"منل","f":"manul","g":"manul","e":"to accept, to believe","c":"v. trans.","tppp":"مانه","tppf":"maanu","ec":"accepting"}},{"entry":{"ts":1527815399,"i":14340,"p":"وهل","f":"wahul","g":"wahul","e":"to hit","c":"v. trans.","tppp":"واهه","tppf":"waahu","ec":"hit,hits,hitting,hit,hit"}},{"entry":{"ts":1527823020,"i":14378,"p":"وېرول","f":"werawúl","g":"werawul","e":"to make afraid, to scare, to make fear","c":"v. trans.","ec":"scare"}},{"entry":{"ts":1527811701,"i":14391,"p":"وېشل","f":"weshul","g":"weshul","e":"divide, distribute, share","c":"v. trans.","ec":"divide"}},{"entry":{"ts":1579015359582,"i":10530,"p":"کول","f":"kawul","g":"kawul","e":"to make ____ ____ (as in \"He's making me angry.\")","c":"v. trans. irreg.","ssp":"کړ","ssf":"kR","prp":"کړل","prf":"kRul","pprtp":"کړی","pprtf":"kúRey","noOo":true,"ec":"make,makes,making,made,made","ep":"_____"}},{"entry":{"ts":1527812752,"i":10529,"p":"کول","f":"kawul","g":"kawul","e":"to do (an action or activity)","c":"v. trans. irreg.","ssp":"وکړ","ssf":"óokR","prp":"وکړل","prf":"óokRul","pprtp":"کړی","pprtf":"kúRey","diacExcept":true,"ec":"do,does,doing,did,done"}},{"entry":{"ts":1527816865,"i":14198,"p":"وړل","f":"wuRúl, oRúl, wRul","g":"wuRul,oRul,wRul","e":"to take, carry, bear, move (inanimate objects); to win, earn (subjunctive یوسي - yósee or ویسي - wéesee, simple past یو یې وړلو - yo ye wRulo)","c":"v. trans. irreg.","ssp":"یوس","ssf":"yos","prp":"یوړل","prf":"yóRul","noOo":true,"separationAtP":2,"separationAtF":2,"diacExcept":true,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527815214,"i":6650,"p":"راوړل","f":"raawRúl","g":"raawRul","e":"to bring, deliver (inanimate objects)","c":"v. trans. irreg.","tppp":"راووړ","tppf":"raawoR","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527819827,"i":6651,"p":"راوستل","f":"raawustúl","g":"raawustul","e":"to bring, deliver (animate objects), obtain, extract","c":"v. trans. irreg.","psp":"راول","psf":"raawul","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527812507,"i":1792,"p":"بوتلل","f":"botlul","g":"botlul","e":"to take, bring, send (animate objects)","c":"v. trans. seperable","l":1527815348,"psp":"بیای","psf":"byaay","ssp":"بوځ","ssf":"bódz","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527812275,"i":11499,"p":"لیدل","f":"leedul","g":"leedul","e":"to see","c":"v. trans./gramm. trans.","psp":"وین","psf":"ween","tppp":"لید","tppf":"leed","ec":"see,sees,seeing,saw,seen"}},{"entry":{"ts":1577049208257,"i":1060,"p":"اورېدل","f":"awredul","g":"awredul","e":"to hear, listen","c":"v. trans./gramm. trans.","psp":"اور","psf":"awr","tppp":"اورېد","tppf":"awred","ec":"hear,hears,hearing,heard"}},{"entry":{"ts":1527812362,"i":9452,"p":"فرمایل","f":"farmaayul","g":"farmaayul","e":"to speak, order, ordain (polite form)","c":"v. trans./gramm. trans.","ec":"speak,speaks,speaking,spoke,spoken"}},{"entry":{"ts":1527812751,"i":9930,"p":"کتل","f":"katul","g":"katul","e":"to look, see, watch, examine; to meet with","c":"v. trans./gramm. trans.","psp":"ګور","psf":"gor","tppp":"کوت","tppf":"kot","ec":"look"}},{"entry":{"ts":1527815396,"i":14055,"p":"وایل","f":"waayul","g":"waayul","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"entry":{"ts":1527817013,"i":14400,"p":"ویل","f":"wayul, wayl","g":"wayul,wayl","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"ts":1527816466,"i":8672,"p":"صلح","f":"sUlha","g":"sUlha","e":"peace","c":"n. f."},{"ts":1527816589,"i":8745,"p":"طرح","f":"tarha","g":"tarha","e":"plan","c":"n. f."},{"ts":1589023873660,"i":9399,"p":"فتح","f":"fathá","g":"fatha","e":"victory, conquest","c":"n. f."},{"ts":1527813791,"i":189,"p":"اجازه","f":"ijaaza","g":"ijaaza","e":"permission","c":"n. f."},{"ts":1614083533098,"i":213,"p":"اجنډه","f":"ajanDa","g":"ajanDa","e":"agenda","c":"n. f."},{"ts":1527816215,"i":316,"p":"اداره","f":"idaara","g":"idaara","e":"administration, management, directorate","c":"n. f."},{"ts":1527812687,"i":319,"p":"ادامه","f":"idaama","g":"idaama","e":"continuation","c":"n. f."},{"ts":1527811661,"i":341,"p":"اډه","f":"aDa","g":"aDa","e":"base, army post, (air) port","c":"n. f."},{"ts":1527814310,"i":380,"p":"ارزونه","f":"arzawuna","g":"arzawuna","e":"evaluation, appraisal, assessment","c":"n. f."},{"ts":1527821380,"i":397,"p":"اره","f":"ara","g":"ara","e":"saw (the tool)","c":"n. f."},{"ts":1527822277,"i":478,"p":"اسپه","f":"aspa","g":"aspa","e":"mare, female horse; fever","c":"n. f."},{"ts":1527814922,"i":607,"p":"اضافه","f":"izaafa","g":"izaafa","e":"addition, add-on, augmentation","c":"n. f."},{"ts":1527822458,"i":670,"p":"افاده","f":"ifaada","g":"ifaada","e":"expression","c":"n. f."},{"ts":1527813303,"i":683,"p":"افسانه","f":"afsaana","g":"afsaana","e":"myth, legend, fairy tale","c":"n. f."},{"ts":1527822494,"i":868,"p":"انانګه","f":"anaangá","g":"anaanga","e":"cheek","c":"n. f."},{"ts":1527817225,"i":918,"p":"اندازه","f":"andaaza","g":"andaaza","e":"measure, dimension, extent, scale","c":"n. f."},{"ts":1527813759,"i":925,"p":"اندېښنه","f":"andexna","g":"andexna","e":"worry, concern, fear","c":"n. f."},{"ts":1527815787,"i":1077,"p":"اوږه","f":"ooGá","g":"ooga","e":"shoulder","c":"n. f."},{"ts":1527813787,"i":1092,"p":"اوښکه","f":"ooxka","g":"ooxka","e":"tear (from eye)","c":"n. f."},{"ts":1527819927,"i":1181,"p":"اینه","f":"éena","g":"eena","e":"liver","c":"n. f."},{"ts":1527816261,"i":1337,"p":"بټوه","f":"baTwa","g":"baTwa","e":"wallet","c":"n. f."},{"ts":1527812001,"i":1483,"p":"برخه","f":"barkha","g":"barkha","e":"poriton, part, share","c":"n. f."},{"ts":1578009902092,"i":1514,"p":"برقه","f":"bUrqá","g":"bUrka","e":"veil, burka","c":"n. f."},{"ts":1527816994,"i":1539,"p":"برنامه","f":"barnaama","g":"barnaama","e":"program","c":"n. f."},{"ts":1579294091093,"i":1542,"p":"برنډه","f":"baranDá","g":"baranDa","e":"balcony, veranda, porch","c":"n. f."},{"ts":1527823617,"i":1586,"p":"بزه","f":"bazá","g":"baza","e":"crime, offense, sin, guilt, fault","c":"n. f."},{"ts":1527823619,"i":1587,"p":"بزه","f":"bUzá","g":"bUza","e":"moth","c":"n. f."},{"ts":1527823620,"i":1588,"p":"بزه","f":"bza","g":"bza","e":"patch (in a garment)","c":"n. f.","ec":"patch","ep":"patches"},{"ts":1591026261598,"i":1589,"p":"بزه","f":"buza","g":"buza","e":"she-goat","c":"n. f."},{"ts":1574188090133,"i":1599,"p":"بسپنه","f":"baspuna","g":"baspuna","e":"contribution, donation, gift, charity","c":"n. f."},{"ts":1527816590,"i":1613,"p":"بسنه","f":"basuna","g":"basuna","e":"sufficiency, to have enough or get by","c":"n. f."},{"ts":1593852212828,"i":2011,"p":"بېره","f":"béra","g":"bera","e":"fear, fright","c":"n. f."},{"ts":1527815862,"i":2023,"p":"بېړه","f":"beRa","g":"beRa","e":"speed, rush, hurry, urgency","c":"n. f."},{"ts":1527815156,"i":2187,"p":"پاڼه","f":"paaNa","g":"paaNa","e":"leaf","c":"n. f.","ec":"leaf","ep":"leaves"},{"ts":1527813481,"i":2367,"p":"پروژه","f":"projza","g":"projza","e":"project","c":"n. f."},{"ts":1527818409,"i":2371,"p":"پروسه","f":"purosa","g":"purosa","e":"process","c":"n. f."},{"ts":1527815192,"i":2394,"p":"پرېکړه","f":"prékRa","g":"prekRa","e":"decision","c":"n. f."},{"ts":1527822412,"i":2430,"p":"پزه","f":"páza","g":"paza","e":"nose","c":"n. f."},{"ts":1527816124,"i":2494,"p":"پښه","f":"pxa","g":"pxa","e":"foot","c":"n. f.","ec":"foot","ep":"feet"},{"ts":1527815155,"i":2539,"p":"پلمه","f":"palma","g":"palma","e":"pretext, excuse","c":"n. f."},{"ts":1566469328688,"i":2621,"p":"پنکه","f":"panka","g":"panka","e":"fan","c":"n. f."},{"ts":1527815184,"i":2752,"p":"پوښتنه","f":"poxtuna","g":"poxtuna","e":"question","c":"n. f."},{"ts":1527822437,"i":2967,"p":"تاخچه","f":"taakhchá","g":"taakhcha","e":"shelf, niche","c":"n. f.","ec":"shelf","ep":"shelves"},{"ts":1527814974,"i":3074,"p":"تبه","f":"tuba","g":"tuba","e":"fever","c":"n. f."},{"ts":1527815332,"i":3674,"p":"تمه","f":"tama","g":"tama","e":"expectation","c":"n. f."},{"ts":1527815716,"i":3955,"p":"تیږه","f":"teeGa","g":"teega","e":"stone, rock","c":"n. f."},{"ts":1582390417084,"i":3958,"p":"تېښته","f":"téxta","g":"texta","e":"escape, flight, running away","c":"n. f."},{"ts":1527822268,"i":3998,"p":"ټانګه","f":"Taangá","g":"Taanga","e":"carriage, buggy","c":"n. f."},{"ts":1527812014,"i":4126,"p":"ټولنه","f":"Toluna","g":"Toluna","e":"society, association, gathering, assembly, congregation","c":"n. f."},{"ts":1527816696,"i":4406,"p":"جمله","f":"jUmla","g":"jUmla","e":"sentence; whole, total, sum","c":"n. f."},{"ts":1527820504,"i":4591,"p":"ځمکه","f":"dzmúka","g":"dzmuka","e":"land, earth, ground","c":"n. f."},{"ts":1527815497,"i":5160,"p":"څېره","f":"tsera","g":"tsera","e":"face, picture","c":"n. f."},{"ts":1527811993,"i":5308,"p":"حمله","f":"hamla","g":"hamla","e":"attack, assault","c":"n. f."},{"ts":1527812720,"i":7276,"p":"ژبه","f":"jzúba, jzíba","g":"jzuba,jziba","e":"language","c":"n. f."},{"ts":1527812052,"i":5571,"p":"خښته","f":"khuxta","g":"khuxta","e":"brick, cinder-block","c":"n. f."},{"ts":1527813475,"i":6162,"p":"دقیقه","f":"daqeeqa","g":"dakeeka","e":"minute","c":"n. f.","app":"دقائق","apf":"daqaa'iq"},{"ts":1527812542,"i":6228,"p":"دمه","f":"dama","g":"dama","e":"break, rest","c":"n. f."},{"ts":1527812085,"i":6231,"p":"دنده","f":"danda","g":"danda","e":"obligation, duty, responsibility; job, work, position","c":"n. f."},{"ts":1527822847,"i":7264,"p":"ژامه","f":"jzaamá","g":"jzaama","e":"jaw","c":"n. f."},{"ts":1527815278,"i":8181,"p":"شپه","f":"shpa","g":"shpa","e":"night","c":"n. f."},{"ts":1527813145,"i":9611,"p":"قبیله","f":"qabeela","g":"kabeela","e":"tribe","c":"n. f.","app":"قبایل","apf":"qabaayul"},{"ts":1566653299904,"i":10288,"p":"کمره","f":"kamara","g":"kamara","e":"camera","c":"n. f."},{"ts":1527812825,"i":10433,"p":"کوڅه","f":"kootsa","g":"kootsa","e":"street","c":"n. f."},{"ts":1527812756,"i":10612,"p":"کېله","f":"kela","g":"kela","e":"banana","c":"n. f."},{"ts":1527812859,"i":11382,"p":"لوبه","f":"lóba","g":"loba","e":"game, match","c":"n. f."},{"ts":1527819087,"i":11562,"p":"ماته","f":"maata","g":"maata","e":"defeat","c":"n. f."},{"ts":1588076706989,"i":12190,"p":"مسافه","f":"masaafá","g":"masaafa","e":"distance, span","c":"n. f."},{"ts":1527818358,"i":12767,"p":"مڼه","f":"maNá","g":"maNa","e":"apple","c":"n. f."},{"ts":1527812901,"i":12943,"p":"مېده","f":"meda","g":"meda","e":"stomach","c":"n. f."},{"ts":1527813387,"i":13348,"p":"نښته","f":"nuxúta","g":"nuxuta","e":"battle, skirmish, wrangle, quarrel, fighting, gluing, joining","c":"n. f."},{"ts":1527815110,"i":13354,"p":"نښه","f":"náxa, núxa","g":"naxa,nuxa","e":"sign, mark, indication","c":"n. f."},{"ts":1527813391,"i":13629,"p":"نېټه","f":"neTa","g":"neTa","e":"date (as in time)","c":"n. f."},{"ts":1527811429,"i":13748,"p":"هدیره","f":"hadeera","g":"hadeera","e":"graveyard, cemetery","c":"n. f."},{"ts":1527814323,"i":13749,"p":"هدیه","f":"hadiya","g":"hadiya","e":"gift, present, donation, contribution","c":"n. f."},{"ts":1527812655,"i":13810,"p":"هفته","f":"hafta","g":"hafta","e":"week","c":"n. f."},{"ts":1527812681,"i":13947,"p":"هوکړه","f":"hókRa","g":"hokRa","e":"agreement","c":"n. f."},{"ts":1578343468611,"i":14053,"p":"واڼه","f":"wáaNa","g":"waaNa","e":"tendon, sinew; hamstring","c":"n. f."},{"ts":1527822717,"i":14054,"p":"واوره","f":"wáawra","g":"waawra","e":"snow","c":"n. f."},{"ts":1527811207,"i":14154,"p":"وروځه","f":"wróodza","g":"wroodza","e":"eyebrow","c":"n. f."},{"ts":1527816375,"i":14181,"p":"ورېره","f":"wrera","g":"wrera","e":"niece; brother's daughter","c":"n. f."},{"ts":1527822259,"i":14232,"p":"وږمه","f":"waGmá","g":"wagma","e":"breeze, light wind","c":"n. f."},{"ts":1527814719,"i":14243,"p":"وسله","f":"wasla","g":"wasla","e":"weapon, firearm, artillery","c":"n. f."},{"ts":1527823717,"i":9916,"p":"کپړه","f":"kapRá","g":"kapRa","e":"cloth, fabric, material, clothing, garment","c":"n. f."},{"ts":1527816257,"i":9924,"p":"کتابچه","f":"kitaabcha","g":"kitaabcha","e":"notebook, little book","c":"n. f."},{"ts":1527820050,"i":9974,"p":"کڅوړه","f":"katsóRa","g":"katsoRa","e":"bag, purse","c":"n. f."},{"ts":1527813252,"i":10017,"p":"کرښه","f":"kurxa","g":"kurxa","e":"line, trace","c":"n. f."},{"ts":1527823590,"i":10047,"p":"کره","f":"kará","g":"kara","e":"sphere, globe","c":"n. f."},{"ts":1527823591,"i":10048,"p":"کره","f":"kára","g":"kara","e":"shovel, scraper, scoop","c":"n. f."},{"ts":1527815884,"i":10051,"p":"کره کتنه","f":"karakatuna","g":"karakatuna","e":"criticism","c":"n. f."},{"ts":1527823035,"i":10060,"p":"کروړه","f":"karoRá","g":"karoRa","e":"whip","c":"n. f."},{"ts":1527816870,"i":10062,"p":"کرونده","f":"karwanda","g":"karwanda","e":"farmland","c":"n. f."},{"ts":1527817371,"i":10068,"p":"کریږه","f":"kreeGa","g":"kreega","e":"lament, mourning aloud, wail, cry (also out of hapiness)","c":"n. f."},{"ts":1598119732734,"i":10070,"p":"کرېله","f":"karelá","g":"karela","e":"bitter melon","c":"n. f."},{"ts":1527820606,"i":7836,"p":"سمڅه","f":"smútsa","g":"smutsa","e":"cave, cavern","c":"n. f."},{"ts":1527815249,"i":7876,"p":"سندره","f":"sandura","g":"sandura","e":"song, poem, verse","c":"n. f."},{"ts":1591034128816,"i":7908,"p":"سهوه","f":"sáhwa","g":"sahwa","e":"mistake, error, blunder, fault","c":"n. f."},{"ts":1527814370,"i":7972,"p":"سوږمه","f":"soGma","g":"sogma","e":"nostril","c":"n. f."},{"ts":1527817498,"i":7988,"p":"سوکړه","f":"sookRá","g":"sookRa","e":"famine, starvation, serious hunger/lack of food, drought, crop failure","c":"n. f."},{"ts":1527813115,"i":331,"p":"ادعا","f":"idaa","g":"idaa","e":"claim","c":"n. f."},{"ts":1527818119,"i":836,"p":"امسا","f":"amsaa","g":"amsaa","e":"stick, walking staff, walking stick, crutch","c":"n. f."},{"ts":1527815043,"i":4324,"p":"جزا","f":"jazaa","g":"jazaa","e":"punishment, retribution","c":"n. f."},{"ts":1527819022,"i":4988,"p":"څا","f":"tsaa","g":"tsaa","e":"well, water-hole","c":"n. f."},{"ts":1527814225,"i":5579,"p":"خطا","f":"khataa","g":"khataa","e":"mistake, error, blunder","c":"n. f."},{"ts":1610797589510,"i":5600,"p":"خلا","f":"khaláa","g":"khalaa","e":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","c":"n. f."},{"ts":1527812582,"i":6135,"p":"دعا","f":"dUaa","g":"dUaa","e":"prayer","c":"n. f."},{"ts":1527813415,"i":6253,"p":"دوا","f":"dawaa","g":"dawaa","e":"medicine, medication","c":"n. f."},{"ts":1527812272,"i":6841,"p":"رڼا","f":"raNaa","g":"raNaa","e":"light, glory","c":"n. f."},{"ts":1527823245,"i":6925,"p":"رویا","f":"rooyáa","g":"rooyaa","e":"dream, vision","c":"n. f."},{"ts":1586596579414,"i":8437,"p":"شورا","f":"shooraa","g":"shooraa","e":"council (an institution)","c":"n. f."},{"ts":1527815984,"i":8562,"p":"ښکلا","f":"xkulaa","g":"xkulaa","e":"beauty","c":"n. f."},{"ts":1527817670,"i":9152,"p":"غلا","f":"ghlaa","g":"ghlaa","e":"theft, robbery, stealing","c":"n. f."},{"ts":1527814362,"i":9216,"p":"غوا","f":"ghwaa","g":"ghwaa","e":"cow","c":"n. f."},{"ts":1585487002625,"i":9700,"p":"قلا","f":"qaláa","g":"kalaa","e":"castle, fort, fortress","c":"n. f."},{"ts":1527812048,"i":11648,"p":"مانا","f":"maanaa","g":"maanaa","e":"meaning, sense, spirit","c":"n. f."},{"ts":1527815483,"i":12551,"p":"ملا","f":"mlaa","g":"mlaa","e":"back (body part)","c":"n. f."},{"ts":1527812230,"i":12609,"p":"ملګرتیا","f":"malgurtiyaa","g":"malgurtiyaa","e":"friendship","c":"n. f."},{"ts":1527812910,"i":12990,"p":"مېلمستیا","f":"melmastiyaa","g":"melmastiyaa","e":"hospitality; invitation, event, party, banquet, reception","c":"n. f."},{"ts":1617781446945,"i":13050,"p":"ناجوړتیا","f":"naajoRtiyaa, naajoRtyaa","g":"naajoRtiyaa,naajoRtyaa","e":"sickness, illness","c":"n. f."},{"ts":1527815120,"i":13611,"p":"نیا","f":"niyaa","g":"niyaa","e":"grandmother","c":"n. f."},{"ts":1527811740,"i":13674,"p":"نیمګړتیا","f":"neemguRtiyaa","g":"neemguRtiyaa","e":"incompleteness, default, shortcoming","c":"n. f."},{"ts":1527821040,"i":14056,"p":"وبا","f":"wabáa","g":"wabaa","e":"plague, cholera","c":"n. f."},{"ts":1527823534,"i":14194,"p":"وړتیا","f":"waRtiyáa","g":"waRtiyaa","e":"ability, capacity, capability, power, volumeá","c":"n. f."},{"ts":1610443988250,"i":14392,"p":"وېشلتیا","f":"weshiltyaa, weshiltiyaa","g":"weshiltyaa,weshiltiyaa","e":"division, distribution","c":"n. f."},{"ts":1527816806,"i":14408,"p":"وینا","f":"waynaa","g":"waynaa","e":"speech, statement","c":"n. f."},{"ts":1527815197,"i":2489,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},{"ts":1527813148,"i":2363,"p":"پروت","f":"prot","g":"prot","e":"lying, lying down or on, located, situated","c":"adj. irreg.","infap":"پراته","infaf":"praatu","infbp":"پرت","infbf":"prat"},{"ts":1574867531681,"i":2713,"p":"پوخ","f":"pokh","g":"pokh","e":"mature, ripe, ready, cooked, able, skillful, experienced, tried, tested, true","c":"adj. irreg.","infap":"پاخه","infaf":"paakhu","infbp":"پخ","infbf":"pakh"},{"ts":1576952412644,"i":2740,"p":"پوست","f":"post","g":"post","e":"soft, tender, gentle, loosened","c":"adj. irreg.","infap":"پاسته","infaf":"paastu","infbp":"پست","infbf":"past"},{"ts":1527815366,"i":3341,"p":"تریخ","f":"treekh","g":"treekh","e":"bitter, hot, spicy (of food); terrible, miserable (of life)","c":"adj. irreg.","infap":"تراخه","infaf":"traakhu","infbp":"ترخ","infbf":"turkh"},{"ts":1527818789,"i":3350,"p":"تریو","f":"treew","g":"treew","e":"salty, savoury, sour, acid, bitter, grumpy","c":"adj. irreg.","infap":"تراوه","infaf":"traawu","infbp":"ترو","infbf":"truw"},{"ts":1527817664,"i":3787,"p":"تود","f":"tod","g":"tod","e":"warm, hot","c":"adj.","infap":"تاوده","infaf":"taawdu","infbp":"تود","infbf":"tawd"},{"ts":1527816071,"i":5432,"p":"خپور","f":"khpor","g":"khpor","e":"spread, dispersed, publicized, published","c":"adj.","infap":"خپاره","infaf":"khpaaru","infbp":"خپر","infbf":"khpar"},{"ts":1574865652928,"i":5753,"p":"خوږ","f":"khoG","g":"khog","e":"sweet, nice","c":"adj. irreg.","infap":"خواږه","infaf":"khwaaGu","infbp":"خوږ","infbf":"khwaG"},{"ts":1527813499,"i":6080,"p":"دروند","f":"droond","g":"droond","e":"heavy; respectable, reliable, serious","c":"adj.","infap":"درانه","infaf":"draanu","infbp":"درن","infbf":"dran"},{"ts":1527813943,"i":6598,"p":"راستون","f":"raastoon","g":"raastoon","e":"returned, come back","c":"adj.","infap":"راستانه","infaf":"raastaanu","infbp":"راستن","infbf":"raastan"},{"ts":1576596860977,"i":6920,"p":"روڼ","f":"rooN","g":"rooN","e":"shiny, bright, clear, enlightened, transparent","c":"adj. irreg.","infap":"راڼه","infaf":"raaNu","infbp":"رڼ","infbf":"raN"},{"ts":1527811971,"i":6979,"p":"ړوند","f":"Roond","g":"Roond","e":"blind","c":"adj.","infap":"ړانده","infaf":"Raandu","infbp":"ړند","infbf":"Rand"},{"ts":1527815451,"i":7192,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},{"ts":1527815300,"i":7469,"p":"سپور","f":"spor","g":"spor","e":"mounted, rider, riding","c":"adj.","infap":"سپاره","infaf":"spaaru","infbp":"سپر","infbf":"spar"},{"ts":1527819505,"i":7555,"p":"ستون","f":"stoon","g":"stoon","e":"returned, returning, being (in a place after returning, coming back etc.), delayed, late, lagging","c":"adj. irreg.","infap":"ستانه","infaf":"staanu","infbp":"ستن","infbf":"stan"},{"ts":1600080053835,"i":7948,"p":"سور","f":"sor","g":"sor","e":"riding, mounted (Pakistani)","c":"adj.","infap":"سواره","infaf":"swaaru","infbp":"سور","infbf":"swar"},{"ts":1527813068,"i":7966,"p":"سوړ","f":"soR","g":"soR","e":"cold, cool; patient; lazy; inactive; satisfied","c":"adj.","infap":"ساړه","infaf":"saaRu","infbp":"سړ","infbf":"saR"},{"ts":1575924767041,"i":8183,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},{"ts":1527813172,"i":10497,"p":"کوږ","f":"koG","g":"kog","e":"crooked, bent","c":"adj.","infap":"کاږه","infaf":"kaaGu","infbp":"کږ","infbf":"kaG"},{"ts":1527811973,"i":10579,"p":"کوڼ","f":"kooN","g":"kooN","e":"deaf","c":"adj.","infap":"کاڼه","infaf":"kaaNu","infbp":"کڼ","infbf":"kaN"},{"ts":1527817123,"i":11462,"p":"لومد","f":"loomd","g":"loomd","e":"damp, wet, moist, humid","c":"adj.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527817117,"i":11468,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لانده","infaf":"laandu","infbp":"لند","infbf":"land"},{"ts":1576889120767,"i":11469,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527812927,"i":12854,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},{"ts":1527812908,"i":12991,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},{"ts":1579463171333,"i":13558,"p":"نوږ","f":"noG","g":"nog","e":"cleansed, cleaned, purified","c":"adj.","infap":"ناږه","infaf":"naaGu","infbp":"نږ","infbf":"naG"},{"ts":1576113803291,"i":14348,"p":"ووړ","f":"woR","g":"woR","e":"small, little","c":"adj. irreg.","infap":"واړه","infaf":"waaRu","infbp":"وړ","infbf":"waR"},{"ts":1527819244,"i":10450,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},{"ts":1527814150,"i":11040,"p":"لار","f":"laar","g":"laar","e":"road, way, path","c":"n. f."},{"ts":1527815417,"i":14124,"p":"ورځ","f":"wradz","g":"wradz","e":"day","c":"n. f."},{"ts":1527812922,"i":12924,"p":"میاشت","f":"miyaasht","g":"miyaasht","e":"month","c":"n. f."},{"ts":1527823306,"i":5118,"p":"څنګل","f":"tsangúl","g":"tsangul","e":"elbow","c":"n. f."},{"ts":1527813824,"i":9367,"p":"غېږ","f":"gheG","g":"gheg","e":"bosom, breast; wrestling","c":"n. f."},{"ts":1527820524,"i":5059,"p":"څرمن","f":"tsarmún","g":"tsarmun","e":"pelt, skin, hide, leather","c":"n. f."},{"ts":1527814147,"i":1568,"p":"بړستن","f":"bRastun","g":"bRastun","e":"blanket, coving, quilt","c":"n. f."},{"ts":1527818707,"i":3250,"p":"ترخځ","f":"turkhúdz","g":"turkhudz","e":"wedge; gusset (in a shirt)","c":"n. f."},{"ts":1527822792,"i":3826,"p":"توشک","f":"toshák","g":"toshak","e":"narrow mattress used as a bed or a couch, reversible rug","c":"n. f.","ec":"toshak"},{"ts":1527813294,"i":7331,"p":"ږمنځ","f":"Gmundz","g":"gmundz","e":"comb","c":"n. f."},{"ts":1527811580,"i":7542,"p":"ستن","f":"stun","g":"stun","e":"needle, injection; pillar, mast","c":"n. f."},{"ts":1527815779,"i":10323,"p":"کنځل","f":"kundzul","g":"kundzul","e":"swearing, name-calling, verbal abuse, bad language","c":"n. f."},{"ts":1527817456,"i":11322,"p":"لمن","f":"lamun","g":"lamun","e":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","c":"n. f."},{"ts":1527822725,"i":11480,"p":"لوېشت","f":"lwesht","g":"lwesht","e":"span","c":"n. f."},{"ts":1527811609,"i":12750,"p":"منګل","f":"mangul","g":"mangul","e":"claw, paw","c":"n. f."},{"ts":1527821684,"i":14179,"p":"ورېځ","f":"wurédz","g":"wuredz","e":"cloud","c":"n. f."},{"ts":1527812432,"i":66,"p":"آسمان","f":"aasmaan","g":"aasmaan","e":"sky, heaven","c":"n. m."},{"ts":1527812431,"i":83,"p":"آم","f":"aam","g":"aam","e":"mango","c":"n. m."},{"ts":1527812434,"i":99,"p":"آواز","f":"aawaaz","g":"aawaaz","e":"sound, voice","c":"n. m."},{"ts":1527816724,"i":140,"p":"اتاق","f":"wutáaq, Utáaq","g":"wutaak,Utaak","e":"room, chamber","c":"n. m.","diacExcept":true},{"ts":1527811859,"i":142,"p":"اتحاد","f":"itihaad","g":"itihaad","e":"union, alliance","c":"n. m."},{"ts":1527822033,"i":145,"p":"اتصال","f":"ittisáal","g":"ittisaal","e":"joining, connection, contiguity, junction","c":"n. m."},{"ts":1527811858,"i":146,"p":"اتفاق","f":"itifaaq","g":"itifaak","e":"unity, alliance, agreement, understanding, consent; coincidence","c":"n. m."},{"ts":1527813560,"i":166,"p":"اتهام","f":"itihaam","g":"itihaam","e":"accusation, charge, indictment","c":"n. m.","app":"اتهامات","apf":"itihaamáat"},{"ts":1527812105,"i":234,"p":"احترام","f":"ihtiraam","g":"ihtiraam","e":"respect, honor, esteem, deference","c":"n. m."},{"ts":1527819653,"i":240,"p":"احتمال","f":"ihtimaal","g":"ihtimaal","e":"possibility, probability, likelihood","c":"n. m."},{"ts":1527812689,"i":242,"p":"احتیاج","f":"ihtiyaaj","g":"ihtiyaaj","e":"need, requirement","c":"n. m.","app":"احتیاجات","apf":"ihtiyaajáat"},{"ts":1527812690,"i":244,"p":"احتیاط","f":"ihtiyaat","g":"ihtiyaat","e":"caution","c":"n. m."},{"ts":1527813782,"i":246,"p":"احساس","f":"ahsaas","g":"ahsaas","e":"feeling, sensation, emotion","c":"n. m."},{"ts":1527817303,"i":630,"p":"اعتراض","f":"itiraaz","g":"itiraaz","e":"objection, protest","c":"n. m."},{"ts":1527813418,"i":667,"p":"اغېز","f":"aghez","g":"aghez","e":"influence, effect, affect, action","c":"n. m."},{"ts":1527816625,"i":672,"p":"افت","f":"afat","g":"afat","e":"disaster","c":"n. m."},{"ts":1527813558,"i":761,"p":"الزام","f":"ilzaam","g":"ilzaam","e":"accusation, charge, blame","c":"n. m."},{"ts":1527815388,"i":853,"p":"امید","f":"Umeed","g":"Umeed","e":"hope, expectation","c":"n. m."},{"ts":1527812453,"i":908,"p":"انځور","f":"andzoor","g":"andzoor","e":"picture, painting, image","c":"n. m."},{"ts":1527813827,"i":1034,"p":"اور","f":"or","g":"or","e":"fire, flame","c":"n. m."},{"ts":1527814787,"i":1236,"p":"باران","f":"baaraan","g":"baaraan","e":"rain","c":"n. m."},{"ts":1527817293,"i":1298,"p":"بام","f":"baam","g":"baam","e":"roof","c":"n. m."},{"ts":1527814849,"i":1302,"p":"بانجن","f":"baanjan","g":"baanjan","e":"eggplant","c":"n. m."},{"ts":1527814106,"i":1359,"p":"بحران","f":"bUhraan","g":"bUhraan","e":"crisis","c":"n. m."},{"ts":1527814885,"i":1361,"p":"بخت","f":"bakht","g":"bakht","e":"fortune, luck, fate","c":"n. m."},{"ts":1527811281,"i":1755,"p":"بڼ","f":"baN","g":"baN","e":"garden","c":"n. m."},{"ts":1624039195280,"i":1818,"p":"بورس","f":"boors","g":"boors","e":"scholarship","c":"n. m."},{"ts":1527816877,"i":2010,"p":"بیرغ","f":"beyragh","g":"beyragh","e":"flag","c":"n. m."},{"ts":1527820423,"i":2141,"p":"پاسپورټ","f":"paasporT","g":"paasporT","e":"passport","c":"n. m."},{"ts":1527813224,"i":2512,"p":"پل","f":"pUl","g":"pUl","e":"bridge","c":"n. m.","infap":"پله","infaf":"plu","infbp":"پل","infbf":"pl"},{"ts":1527813480,"i":2521,"p":"پلان","f":"plaan","g":"plaan","e":"plan","c":"n. m."},{"ts":1527815199,"i":2526,"p":"پلاو","f":"pulaaw","g":"pulaaw","e":"pulaaw (central-asian/middle-eastern rice dish), pilaf","c":"n. m."},{"ts":1527815185,"i":2717,"p":"پور","f":"por","g":"por","e":"loan, debt","c":"n. m."},{"ts":1527815176,"i":2796,"p":"پیاز","f":"piyaaz","g":"piyaaz","e":"onion","c":"n. m."},{"ts":1527815171,"i":2926,"p":"پیل","f":"peyl","g":"peyl","e":"start","c":"n. m."},{"ts":1527816610,"i":2963,"p":"تاج","f":"taaj","g":"taaj","e":"crown, crest","c":"n. m."},{"ts":1527822373,"i":2995,"p":"تاک","f":"taak","g":"taak","e":"vine; mouthful","c":"n. m."},{"ts":1527815326,"i":3040,"p":"تایید","f":"taayeed","g":"taayeed","e":"confirmation","c":"n. m."},{"ts":1527815357,"i":3158,"p":"تخم","f":"tUkhum","g":"tUkhum","e":"seed","c":"n. m."},{"ts":1527821586,"i":3248,"p":"ترحم","f":"tarahhÚm","g":"tarahhUm","e":"pity, sympathy","c":"n. m."},{"ts":1527811389,"i":3459,"p":"تصویر","f":"tasweer","g":"tasweer","e":"picture","c":"n. m.","app":"تصاویر","apf":"tasaaweer"},{"ts":1527814679,"i":3464,"p":"تضمین","f":"tazmeen","g":"tazmeen","e":"guarantee, insurance, security","c":"n. m."},{"ts":1527814258,"i":3551,"p":"تقریر","f":"taqreer","g":"takreer","e":"speech, lecture","c":"n. m."},{"ts":1527821670,"i":3559,"p":"تقلب","f":"taqalÚb","g":"takalUb","e":"cheating, deception, fraud, forgery","c":"n. m."},{"ts":1527811602,"i":3586,"p":"تکل","f":"takál","g":"takal","e":"attempt, aspiration, intention, effort","c":"n. m."},{"ts":1527813398,"i":3596,"p":"تګ","f":"tug, tag","g":"tug,tag","e":"movement, motion, going","c":"n. m."},{"ts":1527822126,"i":3636,"p":"تلین","f":"tleen","g":"tleen","e":"anniversary","c":"n. m."},{"ts":1527811308,"i":3640,"p":"تماس","f":"tamaas","g":"tamaas","e":"contact, touch","c":"n. m."},{"ts":1527817900,"i":3683,"p":"تن","f":"tan","g":"tan","e":"body, flesh","c":"n. m."},{"ts":1527821061,"i":3686,"p":"تناقض","f":"tanaaqÚz","g":"tanaakUz","e":"contrast, opposition, contradiction","c":"n. m."},{"ts":1527822387,"i":3687,"p":"تناو","f":"tanáaw","g":"tanaaw","e":"rope, cord; a measurement of ground or distances","c":"n. m."},{"ts":1527818995,"i":3698,"p":"تندر","f":"tandúr","g":"tandur","e":"lightning","c":"n. m."},{"ts":1527815362,"i":3773,"p":"توپ","f":"top","g":"top","e":"ball; (cannon) ball","c":"n. m."},{"ts":1527816820,"i":3853,"p":"توک","f":"took","g":"took","e":"spit","c":"n. m."},{"ts":1527816520,"i":4002,"p":"ټبر","f":"Tabar","g":"Tabar","e":"family, clan, tribe, people","c":"n. m."},{"ts":1527811348,"i":4003,"p":"ټپ","f":"Tap","g":"Tap","e":"wound","c":"n. m."},{"ts":1527819566,"i":4040,"p":"ټکر","f":"TUkúr","g":"TUkur","e":"piece, part; cloth, fabric","c":"n. m."},{"ts":1527812213,"i":4393,"p":"جمات","f":"jUmaat","g":"jUmaat","e":"mosque","c":"n. m."},{"ts":1527811705,"i":4501,"p":"جوړښت","f":"joRuxt","g":"joRuxt","e":"structure","c":"n. m."},{"ts":1527814058,"i":4615,"p":"ځواب","f":"dzawaab","g":"dzawaab","e":"answer, reply","c":"n. m."},{"ts":1527816887,"i":4616,"p":"ځواک","f":"dzwaak","g":"dzwaak","e":"life, existence, energy, force","c":"n. m."},{"ts":1527814649,"i":4928,"p":"چوک","f":"chok","g":"chok","e":"market square, crossroads, paved area in front of entrance","c":"n. m."},{"ts":1527815065,"i":5028,"p":"څټک","f":"tsaTak, tsTuk","g":"tsaTak,tsTuk","e":"hammer","c":"n. m."},{"ts":1527814589,"i":5117,"p":"څنګ","f":"tsang","g":"tsang","e":"side","c":"n. m."},{"ts":1527816228,"i":5213,"p":"حد","f":"had","g":"had","e":"boundary, limit, extent","c":"n. m.","app":"حدود","apf":"hUdood"},{"ts":1527813749,"i":5286,"p":"حکومت","f":"hUkoomat","g":"hUkoomat","e":"government, reign, rule","c":"n. m."},{"ts":1527814125,"i":5289,"p":"حل","f":"hal","g":"hal","e":"solution","c":"n. m."},{"ts":1527818703,"i":5433,"p":"خت","f":"khut","g":"khut","e":"shirt","c":"n. m."},{"ts":1527813804,"i":5695,"p":"خوب","f":"khob","g":"khob","e":"sleep, dream","c":"n. m."},{"ts":1527812815,"i":5816,"p":"خوندیتوب","f":"khwundeetob","g":"khwundeetob","e":"safety, security","c":"n. m."},{"ts":1527813763,"i":6353,"p":"دین","f":"deen","g":"deen","e":"religion, faith","c":"n. m."},{"ts":1527811517,"i":7759,"p":"سفر","f":"safar","g":"safar","e":"journey, travel","c":"n. m."},{"ts":1527815389,"i":8953,"p":"عمر","f":"Úmur","g":"Umur","e":"age, life","c":"n. m."},{"ts":1527816746,"i":9017,"p":"غاښ","f":"ghaax","g":"ghaax","e":"tooth","c":"n. m.","ec":"tooth","ep":"teeth"},{"ts":1527812631,"i":9285,"p":"غوږ","f":"ghwuG, ghwaG","g":"ghwug,ghwag","e":"ear","c":"n. m."},{"ts":1527812265,"i":9447,"p":"فرمان","f":"farmaan","g":"farmaan","e":"decree, order","c":"n. m."},{"ts":1527817205,"i":9520,"p":"فلم","f":"film","g":"film","e":"film, movie","c":"n. m."},{"ts":1527812727,"i":9855,"p":"کال","f":"kaal","g":"kaal","e":"year","c":"n. m."},{"ts":1527812817,"i":9921,"p":"کتاب","f":"kitáab","g":"kitaab","e":"book","c":"n. m."},{"ts":1527812611,"i":10647,"p":"ګام","f":"gaam","g":"gaam","e":"step, move","c":"n. m."},{"ts":1527812641,"i":10811,"p":"ګل","f":"gUl","g":"gUl","e":"rose, flower","c":"n. m."},{"ts":1527812650,"i":10897,"p":"ګواښ","f":"gwaax","g":"gwaax","e":"threat, danger, challeng","c":"n. m."},{"ts":1527813521,"i":11560,"p":"ماتم","f":"maatam","g":"maatam","e":"mourning, grief, grieving, deep sorrow","c":"n. m."},{"ts":1527812176,"i":11605,"p":"ماښام","f":"maaxaam","g":"maaxaam","e":"evening","c":"n. m."},{"ts":1527813601,"i":12082,"p":"مرګ","f":"marg","g":"marg","e":"death","c":"n. m."},{"ts":1527817691,"i":12212,"p":"مستقبل","f":"mUstaqbil","g":"mUstakbil","e":"future","c":"n. m."},{"ts":1527811866,"i":13439,"p":"نقصان","f":"nUqsaan","g":"nUksaan","e":"damage, defect, loss","c":"n. m."},{"ts":1527815122,"i":13593,"p":"نوم","f":"noom","g":"noom","e":"name","c":"n. m.","ppp":"نمونه","ppf":"nUmoona"},{"ts":1527812661,"i":13826,"p":"هلک","f":"halík, halúk","g":"halik,haluk","e":"boy, young lad","c":"n. m. anim."},{"ts":1566476070874,"i":14002,"p":"واټ","f":"waaT","g":"waaT","e":"street, road","c":"n. m."},{"ts":1527816036,"i":14036,"p":"واک","f":"waak","g":"waak","e":"authority, power","c":"n. m."},{"ts":1527815400,"i":14082,"p":"وخت","f":"wakht","g":"wakht","e":"time","c":"n. m."},{"ts":1527818582,"i":14087,"p":"ودانښت","f":"wadaanuxt","g":"wadaanuxt","e":"building, prosperity, habitable state","c":"n. m."},{"ts":1527811441,"i":14096,"p":"ور","f":"war","g":"war","e":"door, gate, entrance","c":"n. m.","infap":"وره","infaf":"wru","infbp":"ور","infbf":"wr"},{"ts":1527815406,"i":14264,"p":"وطن","f":"watán","g":"watan","e":"homeland, home country","c":"n. m."},{"ts":1573149648251,"i":14266,"p":"وطن وال","f":"watanwaal","g":"watanwaal","e":"fellow country-man","c":"n. m.","ec":"fellow country-man","ep":"fellow country-men"},{"ts":1586428847646,"i":14269,"p":"وطنوال","f":"watanwáal","g":"watanwaal","e":"national (person), a citizen or person of that land","c":"n. m."},{"ts":1527822208,"i":14270,"p":"وطواط","f":"watwáat","g":"watwaat","e":"bat, coward, pipsqueak, hesitant person","c":"n. m."},{"ts":1527819571,"i":14341,"p":"وهم","f":"wáhum, wahm","g":"wahum,wahm","e":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","c":"n. m.","app":"اهوام","apf":"ahwáam"},{"ts":1527816332,"i":14358,"p":"ویاړ","f":"wyaaR","g":"wyaaR","e":"pride, glory","c":"n. m."},{"ts":1527815408,"i":14370,"p":"ویده","f":"weedú","g":"weedu","e":"asleep, sleeping","c":"adj."},{"ts":1527812796,"i":8578,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."},{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},{"ts":1527821649,"i":183,"p":"اثرناک","f":"asarnáak","g":"asarnaak","e":"impressive, effective, influencing","c":"adj.","l":1527815870},{"ts":1527818704,"i":352,"p":"ارت","f":"arát","g":"arat","e":"wide, spacious, extensive","c":"adj."},{"ts":1578340121962,"i":447,"p":"ازاد","f":"azáad","g":"azaad","e":"free, released","c":"adj."},{"ts":1527819418,"i":5425,"p":"خپلواک","f":"khpulwaak","g":"khpulwaak","e":"independent, free, autonomous","c":"adj."},{"ts":1527817146,"i":534,"p":"استوګن","f":"astogan","g":"astogan","e":"resident; established, installed, settled","c":"n. m. unisex / adj."},{"ts":1527813713,"i":855,"p":"امیدوار","f":"Umeedwaar","g":"Umeedwaar","e":"hopeful, pregnant","c":"adj."},{"ts":1527819451,"i":968,"p":"انګرېز","f":"angréz","g":"angrez","e":"Englishman, English (adjective)","c":"n. m. anim. unisex / adj."},{"ts":1527820346,"i":987,"p":"انلاین","f":"anlaayn","g":"anlaayn","e":"on-line","c":"adj."},{"ts":1527813667,"i":999,"p":"اهم","f":"ahám","g":"aham","e":"important","c":"adj."},{"ts":1598724912198,"i":1025,"p":"اوچ","f":"ooch","g":"ooch","e":"dry","c":"adj."},{"ts":1527815138,"i":1045,"p":"اورپک","f":"orpak","g":"orpak","e":"insurgent, wicked, terrorist","c":"n. m. anim. / adj."},{"ts":1586452587974,"i":1069,"p":"اوزګار","f":"oozgáar","g":"oozgaar","e":"free, unoccupied, available, at leisure","c":"adj."},{"ts":1527816489,"i":1174,"p":"ایماندار","f":"eemaandaar","g":"eemaandaar","e":"faithful, believer, devoted, correct, true","c":"adj. / n. m. anim. unisex"},{"ts":1527820433,"i":1199,"p":"باتور","f":"baatóor","g":"baatoor","e":"courageous, brave, valiant","c":"adj."},{"ts":1527813425,"i":1371,"p":"بخیل","f":"bakheel","g":"bakheel","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812511,"i":1372,"p":"بد","f":"bud, bad","g":"bud,bad","e":"bad","c":"adj."},{"ts":1527812518,"i":1444,"p":"برابر","f":"buraabur","g":"buraabur","e":"equal, even, all good","c":"adj."},{"ts":1527811861,"i":1460,"p":"بربنډ","f":"barbunD","g":"barbunD","e":"naked; bare","c":"adj."},{"ts":1527811511,"i":1619,"p":"بشپړ","f":"bushpuR","g":"bushpuR","e":"full, complete, total, exhaustive, fulfilled, finished, utmost, superior, mature","c":"adj."},{"ts":1527812515,"i":1672,"p":"بل","f":"bul","g":"bul","e":"other, next","c":"adj."},{"ts":1527815725,"i":1680,"p":"بلد","f":"balad","g":"balad","e":"knowledgeable, informed, acquainted, accustomed, used to, familiar with","c":"adj."},{"ts":1577301753727,"i":1716,"p":"بند","f":"band","g":"band","e":"closed, blocked, stopped","c":"adj."},{"ts":1527812490,"i":1936,"p":"بې کار","f":"be kaar","g":"bekaar","e":"useless","c":"adj."},{"ts":1527812031,"i":2055,"p":"بېل","f":"bel","g":"bel","e":"separate, different, various","c":"adj."},{"ts":1527815144,"i":2149,"p":"پاک","f":"paak","g":"paak","e":"clean, pure","c":"adj."},{"ts":1527815201,"i":2227,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},{"ts":1527815179,"i":2540,"p":"پلن","f":"plun","g":"plun","e":"wide, broad, flat, dull, vapid","c":"adj."},{"ts":1527819059,"i":2606,"p":"پنډ","f":"punD","g":"punD","e":"thick, fat","c":"adj."},{"ts":1611767359178,"i":3265,"p":"ترسناک","f":"tarsnáak","g":"tarsnaak","e":"compassionate","c":"adj."},{"ts":1527813270,"i":3331,"p":"تروش","f":"troosh","g":"troosh","e":"sour; sarcasm","c":"adj. / n. m."},{"ts":1527813817,"i":3724,"p":"تنګ","f":"tang","g":"tang","e":"narrow, tight, cramped, constrained; troubled, bothered, annoyed","c":"adj."},{"ts":1527816354,"i":3918,"p":"تیار","f":"tayaar","g":"tayaar","e":"ready, prepared","c":"adj."},{"ts":1527817056,"i":3948,"p":"تېز","f":"tez","g":"tez","e":"sharp, pointed, quick, fast","c":"adj."},{"ts":1527814076,"i":4127,"p":"ټولنیز","f":"Toluneez","g":"Toluneez","e":"social","c":"adj."},{"ts":1527819864,"i":4149,"p":"ټیټ","f":"TeeT","g":"TeeT","e":"short, low, inferior","c":"adj."},{"ts":1527811894,"i":4176,"p":"ټینګ","f":"Teeng","g":"Teeng","e":"firm, thick, strong, tough, rigid","c":"adj."},{"ts":1527812943,"i":4182,"p":"ثابت","f":"saabit","g":"saabit","e":"constant, firm, fixed, stable, established, proven","c":"adj."},{"ts":1527813085,"i":4195,"p":"ثقیل","f":"saqeel","g":"sakeel","e":"heavy, difficult, hard to digest, indigestible, lazy, burdensome","c":"adj."},{"ts":1527820479,"i":4254,"p":"جاهل","f":"jaahíl","g":"jaahil","e":"ignorant, stupid","c":"adj."},{"ts":1588160800930,"i":4292,"p":"جراح","f":"jarráah","g":"jarraah","e":"surgeon","c":"n. m. anim. unisex"},{"ts":1527812707,"i":4356,"p":"جګ","f":"jig, jug","g":"jig,jug","e":"high, tall","c":"adj."},{"ts":1527816944,"i":4482,"p":"جوت","f":"jawat","g":"jawat","e":"clear, evident, explained, apparent, established","c":"adj."},{"ts":1527822996,"i":4492,"p":"جوخت","f":"jokht","g":"jokht","e":"alongside, adjoining, next to, very close","c":"adj."},{"ts":1527812711,"i":4498,"p":"جوړ","f":"joR","g":"joR","e":"well, healthy, whole, made","c":"adj."},{"ts":1527816323,"i":4581,"p":"ځلاند","f":"dzalaand","g":"dzalaand","e":"shining, sparkling, outstanding, brilliant","c":"adj."},{"ts":1527812291,"i":4618,"p":"ځوان","f":"dzwaan","g":"dzwaan","e":"young, youth, youthful","c":"n. m. anim. unisex / adj."},{"ts":1527820112,"i":4627,"p":"ځوړند","f":"dzwáRund","g":"dzwaRund","e":"hanging","c":"adj."},{"ts":1527819672,"i":4686,"p":"چالاک","f":"chaaláak","g":"chaalaak","e":"crafty, sly, tricky; quick, fast, nimble","c":"adj."},{"ts":1527811230,"i":4731,"p":"چټک","f":"chaTak","g":"chaTak","e":"quick, fast","c":"adj."},{"ts":1527812524,"i":4830,"p":"چلان","f":"chalaan","g":"chalaan","e":"started, in motion","c":"adj."},{"ts":1527815370,"i":5052,"p":"څرګند","f":"tsărgund","g":"tsargund","e":"clear, obvious, apparent, disclosed","c":"adj."},{"ts":1576366107077,"i":5079,"p":"څک","f":"tsak","g":"tsak","e":"straight, upright, pricked up, erect, alert","c":"adj."},{"ts":1527812113,"i":5186,"p":"حاضر","f":"haazir, haazur","g":"haazir,haazur","e":"present, on hand, ready, available, appearing; ready, prepared","c":"adj.","app":"حاضرین","apf":"haazireen"},{"ts":1527820699,"i":5198,"p":"حامل","f":"haamíl","g":"haamil","e":"carrying, transporting, conveying, pregnant","c":"adj."},{"ts":1527819824,"i":5234,"p":"حریص","f":"harées","g":"harees","e":"greedy, mean","c":"adj."},{"ts":1527812669,"i":5245,"p":"حساس","f":"hasaas","g":"hasaas","e":"sensitive, delicate","c":"adj."},{"ts":1527812057,"i":5378,"p":"خام","f":"khaam","g":"khaam","e":"raw, unripe, immature","c":"adj."},{"ts":1527811523,"i":5396,"p":"خاین","f":"khaayin","g":"khaayin","e":"traitor, treacherous","c":"n. m. anim. unisex / adj."},{"ts":1527814219,"i":5421,"p":"خپل","f":"khpul","g":"khpul","e":"relative; one's own, farmiliar","c":"adj. / n. m."},{"ts":1527812795,"i":5427,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},{"ts":1527812808,"i":5668,"p":"خوار","f":"khwaar","g":"khwaar","e":"poor, pitiful, miserable, thin","c":"adj."},{"ts":1527814880,"i":6232,"p":"دنګ","f":"dung","g":"dung","e":"tall, strapping","c":"adj."},{"ts":1527812537,"i":6366,"p":"ډاډمن","f":"DaaDmun","g":"DaaDmun","e":"assured, secure, confident","c":"adj."},{"ts":1527812583,"i":6430,"p":"ډک","f":"Duk","g":"Duk","e":"full","c":"adj."},{"ts":1527822674,"i":6472,"p":"ډنګر","f":"Dungár, Dangár","g":"Dungar,Dangar","e":"singular and plural cattle; bull, ox; thin, skinny, gaunt, emaciated","c":"adj."},{"ts":1527817256,"i":6478,"p":"ډوب","f":"Doob","g":"Doob","e":"drowned, sunk, submerged","c":"adj."},{"ts":1527814277,"i":6907,"p":"روغ","f":"rogh","g":"rogh","e":"healthy, well, intact, good, built-up","c":"adj."},{"ts":1609780006604,"i":7035,"p":"زرخېز","f":"zarkhéz","g":"zarkhez","e":"rich, fruitful","c":"adj."},{"ts":1527817116,"i":7042,"p":"زرغون","f":"zarghóon","g":"zarghoon","e":"green, flourishing, flowering, growing; immature, unripe","c":"adj."},{"ts":1527814026,"i":7053,"p":"زرین","f":"zareen","g":"zareen","e":"golden","c":"adj."},{"ts":1567594312839,"i":7075,"p":"زړه ور","f":"zuRawár","g":"zuRawar","e":"brave, courageous","c":"adj."},{"ts":1527815848,"i":7297,"p":"ژمن","f":"jzman","g":"jzman","e":"dedicated, committed","c":"adj."},{"ts":1527813498,"i":7458,"p":"سپک","f":"spuk","g":"spuk","e":"light; dishonorable, not respectable","c":"adj."},{"ts":1578329248464,"i":7489,"p":"سپین","f":"speen","g":"speen","e":"white (fig. clear, honest, beautiful)","c":"adj."},{"ts":1527811860,"i":7511,"p":"ستر","f":"stur","g":"stur","e":"big, large, great","c":"adj."},{"ts":1527820178,"i":7558,"p":"ستونزمن","f":"stoonzmán","g":"stoonzman","e":"difficult, hard, problematic, fraught with difficulties, tough, awkward","c":"adj."},{"ts":1527815246,"i":7590,"p":"سخت","f":"sakht","g":"sakht","e":"hard, difficult","c":"adj."},{"ts":1527817262,"i":8396,"p":"شنډ","f":"shanD","g":"shanD","e":"barren, sterile, unfruitful, neutralized, diffused","c":"adj."},{"ts":1527813426,"i":8460,"p":"شوم","f":"shoom","g":"shoom","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812625,"i":9046,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},{"ts":1527811846,"i":9869,"p":"کامیاب","f":"kaamyaab","g":"kaamyaab","e":"successful","c":"adj."},{"ts":1527823678,"i":9891,"p":"کاهل","f":"kaahíl","g":"kaahil","e":"lazy, sluggish, stagnant","c":"adj."},{"ts":1527814896,"i":9903,"p":"کبرجن","f":"kaburjun, kibrjun","g":"kaburjun,kibrjun","e":"proud, arrogant","c":"adj."},{"ts":1527813117,"i":10228,"p":"کلک","f":"klak, kluk","g":"klak,kluk","e":"firm, solid, staunch, steadfast, serious, hard, unwavering","c":"adj."},{"ts":1578769492475,"i":10257,"p":"کم","f":"kam","g":"kam","e":"few, little","c":"adj."},{"ts":1578769409512,"i":10289,"p":"کمزور","f":"kamzór","g":"kamzor","e":"weak","c":"adj."},{"ts":1527812639,"i":10712,"p":"ګران","f":"graan","g":"graan","e":"dear, valuable, expensive, difficult","c":"adj."},{"ts":1527816786,"i":10724,"p":"ګرد","f":"gurd","g":"gurd","e":"all, entire, whole, everything; round circular","c":"adj."},{"ts":1527814811,"i":10751,"p":"ګرم","f":"garm, garum","g":"garm,garum","e":"warm, hot","c":"adj."},{"ts":1527817662,"i":10752,"p":"ګرم","f":"gram","g":"gram","e":"guilty, blamed, culprit, culpable","c":"adj."},{"ts":1527812308,"i":10883,"p":"ګڼ","f":"gaN","g":"gaN","e":"thick, dense, heavy, deep, lots","c":"adj."},{"ts":1527813848,"i":11542,"p":"لېوال","f":"lewaal","g":"lewaal","e":"desiring, eager, thirsting, lover","c":"adj."},{"ts":1527816011,"i":11558,"p":"مات","f":"maat","g":"maat","e":"broken, split, defeated","c":"adj."},{"ts":1527812881,"i":11597,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527817007,"i":11635,"p":"مالوم","f":"maaloom","g":"maaloom","e":"known","c":"adj."},{"ts":1527814321,"i":11779,"p":"مثبت","f":"mUsbat","g":"mUsbat","e":"positive; proven","c":"adj."},{"ts":1527811264,"i":11888,"p":"محکوم","f":"mahkoom","g":"mahkoom","e":"condemned, sentenced, criminal; subjugated","c":"adj."},{"ts":1527814802,"i":12040,"p":"مردار","f":"mUrdáar","g":"mUrdaar","e":"foul, unclean, dirty","c":"adj."},{"ts":1527821812,"i":12462,"p":"مغرور","f":"maghróor","g":"maghroor","e":"haughty, arrogant, conceited","c":"adj."},{"ts":1527820222,"i":12561,"p":"ملاست","f":"mlaast","g":"mlaast","e":"lying down, lying","c":"adj."},{"ts":1527814344,"i":12786,"p":"مهم","f":"mUhím","g":"mUhim","e":"important","c":"adj."},{"ts":1527816033,"i":13072,"p":"نادر","f":"naadir","g":"naadir","e":"uncommon","c":"adj."},{"ts":1527815106,"i":13110,"p":"ناست","f":"naast","g":"naast","e":"sitting, seated","c":"adj."},{"ts":1527815127,"i":13260,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},{"ts":1527821673,"i":13471,"p":"نمجن","f":"namjún","g":"namjun","e":"moist, damp, wet","c":"adj."},{"ts":1527815130,"i":14069,"p":"وچ","f":"wuch, wUch","g":"wuch,wUch","e":"dry, land, ground","c":"adj. / n. m."},{"ts":1527817486,"i":14105,"p":"وران","f":"wraan","g":"wraan","e":"ruined, destroyed; destructive, bad, naughty","c":"adj."},{"ts":1527814373,"i":14141,"p":"ورک","f":"wruk","g":"wruk","e":"lost","c":"adj."},{"ts":1527822838,"i":14162,"p":"وروست","f":"wrost","g":"wrost","e":"decayed, spoiled, rotten","c":"adj."},{"ts":1609949334478,"i":14175,"p":"وریت","f":"wreet","g":"wreet","e":"roasted, grilled, barbequed, roast, burnt","c":"adj."},{"ts":1527811544,"i":14299,"p":"ولاړ","f":"waláaR, wuláaR","g":"walaaR,wulaaR","e":"standing","c":"adj."},{"ts":1527815498,"i":14418,"p":"یاد","f":"yaad","g":"yaad","e":"aforementioned","c":"adj."},{"ts":1527815434,"i":14439,"p":"یخ","f":"yakh, yukh","g":"yakh,yukh","e":"cold","c":"n. m. / adj."},{"ts":1568926976497,"i":731,"p":"اکسرې","f":"iksre","g":"iksre","e":"x-ray","c":"n. f."},{"ts":1602179757779,"i":766,"p":"الف بې","f":"alif be","g":"alifbe","e":"alphabet","c":"n. f."},{"ts":1527813840,"i":1142,"p":"ایرې","f":"eere","g":"eere","e":"ashes","c":"n. f. pl.","l":1527813839},{"ts":1527816692,"i":1180,"p":"اینکې","f":"aynake","g":"aynake","e":"glasses, spectacles","c":"n. f. pl."},{"ts":1527819286,"i":2145,"p":"پاشتقې","f":"paashtáqe","g":"paashtake","e":"stairs, steps, staircase","c":"n. f. pl."},{"ts":1527816299,"i":2877,"p":"پیسې","f":"peyse","g":"peyse","e":"money (plural of پېسې)","c":"n. f. pl."},{"ts":1527814529,"i":3332,"p":"تروې","f":"turwe","g":"turwe","e":"buttermilk","c":"n. f. pl."},{"ts":1527816369,"i":3804,"p":"تورسرې","f":"torsăre","g":"torsare","e":"widow, woman","c":"n. f."},{"ts":1577408787088,"i":7447,"p":"سپرې","f":"spre","g":"spre","e":"sprey (as in a medicinal spray)","c":"n. f."},{"ts":1527822255,"i":7483,"p":"سپېدې","f":"spedé","g":"spede","e":"break of dawn, first light of day, sunrise","c":"n. f. pl."},{"ts":1626765107329,"i":8265,"p":"شرې","f":"sharé","g":"share","e":"chickenpox, chicken pox","c":"n. f. pl."},{"ts":1527815008,"i":8433,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."},{"ts":1527822131,"i":8458,"p":"شولې","f":"shole","g":"shole","e":"raw rice, unprocessed rice","c":"n. f. pl."},{"ts":1527815009,"i":8484,"p":"شیدې","f":"sheede","g":"sheede","e":"milk (plural of شيده)","c":"n. f. pl."},{"ts":1527823571,"i":8602,"p":"ښیالمې","f":"xyaalmé","g":"xyaalme","e":"spit, saliva","c":"n. f. pl."},{"ts":1527816530,"i":8615,"p":"ښینې","f":"xeene","g":"xeene","e":"sister in law","c":"n. f."},{"ts":1527823567,"i":11054,"p":"لاړې","f":"laaRe","g":"laaRe","e":"spit, saliva, slobber, slime","c":"n. f. pl."},{"ts":1527822275,"i":11447,"p":"لوښې","f":"looxe","g":"looxe","e":"dishes, pots, pans","c":"n. f. pl."},{"ts":1617443138210,"i":11841,"p":"مچیازې","f":"michyaaze, muchyaaze","g":"michyaaze,muchyaaze","e":"urine, pee, piss","c":"n. f. pl."},{"ts":1527814420,"i":12222,"p":"مستې","f":"maste","g":"maste","e":"yogurt","c":"n. f. pl."},{"ts":1577999538077,"i":13778,"p":"هرې","f":"hire","g":"hire","e":"a sound/cry used to drive sheep on","c":"n. f."},{"ts":1586551382412,"i":14182,"p":"وریژې","f":"wreejze","g":"wreejze","e":"rice","c":"n. f. pl."},{"ts":1527820261,"i":14514,"p":"یوې","f":"yuwe","g":"yuwe","e":"plow, plowing, plough, ploughing","c":"n. f."},{"ts":1527820771,"i":5,"p":"آباداني","f":"aabaadaanee","g":"aabaadaanee","e":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","c":"n. f."},{"ts":1527813939,"i":54,"p":"آزادي","f":"aazaadee","g":"aazaadee","e":"freedom, independence","c":"n. f."},{"ts":1527818402,"i":159,"p":"اتلولي","f":"atalwalée","g":"atalwalee","e":"championship; courage","c":"n. f."},{"ts":1527814060,"i":476,"p":"اساني","f":"asaanee","g":"asaanee","e":"ease","c":"n. f."},{"ts":1527821293,"i":799,"p":"امادګي","f":"amaadagee","g":"amaadagee","e":"preparation, readiness, planning","c":"n. f."},{"ts":1527819502,"i":1213,"p":"باچهي","f":"baachahee","g":"baachahee","e":"kingship, kingdom, rule, throne, authority","c":"n. f."},{"ts":1527820035,"i":1218,"p":"باداري","f":"baadaaree","g":"baadaaree","e":"dominion, holding sway over someone","c":"n. f."},{"ts":1527817732,"i":1384,"p":"بدبختي","f":"badbakhtee","g":"badbakhtee","e":"misfortune, difficulty","c":"n. f."},{"ts":1588786872582,"i":1417,"p":"بدنامي","f":"badnaamee","g":"badnaamee","e":"shame, disrepute, dishonour","c":"n. f."},{"ts":1573682378816,"i":2069,"p":"بیماري","f":"beemaaree","g":"beemaaree","e":"sickness, illness","c":"n. f."},{"ts":1527816817,"i":2157,"p":"پاکوالي","f":"paakwaalee","g":"paakwaalee","e":"cleanliness, hygiene","c":"n. f."},{"ts":1586204619186,"i":2360,"p":"پرهېزګاري","f":"parhezgaaree","g":"parhezgaaree","e":"righteousness, abstinence, self-control","c":"n. f."},{"ts":1584444376984,"i":2517,"p":"پلارواکي","f":"plaarwaakee","g":"plaarwaakee","e":"patriarchy","c":"n. f."},{"ts":1527818744,"i":3282,"p":"ترکاڼي","f":"tarkaaNee","g":"tarkaaNee","e":"carpentry","c":"n. f."},{"ts":1527815337,"i":3393,"p":"تسلي","f":"tasallee","g":"tasallee","e":"consolation, comfort, satisfaction","c":"n. f."},{"ts":1527819521,"i":5775,"p":"خوشالي","f":"khoshaalee","g":"khoshaalee","e":"happiness (خوشحالي)","c":"n. f."},{"ts":1527818037,"i":5780,"p":"خوشبختي","f":"khooshbakhtee","g":"khooshbakhtee","e":"good fortune, good luck, hapiness","c":"n. f."},{"ts":1527815914,"i":5783,"p":"خوشبیني","f":"khooshbeenee","g":"khooshbeenee","e":"optimism","c":"n. f."},{"ts":1527811877,"i":6295,"p":"دوستي","f":"dostee","g":"dostee","e":"friendship","c":"n. f."},{"ts":1527818019,"i":6300,"p":"دوکانداري","f":"dookaandaaree","g":"dookaandaaree","e":"shopkeeping, retail store selling","c":"n. f."},{"ts":1527822080,"i":6352,"p":"دېموکراسي","f":"demokraasee","g":"demokraasee","e":"democracy","c":"n. f."},{"ts":1527813462,"i":10615,"p":"کیلي","f":"keelee","g":"keelee","e":"key","c":"n. f."},{"ts":1527814492,"i":10655,"p":"ګاوداري","f":"gaawdaaree","g":"gaawdaaree","e":"cattle farming","c":"n. f."},{"ts":1610013679820,"i":14159,"p":"ورورولي","f":"wrorwalée","g":"wrorwalee","e":"brotherhood","c":"n. f."},{"ts":1527821971,"i":1711,"p":"بن","f":"bun","g":"bun","e":"second wife of own husband","c":"n. f."},{"ts":1527816397,"i":3321,"p":"ترور","f":"tror","g":"tror","e":"aunt","c":"n. f. anim.","ppp":"تریندې","ppf":"treynde"},{"ts":1578704593901,"i":3694,"p":"تندار","f":"tandaar","g":"tandaar","e":"aunt (paternal uncle's wife)","c":"n. f."},{"ts":1527812785,"i":5722,"p":"خور","f":"khor","g":"khor","e":"sister","c":"n. f. irreg. anim.","ppp":"خویندې","ppf":"khweynde"},{"ts":1527812861,"i":11412,"p":"لور","f":"loor","g":"loor","e":"daughter","c":"n. f. anim.","ppp":"لوڼې","ppf":"looNe"},{"ts":1527812928,"i":12838,"p":"مور","f":"mor","g":"mor","e":"mother, mom","c":"n. f. anim.","ppp":"میندې, میېندې","ppf":"méynde, myénde"},{"ts":1527812912,"i":12953,"p":"مېرمن","f":"mermán","g":"merman","e":"lady, woman, wife","c":"n. f."},{"ts":1527816476,"i":12959,"p":"مېرېنۍ خور","f":"merenuy khor","g":"merenuykhor","e":"stepsister, half sister","c":"n. f."},{"ts":1527823521,"i":13298,"p":"نږور","f":"nGor","g":"ngor","e":"daughter-in-law","c":"n. f. anim.","ppp":"نږیندې","ppf":"nGeynde"},{"ts":1527816350,"i":14149,"p":"ورندار","f":"wrundaar","g":"wrundaar","e":"brothers wife, sister-in-law","c":"n. f."},{"ts":1527816485,"i":14494,"p":"یور","f":"yor","g":"yor","e":"wife of husbands brother, wife of brother-in-law","c":"n. f. anim.","ppp":"یوڼې","ppf":"yóoNe"},{"ts":1527821817,"i":718,"p":"اکا","f":"akáa","g":"akaa","e":"uncle (paternal)","c":"n. m."},{"ts":1527816411,"i":1190,"p":"بابا","f":"baabaa","g":"baabaa","e":"father, grandfather (vocative or in child's speech)","c":"n. m."},{"ts":1527819439,"i":1212,"p":"باچا","f":"baacháa","g":"baachaa","e":"king, ruler, president, padishah","c":"n. m."},{"ts":1527823298,"i":1260,"p":"باښه","f":"baaxá","g":"baaxa","e":"sparrow-hawk, eagle","c":"n. f."},{"ts":1527817718,"i":1724,"p":"بنده","f":"bandá","g":"banda","e":"slave, servant, a human, person (as in a slave of God)","c":"n. m."},{"ts":1527815031,"i":1729,"p":"بندي","f":"bandee","g":"bandee","e":"prisoner, captive","c":"n. m."},{"ts":1527815142,"i":2106,"p":"پاچا","f":"paachaa","g":"paachaa","e":"king","c":"n. m."},{"ts":1527817280,"i":4285,"p":"جذامي","f":"jUzaamee","g":"jUzaamee","e":"leper","c":"n. m."},{"ts":1527814236,"i":4773,"p":"چرسي","f":"charsee","g":"charsee","e":"pot smoker, pothead, someone addicted to marijuana, pot, hash","c":"n. m."},{"ts":1578618561154,"i":5178,"p":"حاجي","f":"haajee","g":"haajee","e":"Haji, someone who has gone on the Hajj","c":"n. m."},{"ts":1527821193,"i":5200,"p":"حامي","f":"haamee","g":"haamee","e":"supporter, protector, defender, patron, saviour","c":"n. m."},{"ts":1591711877815,"i":6265,"p":"دوبي","f":"dobée","g":"dobee","e":"washerman, someone who does the laundry","c":"n. m."},{"ts":1527820139,"i":6665,"p":"ربابي","f":"rabaabee","g":"rabaabee","e":"rabab player, rubab player","c":"n. m."},{"ts":1619278755267,"i":6668,"p":"ربړنه","f":"rabaRúna","g":"rabaRuna","e":"troubling, pestering","c":"n. f."},{"ts":1577066022588,"i":7378,"p":"ساقي","f":"saaqée","g":"saakee","e":"cupbearer, butler, bartender, alchohol maker","c":"n. m."},{"ts":1527822817,"i":7435,"p":"سپاهي","f":"sipaahee","g":"sipaahee","e":"soldier, warrior, guard","c":"n. m."},{"ts":1527812975,"i":7804,"p":"سلماني","f":"salmaanee","g":"salmaanee","e":"barber, hairdresser","c":"n. m."},{"ts":1527819414,"i":8153,"p":"شاهزاده","f":"shaahzaadá","g":"shaahzaada","e":"prince","c":"n. m."},{"ts":1527818084,"i":8225,"p":"شرابي","f":"sharaabee","g":"sharaabee","e":"drinker, drunkard, alcoholic, wine-bibber","c":"n. m."},{"ts":1527821950,"i":8410,"p":"شهزاده","f":"shahzaadá","g":"shahzaada","e":"prince","c":"n. m."},{"ts":1588158828142,"i":8551,"p":"ښکاري","f":"xkaaree","g":"xkaaree","e":"hunter","c":"n. m."},{"ts":1527815206,"i":9579,"p":"قاضي","f":"qaazee","g":"kaazee","e":"judge, religious authority/judge","c":"n. m."},{"ts":1527818500,"i":9636,"p":"قراردادي","f":"qaraardaadee","g":"karaardaadee","e":"contractor, supplier","c":"n. m."},{"ts":1527816446,"i":9850,"p":"کاکا","f":"kaakaa","g":"kaakaa","e":"paternal uncle, term of address for elderly man","c":"n. m."},{"ts":1595232159907,"i":10678,"p":"ګدا","f":"gadáa","g":"gadaa","e":"begger, panhandler","c":"n. m."},{"ts":1527816512,"i":11097,"p":"لالا","f":"laalaa","g":"laalaa","e":"elder brother, general form of familiar and respectful address","c":"n. m."},{"ts":1527812878,"i":11642,"p":"ماما","f":"maamaa","g":"maamaa","e":"uncle (maternal), respectful form of address","c":"n. m."},{"ts":1610556640847,"i":12044,"p":"مردمشماري","f":"mărdamshUmaaree","g":"mardamshUmaaree","e":"census","c":"n. f."},{"ts":1527815484,"i":12552,"p":"ملا","f":"mUllaa","g":"mUllaa","e":"mullah, priest","c":"n. m."},{"ts":1527821714,"i":12799,"p":"موازي","f":"mUwaazée","g":"mUwaazee","e":"parallel, matching, appropriate, identical","c":"adj."},{"ts":1527816514,"i":12829,"p":"موچي","f":"mochee","g":"mochee","e":"shoemaker, shoe repairman, cobbler","c":"n. m."},{"ts":1527823093,"i":13215,"p":"نبي","f":"nabee","g":"nabee","e":"prophet","c":"n. m. anim.","app":"انبیا","apf":"ambiyáa"},{"ts":1579041957559,"i":13252,"p":"ندا","f":"nadáa","g":"nadaa","e":"call, appeal, shout, summoning","c":"n. f."},{"ts":1527816253,"i":13546,"p":"نواسه","f":"nawaasa","g":"nawaasa","e":"grandson","c":"n. m."},{"ts":1527819971,"i":14049,"p":"والي","f":"waalée","g":"waalee","e":"governor","c":"n. m."},{"ts":1527818948,"i":173,"p":"اټسکی","f":"aTúskey","g":"aTuskey","e":"sneezing, sneeze","c":"n. m."},{"ts":1573681135691,"i":349,"p":"اربکی","f":"arbakéy","g":"arbakey","e":"tribal constable, tribal offical with police powers","c":"n. m."},{"ts":1573659054031,"i":365,"p":"ارتوالی","f":"artwáaley, aratwáaley","g":"artwaaley,aratwaaley","e":"width, spaciousness","c":"n. m."},{"ts":1527811890,"i":455,"p":"ازغی","f":"azghéy","g":"azghey","e":"thorn, prickle","c":"n. m."},{"ts":1527817036,"i":486,"p":"استازی","f":"astáazey","g":"astaazey","e":"representative, envoy, ambassador, commissioner","c":"n. m."},{"ts":1527816982,"i":535,"p":"استوګنځی","f":"astogundzéy","g":"astogundzey","e":"residence, dwelling; hostel, dormitory","c":"n. m."},{"ts":1527818489,"i":562,"p":"اسوېلی","f":"aswéley","g":"asweley","e":"yawn, sigh, deep breath, shivering","c":"n. m."},{"ts":1527822497,"i":990,"p":"اننګی","f":"anangéy","g":"anangey","e":"cheek","c":"n. m."},{"ts":1527821967,"i":1010,"p":"اوبسپی","f":"obspéy","g":"obspey","e":"beaver, seal","c":"n. m."},{"ts":1527822190,"i":1035,"p":"اور غالی","f":"orgháaley","g":"orghaaley","e":"stove, oven, furnace, hearth, floor of a fireplace","c":"n. m."},{"ts":1527821545,"i":1049,"p":"اورشیندی","f":"orsheendéy","g":"orsheendey","e":"volcano","c":"n. m."},{"ts":1527819192,"i":1051,"p":"اورګاډی","f":"orgáaDey","g":"orgaaDey","e":"train","c":"n. m."},{"ts":1527815585,"i":1065,"p":"اوړی","f":"óRey","g":"oRey","e":"summer","c":"n. m."},{"ts":1623044357441,"i":1330,"p":"ببوتنکی","f":"bubootúnkey","g":"bubootunkey","e":"tuft, clump, shock of hair","c":"n. m."},{"ts":1527821668,"i":1356,"p":"بڅری","f":"batsúrey","g":"batsurey","e":"spark, speck, flicker","c":"n. m."},{"ts":1527821239,"i":1439,"p":"بډوری","f":"baDóorey","g":"baDoorey","e":"kidney","c":"n. m."},{"ts":1527821099,"i":1504,"p":"برغوږی","f":"barghwáGey","g":"barghwagey","e":"earring","c":"n. m."},{"ts":1527822629,"i":1505,"p":"برغولی","f":"barghóley","g":"bargholey","e":"lid, cover","c":"n. m."},{"ts":1527811903,"i":1547,"p":"بری","f":"baréy","g":"barey","e":"success, victory","c":"n. m."},{"ts":1594904072731,"i":1744,"p":"بنګړی","f":"bangRéy","g":"bangRey","e":"bracelet","c":"n. m."},{"ts":1527817159,"i":1795,"p":"بوټی","f":"bóoTey","g":"booTey","e":"plant","c":"n. m."},{"ts":1527815055,"i":1824,"p":"بوږنوړی","f":"boGnwaRey","g":"bognwaRey","e":"terrible","c":"adj."},{"ts":1610618917483,"i":2167,"p":"پالنځی","f":"paalundzéy","g":"paalundzey","e":"orphanage, nursery","c":"n. m."},{"ts":1527814666,"i":2193,"p":"پای ټکی","f":"paayTákey","g":"paayTakey","e":"final point, end point","c":"n. m."},{"ts":1527816195,"i":2236,"p":"پټکی","f":"paTkéy","g":"paTkey","e":"small turban","c":"n. m."},{"ts":1527811611,"i":2242,"p":"پټی","f":"paTéy","g":"paTey","e":"field, place where crops are sown","c":"n. m."},{"ts":1588762458105,"i":2263,"p":"پخلنځی","f":"pukhlandzéy","g":"pukhlandzey","e":"kitchen","c":"n. m."},{"ts":1527816059,"i":2264,"p":"پخلی","f":"pakhléy","g":"pakhley","e":"cooking, preparation of food; wisdom, maturity","c":"n. m."},{"ts":1527821241,"i":2332,"p":"پرګی","f":"purgéy, pirgéy","g":"purgey,pirgey","e":"acorn","c":"n. m."},{"ts":1527813812,"i":2426,"p":"پړونی","f":"paRóoney","g":"paRooney","e":"veil, covering for women, cover","c":"n. m."},{"ts":1527822385,"i":2427,"p":"پړی","f":"púRey","g":"puRey","e":"rope, cable, cord","c":"n. m."},{"ts":1527812980,"i":2441,"p":"پس پسی","f":"puspuséy","g":"puspusey","e":"whispering, murmuring, rumor, gossip","c":"n. m."},{"ts":1527814005,"i":2457,"p":"پسرلی","f":"psarléy, pusărléy","g":"psarley,pusarley","e":"spring, springtime (season)","c":"n. m."},{"ts":1527821229,"i":2488,"p":"پښتورګی","f":"paxtawúrgey","g":"paxtawurgey","e":"kidney","c":"n. m."},{"ts":1527817035,"i":2527,"p":"پلاوی","f":"pláawey","g":"plaawey","e":"delegation, delegate, mission","c":"n. m."},{"ts":1527815187,"i":2739,"p":"پوزی","f":"pozéy","g":"pozey","e":"mat","c":"n. m."},{"ts":1527816627,"i":2743,"p":"پوستکی","f":"postukéy","g":"postukey","e":"fleece, pelt, skin, shell, rind, bark; ear lobe","c":"n. m."},{"ts":1527819332,"i":2754,"p":"پوښتورګی","f":"pooxtawúrgey","g":"pooxtawurgey","e":"kidney","c":"n. m."},{"ts":1527819496,"i":2776,"p":"پوهاوی","f":"pohaawéy","g":"pohaawey","e":"understanding, comprehension","c":"n. m."},{"ts":1527815168,"i":2811,"p":"پېټی","f":"peTéy","g":"peTey","e":"load, weight, burden","c":"n. m."},{"ts":1527815927,"i":2857,"p":"پېرونکی","f":"peróonkey","g":"peroonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527815017,"i":2859,"p":"پېروی","f":"perúwey, peráwey","g":"peruwey,perawey","e":"cream","c":"n. m."},{"ts":1527815325,"i":3028,"p":"تاوتریخوالی","f":"taawtreekhwáaley","g":"taawtreekhwaaley","e":"violence","c":"n. m."},{"ts":1611397750325,"i":3034,"p":"تاوی","f":"taawéy","g":"taawey","e":"screwdriver, screw","c":"n. m."},{"ts":1622374978659,"i":3058,"p":"تبرګی","f":"tubúrgey","g":"tuburgey","e":"hatchet","c":"n. m."},{"ts":1527818705,"i":3142,"p":"تخرګی","f":"tkhurgéy","g":"tkhurgey","e":"gusset (in a shirt)","c":"n. m."},{"ts":1527814392,"i":3370,"p":"تړونی","f":"taRóoney","g":"taRooney","e":"band, bandage","c":"n. m."},{"ts":1527822723,"i":3431,"p":"تشی","f":"túshey","g":"tushey","e":"empty space, void, side, groin","c":"n. m."},{"ts":1577585114379,"i":3634,"p":"تلی","f":"táley","g":"taley","e":"sole (of a shoe); yard, compound; palm","c":"n. m."},{"ts":1527816630,"i":3708,"p":"تندی","f":"tandéy","g":"tandey","e":"forehead, brow, slope","c":"n. m."},{"ts":1527821980,"i":3745,"p":"تڼی","f":"taNéy","g":"taNey","e":"bellyband (of a harness)","c":"n. m."},{"ts":1527819719,"i":3814,"p":"توری","f":"tórey","g":"torey","e":"spleen","c":"n. m."},{"ts":1527819721,"i":3815,"p":"توری","f":"toréy","g":"torey","e":"letter, letter of the alphabet","c":"n. m."},{"ts":1527819622,"i":3840,"p":"توغندی","f":"toghandéy","g":"toghandey","e":"rocket, missile","c":"n. m."},{"ts":1527814705,"i":3868,"p":"توکی","f":"tókey","g":"tokey","e":"element, item, material; thing, material, kind, type","c":"n. m."},{"ts":1527819563,"i":4042,"p":"ټکری","f":"TUkréy","g":"TUkrey","e":"piece, small piece; a length (of cloth); blanket","c":"n. m."},{"ts":1577408381145,"i":4043,"p":"ټکری","f":"Tikréy","g":"Tikrey","e":"shawl, head-covering","c":"n. m."},{"ts":1527814667,"i":4055,"p":"ټکی","f":"Tákey","g":"Takey","e":"word; point; dot","c":"n. m."},{"ts":1527813617,"i":4161,"p":"ټیکری","f":"Teekréy","g":"Teekrey","e":"shawl, head covering","c":"n. m."},{"ts":1527819733,"i":4584,"p":"ځلمی","f":"dzalméy","g":"dzalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527815465,"i":4672,"p":"چارواکی","f":"chaarwáakey","g":"chaarwaakey","e":"official authority, official, authority","c":"n. m. anim. unisex"},{"ts":1527822356,"i":4860,"p":"چنجی","f":"chinjéy","g":"chinjey","e":"worm, small insect","c":"n. m."},{"ts":1527822808,"i":4878,"p":"چنی","f":"chanéy","g":"chaney","e":"basin, bowl","c":"n. m."},{"ts":1527822357,"i":4979,"p":"چینجی","f":"cheenjéy","g":"cheenjey","e":"worm, small insect","c":"n. m."},{"ts":1527819046,"i":4991,"p":"څاڅکی","f":"tsáatskey","g":"tsaatskey","e":"drop","c":"n. m."},{"ts":1527817874,"i":5063,"p":"څرنګوالی","f":"tsurangwáaley","g":"tsurangwaaley","e":"quality, nature","c":"n. m."},{"ts":1527814041,"i":5068,"p":"څړمنی","f":"tsaRmúney","g":"tsaRmuney","e":"spring (season)","c":"n. m."},{"ts":1573055311846,"i":5403,"p":"خبرداری","f":"khabardáarey","g":"khabardaarey","e":"warning, notice, alarm","c":"n. m."},{"ts":1527820324,"i":5444,"p":"خټکی","f":"khaTakéy","g":"khaTakey","e":"melon","c":"n. m."},{"ts":1527819828,"i":6051,"p":"درناوی","f":"dranaawéy","g":"dranaawey","e":"weight; respect, honour","c":"n. m."},{"ts":1588161660483,"i":6389,"p":"ډانګوری","f":"Daangooréy","g":"Daangoorey","e":"crutch, walking-stick, cane","c":"n. m."},{"ts":1527819732,"i":7110,"p":"زلمی","f":"zalméy","g":"zalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527813708,"i":7241,"p":"زېری","f":"zérey","g":"zerey","e":"good news, gospel","c":"n. m."},{"ts":1588758498458,"i":7246,"p":"زېړی","f":"zeRéy","g":"zeRey","e":"jaundice","c":"n. m."},{"ts":1571626392709,"i":7250,"p":"زېږنځی","f":"zeGundzéy","g":"zegundzey","e":"birthplace","c":"n. m."},{"ts":1527815698,"i":7301,"p":"ژمی","f":"jzúmey, jzímey","g":"jzumey,jzimey","e":"winter","c":"n. m."},{"ts":1573686563723,"i":7324,"p":"ژی","f":"jzey","g":"jzey","e":"wineskin, bagpipe, skin for carrying liquid","c":"n. m."},{"ts":1527815239,"i":7349,"p":"ساتېری","f":"saatérey","g":"saaterey","e":"entertainment, fun, recreation","c":"n. m."},{"ts":1527813725,"i":7365,"p":"ساری","f":"sáarey","g":"saarey","e":"equal, equivalent, match, precedent","c":"n. m."},{"ts":1527814021,"i":7444,"p":"سپرلی","f":"sparléy","g":"sparley","e":"spring (season)","c":"n. m."},{"ts":1527813509,"i":7459,"p":"سپکاوی","f":"spukaawéy","g":"spukaawey","e":"insult, disgrace, defamation, disrespect","c":"n. m."},{"ts":1527815298,"i":7497,"p":"سپیناوی","f":"speenaawéy","g":"speenaawey","e":"clarification, attestation","c":"n. m."},{"ts":1578002674551,"i":7515,"p":"سترغلی","f":"sturghúley","g":"sturghuley","e":"eye-socket, eyelid; orbit","c":"n. m."},{"ts":1527811999,"i":7550,"p":"ستوری","f":"stórey","g":"storey","e":"star","c":"n. m."},{"ts":1527817001,"i":7561,"p":"ستونی","f":"stóoney","g":"stooney","e":"throat, larynx","c":"n. m."},{"ts":1527813511,"i":7661,"p":"سرخوږی","f":"sărkhooGéy, sărkhwuGéy","g":"sarkhoogey,sarkhwugey","e":"headache, trouble","c":"n. m."},{"ts":1527815251,"i":7736,"p":"سړی","f":"saRéy","g":"saRey","e":"man","c":"n. m.","ec":"man","ep":"men"},{"ts":1527819850,"i":7744,"p":"سږی","f":"súGey","g":"sugey","e":"lung","c":"n. m."},{"ts":1527812302,"i":7958,"p":"سوری","f":"sooréy","g":"soorey","e":"hole, slit, opening","c":"n. m."},{"ts":1527818221,"i":8028,"p":"سوی","f":"swey","g":"swey","e":"burning, zeal, fervour","c":"n. m."},{"ts":1527812304,"i":8106,"p":"سیوری","f":"syórey, syóorey","g":"syorey,syoorey","e":"shade, shadow","c":"n. m."},{"ts":1527815268,"i":8480,"p":"شی","f":"shey","g":"shey","e":"thing","c":"n. m.","ppp":"شیان، شیونه","ppf":"sheyáan, sheyóona"},{"ts":1527822527,"i":8540,"p":"ښتګری","f":"xatgaréy","g":"xatgarey","e":"ankle, ankle-bone","c":"n. m."},{"ts":1527812793,"i":8591,"p":"ښوونځی","f":"xowundzéy","g":"xowundzey","e":"school","c":"n. m."},{"ts":1527821064,"i":8596,"p":"ښویکی","f":"xwayakéy","g":"xwayakey","e":"a quick, clever, agile, bright man; a swindler, a fraud","c":"n. m."},{"ts":1527822650,"i":9050,"p":"غټوالی","f":"ghaTwáaley","g":"ghaTwaaley","e":"size, largeness, bigness","c":"n. m."},{"ts":1527814569,"i":9116,"p":"غړی","f":"ghúRey","g":"ghuRey","e":"member","c":"n. m."},{"ts":1527817627,"i":9136,"p":"غشی","f":"ghúshey","g":"ghushey","e":"arrow","c":"n. m."},{"ts":1527822913,"i":9192,"p":"غمی","f":"ghaméy","g":"ghamey","e":"precious stone, precious stone in a signet ring","c":"n. m."},{"ts":1527816181,"i":9754,"p":"قی","f":"qey","g":"key","e":"vomit, nausea (Arabic)","c":"n. m."},{"ts":1527814715,"i":9814,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},{"ts":1527823295,"i":9889,"p":"کاڼی","f":"káaNey","g":"kaaNey","e":"stone, rock","c":"n. m."},{"ts":1527818563,"i":9908,"p":"کبوړی","f":"kabóoRey","g":"kabooRey","e":"muscle","c":"n. m."},{"ts":1527822824,"i":9922,"p":"کتاب ګوټی","f":"kitaabgóTey","g":"kitaabgoTey","e":"booklet, notebook","c":"n. m."},{"ts":1582388629980,"i":10144,"p":"کسی","f":"kúsey","g":"kusey","e":"pupil (of an eye)","c":"n. m."},{"ts":1594906790729,"i":10209,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527812836,"i":10249,"p":"کلی","f":"kúley, kíley","g":"kuley,kiley","e":"village","c":"n. m."},{"ts":1610616852625,"i":10361,"p":"کنګرېزی","f":"kangrezéy","g":"kangrezey","e":"echo","c":"n. m."},{"ts":1527819196,"i":10634,"p":"ګاډی","f":"gáaDey","g":"gaaDey","e":"car, train","c":"n. m."},{"ts":1579016593220,"i":10881,"p":"ګنی","f":"ganéy","g":"ganey","e":"beehive; wasps' nest","c":"n. m."},{"ts":1527819076,"i":10929,"p":"ګوډاګی","f":"gooDaagéy","g":"gooDaagey","e":"doll, puppet","c":"n. m."},{"ts":1527822505,"i":10985,"p":"ګومبوری","f":"goombooréy","g":"goomboorey","e":"cheek","c":"n. m."},{"ts":1527819079,"i":11077,"p":"لاسپوڅی","f":"laaspotséy","g":"laaspotsey","e":"puppet","c":"n. m."},{"ts":1573149568665,"i":11080,"p":"لاسرسی","f":"laasraséy","g":"laasrasey","e":"access, availability","c":"n. m."},{"ts":1527817464,"i":11177,"p":"لرګی","f":"largéy","g":"largey","e":"wood, timber","c":"n. m."},{"ts":1527822801,"i":11222,"p":"لستوڼی","f":"lastóNey","g":"lastoNey","e":"sleeve","c":"n. m."},{"ts":1527814401,"i":11385,"p":"لوبونی","f":"lobawúney","g":"lobawuney","e":"toy","c":"n. m."},{"ts":1527814519,"i":11417,"p":"لوری","f":"lórey","g":"lorey","e":"side, direction","c":"n. m."},{"ts":1527823103,"i":11500,"p":"لیدلوری","f":"leedlórey","g":"leedlorey","e":"perspective, viewpoint","c":"n. m."},{"ts":1527819920,"i":11601,"p":"ماشی","f":"máashey","g":"maashey","e":"mosquito, midge","c":"n. m."},{"ts":1527820224,"i":11839,"p":"مچوژی","f":"muchwajzéy","g":"muchwajzey","e":"fly swatter","c":"n. m."},{"ts":1527817770,"i":12141,"p":"مړی","f":"múRey","g":"muRey","e":"dead body, corpse","c":"n. m."},{"ts":1527813189,"i":12764,"p":"منی","f":"máney","g":"maney","e":"fall, autumn","c":"n. m."},{"ts":1527812421,"i":12971,"p":"مېږی","f":"meGéy","g":"megey","e":"ant","c":"n. m."},{"ts":1527819227,"i":13333,"p":"نشتوالی","f":"nashtwáaley","g":"nashtwaaley","e":"lack, absence","c":"n. m."},{"ts":1527823577,"i":13621,"p":"نیالګی","f":"niyaalgéy","g":"niyaalgey","e":"sapling, seedling, sprout, young tree","c":"n. m."},{"ts":1527812073,"i":13757,"p":"هډوکی","f":"haDóokey","g":"haDookey","e":"bone","c":"n. m."},{"ts":1527812668,"i":13770,"p":"هرکلی","f":"hărkáley","g":"harkaley","e":"welcome","c":"n. m."},{"ts":1588153218244,"i":13794,"p":"هسکوالی","f":"haskwáaley","g":"haskwaaley","e":"height, elevation, tallness","c":"n. m."},{"ts":1585309922022,"i":14046,"p":"والګی","f":"waalgéy","g":"waalgey","e":"flu, respiratory illness, influenza, cold","c":"n. m."},{"ts":1527821465,"i":14323,"p":"ولی","f":"wuléy","g":"wuley","e":"shoulder","c":"n. m."},{"ts":1527822004,"i":33,"p":"آخرینی","f":"aakhireenéy","g":"aakhireeney","e":"last, final, latest","c":"adj."},{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},{"ts":1612616237182,"i":2154,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},{"ts":1527813400,"i":1083,"p":"اوسنی","f":"oosanéy","g":"oosaney","e":"current, present","c":"adj."},{"ts":1527815661,"i":1102,"p":"اولنی","f":"awwalunéy","g":"awwaluney","e":"first, beginning","c":"adj."},{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527816646,"i":1779,"p":"بهرنی","f":"baharanéy, bahranéy","g":"baharaney,bahraney","e":"foreigner, foreign; outside, outer","c":"adj."},{"ts":1527818769,"i":2021,"p":"بېړنی","f":"beRanéy","g":"beRaney","e":"emergency","c":"adj."},{"ts":1592382613021,"i":2271,"p":"پخوانی","f":"pakhwaanéy","g":"pakhwaaney","e":"old, ancient, previous, former","c":"adj."},{"ts":1527819532,"i":2310,"p":"پردی","f":"pradéy, prudéy","g":"pradey,prudey","e":"foreign, unrelated, another('s)","c":"adj."},{"ts":1577381894391,"i":2349,"p":"پرنګی","f":"parangéy","g":"parangey","e":"Englishman, Westerner, foreigner","c":"n. m. unisex / adj."},{"ts":1527820194,"i":2522,"p":"پلانکی","f":"pulaankéy","g":"pulaankey","e":"so-and-so, such-and-such, ambiguous pronoun (فلان)","c":"adj. / n. m. anim. unisex"},{"ts":1527820130,"i":2562,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex"},{"ts":1582390092514,"i":2718,"p":"پورتنی","f":"portinéy","g":"portiney","e":"upper, above","c":"adj."},{"ts":1610617741649,"i":4605,"p":"ځنډنی","f":"dzanDanéy, dzanDunéy","g":"dzanDaney,dzanDuney","e":"old, ancient","c":"adj."},{"ts":1610793723568,"i":4972,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},{"ts":1527819362,"i":5766,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},{"ts":1590052667427,"i":6018,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},{"ts":1527822854,"i":6978,"p":"ړومبی","f":"Roombéy","g":"Roombey","e":"first, before","c":"adj."},{"ts":1527820213,"i":7119,"p":"زمری","f":"zmaréy","g":"zmarey","e":"lion","c":"n. m. anim. unisex"},{"ts":1527813923,"i":7321,"p":"ژوندی","f":"jzwundéy","g":"jzwundey","e":"living","c":"adj."},{"ts":1527815299,"i":7473,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},{"ts":1527820788,"i":8526,"p":"ښارنی","f":"xaaranéy","g":"xaaraney","e":"city, urban","c":"adj."},{"ts":1527812822,"i":10426,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small","c":"adj."},{"ts":1527823742,"i":10428,"p":"کوچی","f":"kochéy","g":"kochey","e":"migratory, nomadic","c":"adj."},{"ts":1527818765,"i":10786,"p":"ګړندی","f":"guRandéy","g":"guRandey","e":"speedy, high speed, fast, quick","c":"adj."},{"ts":1527819130,"i":10818,"p":"ګلالی","f":"gUlaaléy","g":"gUlaaley","e":"pretty, beautiful, lovely, cute, sweet","c":"adj."},{"ts":1576101261017,"i":10878,"p":"ګنګی","f":"gUngéy, gangéy","g":"gUngey,gangey","e":"mute, dumb (person)","c":"n. m. anim. unisex / adj."},{"ts":1582316583262,"i":11121,"p":"لاندینی","f":"laandeenéy","g":"laandeeney","e":"lower, bottom","c":"adj."},{"ts":1527816249,"i":11320,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527813472,"i":11463,"p":"لومړنی","f":"loomRanéy","g":"loomRaney","e":"first","c":"adj."},{"ts":1527813132,"i":11465,"p":"لومړی","f":"loomRéy","g":"loomRey","e":"first","c":"adj."},{"ts":1527819910,"i":11745,"p":"متلی","f":"mutléy","g":"mutley","e":"slippery, smooth","c":"adj."},{"ts":1527820414,"i":12678,"p":"منځنی","f":"mandzunéy","g":"mandzuney","e":"middle, central","c":"adj."},{"ts":1527811202,"i":12925,"p":"میاشتنی","f":"miyaashtanéy","g":"miyaashtaney","e":"monthly","c":"adj."},{"ts":1527819320,"i":13273,"p":"نری","f":"naréy","g":"narey","e":"thin; mild; high (pitch)","c":"adj."},{"ts":1527816251,"i":13476,"p":"نمسی","f":"nmaséy","g":"nmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527821373,"i":13940,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},{"ts":1527813636,"i":14169,"p":"وروستی","f":"wroostéy","g":"wroostey","e":"last, latest, recent","c":"adj."},{"ts":1527815430,"i":14486,"p":"یوازنی","f":"yawaazunéy","g":"yawaazuney","e":"only, unique, sole","c":"adj."},{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},{"ts":1527813469,"i":1368,"p":"بخښونکی","f":"bakhxóonkey","g":"bakhxoonkey","e":"forgiving","c":"adj."},{"ts":1527817829,"i":2725,"p":"پوروړی","f":"porwáRey, porawúRey","g":"porwaRey,porawuRey","e":"debtor, in debt","c":"n. m. anim. unisex"},{"ts":1527815205,"i":2803,"p":"پیاوړی","f":"pyaawáRey","g":"pyaawaRey","e":"powerful, strong, great","c":"adj."},{"ts":1527815924,"i":2856,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527819604,"i":3348,"p":"ترینګلی","f":"treengúley","g":"treenguley","e":"tense, stern, grim, sour, moody (person)","c":"adj."},{"ts":1527813406,"i":3358,"p":"تړلی","f":"taRuley","g":"taRuley","e":"bound, tied, closed","c":"adj."},{"ts":1527815381,"i":3377,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},{"ts":1527817607,"i":3794,"p":"تور مخی","f":"tormúkhey","g":"tormukhey","e":"disgraceful, shameful, dishonered","c":"adj."},{"ts":1527822859,"i":5022,"p":"څپولی","f":"tsapoley","g":"tsapoley","e":"dishevelled, messy, curly (with hair etc.)","c":"adj."},{"ts":1527811466,"i":5169,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},{"ts":1527812377,"i":5283,"p":"حکم منونکی","f":"hUkum munóonkey","g":"hUkummunoonkey","e":"obedient, submissive","c":"adj."},{"ts":1527817299,"i":5327,"p":"حیرانوونکی","f":"heyraanawóonkey","g":"heyraanawoonkey","e":"amazing, surprising","c":"adj."},{"ts":1527813282,"i":5500,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},{"ts":1527812809,"i":5669,"p":"خوار ځواکی","f":"khwaar dzwáakey","g":"khwaardzwaakey","e":"malnourished, underfed","c":"adj."},{"ts":1591871233587,"i":5756,"p":"خوږژبی","f":"khoGjzubey","g":"khogjzubey","e":"well-spoken","c":"adj."},{"ts":1527814118,"i":6007,"p":"دردوونکی","f":"dărdawóonkey","g":"dardawoonkey","e":"painful, hurtful, agonizing","c":"adj."},{"ts":1527820657,"i":6099,"p":"درېیمګړی","f":"dre`yamgúRey","g":"dreyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1527815713,"i":6574,"p":"راتلونکی","f":"raatlóonkey","g":"raatloonkey","e":"coming, future","c":"adj."},{"ts":1527812142,"i":6765,"p":"رښتنی","f":"rixtíney","g":"rixtiney","e":"truthful, true","c":"adj."},{"ts":1527812161,"i":6766,"p":"رښتونی","f":"rixtóoney","g":"rixtooney","e":"truthful","c":"adj."},{"ts":1527811507,"i":6772,"p":"رښتینی","f":"rixtéeney","g":"rixteeney","e":"true, truthful, righteous, good","c":"adj."},{"ts":1527813758,"i":7021,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},{"ts":1577058349091,"i":7062,"p":"زړه پوری","f":"zRupóorey","g":"zRupoorey","e":"interesting, entertaining, attractive, pleasant","c":"adj."},{"ts":1527817400,"i":7070,"p":"زړه سواندی","f":"zRuswaandey","g":"zRuswaandey","e":"merciful, compassionate, soft-hearted","c":"adj."},{"ts":1527819587,"i":7271,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},{"ts":1527814888,"i":7292,"p":"ژغورونکی","f":"jzghoróonkey","g":"jzghoroonkey","e":"savior, saviour, rescuer","c":"n. m. anim. unisex"},{"ts":1527818109,"i":7479,"p":"سپېڅلی","f":"spetsúley","g":"spetsuley","e":"absolutely or perfectly clean, uncontaminated, pure (holy, magnificent – سپيڅلي??)","c":"adj."},{"ts":1527811338,"i":7491,"p":"سپین زړی","f":"speenzuRey","g":"speenzuRey","e":"sincere hearted, candid, trusting","c":"adj."},{"ts":1527815306,"i":7529,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},{"ts":1527822745,"i":7571,"p":"سټکوری","f":"suTkóorey","g":"suTkoorey","e":"burned, charred; wrinkling, puckering; seared, scorched; frozen stiff with cold; withered","c":"adj."},{"ts":1527817442,"i":7594,"p":"سخت زړی","f":"sakhtzúRey","g":"sakhtzuRey","e":"heard-hearted, cruel, heartless, callous","c":"adj."},{"ts":1527816932,"i":7651,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},{"ts":1527820170,"i":7875,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},{"ts":1527819964,"i":7931,"p":"سوځېدونکی","f":"swadzedóonkey","g":"swadzedoonkey","e":"burning","c":"adj."},{"ts":1527821951,"i":8027,"p":"سوی","f":"súwey","g":"suwey","e":"burned","c":"adj."},{"ts":1527812779,"i":8564,"p":"ښکلی","f":"xkÚley","g":"xkUley","e":"beautiful","c":"adj."},{"ts":1527812806,"i":8592,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},{"ts":1527811350,"i":9175,"p":"غلی","f":"ghúley","g":"ghuley","e":"quiet, silent","c":"adj."},{"ts":1527819637,"i":9801,"p":"کارکوونکی","f":"kaarkawóonkey","g":"kaarkawoonkey","e":"worker","c":"n. m. anim. unisex"},{"ts":1527818613,"i":10292,"p":"کمزوری","f":"kamzórey","g":"kamzorey","e":"weak, feeble, frail, faint, poor","c":"adj."},{"ts":1595516629483,"i":10372,"p":"کڼوونکی","f":"kaNawóonkey","g":"kaNawoonkey","e":"deafening","c":"adj.","l":1578770339559},{"ts":1527820661,"i":13003,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},{"ts":1527814047,"i":13597,"p":"نوموړی","f":"noomwáRey","g":"noomwaRey","e":"aforesaid, above-mentioned","c":"adj."},{"ts":1527813822,"i":13607,"p":"نوی","f":"núwey","g":"nuwey","e":"new","c":"adj."},{"ts":1586453720908,"i":13743,"p":"هڅوونکی","f":"hatsawóonkey","g":"hatsawoonkey","e":"encouraging / encourager","c":"adj."},{"ts":1588163180700,"i":13983,"p":"هېښوونکی","f":"hexawóonkey","g":"hexawoonkey","e":"stunning, shocking, perplexing, amazing","c":"adj."},{"ts":1527823715,"i":14196,"p":"وړکوټی","f":"waRkóTey","g":"waRkoTey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527823714,"i":14197,"p":"وړکی","f":"waRÚkey","g":"waRUkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527815403,"i":14202,"p":"وړوکی","f":"waRóokey","g":"waRookey","e":"little, small","c":"adj."},{"ts":1527813916,"i":14226,"p":"وژونکی","f":"wajzóonkey","g":"wajzoonkey","e":"killing, lethal, deadly","c":"adj."},{"ts":1527815424,"i":14235,"p":"وږی","f":"wúGey","g":"wugey","e":"hungry","c":"adj."},{"ts":1527823713,"i":14349,"p":"ووړکی","f":"wóRkey","g":"woRkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527816455,"i":14393,"p":"وېشلی","f":"weshúley","g":"weshuley","e":"separated, divided","c":"adj."},{"ts":1527812156,"i":685,"p":"افسر","f":"afsar","g":"afsar","e":"officer","c":"n. m. anim. unisex"},{"ts":1527815137,"i":1046,"p":"اورپکی","f":"orpákey","g":"orpakey","e":"instigator, insurgent, terrorist","c":"n. m. anim. unisex"},{"ts":1623044005072,"i":1695,"p":"بلواګر","f":"balwaagar","g":"balwaagar","e":"insurrectionist, rebel","c":"n. m. anim. unisex"},{"ts":1527817965,"i":2170,"p":"پالونکی","f":"paalóonkey","g":"paaloonkey","e":"keeper, one who brings up, raises (cattle etc.)","c":"n. m. anim. unisex"},{"ts":1527819228,"i":2534,"p":"پلټونکی","f":"pulaTóonkey","g":"pulaToonkey","e":"inspector, detective, person checking people at the doors etc.","c":"n. m. anim. unisex"},{"ts":1527816431,"i":3322,"p":"ترورزی","f":"trorzéy","g":"trorzey","e":"cousin (of paternal aunt)","c":"n. m. anim. unisex","ppp":"ترورزامن","ppf":"trorzaamun"},{"ts":1527820820,"i":3494,"p":"تعقیبوونکی","f":"ta'qeebawóonkey","g":"takeebawoonkey","e":"follower","c":"n. m. anim. unisex"},{"ts":1586270915475,"i":3915,"p":"تي لرونکی","f":"tee laróonkey","g":"teelaroonkey","e":"mammal","c":"adj. / n. m. anim. unisex"},{"ts":1613563994424,"i":4105,"p":"ټوقمار","f":"Toqmaar","g":"Tokmaar","e":"joker, jester, mocker","c":"n. m. anim. unisex"},{"ts":1527812802,"i":5472,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},{"ts":1527822535,"i":5824,"p":"خیاط","f":"khayáat","g":"khayaat","e":"tailor","c":"n. m. anim. unisex"},{"ts":1622873938137,"i":6024,"p":"درغلګر","f":"darghalgar","g":"darghalgar","e":"crook, swindler, criminal","c":"n. m. anim. unisex"},{"ts":1527820656,"i":6096,"p":"دریمګړی","f":"driyamgúRey","g":"driyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1614081825855,"i":6642,"p":"راهب","f":"raahib","g":"raahib","e":"priest, monk/nun","c":"n. m. anim. unisex"},{"ts":1610447830096,"i":7610,"p":"سخی","f":"skhéy","g":"skhey","e":"calf; bull-calf","c":"n. m. anim. unisex"},{"ts":1527811519,"i":7760,"p":"سفیر","f":"safeer","g":"safeer","e":"embassador, ambassador","c":"n. m. anim. unisex"},{"ts":1622366208373,"i":7773,"p":"سکرتر","f":"sakratár","g":"sakratar","e":"secretary","c":"n. m. anim. unisex"},{"ts":1566468540788,"i":8029,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"},{"ts":1527819801,"i":8082,"p":"سیلانی","f":"seylaanéy","g":"seylaaney","e":"tourist, sightseer, visitor","c":"n. m. anim. unisex"},{"ts":1527815279,"i":8184,"p":"شپونکی","f":"shpoonkéy","g":"shpoonkey","e":"shepherd","c":"n. m. anim. unisex"},{"ts":1527819173,"i":8401,"p":"شنونکی","f":"shanóonkey","g":"shanoonkey","e":"analyst, examiner","c":"n. m. anim. unisex"},{"ts":1527815436,"i":8778,"p":"ظالم","f":"zaalim","g":"zaalim","e":"tyrant, oppressor, cruel person","c":"n. m. anim. unisex / adj."},{"ts":1527818632,"i":9038,"p":"غبرګونی","f":"ghbargóoney","g":"ghbargooney","e":"twin","c":"n. m. anim. unisex"},{"ts":1527812624,"i":9150,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},{"ts":1613561408232,"i":9682,"p":"قصوروار","f":"qUsoorwáar","g":"kUsoorwaar","e":"guilty, at fault","c":"adj. / n. m. anim. unisex"},{"ts":1527816256,"i":10119,"p":"کړوسی","f":"kaRwaséy","g":"kaRwasey","e":"great-grandchild","c":"n. m. anim. unisex"},{"ts":1527812174,"i":10658,"p":"ګاونډی","f":"gaawanDéy","g":"gaawanDey","e":"neighbour","c":"n. m. anim. unisex / adj."},{"ts":1579030083953,"i":10839,"p":"ګناه ګار","f":"gUnaahgáar","g":"gUnaahgaar","e":"sinner, sinful","c":"n. m. anim. unisex"},{"ts":1527822661,"i":11380,"p":"لوبغاړی","f":"lobgháaRey","g":"lobghaaRey","e":"athlete, player; actor; mischevious, playful (of a child)","c":"n. m. anim. unisex / adj."},{"ts":1589885143650,"i":11460,"p":"لومبړ","f":"loombáR","g":"loombaR","e":"fox","c":"n. m. anim. unisex"},{"ts":1527812043,"i":11526,"p":"لیکوال","f":"leekwaal","g":"leekwaal","e":"writer, author","c":"n. m. anim. unisex"},{"ts":1527820680,"i":11549,"p":"لېونی","f":"lewanéy","g":"lewaney","e":"crazy, insane, mad person","c":"n. m. anim. unisex / adj."},{"ts":1527814445,"i":11645,"p":"مامور","f":"maamóor","g":"maamoor","e":"officer, clerk (as in government worker); assigned, appointed, given orders or istructions (Arabic), authorized, sent on business","c":"adj. / n. m. anim. unisex"},{"ts":1527818760,"i":11990,"p":"مدني فاعل","f":"madanee faa'al","g":"madaneefaaal","e":"civil activist","c":"n. m. anim. unisex"},{"ts":1527821523,"i":12116,"p":"مریی","f":"mrayéy","g":"mrayey","e":"slave, servant","c":"n. m. anim. unisex"},{"ts":1527814159,"i":12610,"p":"ملګری","f":"malgúrey","g":"malgurey","e":"friend, companion","c":"n. m. anim. unisex"},{"ts":1527823403,"i":13012,"p":"مینه وال","f":"meenawáal","g":"meenawaal","e":"fan, someone who loves or appreciates someone or something","c":"n. m. anim. unisex"},{"ts":1527816254,"i":13569,"p":"نوسی","f":"nwaséy","g":"nwasey","e":"grandchild","c":"n. m. anim. unisex"},{"ts":1527814806,"i":13851,"p":"همځولی","f":"hamdzóley","g":"hamdzoley","e":"peer, someone of the same age, someone born in the same year","c":"n. m. anim. unisex"},{"ts":1527812684,"i":13874,"p":"همکار","f":"hamkaar","g":"hamkaar","e":"co-worker, fellow worker, collaborator, aid","c":"n. m. anim. unisex"},{"ts":1527811732,"i":13904,"p":"هنر مند","f":"hUnarmand","g":"hUnarmand","e":"artist, performer","c":"n. m. anim. unisex"},{"ts":1591027046896,"i":14209,"p":"وز","f":"wuz","g":"wuz","e":"goat","c":"n. m. anim. unisex"},{"ts":1611395180139,"i":14268,"p":"وطندار","f":"watandáar","g":"watandaar","e":"fellow countryman, person from the same country","c":"n. m. anim. unisex"},{"ts":1527811296,"i":14294,"p":"وکیل","f":"wakeel","g":"wakeel","e":"lawyer, proxy holder","c":"n. m. anim. unisex","app":"وکلا","apf":"waklaa"},{"ts":1527813585,"i":14295,"p":"وګړی","f":"wagúRey","g":"waguRey","e":"person, human being, creature","c":"n. m. anim. unisex","ec":"person","ep":"people"},{"ts":1527814672,"i":14362,"p":"ویاند","f":"wayaand","g":"wayaand","e":"spokesperson, spokesman, newcaster","c":"n. m. anim. unisex","ec":"spokesperson","ep":"spokespeople"},{"ts":1586454081484,"i":14437,"p":"یتیم","f":"yateem","g":"yateem","e":"orphan","c":"n. m. anim. unisex"},{"ts":1527816778,"i":1071,"p":"اوږد","f":"ooGd, ooGud","g":"oogd,oogud","e":"long","c":"adj.","infap":"اوږده","infaf":"ooGdu","infbp":"اوږد","infbf":"ooGd"},{"ts":1527822706,"i":1106,"p":"اوم","f":"oom","g":"oom","e":"raw, uncooked; blunt, crude; unripe, immature, not fully developed","c":"adj.","infap":"اومه","infaf":"oomu","infbp":"اوم","infbf":"oom"},{"ts":1527813293,"i":7946,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},{"ts":1527815265,"i":8506,"p":"شین","f":"sheen","g":"sheen","e":"green, blue; unripe, immature","c":"adj. irreg.","infap":"شنه","infaf":"shnu","infbp":"شن","infbf":"shn"},{"ts":1527815087,"i":12119,"p":"مړ","f":"muR","g":"muR","e":"dead","c":"adj.","infap":"مړه","infaf":"mRu","infbp":"مړ","infbf":"mR"},{"ts":1527814151,"i":12549,"p":"مل","f":"mal","g":"mal","e":"companion, associate, friend; accompanying, being with","c":"n. m. anim. unisex / adj.","infap":"مله","infaf":"mlu","infbp":"مل","infbf":"ml"},{"ts":1527813580,"i":14476,"p":"یو","f":"yo","g":"yo","e":"one","c":"num.","infap":"یوه","infaf":"yawu","infbp":"یو","infbf":"yaw"},{"ts":1527819345,"i":2464,"p":"پسه","f":"psu","g":"psu","e":"sheep, ram","c":"n. m.","ppp":"پسونه","ppf":"pusoona","ec":"sheep","ep":"sheep"},{"ts":1527822173,"i":4228,"p":"جاړه","f":"jaaRú","g":"jaaRu","e":"bush, shrub","c":"n. m."},{"ts":1527813508,"i":7059,"p":"زړه","f":"zRu","g":"zRu","e":"heart","c":"n. m.","noInf":true,"ppp":"زړونه","ppf":"zRoona"},{"ts":1588857967561,"i":9217,"p":"غوایه","f":"ghwaayú","g":"ghwaayu","e":"bull","c":"n. m. anim."},{"ts":1527817108,"i":9785,"p":"کاته","f":"kaatu","g":"kaatu","e":"look, gaze, examination, inspection, spying","c":"n. m."},{"ts":1527817768,"i":9804,"p":"کارګه","f":"kaargú","g":"kaargu","e":"raven, crow","c":"n. m. anim."},{"ts":1527819245,"i":10449,"p":"کوربانه","f":"korbaanú","g":"korbaanu","e":"master of house, head of family, married man","c":"n. m."},{"ts":1527818516,"i":11296,"p":"لمبېده","f":"lambedú","g":"lambedu","e":"swimming, bathing","c":"n. m."},{"ts":1527813986,"i":11302,"p":"لمر پرېواته","f":"lmarprewaatu","g":"lmarprewaatu","e":"sunset, west","c":"n. m."},{"ts":1527813992,"i":11308,"p":"لمر لوېده","f":"lmarlwedu","g":"lmarlwedu","e":"sunset","c":"n. m."},{"ts":1527813987,"i":11310,"p":"لمرخاته","f":"lmarkhaatu","g":"lmarkhaatu","e":"sunrise, east","c":"n. m."},{"ts":1527818255,"i":11551,"p":"لېوه","f":"lewú","g":"lewu","e":"wolf, wild dog","c":"n. m.","ppp":"لېوان","ppf":"lewáan","ec":"wolf","ep":"wolves"},{"ts":1527821522,"i":12115,"p":"مریه","f":"mrayú","g":"mrayu","e":"slave, servant","c":"n. m."},{"ts":1527812911,"i":12964,"p":"مېړه","f":"meRu","g":"meRu","e":"husband, brave","c":"n. m."},{"ts":1527811626,"i":13455,"p":"نکېده","f":"nukedu","g":"nukedu","e":"impracticability, impossibility, improbability","c":"n. m."},{"ts":1527816410,"i":13659,"p":"نیکه","f":"neekú","g":"neeku","e":"grandfather, grandpa","c":"n. m."},{"ts":1527822420,"i":14043,"p":"واګه","f":"waagu","g":"waagu","e":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","c":"n. m."},{"ts":1527816357,"i":14103,"p":"وراره","f":"wraaru","g":"wraaru","e":"nephew, brother's son","c":"n. m.","ppp":"وریرونه","ppf":"wreeroona"},{"ts":1527823225,"i":14320,"p":"وله","f":"wUlú","g":"wUlu","e":"flock, herd, drove","c":"n. m."},{"ts":1527814789,"i":14396,"p":"وېښته","f":"wextu","g":"wextu","e":"hair","c":"n. m."},{"ts":1527815394,"i":14006,"p":"واده","f":"waadú","g":"waadu","e":"wedding, marriage","c":"n. m."},{"ts":1527818017,"i":177,"p":"اټۍ","f":"aTúy","g":"aTuy","e":"store, shop","c":"n. f."},{"ts":1527812694,"i":903,"p":"انجنۍ","f":"injUnúy","g":"injUnuy","e":"girl","c":"n. f."},{"ts":1527815140,"i":1109,"p":"اونۍ","f":"onúy, ownúy, owunúy","g":"onuy,ownuy,owunuy","e":"week","c":"n. f."},{"ts":1566476931206,"i":1333,"p":"بتۍ","f":"batúy","g":"batuy","e":"lamp, light","c":"n. f."},{"ts":1527822192,"i":1338,"p":"بټۍ","f":"baTúy","g":"baTuy","e":"stove, oven, furnace","c":"n. f."},{"ts":1527820828,"i":1354,"p":"بچۍ","f":"bachúy","g":"bachuy","e":"daughter, girl","c":"n. f."},{"ts":1527822974,"i":1670,"p":"بګۍ","f":"bagúy","g":"baguy","e":"cart, buggy, stroller","c":"n. f."},{"ts":1591805634565,"i":2756,"p":"پوښتۍ","f":"pooxtúy","g":"pooxtuy","e":"rib","c":"n. f."},{"ts":1586276322639,"i":4095,"p":"ټوپۍ","f":"Topúy","g":"Topuy","e":"hat, cap","c":"n. f."},{"ts":1527820058,"i":4096,"p":"ټوټکۍ","f":"ToTakúy","g":"ToTakuy","e":"kneecap, patella","c":"n. f."},{"ts":1527812564,"i":6481,"p":"ډوډۍ","f":"DoDúy","g":"DoDuy","e":"bread, food, meal","c":"n. f."},{"ts":1527821555,"i":7325,"p":"ژۍ","f":"jzúy","g":"jzuy","e":"edge, verge, side","c":"n. f."},{"ts":1527814788,"i":7472,"p":"سپوږمۍ","f":"spoGmúy","g":"spogmuy","e":"moon","c":"n. f."},{"ts":1527820120,"i":9336,"p":"غونډۍ","f":"ghwunDúy","g":"ghwunDuy","e":"hill, hillrock, mound","c":"n. f."},{"ts":1527814203,"i":10014,"p":"کرسۍ","f":"kUrsúy","g":"kUrsuy","e":"chair, seat, stool","c":"n. f."},{"ts":1527812045,"i":10088,"p":"کړکۍ","f":"kuRkúy","g":"kuRkuy","e":"window","c":"n. f."},{"ts":1527816026,"i":10121,"p":"کړۍ","f":"kaRúy","g":"kaRuy","e":"ring, curl; handcuffs, link, chain, fetter; loom; department, section","c":"n. f."},{"ts":1527813870,"i":10152,"p":"کشتۍ","f":"kishtúy","g":"kishtuy","e":"boat, ship","c":"n. f."},{"ts":1527821895,"i":10934,"p":"ګوډۍ","f":"gooDúy","g":"gooDuy","e":"doll","c":"n. f."},{"ts":1527814564,"i":10975,"p":"ګولۍ","f":"golúy","g":"goluy","e":"pill tablet; bullet","c":"n. f."},{"ts":1527811763,"i":11270,"p":"لکۍ","f":"lakúy","g":"lakuy","e":"tail","c":"n. f."},{"ts":1527812659,"i":13816,"p":"هګۍ","f":"hagúy","g":"haguy","e":"egg","c":"n. f."},{"ts":1527821372,"i":13941,"p":"هوسۍ","f":"hosúy","g":"hosuy","e":"gazelle, antelope","c":"n. f."},{"ts":1527815154,"i":2191,"p":"پای","f":"paay","g":"paay","e":"end, finish, close, conclusion","c":"n. m."},{"ts":1527812594,"i":4554,"p":"ځای","f":"dzaay","g":"dzaay","e":"place, space","c":"n. m."},{"ts":1527812525,"i":4701,"p":"چای","f":"chaay","g":"chaay","e":"tea","c":"n. m."},{"ts":1527812783,"i":5460,"p":"خدای","f":"khUdaay","g":"khUdaay","e":"God, Lord","c":"n. m. anim.","ec":"God","ep":"gods"},{"ts":1527819514,"i":5954,"p":"دای","f":"daay","g":"daay","e":"tier, row, foundation (masonry etc.)","c":"n. m."},{"ts":1610797797756,"i":7400,"p":"سای","f":"saay","g":"saay","e":"hollow, depression","c":"n. m.","ec":"hollow"},{"ts":1527822345,"i":7630,"p":"سرای","f":"saráay","g":"saraay","e":"caravansary, inn, large house","c":"n. m.","ec":"carvansary"},{"ts":1586598425514,"i":1853,"p":"بوی","f":"booy","g":"booy","e":"smell","c":"n. m.","ec":"smell"},{"ts":1527814511,"i":5822,"p":"خوی","f":"khooy","g":"khooy","e":"character, nature, disposition, habit","c":"n. m."}]; +const words: Word[] = [{"entry":{"ts":1577383674332,"i":979,"p":"انګولل","f":"angolul, angwUlul","g":"angolul,angwUlul","e":"to howl, wail","c":"v. gramm. trans.","sepOo":true,"ec":"howl"}},{"entry":{"ts":1527818962,"i":2345,"p":"پرنجل","f":"prunjúl","g":"prunjul","e":"to sneeze","c":"v. gramm. trans.","ec":"sneeze"}},{"entry":{"ts":1527821425,"i":4098,"p":"ټوخل","f":"Tookhúl","g":"Tookhul","e":"to cough","c":"v. gramm. trans.","ec":"cough"}},{"entry":{"ts":1527812767,"i":5643,"p":"خندل","f":"khandul","g":"khandul","e":"to laugh","c":"v. gramm. trans.","psp":"خاند","psf":"khaand","ec":"laugh"}},{"entry":{"ts":1605360223155,"i":6233,"p":"دنګل","f":"dangúl","g":"dangul","e":"to jump, leap, run, race","c":"v. gramm. trans.","psp":"دانګ","psf":"daang","ec":"jump"}},{"entry":{"ts":1605360127430,"i":7155,"p":"زنګل","f":"zangúl","g":"zangul","e":"to swing, rock (back and forth)","c":"v. gramm. trans.","psp":"زانګ","psf":"zaang","ec":"swing,swings,swinging,swung"}},{"entry":{"ts":1527812717,"i":7285,"p":"ژړل","f":"jzaRul","g":"jzaRul","e":"to cry","c":"v. gramm. trans.","psp":"ژاړ","psf":"jzaaR","ec":"cry"}},{"entry":{"ts":1591899573844,"i":13241,"p":"نڅل","f":"natsúl","g":"natsul","e":"to dance","c":"v. gramm. trans.","psp":"ناڅ","psf":"naats","ec":"dance"}},{"entry":{"ts":1527813473,"i":791,"p":"الوتل","f":"alwatul","g":"alwatul","e":"to fly","c":"v. intrans.","psp":"الوځ","psf":"aloodz","tppp":"الوت","tppf":"alwát","ec":"fly,flies,flying,flew,flown"}},{"entry":{"ts":1527814012,"i":1090,"p":"اوښتل","f":"awUxtul","g":"awUxtul","e":"to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon; to be sprained","c":"v. intrans.","psp":"اوړ","psf":"awR","ec":"pass","ep":"over"}},{"entry":{"ts":1527822843,"i":1561,"p":"برېښېدل","f":"brexedúl","g":"brexedul","e":"to appear, seem; to shine, sparkle; to smart, have a pricking pain","c":"v. intrans.","shortIntrans":true,"ec":"appear"}},{"entry":{"ts":1527815183,"i":2781,"p":"پوهېدل","f":"pohedul","g":"pohedul","e":"to understand (to do the act of understanding)","c":"v. intrans.","ec":"understand,understand,understanding,understood"}},{"entry":{"ts":1527816495,"i":3438,"p":"تښتېدل","f":"tuxtedul","g":"tuxtedul","e":"to run off, escape, flee","c":"v. intrans.","shortIntrans":true,"ec":"escape"}},{"entry":{"ts":1527813022,"i":4101,"p":"ټوخېدل","f":"Tookhedul","g":"Tookhedul","e":"to cough","c":"v. intrans.","ec":"cough"}},{"entry":{"ts":1527817259,"i":2400,"p":"پرېوتل","f":"prewatul","g":"prewatul","e":"to fall, to lie down, to go down","c":"v. intrans. seperable","l":1527823376,"psp":"پرېوځ","psf":"prewudz","tppp":"پرېواته","tppf":"prewaatu","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1577572987826,"i":4446,"p":"جنګېدل","f":"jangedul","g":"jangedul","e":"to fight, battle, war, to bump or crash into","c":"v. intrans.","ec":"fight,fights,fighting,fought"}},{"entry":{"ts":1527818535,"i":4563,"p":"ځړېدل","f":"dzaRedúl","g":"dzaRedul","e":"to hang, to be hung, to be lowered","c":"v. intrans.","ec":"hang,hangs,hanging,hung,hung"}},{"entry":{"ts":1527812273,"i":4587,"p":"ځلېدل","f":"dzaledul","g":"dzaledul","e":"to shine, glow, glitter","c":"v. intrans.","ec":"shine,shines,shining,shone"}},{"entry":{"ts":1577921634357,"i":4606,"p":"ځنډېدل","f":"dzanDedul","g":"dzanDedul","e":"to be delayed, postponed, held back, detained","c":"v. intrans.","ec":"be","ep":"delayed"}},{"entry":{"ts":1527814025,"i":5434,"p":"ختل","f":"khatul","g":"khatul","e":"to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...","c":"v. intrans.","psp":"خېژ","psf":"khejz","tppp":"خوت","tppf":"khot","ec":"climb"}},{"entry":{"ts":1527823376,"i":14056,"p":"وتل","f":"watul","g":"watul","e":"to go out, exit, leave, emerge","c":"v. intrans. irreg.","psp":"وځ","psf":"oodz","tppp":"واته","tppf":"waatu","ec":"go,goes,going,went,gone","ep":"out"}},{"entry":{"ts":1527814433,"i":5706,"p":"خوځېدل","f":"khwadzedul","g":"khwadzedul","e":"to shake, tremble, wiggle, move, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shaken"}},{"entry":{"ts":1527818980,"i":6679,"p":"رپېدل","f":"rapedúl","g":"rapedul","e":"to quiver, shake, flutter, shiver","c":"v. intrans.","ec":"quiver"}},{"entry":{"ts":1578191534500,"i":6697,"p":"رحمېدل","f":"rahmedul","g":"rahmedul","e":"to have mercy on, to have compassion on","c":"v. intrans.","shortIntrans":true,"ec":"have","ep":"mercy"}},{"entry":{"ts":1527813573,"i":6748,"p":"رسېدل","f":"rasedul","g":"rasedul","e":"reach, arrive; (fig.) understand, attain to; mature, ripen","c":"v. intrans.","shortIntrans":true,"ec":"reach"}},{"entry":{"ts":1527813837,"i":7927,"p":"سوځېدل","f":"swadzedul","g":"swadzedul","e":"to burn","c":"v. intrans.","shortIntrans":true,"ec":"burn,burns,burning,burnt,burned"}},{"entry":{"ts":1527814597,"i":8254,"p":"شرمېدل","f":"sharmedul","g":"sharmedul","e":"to be ashamed, to be embarrassed, to be shy","c":"v. intrans.","ec":"be","ep":"ashamed"}},{"entry":{"ts":1527821558,"i":8283,"p":"شړېدل","f":"shaRedúl","g":"shaRedul","e":"to be decomposed, break down, fall apart; to be boiled soft (meat)","c":"v. intrans.","ec":"fall","ep":"apart"}},{"entry":{"ts":1527811516,"i":8355,"p":"شلېدل","f":"shledul","g":"shledul","e":"to be torn, broken, rent, broken, severed","c":"v. intrans.","shortIntrans":true,"ec":"be","ep":"torn"}},{"entry":{"ts":1527812615,"i":9051,"p":"غځېدل","f":"ghadzedul","g":"ghadzedul","e":"stretch out, lie, be extended, expand","c":"v. intrans.","ec":"stretch","ep":"out"}},{"entry":{"ts":1527813680,"i":9129,"p":"غږېدل","f":"ghuGedul, ghaGedul","g":"ghugedul,ghagedul","e":"to speak, talk, converse, sing","c":"v. intrans.","ec":"speak,speaks,speaking,spoke"}},{"entry":{"ts":1527814867,"i":9246,"p":"غورځېدل","f":"ghwurdzedúl, ghoordzedúl","g":"ghwurdzedul,ghoordzedul","e":"to fall, jump, leap","c":"v. intrans.","shortIntrans":true,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823696,"i":9314,"p":"غولېدل","f":"ghwuledul","g":"ghwuledul","e":"to be deceived, cheated, fooled","c":"v. intrans.","ec":"be","ep":"deceived"}},{"entry":{"ts":1527812759,"i":10615,"p":"کېناستل","f":"kenaastul","g":"kenaastul","e":"to sit down, to have a seat","c":"v. intrans. irreg.","psp":"کېن","psf":"ken","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"sit,sits,sitting,sat","ep":"down"}},{"entry":{"ts":1527812645,"i":10721,"p":"ګرځېدل","f":"gurdzedul","g":"gurdzedul","e":"to walk, wander, turn about; to become, to be","c":"v. intrans.","shortIntrans":true,"ec":"walk"}},{"entry":{"ts":1527814430,"i":11195,"p":"لړزېدل","f":"laRzedul","g":"laRzedul","e":"to shake, shudder, tremble, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shook"}},{"entry":{"ts":1527814085,"i":11280,"p":"لګېدل","f":"lagedúl, lugedúl","g":"lagedul,lugedul","e":"to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem","c":"v. intrans.","shortIntrans":true,"ec":"hit,hits,hitting,hit"}},{"entry":{"ts":1527813994,"i":11475,"p":"لوېدل","f":"lwedul","g":"lwedul","e":"to fall, to tumble, go down, settle","c":"v. intrans.","ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823019,"i":14376,"p":"وېرېدل","f":"weredúl","g":"weredul","e":"to be afraid, scared, to fear","c":"v. intrans.","ec":"be","ep":"afraid"}},{"entry":{"ts":1581086654898,"i":10594,"p":"کېدل","f":"kedul","g":"kedul","e":"to become _____","c":"v. intrans. irreg.","ssp":"ش","ssf":"sh","prp":"شول","prf":"shwul","pprtp":"شوی","pprtf":"shúwey","noOo":true,"ec":"become","ep":"_____"}},{"entry":{"ts":1527812754,"i":10593,"p":"کېدل","f":"kedul","g":"kedul","e":"to happen, occur","c":"v. intrans. irreg.","ssp":"وش","ssf":"óosh","prp":"وشول","prf":"óoshwul","pprtp":"شوی","pprtf":"shúwey","diacExcept":true,"ec":"happen"}},{"entry":{"ts":1527815348,"i":3622,"p":"تلل","f":"tlul","g":"tlul","e":"to go","c":"v. intrans. irreg.","psp":"ځ","psf":"dz","ssp":"لاړ ش","ssf":"láaR sh","prp":"لاړ","prf":"láaR","ec":"go,goes,going,went,gone"}},{"entry":{"ts":1527815216,"i":6572,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"}},{"entry":{"ts":1527819674,"i":5109,"p":"څملاستل","f":"tsumlaastúl","g":"tsumlaastul","e":"to lie down","c":"v. intrans. seperable","l":1596485996977,"psp":"څمل","psf":"tsaml","noOo":true,"separationAtP":2,"separationAtF":4,"ec":"lay,lays,lying,lay,layed","ep":"down"}},{"entry":{"ts":1527814617,"i":13684,"p":"نیول","f":"neewul","g":"neewul","e":"to catch, grab, take, arrest; bear (fruit)","c":"v. trans. irreg.","psp":"نیس","psf":"nees","ec":"catch,catches,catching,caught,caught"}},{"entry":{"ts":1527811872,"i":224,"p":"اچول","f":"achawul","g":"achawul","e":"to put, pour, drop, throw, put on","c":"v. trans.","ec":"put,puts,putting,put,put"}},{"entry":{"ts":1527817298,"i":310,"p":"اخیستل","f":"akheestul","g":"akheestul","e":"to take, buy, purchase, receive; to shave, cut with scissors","c":"v. trans.","psp":"اخل","psf":"akhl","ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527816127,"i":436,"p":"اړول","f":"aRawul","g":"aRawul","e":"to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack","c":"v. trans.","ec":"turn","ep":"over"}},{"entry":{"ts":1527811605,"i":461,"p":"ازمویل","f":"azmoyul","g":"azmoyul","e":"to attempt, try; to experiment, test","c":"v. trans.","sepOo":true,"ec":"try"}},{"entry":{"ts":1527812458,"i":538,"p":"استول","f":"astawul","g":"astawul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527811397,"i":663,"p":"اغوستل","f":"aghostúl","g":"aghostul","e":"to wear, to put on (clothes)","c":"v. trans.","psp":"اغوند","psf":"aghond","ec":"wear,wears,wearing,wore,worn"}},{"entry":{"ts":1527816125,"i":795,"p":"الوزول","f":"alwuzawul","g":"alwuzawul","e":"to make fly, to toss, to release (birds); to blow up","c":"v. trans.","ec":"make,makes,making,made,made","ep":"fly"}},{"entry":{"ts":1527816146,"i":1148,"p":"ایستل","f":"eestul","g":"eestul","e":"to throw out, discard, chuck, toss; to extract, to take out","c":"v. trans.","psp":"باس","psf":"baas","ec":"take,takes,taking,took,taken","ep":"out"}},{"entry":{"ts":1527817786,"i":1366,"p":"بخښل","f":"bakhxul","g":"bakhxul","e":"to forgive, to pardon, to give, grant","c":"v. trans.","ec":"forgive"}},{"entry":{"ts":1527816092,"i":1688,"p":"بلل","f":"balul","g":"balul","e":"to call, invite; to consider, deem","c":"v. trans.","psp":"بول","psf":"bol","tppp":"باله","tppf":"baalu","ec":"deem"}},{"entry":{"ts":1577389204616,"i":2290,"p":"پرانیستل","f":"praaneestul","g":"praaneestul","e":"to open; to undo; to initiate","c":"v. trans.","psp":"پرانیز","psf":"praaneez","noOo":true,"separationAtP":3,"separationAtF":4,"ec":"open"}},{"entry":{"ts":1527816874,"i":2554,"p":"پلورل","f":"plorul","g":"plorul","e":"to sell","c":"v. trans.","ec":"sell,sells,selling,sold,sold"}},{"entry":{"ts":1527815190,"i":2389,"p":"پرېښودل","f":"prexodúl","g":"prexodul","e":"to leave, abandon, forsake, let go, allow","c":"v. trans. seperable irreg.","l":1527812280,"psp":"پرېږد","psf":"preGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"abandon"}},{"entry":{"ts":1527812284,"i":10605,"p":"کېښودل","f":"kexodul","g":"kexodul","e":"to put, to put down, to set in place","c":"v. trans. irreg.","psp":"ږد","psf":"Gd","ssp":"کېږد","ssf":"kéGd","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"put,puts,putting,put,put"}},{"entry":{"ts":1577394422280,"i":2780,"p":"پوهول","f":"pohawul","g":"pohawul","e":"to explain, to try to make understand","c":"v. trans.","ec":"make","ep":"understand"}},{"entry":{"ts":1527815165,"i":2870,"p":"پېژندل","f":"pejzandul","g":"pejzandul","e":"to recognize, know, meet","c":"v. trans.","psp":"پېژن","psf":"pejzan","tppp":"پېژاند","tppf":"pejzaand","ec":"recognize"}},{"entry":{"ts":1527813405,"i":3356,"p":"تړل","f":"taRul","g":"taRul","e":"to connect, tie, bind, close","c":"v. trans.","tppp":"تاړه","tppf":"taaRu","ec":"tie,ties,tying,tied,tied"}},{"entry":{"ts":1527813394,"i":3984,"p":"ټاکل","f":"Taakul","g":"Taakul","e":"to select, appoint","c":"v. trans.","tppp":"ټاکه","tppf":"Taaku","ec":"appoint"}},{"entry":{"ts":1527813755,"i":4622,"p":"ځورول","f":"dzawrawul","g":"dzawrawul","e":"to bother, irritate, torture, distress, vex, grind on","c":"v. trans.","ec":"bother"}},{"entry":{"ts":1527814586,"i":4842,"p":"چلول","f":"chalawul","g":"chalawul","e":"to drive, operate, handle, put forward, circulate","c":"v. trans.","ec":"drive,drives,driving,drove,drove"}},{"entry":{"ts":1527816564,"i":4956,"p":"چیچل","f":"cheechul","g":"cheechul","e":"to bite, chew, grind (teeth), clench (teeth), sting","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527812790,"i":5745,"p":"خوړل","f":"khoRul","g":"khoRul","e":"to eat, to bite","c":"v. trans.","psp":"خور","psf":"khor","tppp":"خوړ","tppf":"khoR","ec":"eat,eats,eating,ate,eaten"}},{"entry":{"ts":1527815489,"i":5927,"p":"داړل","f":"daaRul","g":"daaRul","e":"to bite, tear, gnaw","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527813572,"i":6745,"p":"رسول","f":"rasawul","g":"rasawul","e":"to deliver, to make arrive, provide, send, supply, bring to,","c":"v. trans.","ec":"deliver"}},{"entry":{"ts":1527816064,"i":7094,"p":"زغمل","f":"zghamul","g":"zghamul","e":"to endure, bear, tolerate, take on, digest","c":"v. trans.","tppp":"زغامه","tppf":"zghaamu","ec":"endure"}},{"entry":{"ts":1527813637,"i":7505,"p":"ستایل","f":"staayul","g":"staayul","e":"to praise, commend, glorify, mention","c":"v. trans.","tppp":"ستایه","tppf":"staayu","ec":"praise"}},{"entry":{"ts":1527817750,"i":7773,"p":"سکل","f":"skul","g":"skul","e":"to drink","c":"v. trans.","ec":"drink,drinks,drinking,drank,drank"}},{"entry":{"ts":1527814596,"i":8253,"p":"شرمول","f":"shărmawul","g":"sharmawul","e":"to shame, to disgrace, to dishonor","c":"v. trans.","ec":"shame"}},{"entry":{"ts":1527814908,"i":8276,"p":"شړل","f":"shaRul","g":"shaRul","e":"to drive out, fire, evict, push out","c":"v. trans.","tppp":"شاړه","tppf":"shaaRu","ec":"drive,drives,driving,drove,drove","ep":"out"}},{"entry":{"ts":1527815531,"i":8331,"p":"شکول","f":"shkawul","g":"shkawul","e":"to tear, to break of, to dig up, to pull out","c":"v. trans.","ec":"tear,tears,tearing,torn,torn"}},{"entry":{"ts":1527815296,"i":8358,"p":"شمارل","f":"shmaarul","g":"shmaarul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527815273,"i":8386,"p":"شمېرل","f":"shmerul","g":"shmerul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527811293,"i":8581,"p":"ښودل","f":"xodul","g":"xodul","e":"to show; to teach; to suit, look good with (fig.), befit","c":"v. trans.","psp":"ښای","psf":"xaay","ec":"show,shows,showing,showed,shown"}},{"entry":{"ts":1527817865,"i":9050,"p":"غځول","f":"ghadzawul","g":"ghadzawul","e":"to extend, to stretch out, to expand","c":"v. trans.","ec":"extend"}},{"entry":{"ts":1527815886,"i":9196,"p":"غندل","f":"ghandul","g":"ghandul","e":"to condemn, reproach, to criticize","c":"v. trans.","tppp":"غانده","tppf":"ghaandu","ec":"condemn"}},{"entry":{"ts":1527816122,"i":9243,"p":"غورځول","f":"ghoordzawul, ghwurdzawul","g":"ghoordzawul,ghwurdzawul","e":"to throw, hurl, fling","c":"v. trans.","ec":"throw,throws,throwing,threw,thrown"}},{"entry":{"ts":1527812627,"i":9291,"p":"غوښتل","f":"ghwuxtul, ghoxtul","g":"ghwuxtul,ghoxtul","e":"to want, to request","c":"v. trans.","psp":"غواړ","psf":"ghwaaR","ec":"want"}},{"entry":{"ts":1527819301,"i":9311,"p":"غولول","f":"ghwulawúl","g":"ghwulawul","e":"to deceive, cheat, fool","c":"v. trans.","ec":"deceive"}},{"entry":{"ts":1527813568,"i":9811,"p":"کارول","f":"kaarawul","g":"kaarawul","e":"to use, utilize","c":"v. trans.","ec":"use"}},{"entry":{"ts":1527816300,"i":10031,"p":"کرل","f":"karul","g":"karul","e":"to sow, to plant","c":"v. trans.","tppp":"کاره","tppf":"kaaru","ec":"sow"}},{"entry":{"ts":1527817577,"i":10182,"p":"کښېښودل","f":"kxexodul","g":"kxexodul","e":"to put, to put down, to set in place","c":"v. trans.","psp":"ږد","psf":"Gd","ssp":"کښېږد","ssf":"kxéGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"put,puts,putting,put"}},{"entry":{"ts":1527811289,"i":10621,"p":"کېنول","f":"kenawul","g":"kenawul","e":"to seat, to make or have someone sit down","c":"v. trans.","noOo":true,"ec":"seat,seats,seating,sat,sat"}},{"entry":{"ts":1527817661,"i":10644,"p":"ګالل","f":"gaalul","g":"gaalul","e":"to bear up under (diffucult things), to suffer, to take, to endure","c":"v. trans.","ec":"endure"}},{"entry":{"ts":1527812649,"i":10666,"p":"ګټل","f":"gaTul, guTul","g":"gaTul,guTul","e":"to earn (money), to win","c":"v. trans.","tppp":"ګاټه","tppf":"gaaTu","ec":"earn"}},{"entry":{"ts":1527812612,"i":10861,"p":"ګنډل","f":"ganDul","g":"ganDul","e":"to sew, mend, make, knit","c":"v. trans.","tppp":"ګانډه","tppf":"gaanDu","ec":"sew,sews,sewing,sewed,sown"}},{"entry":{"ts":1527812000,"i":10882,"p":"ګڼل","f":"gaNul, guNul","g":"gaNul,guNul","e":"to count, consider, reckon, suppose, assume","c":"v. trans.","tppp":"ګاڼه","tppf":"gaaNu","ec":"deem"}},{"entry":{"ts":1527812873,"i":11439,"p":"لوستل","f":"lwastul, lwustul","g":"lwastul,lwustul","e":"to read, study","c":"v. trans. irreg.","psp":"لول","psf":"lwul","tppp":"لوست","tppf":"lwast","ec":"read,reads,reading,read,read"}},{"entry":{"ts":1527812869,"i":11154,"p":"لټول","f":"luTawul","g":"luTawul","e":"to search, seek","c":"v. trans.","ec":"search"}},{"entry":{"ts":1527813866,"i":11509,"p":"لېږل","f":"leGul","g":"legul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527812856,"i":11519,"p":"لیکل","f":"leekul","g":"leekul","e":"to write","c":"v. trans.","ec":"write,writes,writing,wrote,wrote"}},{"entry":{"ts":1527815085,"i":12757,"p":"منل","f":"manul","g":"manul","e":"to accept, to believe","c":"v. trans.","tppp":"مانه","tppf":"maanu","ec":"accepting"}},{"entry":{"ts":1527815399,"i":14337,"p":"وهل","f":"wahul","g":"wahul","e":"to hit","c":"v. trans.","tppp":"واهه","tppf":"waahu","ec":"hit,hits,hitting,hit,hit"}},{"entry":{"ts":1527823020,"i":14375,"p":"وېرول","f":"werawúl","g":"werawul","e":"to make afraid, to scare, to make fear","c":"v. trans.","ec":"scare"}},{"entry":{"ts":1527811701,"i":14388,"p":"وېشل","f":"weshul","g":"weshul","e":"divide, distribute, share","c":"v. trans.","ec":"divide"}},{"entry":{"ts":1579015359582,"i":10528,"p":"کول","f":"kawul","g":"kawul","e":"to make ____ ____ (as in \"He's making me angry.\")","c":"v. trans. irreg.","ssp":"کړ","ssf":"kR","prp":"کړل","prf":"kRul","pprtp":"کړی","pprtf":"kúRey","noOo":true,"ec":"make,makes,making,made,made","ep":"_____"}},{"entry":{"ts":1527812752,"i":10527,"p":"کول","f":"kawul","g":"kawul","e":"to do (an action or activity)","c":"v. trans. irreg.","ssp":"وکړ","ssf":"óokR","prp":"وکړل","prf":"óokRul","pprtp":"کړی","pprtf":"kúRey","diacExcept":true,"ec":"do,does,doing,did,done"}},{"entry":{"ts":1527816865,"i":14195,"p":"وړل","f":"wuRúl, oRúl, wRul","g":"wuRul,oRul,wRul","e":"to take, carry, bear, move (inanimate objects); to win, earn (subjunctive یوسي - yósee or ویسي - wéesee, simple past یو یې وړلو - yo ye wRulo)","c":"v. trans. irreg.","ssp":"یوس","ssf":"yos","prp":"یوړل","prf":"yóRul","noOo":true,"separationAtP":2,"separationAtF":2,"diacExcept":true,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527815214,"i":6648,"p":"راوړل","f":"raawRúl","g":"raawRul","e":"to bring, deliver (inanimate objects)","c":"v. trans. irreg.","tppp":"راووړ","tppf":"raawoR","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527819827,"i":6649,"p":"راوستل","f":"raawustúl","g":"raawustul","e":"to bring, deliver (animate objects), obtain, extract","c":"v. trans. irreg.","psp":"راول","psf":"raawul","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527812507,"i":1791,"p":"بوتلل","f":"botlul","g":"botlul","e":"to take, bring, send (animate objects)","c":"v. trans. seperable","psp":"بیای","psf":"byaay","ssp":"بوځ","ssf":"bódz","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527812275,"i":11497,"p":"لیدل","f":"leedul","g":"leedul","e":"to see","c":"v. trans./gramm. trans.","psp":"وین","psf":"ween","tppp":"لید","tppf":"leed","ec":"see,sees,seeing,saw,seen"}},{"entry":{"ts":1577049208257,"i":1060,"p":"اورېدل","f":"awredul","g":"awredul","e":"to hear, listen","c":"v. trans./gramm. trans.","psp":"اور","psf":"awr","tppp":"اورېد","tppf":"awred","ec":"hear,hears,hearing,heard"}},{"entry":{"ts":1527812362,"i":9450,"p":"فرمایل","f":"farmaayul","g":"farmaayul","e":"to speak, order, ordain (polite form)","c":"v. trans./gramm. trans.","ec":"speak,speaks,speaking,spoke,spoken"}},{"entry":{"ts":1527812751,"i":9928,"p":"کتل","f":"katul","g":"katul","e":"to look, see, watch, examine; to meet with","c":"v. trans./gramm. trans.","psp":"ګور","psf":"gor","tppp":"کوت","tppf":"kot","ec":"look"}},{"entry":{"ts":1527815396,"i":14052,"p":"وایل","f":"waayul","g":"waayul","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"entry":{"ts":1527817013,"i":14397,"p":"ویل","f":"wayul, wayl","g":"wayul,wayl","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"ts":1527816466,"i":8670,"p":"صلح","f":"sUlha","g":"sUlha","e":"peace","c":"n. f."},{"ts":1527816589,"i":8743,"p":"طرح","f":"tarha","g":"tarha","e":"plan","c":"n. f."},{"ts":1589023873660,"i":9397,"p":"فتح","f":"fathá","g":"fatha","e":"victory, conquest","c":"n. f."},{"ts":1527813791,"i":189,"p":"اجازه","f":"ijaaza","g":"ijaaza","e":"permission","c":"n. f."},{"ts":1614083533098,"i":213,"p":"اجنډه","f":"ajanDa","g":"ajanDa","e":"agenda","c":"n. f."},{"ts":1527816215,"i":316,"p":"اداره","f":"idaara","g":"idaara","e":"administration, management, directorate","c":"n. f."},{"ts":1527812687,"i":319,"p":"ادامه","f":"idaama","g":"idaama","e":"continuation","c":"n. f."},{"ts":1527811661,"i":341,"p":"اډه","f":"aDa","g":"aDa","e":"base, army post, (air) port","c":"n. f."},{"ts":1527814310,"i":380,"p":"ارزونه","f":"arzawuna","g":"arzawuna","e":"evaluation, appraisal, assessment","c":"n. f."},{"ts":1527821380,"i":397,"p":"اره","f":"ara","g":"ara","e":"saw (the tool)","c":"n. f."},{"ts":1527822277,"i":478,"p":"اسپه","f":"aspa","g":"aspa","e":"mare, female horse; fever","c":"n. f."},{"ts":1527814922,"i":607,"p":"اضافه","f":"izaafa","g":"izaafa","e":"addition, add-on, augmentation","c":"n. f."},{"ts":1527822458,"i":670,"p":"افاده","f":"ifaada","g":"ifaada","e":"expression","c":"n. f."},{"ts":1527813303,"i":683,"p":"افسانه","f":"afsaana","g":"afsaana","e":"myth, legend, fairy tale","c":"n. f."},{"ts":1527822494,"i":868,"p":"انانګه","f":"anaangá","g":"anaanga","e":"cheek","c":"n. f."},{"ts":1527817225,"i":918,"p":"اندازه","f":"andaaza","g":"andaaza","e":"measure, dimension, extent, scale","c":"n. f."},{"ts":1527813759,"i":925,"p":"اندېښنه","f":"andexna","g":"andexna","e":"worry, concern, fear","c":"n. f."},{"ts":1527815787,"i":1077,"p":"اوږه","f":"ooGá","g":"ooga","e":"shoulder","c":"n. f."},{"ts":1527813787,"i":1092,"p":"اوښکه","f":"ooxka","g":"ooxka","e":"tear (from eye)","c":"n. f."},{"ts":1527819927,"i":1181,"p":"اینه","f":"éena","g":"eena","e":"liver","c":"n. f."},{"ts":1527816261,"i":1337,"p":"بټوه","f":"baTwa","g":"baTwa","e":"wallet","c":"n. f."},{"ts":1527812001,"i":1483,"p":"برخه","f":"barkha","g":"barkha","e":"poriton, part, share","c":"n. f."},{"ts":1578009902092,"i":1514,"p":"برقه","f":"bUrqá","g":"bUrka","e":"veil, burka","c":"n. f."},{"ts":1527816994,"i":1538,"p":"برنامه","f":"barnaama","g":"barnaama","e":"program","c":"n. f."},{"ts":1579294091093,"i":1541,"p":"برنډه","f":"baranDá","g":"baranDa","e":"balcony, veranda, porch","c":"n. f."},{"ts":1527823617,"i":1585,"p":"بزه","f":"bazá","g":"baza","e":"crime, offense, sin, guilt, fault","c":"n. f."},{"ts":1527823619,"i":1586,"p":"بزه","f":"bUzá","g":"bUza","e":"moth","c":"n. f."},{"ts":1527823620,"i":1587,"p":"بزه","f":"bza","g":"bza","e":"patch (in a garment)","c":"n. f.","ec":"patch","ep":"patches"},{"ts":1591026261598,"i":1588,"p":"بزه","f":"buza","g":"buza","e":"she-goat","c":"n. f."},{"ts":1574188090133,"i":1598,"p":"بسپنه","f":"baspuna","g":"baspuna","e":"contribution, donation, gift, charity","c":"n. f."},{"ts":1527816590,"i":1612,"p":"بسنه","f":"basuna","g":"basuna","e":"sufficiency, to have enough or get by","c":"n. f."},{"ts":1593852212828,"i":2010,"p":"بېره","f":"béra","g":"bera","e":"fear, fright","c":"n. f."},{"ts":1527815862,"i":2022,"p":"بېړه","f":"beRa","g":"beRa","e":"speed, rush, hurry, urgency","c":"n. f."},{"ts":1527815156,"i":2186,"p":"پاڼه","f":"paaNa","g":"paaNa","e":"leaf","c":"n. f.","ec":"leaf","ep":"leaves"},{"ts":1527813481,"i":2366,"p":"پروژه","f":"projza","g":"projza","e":"project","c":"n. f."},{"ts":1527818409,"i":2370,"p":"پروسه","f":"purosa","g":"purosa","e":"process","c":"n. f."},{"ts":1527815192,"i":2393,"p":"پرېکړه","f":"prékRa","g":"prekRa","e":"decision","c":"n. f."},{"ts":1527822412,"i":2429,"p":"پزه","f":"páza","g":"paza","e":"nose","c":"n. f."},{"ts":1527816124,"i":2493,"p":"پښه","f":"pxa","g":"pxa","e":"foot","c":"n. f.","ec":"foot","ep":"feet"},{"ts":1527815155,"i":2538,"p":"پلمه","f":"palma","g":"palma","e":"pretext, excuse","c":"n. f."},{"ts":1566469328688,"i":2620,"p":"پنکه","f":"panka","g":"panka","e":"fan","c":"n. f."},{"ts":1527815184,"i":2751,"p":"پوښتنه","f":"poxtuna","g":"poxtuna","e":"question","c":"n. f."},{"ts":1527822437,"i":2966,"p":"تاخچه","f":"taakhchá","g":"taakhcha","e":"shelf, niche","c":"n. f.","ec":"shelf","ep":"shelves"},{"ts":1527814974,"i":3073,"p":"تبه","f":"tuba","g":"tuba","e":"fever","c":"n. f."},{"ts":1527815332,"i":3673,"p":"تمه","f":"tama","g":"tama","e":"expectation","c":"n. f."},{"ts":1527815716,"i":3954,"p":"تیږه","f":"teeGa","g":"teega","e":"stone, rock","c":"n. f."},{"ts":1582390417084,"i":3957,"p":"تېښته","f":"téxta","g":"texta","e":"escape, flight, running away","c":"n. f."},{"ts":1527822268,"i":3997,"p":"ټانګه","f":"Taangá","g":"Taanga","e":"carriage, buggy","c":"n. f."},{"ts":1527812014,"i":4125,"p":"ټولنه","f":"Toluna","g":"Toluna","e":"society, association, gathering, assembly, congregation","c":"n. f."},{"ts":1527816696,"i":4405,"p":"جمله","f":"jUmla","g":"jUmla","e":"sentence; whole, total, sum","c":"n. f."},{"ts":1527820504,"i":4590,"p":"ځمکه","f":"dzmúka","g":"dzmuka","e":"land, earth, ground","c":"n. f."},{"ts":1527815497,"i":5159,"p":"څېره","f":"tsera","g":"tsera","e":"face, picture","c":"n. f."},{"ts":1527811993,"i":5307,"p":"حمله","f":"hamla","g":"hamla","e":"attack, assault","c":"n. f."},{"ts":1527812720,"i":7274,"p":"ژبه","f":"jzúba, jzíba","g":"jzuba,jziba","e":"language","c":"n. f."},{"ts":1527812052,"i":5570,"p":"خښته","f":"khuxta","g":"khuxta","e":"brick, cinder-block","c":"n. f."},{"ts":1527813475,"i":6161,"p":"دقیقه","f":"daqeeqa","g":"dakeeka","e":"minute","c":"n. f.","app":"دقائق","apf":"daqaa'iq"},{"ts":1527812542,"i":6227,"p":"دمه","f":"dama","g":"dama","e":"break, rest","c":"n. f."},{"ts":1527812085,"i":6230,"p":"دنده","f":"danda","g":"danda","e":"obligation, duty, responsibility; job, work, position","c":"n. f."},{"ts":1527822847,"i":7262,"p":"ژامه","f":"jzaamá","g":"jzaama","e":"jaw","c":"n. f."},{"ts":1527815278,"i":8179,"p":"شپه","f":"shpa","g":"shpa","e":"night","c":"n. f."},{"ts":1527813145,"i":9609,"p":"قبیله","f":"qabeela","g":"kabeela","e":"tribe","c":"n. f.","app":"قبایل","apf":"qabaayul"},{"ts":1566653299904,"i":10286,"p":"کمره","f":"kamara","g":"kamara","e":"camera","c":"n. f."},{"ts":1527812825,"i":10431,"p":"کوڅه","f":"kootsa","g":"kootsa","e":"street","c":"n. f."},{"ts":1527812756,"i":10610,"p":"کېله","f":"kela","g":"kela","e":"banana","c":"n. f."},{"ts":1527812859,"i":11380,"p":"لوبه","f":"lóba","g":"loba","e":"game, match","c":"n. f."},{"ts":1527819087,"i":11561,"p":"ماته","f":"maata","g":"maata","e":"defeat","c":"n. f."},{"ts":1588076706989,"i":12189,"p":"مسافه","f":"masaafá","g":"masaafa","e":"distance, span","c":"n. f."},{"ts":1527818358,"i":12766,"p":"مڼه","f":"maNá","g":"maNa","e":"apple","c":"n. f."},{"ts":1527812901,"i":12942,"p":"مېده","f":"meda","g":"meda","e":"stomach","c":"n. f."},{"ts":1527813387,"i":13345,"p":"نښته","f":"nuxúta","g":"nuxuta","e":"battle, skirmish, wrangle, quarrel, fighting, gluing, joining","c":"n. f."},{"ts":1527815110,"i":13351,"p":"نښه","f":"náxa, núxa","g":"naxa,nuxa","e":"sign, mark, indication","c":"n. f."},{"ts":1527813391,"i":13626,"p":"نېټه","f":"neTa","g":"neTa","e":"date (as in time)","c":"n. f."},{"ts":1527811429,"i":13745,"p":"هدیره","f":"hadeera","g":"hadeera","e":"graveyard, cemetery","c":"n. f."},{"ts":1527814323,"i":13746,"p":"هدیه","f":"hadiya","g":"hadiya","e":"gift, present, donation, contribution","c":"n. f."},{"ts":1527812655,"i":13807,"p":"هفته","f":"hafta","g":"hafta","e":"week","c":"n. f."},{"ts":1527812681,"i":13944,"p":"هوکړه","f":"hókRa","g":"hokRa","e":"agreement","c":"n. f."},{"ts":1578343468611,"i":14050,"p":"واڼه","f":"wáaNa","g":"waaNa","e":"tendon, sinew; hamstring","c":"n. f."},{"ts":1527822717,"i":14051,"p":"واوره","f":"wáawra","g":"waawra","e":"snow","c":"n. f."},{"ts":1527811207,"i":14151,"p":"وروځه","f":"wróodza","g":"wroodza","e":"eyebrow","c":"n. f."},{"ts":1527816375,"i":14178,"p":"ورېره","f":"wrera","g":"wrera","e":"niece; brother's daughter","c":"n. f."},{"ts":1527822259,"i":14229,"p":"وږمه","f":"waGmá","g":"wagma","e":"breeze, light wind","c":"n. f."},{"ts":1527814719,"i":14240,"p":"وسله","f":"wasla","g":"wasla","e":"weapon, firearm, artillery","c":"n. f."},{"ts":1527823717,"i":9914,"p":"کپړه","f":"kapRá","g":"kapRa","e":"cloth, fabric, material, clothing, garment","c":"n. f."},{"ts":1527816257,"i":9922,"p":"کتابچه","f":"kitaabcha","g":"kitaabcha","e":"notebook, little book","c":"n. f."},{"ts":1527820050,"i":9972,"p":"کڅوړه","f":"katsóRa","g":"katsoRa","e":"bag, purse","c":"n. f."},{"ts":1527813252,"i":10015,"p":"کرښه","f":"kurxa","g":"kurxa","e":"line, trace","c":"n. f."},{"ts":1527823590,"i":10045,"p":"کره","f":"kará","g":"kara","e":"sphere, globe","c":"n. f."},{"ts":1527823591,"i":10046,"p":"کره","f":"kára","g":"kara","e":"shovel, scraper, scoop","c":"n. f."},{"ts":1527815884,"i":10049,"p":"کره کتنه","f":"karakatuna","g":"karakatuna","e":"criticism","c":"n. f."},{"ts":1527823035,"i":10058,"p":"کروړه","f":"karoRá","g":"karoRa","e":"whip","c":"n. f."},{"ts":1527816870,"i":10060,"p":"کرونده","f":"karwanda","g":"karwanda","e":"farmland","c":"n. f."},{"ts":1527817371,"i":10066,"p":"کریږه","f":"kreeGa","g":"kreega","e":"lament, mourning aloud, wail, cry (also out of hapiness)","c":"n. f."},{"ts":1598119732734,"i":10068,"p":"کرېله","f":"karelá","g":"karela","e":"bitter melon","c":"n. f."},{"ts":1527820606,"i":7834,"p":"سمڅه","f":"smútsa","g":"smutsa","e":"cave, cavern","c":"n. f."},{"ts":1527815249,"i":7874,"p":"سندره","f":"sandura","g":"sandura","e":"song, poem, verse","c":"n. f."},{"ts":1591034128816,"i":7906,"p":"سهوه","f":"sáhwa","g":"sahwa","e":"mistake, error, blunder, fault","c":"n. f."},{"ts":1527814370,"i":7970,"p":"سوږمه","f":"soGma","g":"sogma","e":"nostril","c":"n. f."},{"ts":1527817498,"i":7986,"p":"سوکړه","f":"sookRá","g":"sookRa","e":"famine, starvation, serious hunger/lack of food, drought, crop failure","c":"n. f."},{"ts":1527813115,"i":331,"p":"ادعا","f":"idaa","g":"idaa","e":"claim","c":"n. f."},{"ts":1527818119,"i":836,"p":"امسا","f":"amsaa","g":"amsaa","e":"stick, walking staff, walking stick, crutch","c":"n. f."},{"ts":1527815043,"i":4323,"p":"جزا","f":"jazaa","g":"jazaa","e":"punishment, retribution","c":"n. f."},{"ts":1527819022,"i":4987,"p":"څا","f":"tsaa","g":"tsaa","e":"well, water-hole","c":"n. f."},{"ts":1527814225,"i":5578,"p":"خطا","f":"khataa","g":"khataa","e":"mistake, error, blunder","c":"n. f."},{"ts":1610797589510,"i":5599,"p":"خلا","f":"khaláa","g":"khalaa","e":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","c":"n. f."},{"ts":1527812582,"i":6134,"p":"دعا","f":"dUaa","g":"dUaa","e":"prayer","c":"n. f."},{"ts":1527813415,"i":6252,"p":"دوا","f":"dawaa","g":"dawaa","e":"medicine, medication","c":"n. f."},{"ts":1527812272,"i":6839,"p":"رڼا","f":"raNaa","g":"raNaa","e":"light, glory","c":"n. f."},{"ts":1527823245,"i":6923,"p":"رویا","f":"rooyáa","g":"rooyaa","e":"dream, vision","c":"n. f."},{"ts":1586596579414,"i":8435,"p":"شورا","f":"shooraa","g":"shooraa","e":"council (an institution)","c":"n. f."},{"ts":1527815984,"i":8560,"p":"ښکلا","f":"xkulaa","g":"xkulaa","e":"beauty","c":"n. f."},{"ts":1527817670,"i":9150,"p":"غلا","f":"ghlaa","g":"ghlaa","e":"theft, robbery, stealing","c":"n. f."},{"ts":1527814362,"i":9214,"p":"غوا","f":"ghwaa","g":"ghwaa","e":"cow","c":"n. f."},{"ts":1585487002625,"i":9698,"p":"قلا","f":"qaláa","g":"kalaa","e":"castle, fort, fortress","c":"n. f."},{"ts":1527812048,"i":11647,"p":"مانا","f":"maanaa","g":"maanaa","e":"meaning, sense, spirit","c":"n. f."},{"ts":1527815483,"i":12550,"p":"ملا","f":"mlaa","g":"mlaa","e":"back (body part)","c":"n. f."},{"ts":1527812230,"i":12608,"p":"ملګرتیا","f":"malgurtiyaa","g":"malgurtiyaa","e":"friendship","c":"n. f."},{"ts":1527812910,"i":12989,"p":"مېلمستیا","f":"melmastiyaa","g":"melmastiyaa","e":"hospitality; invitation, event, party, banquet, reception","c":"n. f."},{"ts":1617781446945,"i":13049,"p":"ناجوړتیا","f":"naajoRtiyaa, naajoRtyaa","g":"naajoRtiyaa,naajoRtyaa","e":"sickness, illness","c":"n. f."},{"ts":1527815120,"i":13608,"p":"نیا","f":"niyaa","g":"niyaa","e":"grandmother","c":"n. f."},{"ts":1527811740,"i":13671,"p":"نیمګړتیا","f":"neemguRtiyaa","g":"neemguRtiyaa","e":"incompleteness, default, shortcoming","c":"n. f."},{"ts":1527821040,"i":14053,"p":"وبا","f":"wabáa","g":"wabaa","e":"plague, cholera","c":"n. f."},{"ts":1527823534,"i":14191,"p":"وړتیا","f":"waRtiyáa","g":"waRtiyaa","e":"ability, capacity, capability, power, volumeá","c":"n. f."},{"ts":1610443988250,"i":14389,"p":"وېشلتیا","f":"weshiltyaa, weshiltiyaa","g":"weshiltyaa,weshiltiyaa","e":"division, distribution","c":"n. f."},{"ts":1527816806,"i":14405,"p":"وینا","f":"waynaa","g":"waynaa","e":"speech, statement","c":"n. f."},{"ts":1527815197,"i":2488,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},{"ts":1527813148,"i":2362,"p":"پروت","f":"prot","g":"prot","e":"lying, lying down or on, located, situated","c":"adj. irreg.","infap":"پراته","infaf":"praatu","infbp":"پرت","infbf":"prat"},{"ts":1574867531681,"i":2712,"p":"پوخ","f":"pokh","g":"pokh","e":"mature, ripe, ready, cooked, able, skillful, experienced, tried, tested, true","c":"adj. irreg.","infap":"پاخه","infaf":"paakhu","infbp":"پخ","infbf":"pakh"},{"ts":1576952412644,"i":2739,"p":"پوست","f":"post","g":"post","e":"soft, tender, gentle, loosened","c":"adj. irreg.","infap":"پاسته","infaf":"paastu","infbp":"پست","infbf":"past"},{"ts":1527815366,"i":3340,"p":"تریخ","f":"treekh","g":"treekh","e":"bitter, hot, spicy (of food); terrible, miserable (of life)","c":"adj. irreg.","infap":"تراخه","infaf":"traakhu","infbp":"ترخ","infbf":"turkh"},{"ts":1527818789,"i":3349,"p":"تریو","f":"treew","g":"treew","e":"salty, savoury, sour, acid, bitter, grumpy","c":"adj. irreg.","infap":"تراوه","infaf":"traawu","infbp":"ترو","infbf":"truw"},{"ts":1527817664,"i":3786,"p":"تود","f":"tod","g":"tod","e":"warm, hot","c":"adj.","infap":"تاوده","infaf":"taawdu","infbp":"تود","infbf":"tawd"},{"ts":1527816071,"i":5431,"p":"خپور","f":"khpor","g":"khpor","e":"spread, dispersed, publicized, published","c":"adj.","infap":"خپاره","infaf":"khpaaru","infbp":"خپر","infbf":"khpar"},{"ts":1574865652928,"i":5752,"p":"خوږ","f":"khoG","g":"khog","e":"sweet, nice","c":"adj. irreg.","infap":"خواږه","infaf":"khwaaGu","infbp":"خوږ","infbf":"khwaG"},{"ts":1527813499,"i":6079,"p":"دروند","f":"droond","g":"droond","e":"heavy; respectable, reliable, serious","c":"adj.","infap":"درانه","infaf":"draanu","infbp":"درن","infbf":"dran"},{"ts":1527813943,"i":6597,"p":"راستون","f":"raastoon","g":"raastoon","e":"returned, come back","c":"adj.","infap":"راستانه","infaf":"raastaanu","infbp":"راستن","infbf":"raastan"},{"ts":1576596860977,"i":6918,"p":"روڼ","f":"rooN","g":"rooN","e":"shiny, bright, clear, enlightened, transparent","c":"adj. irreg.","infap":"راڼه","infaf":"raaNu","infbp":"رڼ","infbf":"raN"},{"ts":1527811971,"i":6977,"p":"ړوند","f":"Roond","g":"Roond","e":"blind","c":"adj.","infap":"ړانده","infaf":"Raandu","infbp":"ړند","infbf":"Rand"},{"ts":1527815451,"i":7190,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},{"ts":1527815300,"i":7467,"p":"سپور","f":"spor","g":"spor","e":"mounted, rider, riding","c":"adj.","infap":"سپاره","infaf":"spaaru","infbp":"سپر","infbf":"spar"},{"ts":1527819505,"i":7553,"p":"ستون","f":"stoon","g":"stoon","e":"returned, returning, being (in a place after returning, coming back etc.), delayed, late, lagging","c":"adj. irreg.","infap":"ستانه","infaf":"staanu","infbp":"ستن","infbf":"stan"},{"ts":1600080053835,"i":7946,"p":"سور","f":"sor","g":"sor","e":"riding, mounted (Pakistani)","c":"adj.","infap":"سواره","infaf":"swaaru","infbp":"سور","infbf":"swar"},{"ts":1527813068,"i":7964,"p":"سوړ","f":"soR","g":"soR","e":"cold, cool; patient; lazy; inactive; satisfied","c":"adj.","infap":"ساړه","infaf":"saaRu","infbp":"سړ","infbf":"saR"},{"ts":1575924767041,"i":8181,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},{"ts":1527813172,"i":10495,"p":"کوږ","f":"koG","g":"kog","e":"crooked, bent","c":"adj.","infap":"کاږه","infaf":"kaaGu","infbp":"کږ","infbf":"kaG"},{"ts":1527811973,"i":10577,"p":"کوڼ","f":"kooN","g":"kooN","e":"deaf","c":"adj.","infap":"کاڼه","infaf":"kaaNu","infbp":"کڼ","infbf":"kaN"},{"ts":1527817123,"i":11460,"p":"لومد","f":"loomd","g":"loomd","e":"damp, wet, moist, humid","c":"adj.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527817117,"i":11466,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لانده","infaf":"laandu","infbp":"لند","infbf":"land"},{"ts":1576889120767,"i":11467,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527812927,"i":12853,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},{"ts":1527812908,"i":12990,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},{"ts":1579463171333,"i":13555,"p":"نوږ","f":"noG","g":"nog","e":"cleansed, cleaned, purified","c":"adj.","infap":"ناږه","infaf":"naaGu","infbp":"نږ","infbf":"naG"},{"ts":1576113803291,"i":14345,"p":"ووړ","f":"woR","g":"woR","e":"small, little","c":"adj. irreg.","infap":"واړه","infaf":"waaRu","infbp":"وړ","infbf":"waR"},{"ts":1527819244,"i":10448,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},{"ts":1527814150,"i":11038,"p":"لار","f":"laar","g":"laar","e":"road, way, path","c":"n. f."},{"ts":1527815417,"i":14121,"p":"ورځ","f":"wradz","g":"wradz","e":"day","c":"n. f."},{"ts":1527812922,"i":12923,"p":"میاشت","f":"miyaasht","g":"miyaasht","e":"month","c":"n. f."},{"ts":1527823306,"i":5117,"p":"څنګل","f":"tsangúl","g":"tsangul","e":"elbow","c":"n. f."},{"ts":1527813824,"i":9365,"p":"غېږ","f":"gheG","g":"gheg","e":"bosom, breast; wrestling","c":"n. f."},{"ts":1527820524,"i":5058,"p":"څرمن","f":"tsarmún","g":"tsarmun","e":"pelt, skin, hide, leather","c":"n. f."},{"ts":1527814147,"i":1567,"p":"بړستن","f":"bRastun","g":"bRastun","e":"blanket, coving, quilt","c":"n. f."},{"ts":1527818707,"i":3249,"p":"ترخځ","f":"turkhúdz","g":"turkhudz","e":"wedge; gusset (in a shirt)","c":"n. f."},{"ts":1527822792,"i":3825,"p":"توشک","f":"toshák","g":"toshak","e":"narrow mattress used as a bed or a couch, reversible rug","c":"n. f.","ec":"toshak"},{"ts":1527813294,"i":7329,"p":"ږمنځ","f":"Gmundz","g":"gmundz","e":"comb","c":"n. f."},{"ts":1527811580,"i":7540,"p":"ستن","f":"stun","g":"stun","e":"needle, injection; pillar, mast","c":"n. f."},{"ts":1527815779,"i":10321,"p":"کنځل","f":"kundzul","g":"kundzul","e":"swearing, name-calling, verbal abuse, bad language","c":"n. f."},{"ts":1527817456,"i":11320,"p":"لمن","f":"lamun","g":"lamun","e":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","c":"n. f."},{"ts":1527822725,"i":11478,"p":"لوېشت","f":"lwesht","g":"lwesht","e":"span","c":"n. f."},{"ts":1527811609,"i":12749,"p":"منګل","f":"mangul","g":"mangul","e":"claw, paw","c":"n. f."},{"ts":1527821684,"i":14176,"p":"ورېځ","f":"wurédz","g":"wuredz","e":"cloud","c":"n. f."},{"ts":1527812432,"i":66,"p":"آسمان","f":"aasmaan","g":"aasmaan","e":"sky, heaven","c":"n. m."},{"ts":1527812431,"i":83,"p":"آم","f":"aam","g":"aam","e":"mango","c":"n. m."},{"ts":1527812434,"i":99,"p":"آواز","f":"aawaaz","g":"aawaaz","e":"sound, voice","c":"n. m."},{"ts":1527816724,"i":140,"p":"اتاق","f":"wutáaq, Utáaq","g":"wutaak,Utaak","e":"room, chamber","c":"n. m.","diacExcept":true},{"ts":1527811859,"i":142,"p":"اتحاد","f":"itihaad","g":"itihaad","e":"union, alliance","c":"n. m."},{"ts":1527822033,"i":145,"p":"اتصال","f":"ittisáal","g":"ittisaal","e":"joining, connection, contiguity, junction","c":"n. m."},{"ts":1527811858,"i":146,"p":"اتفاق","f":"itifaaq","g":"itifaak","e":"unity, alliance, agreement, understanding, consent; coincidence","c":"n. m."},{"ts":1527813560,"i":166,"p":"اتهام","f":"itihaam","g":"itihaam","e":"accusation, charge, indictment","c":"n. m.","app":"اتهامات","apf":"itihaamáat"},{"ts":1527812105,"i":234,"p":"احترام","f":"ihtiraam","g":"ihtiraam","e":"respect, honor, esteem, deference","c":"n. m."},{"ts":1527819653,"i":240,"p":"احتمال","f":"ihtimaal","g":"ihtimaal","e":"possibility, probability, likelihood","c":"n. m."},{"ts":1527812689,"i":242,"p":"احتیاج","f":"ihtiyaaj","g":"ihtiyaaj","e":"need, requirement","c":"n. m.","app":"احتیاجات","apf":"ihtiyaajáat"},{"ts":1527812690,"i":244,"p":"احتیاط","f":"ihtiyaat","g":"ihtiyaat","e":"caution","c":"n. m."},{"ts":1527813782,"i":246,"p":"احساس","f":"ahsaas","g":"ahsaas","e":"feeling, sensation, emotion","c":"n. m."},{"ts":1527817303,"i":630,"p":"اعتراض","f":"itiraaz","g":"itiraaz","e":"objection, protest","c":"n. m."},{"ts":1527813418,"i":667,"p":"اغېز","f":"aghez","g":"aghez","e":"influence, effect, affect, action","c":"n. m."},{"ts":1527816625,"i":672,"p":"افت","f":"afat","g":"afat","e":"disaster","c":"n. m."},{"ts":1527813558,"i":761,"p":"الزام","f":"ilzaam","g":"ilzaam","e":"accusation, charge, blame","c":"n. m."},{"ts":1527815388,"i":853,"p":"امید","f":"Umeed","g":"Umeed","e":"hope, expectation","c":"n. m."},{"ts":1527812453,"i":908,"p":"انځور","f":"andzoor","g":"andzoor","e":"picture, painting, image","c":"n. m."},{"ts":1527813827,"i":1034,"p":"اور","f":"or","g":"or","e":"fire, flame","c":"n. m."},{"ts":1527814787,"i":1236,"p":"باران","f":"baaraan","g":"baaraan","e":"rain","c":"n. m."},{"ts":1527817293,"i":1298,"p":"بام","f":"baam","g":"baam","e":"roof","c":"n. m."},{"ts":1527814849,"i":1302,"p":"بانجن","f":"baanjan","g":"baanjan","e":"eggplant","c":"n. m."},{"ts":1527814106,"i":1359,"p":"بحران","f":"bUhraan","g":"bUhraan","e":"crisis","c":"n. m."},{"ts":1527814885,"i":1361,"p":"بخت","f":"bakht","g":"bakht","e":"fortune, luck, fate","c":"n. m."},{"ts":1527811281,"i":1754,"p":"بڼ","f":"baN","g":"baN","e":"garden","c":"n. m."},{"ts":1624039195280,"i":1817,"p":"بورس","f":"boors","g":"boors","e":"scholarship","c":"n. m."},{"ts":1527816877,"i":2009,"p":"بیرغ","f":"beyragh","g":"beyragh","e":"flag","c":"n. m."},{"ts":1527820423,"i":2140,"p":"پاسپورټ","f":"paasporT","g":"paasporT","e":"passport","c":"n. m."},{"ts":1527813224,"i":2511,"p":"پل","f":"pUl","g":"pUl","e":"bridge","c":"n. m.","infap":"پله","infaf":"plu","infbp":"پل","infbf":"pl"},{"ts":1527813480,"i":2520,"p":"پلان","f":"plaan","g":"plaan","e":"plan","c":"n. m."},{"ts":1527815199,"i":2525,"p":"پلاو","f":"pulaaw","g":"pulaaw","e":"pulaaw (central-asian/middle-eastern rice dish), pilaf","c":"n. m."},{"ts":1527815185,"i":2716,"p":"پور","f":"por","g":"por","e":"loan, debt","c":"n. m."},{"ts":1527815176,"i":2795,"p":"پیاز","f":"piyaaz","g":"piyaaz","e":"onion","c":"n. m."},{"ts":1527815171,"i":2925,"p":"پیل","f":"peyl","g":"peyl","e":"start","c":"n. m."},{"ts":1527816610,"i":2962,"p":"تاج","f":"taaj","g":"taaj","e":"crown, crest","c":"n. m."},{"ts":1527822373,"i":2994,"p":"تاک","f":"taak","g":"taak","e":"vine; mouthful","c":"n. m."},{"ts":1527815326,"i":3039,"p":"تایید","f":"taayeed","g":"taayeed","e":"confirmation","c":"n. m."},{"ts":1527815357,"i":3157,"p":"تخم","f":"tUkhum","g":"tUkhum","e":"seed","c":"n. m."},{"ts":1527821586,"i":3247,"p":"ترحم","f":"tarahhÚm","g":"tarahhUm","e":"pity, sympathy","c":"n. m."},{"ts":1527811389,"i":3458,"p":"تصویر","f":"tasweer","g":"tasweer","e":"picture","c":"n. m.","app":"تصاویر","apf":"tasaaweer"},{"ts":1527814679,"i":3463,"p":"تضمین","f":"tazmeen","g":"tazmeen","e":"guarantee, insurance, security","c":"n. m."},{"ts":1527814258,"i":3550,"p":"تقریر","f":"taqreer","g":"takreer","e":"speech, lecture","c":"n. m."},{"ts":1527821670,"i":3558,"p":"تقلب","f":"taqalÚb","g":"takalUb","e":"cheating, deception, fraud, forgery","c":"n. m."},{"ts":1527811602,"i":3585,"p":"تکل","f":"takál","g":"takal","e":"attempt, aspiration, intention, effort","c":"n. m."},{"ts":1527813398,"i":3595,"p":"تګ","f":"tug, tag","g":"tug,tag","e":"movement, motion, going","c":"n. m."},{"ts":1527822126,"i":3635,"p":"تلین","f":"tleen","g":"tleen","e":"anniversary","c":"n. m."},{"ts":1527811308,"i":3639,"p":"تماس","f":"tamaas","g":"tamaas","e":"contact, touch","c":"n. m."},{"ts":1527817900,"i":3682,"p":"تن","f":"tan","g":"tan","e":"body, flesh","c":"n. m."},{"ts":1527821061,"i":3685,"p":"تناقض","f":"tanaaqÚz","g":"tanaakUz","e":"contrast, opposition, contradiction","c":"n. m."},{"ts":1527822387,"i":3686,"p":"تناو","f":"tanáaw","g":"tanaaw","e":"rope, cord; a measurement of ground or distances","c":"n. m."},{"ts":1527818995,"i":3697,"p":"تندر","f":"tandúr","g":"tandur","e":"lightning","c":"n. m."},{"ts":1527815362,"i":3772,"p":"توپ","f":"top","g":"top","e":"ball; (cannon) ball","c":"n. m."},{"ts":1527816820,"i":3852,"p":"توک","f":"took","g":"took","e":"spit","c":"n. m."},{"ts":1527816520,"i":4001,"p":"ټبر","f":"Tabar","g":"Tabar","e":"family, clan, tribe, people","c":"n. m."},{"ts":1527811348,"i":4002,"p":"ټپ","f":"Tap","g":"Tap","e":"wound","c":"n. m."},{"ts":1527819566,"i":4039,"p":"ټکر","f":"TUkúr","g":"TUkur","e":"piece, part; cloth, fabric","c":"n. m."},{"ts":1527812213,"i":4392,"p":"جمات","f":"jUmaat","g":"jUmaat","e":"mosque","c":"n. m."},{"ts":1527811705,"i":4500,"p":"جوړښت","f":"joRuxt","g":"joRuxt","e":"structure","c":"n. m."},{"ts":1527814058,"i":4614,"p":"ځواب","f":"dzawaab","g":"dzawaab","e":"answer, reply","c":"n. m."},{"ts":1527816887,"i":4615,"p":"ځواک","f":"dzwaak","g":"dzwaak","e":"life, existence, energy, force","c":"n. m."},{"ts":1527814649,"i":4927,"p":"چوک","f":"chok","g":"chok","e":"market square, crossroads, paved area in front of entrance","c":"n. m."},{"ts":1527815065,"i":5027,"p":"څټک","f":"tsaTak, tsTuk","g":"tsaTak,tsTuk","e":"hammer","c":"n. m."},{"ts":1527814589,"i":5116,"p":"څنګ","f":"tsang","g":"tsang","e":"side","c":"n. m."},{"ts":1527816228,"i":5212,"p":"حد","f":"had","g":"had","e":"boundary, limit, extent","c":"n. m.","app":"حدود","apf":"hUdood"},{"ts":1527813749,"i":5285,"p":"حکومت","f":"hUkoomat","g":"hUkoomat","e":"government, reign, rule","c":"n. m."},{"ts":1527814125,"i":5288,"p":"حل","f":"hal","g":"hal","e":"solution","c":"n. m."},{"ts":1527818703,"i":5432,"p":"خت","f":"khut","g":"khut","e":"shirt","c":"n. m."},{"ts":1527813804,"i":5694,"p":"خوب","f":"khob","g":"khob","e":"sleep, dream","c":"n. m."},{"ts":1527812815,"i":5816,"p":"خوندیتوب","f":"khwundeetob","g":"khwundeetob","e":"safety, security","c":"n. m."},{"ts":1527813763,"i":6352,"p":"دین","f":"deen","g":"deen","e":"religion, faith","c":"n. m."},{"ts":1527811517,"i":7757,"p":"سفر","f":"safar","g":"safar","e":"journey, travel","c":"n. m."},{"ts":1527815389,"i":8951,"p":"عمر","f":"Úmur","g":"Umur","e":"age, life","c":"n. m."},{"ts":1527816746,"i":9015,"p":"غاښ","f":"ghaax","g":"ghaax","e":"tooth","c":"n. m.","ec":"tooth","ep":"teeth"},{"ts":1527812631,"i":9283,"p":"غوږ","f":"ghwuG, ghwaG","g":"ghwug,ghwag","e":"ear","c":"n. m."},{"ts":1527812265,"i":9445,"p":"فرمان","f":"farmaan","g":"farmaan","e":"decree, order","c":"n. m."},{"ts":1527817205,"i":9518,"p":"فلم","f":"film","g":"film","e":"film, movie","c":"n. m."},{"ts":1527812727,"i":9853,"p":"کال","f":"kaal","g":"kaal","e":"year","c":"n. m."},{"ts":1527812817,"i":9919,"p":"کتاب","f":"kitáab","g":"kitaab","e":"book","c":"n. m."},{"ts":1527812611,"i":10645,"p":"ګام","f":"gaam","g":"gaam","e":"step, move","c":"n. m."},{"ts":1527812641,"i":10809,"p":"ګل","f":"gUl","g":"gUl","e":"rose, flower","c":"n. m."},{"ts":1527812650,"i":10895,"p":"ګواښ","f":"gwaax","g":"gwaax","e":"threat, danger, challeng","c":"n. m."},{"ts":1527813521,"i":11559,"p":"ماتم","f":"maatam","g":"maatam","e":"mourning, grief, grieving, deep sorrow","c":"n. m."},{"ts":1527812176,"i":11604,"p":"ماښام","f":"maaxaam","g":"maaxaam","e":"evening","c":"n. m."},{"ts":1527813601,"i":12081,"p":"مرګ","f":"marg","g":"marg","e":"death","c":"n. m."},{"ts":1527817691,"i":12211,"p":"مستقبل","f":"mUstaqbil","g":"mUstakbil","e":"future","c":"n. m."},{"ts":1527811866,"i":13436,"p":"نقصان","f":"nUqsaan","g":"nUksaan","e":"damage, defect, loss","c":"n. m."},{"ts":1527815122,"i":13590,"p":"نوم","f":"noom","g":"noom","e":"name","c":"n. m.","ppp":"نمونه","ppf":"nUmoona"},{"ts":1527812661,"i":13823,"p":"هلک","f":"halík, halúk","g":"halik,haluk","e":"boy, young lad","c":"n. m. anim."},{"ts":1566476070874,"i":13999,"p":"واټ","f":"waaT","g":"waaT","e":"street, road","c":"n. m."},{"ts":1527816036,"i":14033,"p":"واک","f":"waak","g":"waak","e":"authority, power","c":"n. m."},{"ts":1527815400,"i":14079,"p":"وخت","f":"wakht","g":"wakht","e":"time","c":"n. m."},{"ts":1527818582,"i":14084,"p":"ودانښت","f":"wadaanuxt","g":"wadaanuxt","e":"building, prosperity, habitable state","c":"n. m."},{"ts":1527811441,"i":14093,"p":"ور","f":"war","g":"war","e":"door, gate, entrance","c":"n. m.","infap":"وره","infaf":"wru","infbp":"ور","infbf":"wr"},{"ts":1527815406,"i":14261,"p":"وطن","f":"watán","g":"watan","e":"homeland, home country","c":"n. m."},{"ts":1573149648251,"i":14263,"p":"وطن وال","f":"watanwaal","g":"watanwaal","e":"fellow country-man","c":"n. m.","ec":"fellow country-man","ep":"fellow country-men"},{"ts":1586428847646,"i":14266,"p":"وطنوال","f":"watanwáal","g":"watanwaal","e":"national (person), a citizen or person of that land","c":"n. m."},{"ts":1527822208,"i":14267,"p":"وطواط","f":"watwáat","g":"watwaat","e":"bat, coward, pipsqueak, hesitant person","c":"n. m."},{"ts":1527819571,"i":14338,"p":"وهم","f":"wáhum, wahm","g":"wahum,wahm","e":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","c":"n. m.","app":"اهوام","apf":"ahwáam"},{"ts":1527816332,"i":14355,"p":"ویاړ","f":"wyaaR","g":"wyaaR","e":"pride, glory","c":"n. m."},{"ts":1527815408,"i":14367,"p":"ویده","f":"weedú","g":"weedu","e":"asleep, sleeping","c":"adj."},{"ts":1527812796,"i":8576,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."},{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},{"ts":1527821649,"i":183,"p":"اثرناک","f":"asarnáak","g":"asarnaak","e":"impressive, effective, influencing","c":"adj.","l":1527815870},{"ts":1527818704,"i":352,"p":"ارت","f":"arát","g":"arat","e":"wide, spacious, extensive","c":"adj."},{"ts":1578340121962,"i":447,"p":"ازاد","f":"azáad","g":"azaad","e":"free, released","c":"adj."},{"ts":1527819418,"i":5424,"p":"خپلواک","f":"khpulwaak","g":"khpulwaak","e":"independent, free, autonomous","c":"adj."},{"ts":1527817146,"i":534,"p":"استوګن","f":"astogan","g":"astogan","e":"resident; established, installed, settled","c":"n. m. unisex / adj."},{"ts":1527813713,"i":855,"p":"امیدوار","f":"Umeedwaar","g":"Umeedwaar","e":"hopeful, pregnant","c":"adj."},{"ts":1527819451,"i":968,"p":"انګرېز","f":"angréz","g":"angrez","e":"Englishman, English (adjective)","c":"n. m. anim. unisex / adj."},{"ts":1527820346,"i":987,"p":"انلاین","f":"anlaayn","g":"anlaayn","e":"on-line","c":"adj."},{"ts":1527813667,"i":999,"p":"اهم","f":"ahám","g":"aham","e":"important","c":"adj."},{"ts":1598724912198,"i":1025,"p":"اوچ","f":"ooch","g":"ooch","e":"dry","c":"adj."},{"ts":1527815138,"i":1045,"p":"اورپک","f":"orpak","g":"orpak","e":"insurgent, wicked, terrorist","c":"n. m. anim. / adj."},{"ts":1586452587974,"i":1069,"p":"اوزګار","f":"oozgáar","g":"oozgaar","e":"free, unoccupied, available, at leisure","c":"adj."},{"ts":1527816489,"i":1174,"p":"ایماندار","f":"eemaandaar","g":"eemaandaar","e":"faithful, believer, devoted, correct, true","c":"adj. / n. m. anim. unisex"},{"ts":1527820433,"i":1199,"p":"باتور","f":"baatóor","g":"baatoor","e":"courageous, brave, valiant","c":"adj."},{"ts":1527813425,"i":1371,"p":"بخیل","f":"bakheel","g":"bakheel","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812511,"i":1372,"p":"بد","f":"bud, bad","g":"bud,bad","e":"bad","c":"adj."},{"ts":1527812518,"i":1444,"p":"برابر","f":"buraabur","g":"buraabur","e":"equal, even, all good","c":"adj."},{"ts":1527811861,"i":1460,"p":"بربنډ","f":"barbunD","g":"barbunD","e":"naked; bare","c":"adj."},{"ts":1527811511,"i":1618,"p":"بشپړ","f":"bushpuR","g":"bushpuR","e":"full, complete, total, exhaustive, fulfilled, finished, utmost, superior, mature","c":"adj."},{"ts":1527812515,"i":1671,"p":"بل","f":"bul","g":"bul","e":"other, next","c":"adj."},{"ts":1527815725,"i":1679,"p":"بلد","f":"balad","g":"balad","e":"knowledgeable, informed, acquainted, accustomed, used to, familiar with","c":"adj."},{"ts":1577301753727,"i":1715,"p":"بند","f":"band","g":"band","e":"closed, blocked, stopped","c":"adj."},{"ts":1527812490,"i":1935,"p":"بې کار","f":"be kaar","g":"bekaar","e":"useless","c":"adj."},{"ts":1527812031,"i":2054,"p":"بېل","f":"bel","g":"bel","e":"separate, different, various","c":"adj."},{"ts":1527815144,"i":2148,"p":"پاک","f":"paak","g":"paak","e":"clean, pure","c":"adj."},{"ts":1527815201,"i":2226,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},{"ts":1527815179,"i":2539,"p":"پلن","f":"plun","g":"plun","e":"wide, broad, flat, dull, vapid","c":"adj."},{"ts":1527819059,"i":2605,"p":"پنډ","f":"punD","g":"punD","e":"thick, fat","c":"adj."},{"ts":1611767359178,"i":3264,"p":"ترسناک","f":"tarsnáak","g":"tarsnaak","e":"compassionate","c":"adj."},{"ts":1527813270,"i":3330,"p":"تروش","f":"troosh","g":"troosh","e":"sour; sarcasm","c":"adj. / n. m."},{"ts":1527813817,"i":3723,"p":"تنګ","f":"tang","g":"tang","e":"narrow, tight, cramped, constrained; troubled, bothered, annoyed","c":"adj."},{"ts":1527816354,"i":3917,"p":"تیار","f":"tayaar","g":"tayaar","e":"ready, prepared","c":"adj."},{"ts":1527817056,"i":3947,"p":"تېز","f":"tez","g":"tez","e":"sharp, pointed, quick, fast","c":"adj."},{"ts":1527814076,"i":4126,"p":"ټولنیز","f":"Toluneez","g":"Toluneez","e":"social","c":"adj."},{"ts":1527819864,"i":4148,"p":"ټیټ","f":"TeeT","g":"TeeT","e":"short, low, inferior","c":"adj."},{"ts":1527811894,"i":4175,"p":"ټینګ","f":"Teeng","g":"Teeng","e":"firm, thick, strong, tough, rigid","c":"adj."},{"ts":1527812943,"i":4181,"p":"ثابت","f":"saabit","g":"saabit","e":"constant, firm, fixed, stable, established, proven","c":"adj."},{"ts":1527813085,"i":4194,"p":"ثقیل","f":"saqeel","g":"sakeel","e":"heavy, difficult, hard to digest, indigestible, lazy, burdensome","c":"adj."},{"ts":1527820479,"i":4253,"p":"جاهل","f":"jaahíl","g":"jaahil","e":"ignorant, stupid","c":"adj."},{"ts":1588160800930,"i":4291,"p":"جراح","f":"jarráah","g":"jarraah","e":"surgeon","c":"n. m. anim. unisex"},{"ts":1527812707,"i":4355,"p":"جګ","f":"jig, jug","g":"jig,jug","e":"high, tall","c":"adj."},{"ts":1527816944,"i":4481,"p":"جوت","f":"jawat","g":"jawat","e":"clear, evident, explained, apparent, established","c":"adj."},{"ts":1527822996,"i":4491,"p":"جوخت","f":"jokht","g":"jokht","e":"alongside, adjoining, next to, very close","c":"adj."},{"ts":1527812711,"i":4497,"p":"جوړ","f":"joR","g":"joR","e":"well, healthy, whole, made","c":"adj."},{"ts":1527816323,"i":4580,"p":"ځلاند","f":"dzalaand","g":"dzalaand","e":"shining, sparkling, outstanding, brilliant","c":"adj."},{"ts":1527812291,"i":4617,"p":"ځوان","f":"dzwaan","g":"dzwaan","e":"young, youth, youthful","c":"n. m. anim. unisex / adj."},{"ts":1527820112,"i":4626,"p":"ځوړند","f":"dzwáRund","g":"dzwaRund","e":"hanging","c":"adj."},{"ts":1527819672,"i":4685,"p":"چالاک","f":"chaaláak","g":"chaalaak","e":"crafty, sly, tricky; quick, fast, nimble","c":"adj."},{"ts":1527811230,"i":4730,"p":"چټک","f":"chaTak","g":"chaTak","e":"quick, fast","c":"adj."},{"ts":1527812524,"i":4829,"p":"چلان","f":"chalaan","g":"chalaan","e":"started, in motion","c":"adj."},{"ts":1527815370,"i":5051,"p":"څرګند","f":"tsărgund","g":"tsargund","e":"clear, obvious, apparent, disclosed","c":"adj."},{"ts":1576366107077,"i":5078,"p":"څک","f":"tsak","g":"tsak","e":"straight, upright, pricked up, erect, alert","c":"adj."},{"ts":1527812113,"i":5185,"p":"حاضر","f":"haazir, haazur","g":"haazir,haazur","e":"present, on hand, ready, available, appearing; ready, prepared","c":"adj.","app":"حاضرین","apf":"haazireen"},{"ts":1527820699,"i":5197,"p":"حامل","f":"haamíl","g":"haamil","e":"carrying, transporting, conveying, pregnant","c":"adj."},{"ts":1527819824,"i":5233,"p":"حریص","f":"harées","g":"harees","e":"greedy, mean","c":"adj."},{"ts":1527812669,"i":5244,"p":"حساس","f":"hasaas","g":"hasaas","e":"sensitive, delicate","c":"adj."},{"ts":1527812057,"i":5377,"p":"خام","f":"khaam","g":"khaam","e":"raw, unripe, immature","c":"adj."},{"ts":1527811523,"i":5395,"p":"خاین","f":"khaayin","g":"khaayin","e":"traitor, treacherous","c":"n. m. anim. unisex / adj."},{"ts":1527814219,"i":5420,"p":"خپل","f":"khpul","g":"khpul","e":"relative; one's own, farmiliar","c":"adj. / n. m."},{"ts":1527812795,"i":5426,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},{"ts":1527812808,"i":5667,"p":"خوار","f":"khwaar","g":"khwaar","e":"poor, pitiful, miserable, thin","c":"adj."},{"ts":1527814880,"i":6231,"p":"دنګ","f":"dung","g":"dung","e":"tall, strapping","c":"adj."},{"ts":1527812537,"i":6365,"p":"ډاډمن","f":"DaaDmun","g":"DaaDmun","e":"assured, secure, confident","c":"adj."},{"ts":1527812583,"i":6429,"p":"ډک","f":"Duk","g":"Duk","e":"full","c":"adj."},{"ts":1527822674,"i":6471,"p":"ډنګر","f":"Dungár, Dangár","g":"Dungar,Dangar","e":"singular and plural cattle; bull, ox; thin, skinny, gaunt, emaciated","c":"adj."},{"ts":1527817256,"i":6477,"p":"ډوب","f":"Doob","g":"Doob","e":"drowned, sunk, submerged","c":"adj."},{"ts":1527814277,"i":6905,"p":"روغ","f":"rogh","g":"rogh","e":"healthy, well, intact, good, built-up","c":"adj."},{"ts":1609780006604,"i":7033,"p":"زرخېز","f":"zarkhéz","g":"zarkhez","e":"rich, fruitful","c":"adj."},{"ts":1527817116,"i":7040,"p":"زرغون","f":"zarghóon","g":"zarghoon","e":"green, flourishing, flowering, growing; immature, unripe","c":"adj."},{"ts":1527814026,"i":7051,"p":"زرین","f":"zareen","g":"zareen","e":"golden","c":"adj."},{"ts":1567594312839,"i":7073,"p":"زړه ور","f":"zuRawár","g":"zuRawar","e":"brave, courageous","c":"adj."},{"ts":1527815848,"i":7295,"p":"ژمن","f":"jzman","g":"jzman","e":"dedicated, committed","c":"adj."},{"ts":1527813498,"i":7456,"p":"سپک","f":"spuk","g":"spuk","e":"light; dishonorable, not respectable","c":"adj."},{"ts":1578329248464,"i":7487,"p":"سپین","f":"speen","g":"speen","e":"white (fig. clear, honest, beautiful)","c":"adj."},{"ts":1527811860,"i":7509,"p":"ستر","f":"stur","g":"stur","e":"big, large, great","c":"adj."},{"ts":1527820178,"i":7556,"p":"ستونزمن","f":"stoonzmán","g":"stoonzman","e":"difficult, hard, problematic, fraught with difficulties, tough, awkward","c":"adj."},{"ts":1527815246,"i":7588,"p":"سخت","f":"sakht","g":"sakht","e":"hard, difficult","c":"adj."},{"ts":1527817262,"i":8394,"p":"شنډ","f":"shanD","g":"shanD","e":"barren, sterile, unfruitful, neutralized, diffused","c":"adj."},{"ts":1527813426,"i":8458,"p":"شوم","f":"shoom","g":"shoom","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812625,"i":9044,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},{"ts":1527811846,"i":9867,"p":"کامیاب","f":"kaamyaab","g":"kaamyaab","e":"successful","c":"adj."},{"ts":1527823678,"i":9889,"p":"کاهل","f":"kaahíl","g":"kaahil","e":"lazy, sluggish, stagnant","c":"adj."},{"ts":1527814896,"i":9901,"p":"کبرجن","f":"kaburjun, kibrjun","g":"kaburjun,kibrjun","e":"proud, arrogant","c":"adj."},{"ts":1527813117,"i":10226,"p":"کلک","f":"klak, kluk","g":"klak,kluk","e":"firm, solid, staunch, steadfast, serious, hard, unwavering","c":"adj."},{"ts":1578769492475,"i":10255,"p":"کم","f":"kam","g":"kam","e":"few, little","c":"adj."},{"ts":1578769409512,"i":10287,"p":"کمزور","f":"kamzór","g":"kamzor","e":"weak","c":"adj."},{"ts":1527812639,"i":10710,"p":"ګران","f":"graan","g":"graan","e":"dear, valuable, expensive, difficult","c":"adj."},{"ts":1527816786,"i":10722,"p":"ګرد","f":"gurd","g":"gurd","e":"all, entire, whole, everything; round circular","c":"adj."},{"ts":1527814811,"i":10749,"p":"ګرم","f":"garm, garum","g":"garm,garum","e":"warm, hot","c":"adj."},{"ts":1527817662,"i":10750,"p":"ګرم","f":"gram","g":"gram","e":"guilty, blamed, culprit, culpable","c":"adj."},{"ts":1527812308,"i":10881,"p":"ګڼ","f":"gaN","g":"gaN","e":"thick, dense, heavy, deep, lots","c":"adj."},{"ts":1527813848,"i":11540,"p":"لېوال","f":"lewaal","g":"lewaal","e":"desiring, eager, thirsting, lover","c":"adj."},{"ts":1527816011,"i":11557,"p":"مات","f":"maat","g":"maat","e":"broken, split, defeated","c":"adj."},{"ts":1527812881,"i":11596,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527817007,"i":11634,"p":"مالوم","f":"maaloom","g":"maaloom","e":"known","c":"adj."},{"ts":1527814321,"i":11778,"p":"مثبت","f":"mUsbat","g":"mUsbat","e":"positive; proven","c":"adj."},{"ts":1527811264,"i":11887,"p":"محکوم","f":"mahkoom","g":"mahkoom","e":"condemned, sentenced, criminal; subjugated","c":"adj."},{"ts":1527814802,"i":12039,"p":"مردار","f":"mUrdáar","g":"mUrdaar","e":"foul, unclean, dirty","c":"adj."},{"ts":1527821812,"i":12461,"p":"مغرور","f":"maghróor","g":"maghroor","e":"haughty, arrogant, conceited","c":"adj."},{"ts":1527820222,"i":12560,"p":"ملاست","f":"mlaast","g":"mlaast","e":"lying down, lying","c":"adj."},{"ts":1527814344,"i":12785,"p":"مهم","f":"mUhím","g":"mUhim","e":"important","c":"adj."},{"ts":1527816033,"i":13071,"p":"نادر","f":"naadir","g":"naadir","e":"uncommon","c":"adj."},{"ts":1527815106,"i":13109,"p":"ناست","f":"naast","g":"naast","e":"sitting, seated","c":"adj."},{"ts":1527815127,"i":13259,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},{"ts":1527821673,"i":13468,"p":"نمجن","f":"namjún","g":"namjun","e":"moist, damp, wet","c":"adj."},{"ts":1527815130,"i":14066,"p":"وچ","f":"wuch, wUch","g":"wuch,wUch","e":"dry, land, ground","c":"adj. / n. m."},{"ts":1527817486,"i":14102,"p":"وران","f":"wraan","g":"wraan","e":"ruined, destroyed; destructive, bad, naughty","c":"adj."},{"ts":1527814373,"i":14138,"p":"ورک","f":"wruk","g":"wruk","e":"lost","c":"adj."},{"ts":1527822838,"i":14159,"p":"وروست","f":"wrost","g":"wrost","e":"decayed, spoiled, rotten","c":"adj."},{"ts":1609949334478,"i":14172,"p":"وریت","f":"wreet","g":"wreet","e":"roasted, grilled, barbequed, roast, burnt","c":"adj."},{"ts":1527811544,"i":14296,"p":"ولاړ","f":"waláaR, wuláaR","g":"walaaR,wulaaR","e":"standing","c":"adj."},{"ts":1527815498,"i":14415,"p":"یاد","f":"yaad","g":"yaad","e":"aforementioned","c":"adj."},{"ts":1527815434,"i":14436,"p":"یخ","f":"yakh, yukh","g":"yakh,yukh","e":"cold","c":"n. m. / adj."},{"ts":1568926976497,"i":731,"p":"اکسرې","f":"iksre","g":"iksre","e":"x-ray","c":"n. f."},{"ts":1602179757779,"i":766,"p":"الف بې","f":"alif be","g":"alifbe","e":"alphabet","c":"n. f."},{"ts":1527813840,"i":1142,"p":"ایرې","f":"eere","g":"eere","e":"ashes","c":"n. f. pl.","l":1527813839},{"ts":1527816692,"i":1180,"p":"اینکې","f":"aynake","g":"aynake","e":"glasses, spectacles","c":"n. f. pl."},{"ts":1527819286,"i":2144,"p":"پاشتقې","f":"paashtáqe","g":"paashtake","e":"stairs, steps, staircase","c":"n. f. pl."},{"ts":1527816299,"i":2876,"p":"پیسې","f":"peyse","g":"peyse","e":"money (plural of پېسې)","c":"n. f. pl."},{"ts":1527814529,"i":3331,"p":"تروې","f":"turwe","g":"turwe","e":"buttermilk","c":"n. f. pl."},{"ts":1527816369,"i":3803,"p":"تورسرې","f":"torsăre","g":"torsare","e":"widow, woman","c":"n. f."},{"ts":1577408787088,"i":7445,"p":"سپرې","f":"spre","g":"spre","e":"sprey (as in a medicinal spray)","c":"n. f."},{"ts":1527822255,"i":7481,"p":"سپېدې","f":"spedé","g":"spede","e":"break of dawn, first light of day, sunrise","c":"n. f. pl."},{"ts":1626765107329,"i":8263,"p":"شرې","f":"sharé","g":"share","e":"chickenpox, chicken pox","c":"n. f. pl."},{"ts":1527815008,"i":8431,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."},{"ts":1527822131,"i":8456,"p":"شولې","f":"shole","g":"shole","e":"raw rice, unprocessed rice","c":"n. f. pl."},{"ts":1527815009,"i":8482,"p":"شیدې","f":"sheede","g":"sheede","e":"milk (plural of شيده)","c":"n. f. pl."},{"ts":1527823571,"i":8600,"p":"ښیالمې","f":"xyaalmé","g":"xyaalme","e":"spit, saliva","c":"n. f. pl."},{"ts":1527816530,"i":8613,"p":"ښینې","f":"xeene","g":"xeene","e":"sister in law","c":"n. f."},{"ts":1527823567,"i":11052,"p":"لاړې","f":"laaRe","g":"laaRe","e":"spit, saliva, slobber, slime","c":"n. f. pl."},{"ts":1527822275,"i":11445,"p":"لوښې","f":"looxe","g":"looxe","e":"dishes, pots, pans","c":"n. f. pl."},{"ts":1617443138210,"i":11840,"p":"مچیازې","f":"michyaaze, muchyaaze","g":"michyaaze,muchyaaze","e":"urine, pee, piss","c":"n. f. pl."},{"ts":1527814420,"i":12221,"p":"مستې","f":"maste","g":"maste","e":"yogurt","c":"n. f. pl."},{"ts":1577999538077,"i":13775,"p":"هرې","f":"hire","g":"hire","e":"a sound/cry used to drive sheep on","c":"n. f."},{"ts":1586551382412,"i":14179,"p":"وریژې","f":"wreejze","g":"wreejze","e":"rice","c":"n. f. pl."},{"ts":1527820261,"i":14511,"p":"یوې","f":"yuwe","g":"yuwe","e":"plow, plowing, plough, ploughing","c":"n. f."},{"ts":1527820771,"i":5,"p":"آباداني","f":"aabaadaanee","g":"aabaadaanee","e":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","c":"n. f."},{"ts":1527813939,"i":54,"p":"آزادي","f":"aazaadee","g":"aazaadee","e":"freedom, independence","c":"n. f."},{"ts":1527818402,"i":159,"p":"اتلولي","f":"atalwalée","g":"atalwalee","e":"championship; courage","c":"n. f."},{"ts":1527814060,"i":476,"p":"اساني","f":"asaanee","g":"asaanee","e":"ease","c":"n. f."},{"ts":1527821293,"i":799,"p":"امادګي","f":"amaadagee","g":"amaadagee","e":"preparation, readiness, planning","c":"n. f."},{"ts":1527819502,"i":1213,"p":"باچهي","f":"baachahee","g":"baachahee","e":"kingship, kingdom, rule, throne, authority","c":"n. f."},{"ts":1527820035,"i":1218,"p":"باداري","f":"baadaaree","g":"baadaaree","e":"dominion, holding sway over someone","c":"n. f."},{"ts":1527817732,"i":1384,"p":"بدبختي","f":"badbakhtee","g":"badbakhtee","e":"misfortune, difficulty","c":"n. f."},{"ts":1588786872582,"i":1417,"p":"بدنامي","f":"badnaamee","g":"badnaamee","e":"shame, disrepute, dishonour","c":"n. f."},{"ts":1573682378816,"i":2068,"p":"بیماري","f":"beemaaree","g":"beemaaree","e":"sickness, illness","c":"n. f."},{"ts":1527816817,"i":2156,"p":"پاکوالي","f":"paakwaalee","g":"paakwaalee","e":"cleanliness, hygiene","c":"n. f."},{"ts":1586204619186,"i":2359,"p":"پرهېزګاري","f":"parhezgaaree","g":"parhezgaaree","e":"righteousness, abstinence, self-control","c":"n. f."},{"ts":1584444376984,"i":2516,"p":"پلارواکي","f":"plaarwaakee","g":"plaarwaakee","e":"patriarchy","c":"n. f."},{"ts":1527818744,"i":3281,"p":"ترکاڼي","f":"tarkaaNee","g":"tarkaaNee","e":"carpentry","c":"n. f."},{"ts":1527815337,"i":3392,"p":"تسلي","f":"tasallee","g":"tasallee","e":"consolation, comfort, satisfaction","c":"n. f."},{"ts":1527819521,"i":5774,"p":"خوشالي","f":"khoshaalee","g":"khoshaalee","e":"happiness (خوشحالي)","c":"n. f."},{"ts":1527818037,"i":5779,"p":"خوشبختي","f":"khooshbakhtee","g":"khooshbakhtee","e":"good fortune, good luck, hapiness","c":"n. f."},{"ts":1527815914,"i":5782,"p":"خوشبیني","f":"khooshbeenee","g":"khooshbeenee","e":"optimism","c":"n. f."},{"ts":1527811877,"i":6294,"p":"دوستي","f":"dostee","g":"dostee","e":"friendship","c":"n. f."},{"ts":1527818019,"i":6299,"p":"دوکانداري","f":"dookaandaaree","g":"dookaandaaree","e":"shopkeeping, retail store selling","c":"n. f."},{"ts":1527822080,"i":6351,"p":"دېموکراسي","f":"demokraasee","g":"demokraasee","e":"democracy","c":"n. f."},{"ts":1527813462,"i":10613,"p":"کیلي","f":"keelee","g":"keelee","e":"key","c":"n. f."},{"ts":1527814492,"i":10653,"p":"ګاوداري","f":"gaawdaaree","g":"gaawdaaree","e":"cattle farming","c":"n. f."},{"ts":1610013679820,"i":14156,"p":"ورورولي","f":"wrorwalée","g":"wrorwalee","e":"brotherhood","c":"n. f."},{"ts":1527821971,"i":1710,"p":"بن","f":"bun","g":"bun","e":"second wife of own husband","c":"n. f."},{"ts":1527816397,"i":3320,"p":"ترور","f":"tror","g":"tror","e":"aunt","c":"n. f. anim.","ppp":"تریندې","ppf":"treynde"},{"ts":1578704593901,"i":3693,"p":"تندار","f":"tandaar","g":"tandaar","e":"aunt (paternal uncle's wife)","c":"n. f."},{"ts":1527812785,"i":5721,"p":"خور","f":"khor","g":"khor","e":"sister","c":"n. f. irreg. anim.","ppp":"خویندې","ppf":"khweynde"},{"ts":1527812861,"i":11410,"p":"لور","f":"loor","g":"loor","e":"daughter","c":"n. f. anim.","ppp":"لوڼې","ppf":"looNe"},{"ts":1527812928,"i":12837,"p":"مور","f":"mor","g":"mor","e":"mother, mom","c":"n. f. anim.","ppp":"میندې, میېندې","ppf":"méynde, myénde"},{"ts":1527812912,"i":12952,"p":"مېرمن","f":"mermán","g":"merman","e":"lady, woman, wife","c":"n. f."},{"ts":1527816476,"i":12958,"p":"مېرېنۍ خور","f":"merenuy khor","g":"merenuykhor","e":"stepsister, half sister","c":"n. f."},{"ts":1527823521,"i":13295,"p":"نږور","f":"nGor","g":"ngor","e":"daughter-in-law","c":"n. f. anim.","ppp":"نږیندې","ppf":"nGeynde"},{"ts":1527816350,"i":14146,"p":"ورندار","f":"wrundaar","g":"wrundaar","e":"brothers wife, sister-in-law","c":"n. f."},{"ts":1527816485,"i":14491,"p":"یور","f":"yor","g":"yor","e":"wife of husbands brother, wife of brother-in-law","c":"n. f. anim.","ppp":"یوڼې","ppf":"yóoNe"},{"ts":1527821817,"i":718,"p":"اکا","f":"akáa","g":"akaa","e":"uncle (paternal)","c":"n. m."},{"ts":1527816411,"i":1190,"p":"بابا","f":"baabaa","g":"baabaa","e":"father, grandfather (vocative or in child's speech)","c":"n. m."},{"ts":1527819439,"i":1212,"p":"باچا","f":"baacháa","g":"baachaa","e":"king, ruler, president, padishah","c":"n. m."},{"ts":1527823298,"i":1260,"p":"باښه","f":"baaxá","g":"baaxa","e":"sparrow-hawk, eagle","c":"n. f."},{"ts":1527817718,"i":1723,"p":"بنده","f":"bandá","g":"banda","e":"slave, servant, a human, person (as in a slave of God)","c":"n. m."},{"ts":1527815031,"i":1728,"p":"بندي","f":"bandee","g":"bandee","e":"prisoner, captive","c":"n. m."},{"ts":1527815142,"i":2105,"p":"پاچا","f":"paachaa","g":"paachaa","e":"king","c":"n. m."},{"ts":1527817280,"i":4284,"p":"جذامي","f":"jUzaamee","g":"jUzaamee","e":"leper","c":"n. m."},{"ts":1527814236,"i":4772,"p":"چرسي","f":"charsee","g":"charsee","e":"pot smoker, pothead, someone addicted to marijuana, pot, hash","c":"n. m."},{"ts":1578618561154,"i":5177,"p":"حاجي","f":"haajee","g":"haajee","e":"Haji, someone who has gone on the Hajj","c":"n. m."},{"ts":1527821193,"i":5199,"p":"حامي","f":"haamee","g":"haamee","e":"supporter, protector, defender, patron, saviour","c":"n. m."},{"ts":1591711877815,"i":6264,"p":"دوبي","f":"dobée","g":"dobee","e":"washerman, someone who does the laundry","c":"n. m."},{"ts":1527820139,"i":6663,"p":"ربابي","f":"rabaabee","g":"rabaabee","e":"rabab player, rubab player","c":"n. m."},{"ts":1619278755267,"i":6666,"p":"ربړنه","f":"rabaRúna","g":"rabaRuna","e":"troubling, pestering","c":"n. f."},{"ts":1577066022588,"i":7376,"p":"ساقي","f":"saaqée","g":"saakee","e":"cupbearer, butler, bartender, alchohol maker","c":"n. m."},{"ts":1527822817,"i":7433,"p":"سپاهي","f":"sipaahee","g":"sipaahee","e":"soldier, warrior, guard","c":"n. m."},{"ts":1527812975,"i":7802,"p":"سلماني","f":"salmaanee","g":"salmaanee","e":"barber, hairdresser","c":"n. m."},{"ts":1527819414,"i":8151,"p":"شاهزاده","f":"shaahzaadá","g":"shaahzaada","e":"prince","c":"n. m."},{"ts":1527818084,"i":8223,"p":"شرابي","f":"sharaabee","g":"sharaabee","e":"drinker, drunkard, alcoholic, wine-bibber","c":"n. m."},{"ts":1527821950,"i":8408,"p":"شهزاده","f":"shahzaadá","g":"shahzaada","e":"prince","c":"n. m."},{"ts":1588158828142,"i":8549,"p":"ښکاري","f":"xkaaree","g":"xkaaree","e":"hunter","c":"n. m."},{"ts":1527815206,"i":9577,"p":"قاضي","f":"qaazee","g":"kaazee","e":"judge, religious authority/judge","c":"n. m."},{"ts":1527818500,"i":9634,"p":"قراردادي","f":"qaraardaadee","g":"karaardaadee","e":"contractor, supplier","c":"n. m."},{"ts":1527816446,"i":9848,"p":"کاکا","f":"kaakaa","g":"kaakaa","e":"paternal uncle, term of address for elderly man","c":"n. m."},{"ts":1595232159907,"i":10676,"p":"ګدا","f":"gadáa","g":"gadaa","e":"begger, panhandler","c":"n. m."},{"ts":1527816512,"i":11095,"p":"لالا","f":"laalaa","g":"laalaa","e":"elder brother, general form of familiar and respectful address","c":"n. m."},{"ts":1527812878,"i":11641,"p":"ماما","f":"maamaa","g":"maamaa","e":"uncle (maternal), respectful form of address","c":"n. m."},{"ts":1610556640847,"i":12043,"p":"مردمشماري","f":"mărdamshUmaaree","g":"mardamshUmaaree","e":"census","c":"n. f."},{"ts":1527815484,"i":12551,"p":"ملا","f":"mUllaa","g":"mUllaa","e":"mullah, priest","c":"n. m."},{"ts":1527821714,"i":12798,"p":"موازي","f":"mUwaazée","g":"mUwaazee","e":"parallel, matching, appropriate, identical","c":"adj."},{"ts":1527816514,"i":12828,"p":"موچي","f":"mochee","g":"mochee","e":"shoemaker, shoe repairman, cobbler","c":"n. m."},{"ts":1527823093,"i":13214,"p":"نبي","f":"nabee","g":"nabee","e":"prophet","c":"n. m. anim.","app":"انبیا","apf":"ambiyáa"},{"ts":1579041957559,"i":13251,"p":"ندا","f":"nadáa","g":"nadaa","e":"call, appeal, shout, summoning","c":"n. f."},{"ts":1527816253,"i":13543,"p":"نواسه","f":"nawaasa","g":"nawaasa","e":"grandson","c":"n. m."},{"ts":1527819971,"i":14046,"p":"والي","f":"waalée","g":"waalee","e":"governor","c":"n. m."},{"ts":1527818948,"i":173,"p":"اټسکی","f":"aTúskey","g":"aTuskey","e":"sneezing, sneeze","c":"n. m."},{"ts":1573681135691,"i":349,"p":"اربکی","f":"arbakéy","g":"arbakey","e":"tribal constable, tribal offical with police powers","c":"n. m."},{"ts":1573659054031,"i":365,"p":"ارتوالی","f":"artwáaley, aratwáaley","g":"artwaaley,aratwaaley","e":"width, spaciousness","c":"n. m."},{"ts":1527811890,"i":455,"p":"ازغی","f":"azghéy","g":"azghey","e":"thorn, prickle","c":"n. m."},{"ts":1527817036,"i":486,"p":"استازی","f":"astáazey","g":"astaazey","e":"representative, envoy, ambassador, commissioner","c":"n. m."},{"ts":1527816982,"i":535,"p":"استوګنځی","f":"astogundzéy","g":"astogundzey","e":"residence, dwelling; hostel, dormitory","c":"n. m."},{"ts":1527818489,"i":562,"p":"اسوېلی","f":"aswéley","g":"asweley","e":"yawn, sigh, deep breath, shivering","c":"n. m."},{"ts":1527822497,"i":990,"p":"اننګی","f":"anangéy","g":"anangey","e":"cheek","c":"n. m."},{"ts":1527821967,"i":1010,"p":"اوبسپی","f":"obspéy","g":"obspey","e":"beaver, seal","c":"n. m."},{"ts":1527822190,"i":1035,"p":"اور غالی","f":"orgháaley","g":"orghaaley","e":"stove, oven, furnace, hearth, floor of a fireplace","c":"n. m."},{"ts":1527821545,"i":1049,"p":"اورشیندی","f":"orsheendéy","g":"orsheendey","e":"volcano","c":"n. m."},{"ts":1527819192,"i":1051,"p":"اورګاډی","f":"orgáaDey","g":"orgaaDey","e":"train","c":"n. m."},{"ts":1527815585,"i":1065,"p":"اوړی","f":"óRey","g":"oRey","e":"summer","c":"n. m."},{"ts":1623044357441,"i":1330,"p":"ببوتنکی","f":"bubootúnkey","g":"bubootunkey","e":"tuft, clump, shock of hair","c":"n. m."},{"ts":1527821668,"i":1356,"p":"بڅری","f":"batsúrey","g":"batsurey","e":"spark, speck, flicker","c":"n. m."},{"ts":1527821239,"i":1439,"p":"بډوری","f":"baDóorey","g":"baDoorey","e":"kidney","c":"n. m."},{"ts":1527821099,"i":1504,"p":"برغوږی","f":"barghwáGey","g":"barghwagey","e":"earring","c":"n. m."},{"ts":1527822629,"i":1505,"p":"برغولی","f":"barghóley","g":"bargholey","e":"lid, cover","c":"n. m."},{"ts":1527811903,"i":1546,"p":"بری","f":"baréy","g":"barey","e":"success, victory","c":"n. m."},{"ts":1594904072731,"i":1743,"p":"بنګړی","f":"bangRéy","g":"bangRey","e":"bracelet","c":"n. m."},{"ts":1527817159,"i":1794,"p":"بوټی","f":"bóoTey","g":"booTey","e":"plant","c":"n. m."},{"ts":1527815055,"i":1823,"p":"بوږنوړی","f":"boGnwaRey","g":"bognwaRey","e":"terrible","c":"adj."},{"ts":1610618917483,"i":2166,"p":"پالنځی","f":"paalundzéy","g":"paalundzey","e":"orphanage, nursery","c":"n. m."},{"ts":1527814666,"i":2192,"p":"پای ټکی","f":"paayTákey","g":"paayTakey","e":"final point, end point","c":"n. m."},{"ts":1527816195,"i":2235,"p":"پټکی","f":"paTkéy","g":"paTkey","e":"small turban","c":"n. m."},{"ts":1527811611,"i":2241,"p":"پټی","f":"paTéy","g":"paTey","e":"field, place where crops are sown","c":"n. m."},{"ts":1588762458105,"i":2262,"p":"پخلنځی","f":"pukhlandzéy","g":"pukhlandzey","e":"kitchen","c":"n. m."},{"ts":1527816059,"i":2263,"p":"پخلی","f":"pakhléy","g":"pakhley","e":"cooking, preparation of food; wisdom, maturity","c":"n. m."},{"ts":1527821241,"i":2331,"p":"پرګی","f":"purgéy, pirgéy","g":"purgey,pirgey","e":"acorn","c":"n. m."},{"ts":1527813812,"i":2425,"p":"پړونی","f":"paRóoney","g":"paRooney","e":"veil, covering for women, cover","c":"n. m."},{"ts":1527822385,"i":2426,"p":"پړی","f":"púRey","g":"puRey","e":"rope, cable, cord","c":"n. m."},{"ts":1527812980,"i":2440,"p":"پس پسی","f":"puspuséy","g":"puspusey","e":"whispering, murmuring, rumor, gossip","c":"n. m."},{"ts":1527814005,"i":2456,"p":"پسرلی","f":"psarléy, pusărléy","g":"psarley,pusarley","e":"spring, springtime (season)","c":"n. m."},{"ts":1527821229,"i":2487,"p":"پښتورګی","f":"paxtawúrgey","g":"paxtawurgey","e":"kidney","c":"n. m."},{"ts":1527817035,"i":2526,"p":"پلاوی","f":"pláawey","g":"plaawey","e":"delegation, delegate, mission","c":"n. m."},{"ts":1527815187,"i":2738,"p":"پوزی","f":"pozéy","g":"pozey","e":"mat","c":"n. m."},{"ts":1527816627,"i":2742,"p":"پوستکی","f":"postukéy","g":"postukey","e":"fleece, pelt, skin, shell, rind, bark; ear lobe","c":"n. m."},{"ts":1527819332,"i":2753,"p":"پوښتورګی","f":"pooxtawúrgey","g":"pooxtawurgey","e":"kidney","c":"n. m."},{"ts":1527819496,"i":2775,"p":"پوهاوی","f":"pohaawéy","g":"pohaawey","e":"understanding, comprehension","c":"n. m."},{"ts":1527815168,"i":2810,"p":"پېټی","f":"peTéy","g":"peTey","e":"load, weight, burden","c":"n. m."},{"ts":1527815927,"i":2856,"p":"پېرونکی","f":"peróonkey","g":"peroonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527815017,"i":2858,"p":"پېروی","f":"perúwey, peráwey","g":"peruwey,perawey","e":"cream","c":"n. m."},{"ts":1527815325,"i":3027,"p":"تاوتریخوالی","f":"taawtreekhwáaley","g":"taawtreekhwaaley","e":"violence","c":"n. m."},{"ts":1611397750325,"i":3033,"p":"تاوی","f":"taawéy","g":"taawey","e":"screwdriver, screw","c":"n. m."},{"ts":1622374978659,"i":3057,"p":"تبرګی","f":"tubúrgey","g":"tuburgey","e":"hatchet","c":"n. m."},{"ts":1527818705,"i":3141,"p":"تخرګی","f":"tkhurgéy","g":"tkhurgey","e":"gusset (in a shirt)","c":"n. m."},{"ts":1527814392,"i":3369,"p":"تړونی","f":"taRóoney","g":"taRooney","e":"band, bandage","c":"n. m."},{"ts":1527822723,"i":3430,"p":"تشی","f":"túshey","g":"tushey","e":"empty space, void, side, groin","c":"n. m."},{"ts":1577585114379,"i":3633,"p":"تلی","f":"táley","g":"taley","e":"sole (of a shoe); yard, compound; palm","c":"n. m."},{"ts":1527816630,"i":3707,"p":"تندی","f":"tandéy","g":"tandey","e":"forehead, brow, slope","c":"n. m."},{"ts":1527821980,"i":3744,"p":"تڼی","f":"taNéy","g":"taNey","e":"bellyband (of a harness)","c":"n. m."},{"ts":1527819719,"i":3813,"p":"توری","f":"tórey","g":"torey","e":"spleen","c":"n. m."},{"ts":1527819721,"i":3814,"p":"توری","f":"toréy","g":"torey","e":"letter, letter of the alphabet","c":"n. m."},{"ts":1527819622,"i":3839,"p":"توغندی","f":"toghandéy","g":"toghandey","e":"rocket, missile","c":"n. m."},{"ts":1527814705,"i":3867,"p":"توکی","f":"tókey","g":"tokey","e":"element, item, material; thing, material, kind, type","c":"n. m."},{"ts":1527819563,"i":4041,"p":"ټکری","f":"TUkréy","g":"TUkrey","e":"piece, small piece; a length (of cloth); blanket","c":"n. m."},{"ts":1577408381145,"i":4042,"p":"ټکری","f":"Tikréy","g":"Tikrey","e":"shawl, head-covering","c":"n. m."},{"ts":1527814667,"i":4054,"p":"ټکی","f":"Tákey","g":"Takey","e":"word; point; dot","c":"n. m."},{"ts":1527813617,"i":4160,"p":"ټیکری","f":"Teekréy","g":"Teekrey","e":"shawl, head covering","c":"n. m."},{"ts":1527819733,"i":4583,"p":"ځلمی","f":"dzalméy","g":"dzalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527815465,"i":4671,"p":"چارواکی","f":"chaarwáakey","g":"chaarwaakey","e":"official authority, official, authority","c":"n. m. anim. unisex"},{"ts":1527822356,"i":4859,"p":"چنجی","f":"chinjéy","g":"chinjey","e":"worm, small insect","c":"n. m."},{"ts":1527822808,"i":4877,"p":"چنی","f":"chanéy","g":"chaney","e":"basin, bowl","c":"n. m."},{"ts":1527822357,"i":4978,"p":"چینجی","f":"cheenjéy","g":"cheenjey","e":"worm, small insect","c":"n. m."},{"ts":1527819046,"i":4990,"p":"څاڅکی","f":"tsáatskey","g":"tsaatskey","e":"drop","c":"n. m."},{"ts":1527817874,"i":5062,"p":"څرنګوالی","f":"tsurangwáaley","g":"tsurangwaaley","e":"quality, nature","c":"n. m."},{"ts":1527814041,"i":5067,"p":"څړمنی","f":"tsaRmúney","g":"tsaRmuney","e":"spring (season)","c":"n. m."},{"ts":1573055311846,"i":5402,"p":"خبرداری","f":"khabardáarey","g":"khabardaarey","e":"warning, notice, alarm","c":"n. m."},{"ts":1527820324,"i":5443,"p":"خټکی","f":"khaTakéy","g":"khaTakey","e":"melon","c":"n. m."},{"ts":1527819828,"i":6050,"p":"درناوی","f":"dranaawéy","g":"dranaawey","e":"weight; respect, honour","c":"n. m."},{"ts":1588161660483,"i":6388,"p":"ډانګوری","f":"Daangooréy","g":"Daangoorey","e":"crutch, walking-stick, cane","c":"n. m."},{"ts":1527819732,"i":7108,"p":"زلمی","f":"zalméy","g":"zalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527813708,"i":7239,"p":"زېری","f":"zérey","g":"zerey","e":"good news, gospel","c":"n. m."},{"ts":1588758498458,"i":7244,"p":"زېړی","f":"zeRéy","g":"zeRey","e":"jaundice","c":"n. m."},{"ts":1571626392709,"i":7248,"p":"زېږنځی","f":"zeGundzéy","g":"zegundzey","e":"birthplace","c":"n. m."},{"ts":1527815698,"i":7299,"p":"ژمی","f":"jzúmey, jzímey","g":"jzumey,jzimey","e":"winter","c":"n. m."},{"ts":1573686563723,"i":7322,"p":"ژی","f":"jzey","g":"jzey","e":"wineskin, bagpipe, skin for carrying liquid","c":"n. m."},{"ts":1527815239,"i":7347,"p":"ساتېری","f":"saatérey","g":"saaterey","e":"entertainment, fun, recreation","c":"n. m."},{"ts":1527813725,"i":7363,"p":"ساری","f":"sáarey","g":"saarey","e":"equal, equivalent, match, precedent","c":"n. m."},{"ts":1527814021,"i":7442,"p":"سپرلی","f":"sparléy","g":"sparley","e":"spring (season)","c":"n. m."},{"ts":1527813509,"i":7457,"p":"سپکاوی","f":"spukaawéy","g":"spukaawey","e":"insult, disgrace, defamation, disrespect","c":"n. m."},{"ts":1527815298,"i":7495,"p":"سپیناوی","f":"speenaawéy","g":"speenaawey","e":"clarification, attestation","c":"n. m."},{"ts":1578002674551,"i":7513,"p":"سترغلی","f":"sturghúley","g":"sturghuley","e":"eye-socket, eyelid; orbit","c":"n. m."},{"ts":1527811999,"i":7548,"p":"ستوری","f":"stórey","g":"storey","e":"star","c":"n. m."},{"ts":1527817001,"i":7559,"p":"ستونی","f":"stóoney","g":"stooney","e":"throat, larynx","c":"n. m."},{"ts":1527813511,"i":7659,"p":"سرخوږی","f":"sărkhooGéy, sărkhwuGéy","g":"sarkhoogey,sarkhwugey","e":"headache, trouble","c":"n. m."},{"ts":1527815251,"i":7734,"p":"سړی","f":"saRéy","g":"saRey","e":"man","c":"n. m.","ec":"man","ep":"men"},{"ts":1527819850,"i":7742,"p":"سږی","f":"súGey","g":"sugey","e":"lung","c":"n. m."},{"ts":1527812302,"i":7956,"p":"سوری","f":"sooréy","g":"soorey","e":"hole, slit, opening","c":"n. m."},{"ts":1527818221,"i":8026,"p":"سوی","f":"swey","g":"swey","e":"burning, zeal, fervour","c":"n. m."},{"ts":1527812304,"i":8104,"p":"سیوری","f":"syórey, syóorey","g":"syorey,syoorey","e":"shade, shadow","c":"n. m."},{"ts":1527815268,"i":8478,"p":"شی","f":"shey","g":"shey","e":"thing","c":"n. m.","ppp":"شیان، شیونه","ppf":"sheyáan, sheyóona"},{"ts":1527822527,"i":8538,"p":"ښتګری","f":"xatgaréy","g":"xatgarey","e":"ankle, ankle-bone","c":"n. m."},{"ts":1527812793,"i":8589,"p":"ښوونځی","f":"xowundzéy","g":"xowundzey","e":"school","c":"n. m."},{"ts":1527821064,"i":8594,"p":"ښویکی","f":"xwayakéy","g":"xwayakey","e":"a quick, clever, agile, bright man; a swindler, a fraud","c":"n. m."},{"ts":1527822650,"i":9048,"p":"غټوالی","f":"ghaTwáaley","g":"ghaTwaaley","e":"size, largeness, bigness","c":"n. m."},{"ts":1527814569,"i":9114,"p":"غړی","f":"ghúRey","g":"ghuRey","e":"member","c":"n. m."},{"ts":1527817627,"i":9134,"p":"غشی","f":"ghúshey","g":"ghushey","e":"arrow","c":"n. m."},{"ts":1527822913,"i":9190,"p":"غمی","f":"ghaméy","g":"ghamey","e":"precious stone, precious stone in a signet ring","c":"n. m."},{"ts":1527816181,"i":9752,"p":"قی","f":"qey","g":"key","e":"vomit, nausea (Arabic)","c":"n. m."},{"ts":1527814715,"i":9812,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},{"ts":1527823295,"i":9887,"p":"کاڼی","f":"káaNey","g":"kaaNey","e":"stone, rock","c":"n. m."},{"ts":1527818563,"i":9906,"p":"کبوړی","f":"kabóoRey","g":"kabooRey","e":"muscle","c":"n. m."},{"ts":1527822824,"i":9920,"p":"کتاب ګوټی","f":"kitaabgóTey","g":"kitaabgoTey","e":"booklet, notebook","c":"n. m."},{"ts":1582388629980,"i":10142,"p":"کسی","f":"kúsey","g":"kusey","e":"pupil (of an eye)","c":"n. m."},{"ts":1594906790729,"i":10207,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527812836,"i":10247,"p":"کلی","f":"kúley, kíley","g":"kuley,kiley","e":"village","c":"n. m."},{"ts":1610616852625,"i":10359,"p":"کنګرېزی","f":"kangrezéy","g":"kangrezey","e":"echo","c":"n. m."},{"ts":1527819196,"i":10632,"p":"ګاډی","f":"gáaDey","g":"gaaDey","e":"car, train","c":"n. m."},{"ts":1579016593220,"i":10879,"p":"ګنی","f":"ganéy","g":"ganey","e":"beehive; wasps' nest","c":"n. m."},{"ts":1527819076,"i":10927,"p":"ګوډاګی","f":"gooDaagéy","g":"gooDaagey","e":"doll, puppet","c":"n. m."},{"ts":1527822505,"i":10983,"p":"ګومبوری","f":"goombooréy","g":"goomboorey","e":"cheek","c":"n. m."},{"ts":1527819079,"i":11075,"p":"لاسپوڅی","f":"laaspotséy","g":"laaspotsey","e":"puppet","c":"n. m."},{"ts":1573149568665,"i":11078,"p":"لاسرسی","f":"laasraséy","g":"laasrasey","e":"access, availability","c":"n. m."},{"ts":1527817464,"i":11175,"p":"لرګی","f":"largéy","g":"largey","e":"wood, timber","c":"n. m."},{"ts":1527822801,"i":11220,"p":"لستوڼی","f":"lastóNey","g":"lastoNey","e":"sleeve","c":"n. m."},{"ts":1527814401,"i":11383,"p":"لوبونی","f":"lobawúney","g":"lobawuney","e":"toy","c":"n. m."},{"ts":1527814519,"i":11415,"p":"لوری","f":"lórey","g":"lorey","e":"side, direction","c":"n. m."},{"ts":1527823103,"i":11498,"p":"لیدلوری","f":"leedlórey","g":"leedlorey","e":"perspective, viewpoint","c":"n. m."},{"ts":1527819920,"i":11600,"p":"ماشی","f":"máashey","g":"maashey","e":"mosquito, midge","c":"n. m."},{"ts":1527820224,"i":11838,"p":"مچوژی","f":"muchwajzéy","g":"muchwajzey","e":"fly swatter","c":"n. m."},{"ts":1527817770,"i":12140,"p":"مړی","f":"múRey","g":"muRey","e":"dead body, corpse","c":"n. m."},{"ts":1527813189,"i":12763,"p":"منی","f":"máney","g":"maney","e":"fall, autumn","c":"n. m."},{"ts":1527812421,"i":12970,"p":"مېږی","f":"meGéy","g":"megey","e":"ant","c":"n. m."},{"ts":1527819227,"i":13330,"p":"نشتوالی","f":"nashtwáaley","g":"nashtwaaley","e":"lack, absence","c":"n. m."},{"ts":1527823577,"i":13618,"p":"نیالګی","f":"niyaalgéy","g":"niyaalgey","e":"sapling, seedling, sprout, young tree","c":"n. m."},{"ts":1527812073,"i":13754,"p":"هډوکی","f":"haDóokey","g":"haDookey","e":"bone","c":"n. m."},{"ts":1527812668,"i":13767,"p":"هرکلی","f":"hărkáley","g":"harkaley","e":"welcome","c":"n. m."},{"ts":1588153218244,"i":13791,"p":"هسکوالی","f":"haskwáaley","g":"haskwaaley","e":"height, elevation, tallness","c":"n. m."},{"ts":1585309922022,"i":14043,"p":"والګی","f":"waalgéy","g":"waalgey","e":"flu, respiratory illness, influenza, cold","c":"n. m."},{"ts":1527821465,"i":14320,"p":"ولی","f":"wuléy","g":"wuley","e":"shoulder","c":"n. m."},{"ts":1527822004,"i":33,"p":"آخرینی","f":"aakhireenéy","g":"aakhireeney","e":"last, final, latest","c":"adj."},{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},{"ts":1612616237182,"i":2153,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},{"ts":1527813400,"i":1083,"p":"اوسنی","f":"oosanéy","g":"oosaney","e":"current, present","c":"adj."},{"ts":1527815661,"i":1102,"p":"اولنی","f":"awwalunéy","g":"awwaluney","e":"first, beginning","c":"adj."},{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527816646,"i":1778,"p":"بهرنی","f":"baharanéy, bahranéy","g":"baharaney,bahraney","e":"foreigner, foreign; outside, outer","c":"adj."},{"ts":1527818769,"i":2020,"p":"بېړنی","f":"beRanéy","g":"beRaney","e":"emergency","c":"adj."},{"ts":1592382613021,"i":2270,"p":"پخوانی","f":"pakhwaanéy","g":"pakhwaaney","e":"old, ancient, previous, former","c":"adj."},{"ts":1527819532,"i":2309,"p":"پردی","f":"pradéy, prudéy","g":"pradey,prudey","e":"foreign, unrelated, another('s)","c":"adj."},{"ts":1577381894391,"i":2348,"p":"پرنګی","f":"parangéy","g":"parangey","e":"Englishman, Westerner, foreigner","c":"n. m. unisex / adj."},{"ts":1527820194,"i":2521,"p":"پلانکی","f":"pulaankéy","g":"pulaankey","e":"so-and-so, such-and-such, ambiguous pronoun (فلان)","c":"adj. / n. m. anim. unisex"},{"ts":1527820130,"i":2561,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex"},{"ts":1582390092514,"i":2717,"p":"پورتنی","f":"portinéy","g":"portiney","e":"upper, above","c":"adj."},{"ts":1610617741649,"i":4604,"p":"ځنډنی","f":"dzanDanéy, dzanDunéy","g":"dzanDaney,dzanDuney","e":"old, ancient","c":"adj."},{"ts":1610793723568,"i":4971,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},{"ts":1527819362,"i":5765,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},{"ts":1590052667427,"i":6017,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},{"ts":1527822854,"i":6976,"p":"ړومبی","f":"Roombéy","g":"Roombey","e":"first, before","c":"adj."},{"ts":1527820213,"i":7117,"p":"زمری","f":"zmaréy","g":"zmarey","e":"lion","c":"n. m. anim. unisex"},{"ts":1527813923,"i":7319,"p":"ژوندی","f":"jzwundéy","g":"jzwundey","e":"living","c":"adj."},{"ts":1527815299,"i":7471,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},{"ts":1527820788,"i":8524,"p":"ښارنی","f":"xaaranéy","g":"xaaraney","e":"city, urban","c":"adj."},{"ts":1527812822,"i":10424,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small","c":"adj."},{"ts":1527823742,"i":10426,"p":"کوچی","f":"kochéy","g":"kochey","e":"migratory, nomadic","c":"adj."},{"ts":1527818765,"i":10784,"p":"ګړندی","f":"guRandéy","g":"guRandey","e":"speedy, high speed, fast, quick","c":"adj."},{"ts":1527819130,"i":10816,"p":"ګلالی","f":"gUlaaléy","g":"gUlaaley","e":"pretty, beautiful, lovely, cute, sweet","c":"adj."},{"ts":1576101261017,"i":10876,"p":"ګنګی","f":"gUngéy, gangéy","g":"gUngey,gangey","e":"mute, dumb (person)","c":"n. m. anim. unisex / adj."},{"ts":1582316583262,"i":11119,"p":"لاندینی","f":"laandeenéy","g":"laandeeney","e":"lower, bottom","c":"adj."},{"ts":1527816249,"i":11318,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527813472,"i":11461,"p":"لومړنی","f":"loomRanéy","g":"loomRaney","e":"first","c":"adj."},{"ts":1527813132,"i":11463,"p":"لومړی","f":"loomRéy","g":"loomRey","e":"first","c":"adj."},{"ts":1527819910,"i":11744,"p":"متلی","f":"mutléy","g":"mutley","e":"slippery, smooth","c":"adj."},{"ts":1527820414,"i":12677,"p":"منځنی","f":"mandzunéy","g":"mandzuney","e":"middle, central","c":"adj."},{"ts":1527811202,"i":12924,"p":"میاشتنی","f":"miyaashtanéy","g":"miyaashtaney","e":"monthly","c":"adj."},{"ts":1527819320,"i":13272,"p":"نری","f":"naréy","g":"narey","e":"thin; mild; high (pitch)","c":"adj."},{"ts":1527816251,"i":13473,"p":"نمسی","f":"nmaséy","g":"nmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527821373,"i":13937,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},{"ts":1527813636,"i":14166,"p":"وروستی","f":"wroostéy","g":"wroostey","e":"last, latest, recent","c":"adj."},{"ts":1527815430,"i":14483,"p":"یوازنی","f":"yawaazunéy","g":"yawaazuney","e":"only, unique, sole","c":"adj."},{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},{"ts":1527813469,"i":1368,"p":"بخښونکی","f":"bakhxóonkey","g":"bakhxoonkey","e":"forgiving","c":"adj."},{"ts":1527817829,"i":2724,"p":"پوروړی","f":"porwáRey, porawúRey","g":"porwaRey,porawuRey","e":"debtor, in debt","c":"n. m. anim. unisex"},{"ts":1527815205,"i":2802,"p":"پیاوړی","f":"pyaawáRey","g":"pyaawaRey","e":"powerful, strong, great","c":"adj."},{"ts":1527815924,"i":2855,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527819604,"i":3347,"p":"ترینګلی","f":"treengúley","g":"treenguley","e":"tense, stern, grim, sour, moody (person)","c":"adj."},{"ts":1527813406,"i":3357,"p":"تړلی","f":"taRuley","g":"taRuley","e":"bound, tied, closed","c":"adj."},{"ts":1527815381,"i":3376,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},{"ts":1527817607,"i":3793,"p":"تور مخی","f":"tormúkhey","g":"tormukhey","e":"disgraceful, shameful, dishonered","c":"adj."},{"ts":1527822859,"i":5021,"p":"څپولی","f":"tsapoley","g":"tsapoley","e":"dishevelled, messy, curly (with hair etc.)","c":"adj."},{"ts":1527811466,"i":5168,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},{"ts":1527812377,"i":5282,"p":"حکم منونکی","f":"hUkum munóonkey","g":"hUkummunoonkey","e":"obedient, submissive","c":"adj."},{"ts":1527817299,"i":5326,"p":"حیرانوونکی","f":"heyraanawóonkey","g":"heyraanawoonkey","e":"amazing, surprising","c":"adj."},{"ts":1527813282,"i":5499,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},{"ts":1527812809,"i":5668,"p":"خوار ځواکی","f":"khwaar dzwáakey","g":"khwaardzwaakey","e":"malnourished, underfed","c":"adj."},{"ts":1591871233587,"i":5755,"p":"خوږژبی","f":"khoGjzubey","g":"khogjzubey","e":"well-spoken","c":"adj."},{"ts":1527814118,"i":6006,"p":"دردوونکی","f":"dărdawóonkey","g":"dardawoonkey","e":"painful, hurtful, agonizing","c":"adj."},{"ts":1527820657,"i":6098,"p":"درېیمګړی","f":"dre`yamgúRey","g":"dreyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1527815713,"i":6573,"p":"راتلونکی","f":"raatlóonkey","g":"raatloonkey","e":"coming, future","c":"adj."},{"ts":1527812142,"i":6763,"p":"رښتنی","f":"rixtíney","g":"rixtiney","e":"truthful, true","c":"adj."},{"ts":1527812161,"i":6764,"p":"رښتونی","f":"rixtóoney","g":"rixtooney","e":"truthful","c":"adj."},{"ts":1527811507,"i":6770,"p":"رښتینی","f":"rixtéeney","g":"rixteeney","e":"true, truthful, righteous, good","c":"adj."},{"ts":1527813758,"i":7019,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},{"ts":1577058349091,"i":7060,"p":"زړه پوری","f":"zRupóorey","g":"zRupoorey","e":"interesting, entertaining, attractive, pleasant","c":"adj."},{"ts":1527817400,"i":7068,"p":"زړه سواندی","f":"zRuswaandey","g":"zRuswaandey","e":"merciful, compassionate, soft-hearted","c":"adj."},{"ts":1527819587,"i":7269,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},{"ts":1527814888,"i":7290,"p":"ژغورونکی","f":"jzghoróonkey","g":"jzghoroonkey","e":"savior, saviour, rescuer","c":"n. m. anim. unisex"},{"ts":1527818109,"i":7477,"p":"سپېڅلی","f":"spetsúley","g":"spetsuley","e":"absolutely or perfectly clean, uncontaminated, pure (holy, magnificent – سپيڅلي??)","c":"adj."},{"ts":1527811338,"i":7489,"p":"سپین زړی","f":"speenzuRey","g":"speenzuRey","e":"sincere hearted, candid, trusting","c":"adj."},{"ts":1527815306,"i":7527,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},{"ts":1527822745,"i":7569,"p":"سټکوری","f":"suTkóorey","g":"suTkoorey","e":"burned, charred; wrinkling, puckering; seared, scorched; frozen stiff with cold; withered","c":"adj."},{"ts":1527817442,"i":7592,"p":"سخت زړی","f":"sakhtzúRey","g":"sakhtzuRey","e":"heard-hearted, cruel, heartless, callous","c":"adj."},{"ts":1527816932,"i":7649,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},{"ts":1527820170,"i":7873,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},{"ts":1527819964,"i":7929,"p":"سوځېدونکی","f":"swadzedóonkey","g":"swadzedoonkey","e":"burning","c":"adj."},{"ts":1527821951,"i":8025,"p":"سوی","f":"súwey","g":"suwey","e":"burned","c":"adj."},{"ts":1527812779,"i":8562,"p":"ښکلی","f":"xkÚley","g":"xkUley","e":"beautiful","c":"adj."},{"ts":1527812806,"i":8590,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},{"ts":1527811350,"i":9173,"p":"غلی","f":"ghúley","g":"ghuley","e":"quiet, silent","c":"adj."},{"ts":1527819637,"i":9799,"p":"کارکوونکی","f":"kaarkawóonkey","g":"kaarkawoonkey","e":"worker","c":"n. m. anim. unisex"},{"ts":1527818613,"i":10290,"p":"کمزوری","f":"kamzórey","g":"kamzorey","e":"weak, feeble, frail, faint, poor","c":"adj."},{"ts":1595516629483,"i":10370,"p":"کڼوونکی","f":"kaNawóonkey","g":"kaNawoonkey","e":"deafening","c":"adj.","l":1578770339559},{"ts":1527820661,"i":13002,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},{"ts":1527814047,"i":13594,"p":"نوموړی","f":"noomwáRey","g":"noomwaRey","e":"aforesaid, above-mentioned","c":"adj."},{"ts":1527813822,"i":13604,"p":"نوی","f":"núwey","g":"nuwey","e":"new","c":"adj."},{"ts":1586453720908,"i":13740,"p":"هڅوونکی","f":"hatsawóonkey","g":"hatsawoonkey","e":"encouraging / encourager","c":"adj."},{"ts":1588163180700,"i":13980,"p":"هېښوونکی","f":"hexawóonkey","g":"hexawoonkey","e":"stunning, shocking, perplexing, amazing","c":"adj."},{"ts":1527823715,"i":14193,"p":"وړکوټی","f":"waRkóTey","g":"waRkoTey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527823714,"i":14194,"p":"وړکی","f":"waRÚkey","g":"waRUkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527815403,"i":14199,"p":"وړوکی","f":"waRóokey","g":"waRookey","e":"little, small","c":"adj."},{"ts":1527813916,"i":14223,"p":"وژونکی","f":"wajzóonkey","g":"wajzoonkey","e":"killing, lethal, deadly","c":"adj."},{"ts":1527815424,"i":14232,"p":"وږی","f":"wúGey","g":"wugey","e":"hungry","c":"adj."},{"ts":1527823713,"i":14346,"p":"ووړکی","f":"wóRkey","g":"woRkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527816455,"i":14390,"p":"وېشلی","f":"weshúley","g":"weshuley","e":"separated, divided","c":"adj."},{"ts":1527812798,"i":5593,"p":"خفه","f":"khúfa","g":"khufa","e":"sad, upset, angry; choked, suffocated","c":"adj."},{"ts":1527812792,"i":5773,"p":"خوشاله","f":"khoshaala","g":"khoshaala","e":"happy, glad","c":"adj."},{"ts":1527812761,"i":8535,"p":"ښایسته","f":"xáaysta","g":"xaaysta","e":"beautiful","c":"adj."},{"ts":1527812156,"i":685,"p":"افسر","f":"afsar","g":"afsar","e":"officer","c":"n. m. anim. unisex"},{"ts":1527815137,"i":1046,"p":"اورپکی","f":"orpákey","g":"orpakey","e":"instigator, insurgent, terrorist","c":"n. m. anim. unisex"},{"ts":1623044005072,"i":1694,"p":"بلواګر","f":"balwaagar","g":"balwaagar","e":"insurrectionist, rebel","c":"n. m. anim. unisex"},{"ts":1527817965,"i":2169,"p":"پالونکی","f":"paalóonkey","g":"paaloonkey","e":"keeper, one who brings up, raises (cattle etc.)","c":"n. m. anim. unisex"},{"ts":1527819228,"i":2533,"p":"پلټونکی","f":"pulaTóonkey","g":"pulaToonkey","e":"inspector, detective, person checking people at the doors etc.","c":"n. m. anim. unisex"},{"ts":1527816431,"i":3321,"p":"ترورزی","f":"trorzéy","g":"trorzey","e":"cousin (of paternal aunt)","c":"n. m. anim. unisex","ppp":"ترورزامن","ppf":"trorzaamun"},{"ts":1527820820,"i":3493,"p":"تعقیبوونکی","f":"ta'qeebawóonkey","g":"takeebawoonkey","e":"follower","c":"n. m. anim. unisex"},{"ts":1586270915475,"i":3914,"p":"تي لرونکی","f":"tee laróonkey","g":"teelaroonkey","e":"mammal","c":"adj. / n. m. anim. unisex"},{"ts":1613563994424,"i":4104,"p":"ټوقمار","f":"Toqmaar","g":"Tokmaar","e":"joker, jester, mocker","c":"n. m. anim. unisex"},{"ts":1527812802,"i":5471,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},{"ts":1527822535,"i":5824,"p":"خیاط","f":"khayáat","g":"khayaat","e":"tailor","c":"n. m. anim. unisex"},{"ts":1622873938137,"i":6023,"p":"درغلګر","f":"darghalgar","g":"darghalgar","e":"crook, swindler, criminal","c":"n. m. anim. unisex"},{"ts":1527820656,"i":6095,"p":"دریمګړی","f":"driyamgúRey","g":"driyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1614081825855,"i":6640,"p":"راهب","f":"raahib","g":"raahib","e":"priest, monk/nun","c":"n. m. anim. unisex"},{"ts":1610447830096,"i":7608,"p":"سخی","f":"skhéy","g":"skhey","e":"calf; bull-calf","c":"n. m. anim. unisex"},{"ts":1527811519,"i":7758,"p":"سفیر","f":"safeer","g":"safeer","e":"embassador, ambassador","c":"n. m. anim. unisex"},{"ts":1622366208373,"i":7771,"p":"سکرتر","f":"sakratár","g":"sakratar","e":"secretary","c":"n. m. anim. unisex"},{"ts":1566468540788,"i":8027,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"},{"ts":1527819801,"i":8080,"p":"سیلانی","f":"seylaanéy","g":"seylaaney","e":"tourist, sightseer, visitor","c":"n. m. anim. unisex"},{"ts":1527815279,"i":8182,"p":"شپونکی","f":"shpoonkéy","g":"shpoonkey","e":"shepherd","c":"n. m. anim. unisex"},{"ts":1527819173,"i":8399,"p":"شنونکی","f":"shanóonkey","g":"shanoonkey","e":"analyst, examiner","c":"n. m. anim. unisex"},{"ts":1527815436,"i":8776,"p":"ظالم","f":"zaalim","g":"zaalim","e":"tyrant, oppressor, cruel person","c":"n. m. anim. unisex / adj."},{"ts":1527818632,"i":9036,"p":"غبرګونی","f":"ghbargóoney","g":"ghbargooney","e":"twin","c":"n. m. anim. unisex"},{"ts":1527812624,"i":9148,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},{"ts":1613561408232,"i":9680,"p":"قصوروار","f":"qUsoorwáar","g":"kUsoorwaar","e":"guilty, at fault","c":"adj. / n. m. anim. unisex"},{"ts":1527816256,"i":10117,"p":"کړوسی","f":"kaRwaséy","g":"kaRwasey","e":"great-grandchild","c":"n. m. anim. unisex"},{"ts":1527812174,"i":10656,"p":"ګاونډی","f":"gaawanDéy","g":"gaawanDey","e":"neighbour","c":"n. m. anim. unisex / adj."},{"ts":1579030083953,"i":10837,"p":"ګناه ګار","f":"gUnaahgáar","g":"gUnaahgaar","e":"sinner, sinful","c":"n. m. anim. unisex"},{"ts":1527822661,"i":11378,"p":"لوبغاړی","f":"lobgháaRey","g":"lobghaaRey","e":"athlete, player; actor; mischevious, playful (of a child)","c":"n. m. anim. unisex / adj."},{"ts":1589885143650,"i":11458,"p":"لومبړ","f":"loombáR","g":"loombaR","e":"fox","c":"n. m. anim. unisex"},{"ts":1527812043,"i":11524,"p":"لیکوال","f":"leekwaal","g":"leekwaal","e":"writer, author","c":"n. m. anim. unisex"},{"ts":1527820680,"i":11548,"p":"لېونی","f":"lewanéy","g":"lewaney","e":"crazy, insane, mad person","c":"n. m. anim. unisex / adj."},{"ts":1527814445,"i":11644,"p":"مامور","f":"maamóor","g":"maamoor","e":"officer, clerk (as in government worker); assigned, appointed, given orders or istructions (Arabic), authorized, sent on business","c":"adj. / n. m. anim. unisex"},{"ts":1527818760,"i":11989,"p":"مدني فاعل","f":"madanee faa'al","g":"madaneefaaal","e":"civil activist","c":"n. m. anim. unisex"},{"ts":1527821523,"i":12115,"p":"مریی","f":"mrayéy","g":"mrayey","e":"slave, servant","c":"n. m. anim. unisex"},{"ts":1527814159,"i":12609,"p":"ملګری","f":"malgúrey","g":"malgurey","e":"friend, companion","c":"n. m. anim. unisex"},{"ts":1527823403,"i":13011,"p":"مینه وال","f":"meenawáal","g":"meenawaal","e":"fan, someone who loves or appreciates someone or something","c":"n. m. anim. unisex"},{"ts":1527816254,"i":13566,"p":"نوسی","f":"nwaséy","g":"nwasey","e":"grandchild","c":"n. m. anim. unisex"},{"ts":1527814806,"i":13848,"p":"همځولی","f":"hamdzóley","g":"hamdzoley","e":"peer, someone of the same age, someone born in the same year","c":"n. m. anim. unisex"},{"ts":1527812684,"i":13871,"p":"همکار","f":"hamkaar","g":"hamkaar","e":"co-worker, fellow worker, collaborator, aid","c":"n. m. anim. unisex"},{"ts":1527811732,"i":13901,"p":"هنر مند","f":"hUnarmand","g":"hUnarmand","e":"artist, performer","c":"n. m. anim. unisex"},{"ts":1591027046896,"i":14206,"p":"وز","f":"wuz","g":"wuz","e":"goat","c":"n. m. anim. unisex"},{"ts":1611395180139,"i":14265,"p":"وطندار","f":"watandáar","g":"watandaar","e":"fellow countryman, person from the same country","c":"n. m. anim. unisex"},{"ts":1527811296,"i":14291,"p":"وکیل","f":"wakeel","g":"wakeel","e":"lawyer, proxy holder","c":"n. m. anim. unisex","app":"وکلا","apf":"waklaa"},{"ts":1527813585,"i":14292,"p":"وګړی","f":"wagúRey","g":"waguRey","e":"person, human being, creature","c":"n. m. anim. unisex","ec":"person","ep":"people"},{"ts":1527814672,"i":14359,"p":"ویاند","f":"wayaand","g":"wayaand","e":"spokesperson, spokesman, newcaster","c":"n. m. anim. unisex","ec":"spokesperson","ep":"spokespeople"},{"ts":1586454081484,"i":14434,"p":"یتیم","f":"yateem","g":"yateem","e":"orphan","c":"n. m. anim. unisex"},{"ts":1527816778,"i":1071,"p":"اوږد","f":"ooGd, ooGud","g":"oogd,oogud","e":"long","c":"adj.","infap":"اوږده","infaf":"ooGdu","infbp":"اوږد","infbf":"ooGd"},{"ts":1527822706,"i":1106,"p":"اوم","f":"oom","g":"oom","e":"raw, uncooked; blunt, crude; unripe, immature, not fully developed","c":"adj.","infap":"اومه","infaf":"oomu","infbp":"اوم","infbf":"oom"},{"ts":1527813293,"i":7944,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},{"ts":1527815265,"i":8504,"p":"شین","f":"sheen","g":"sheen","e":"green, blue; unripe, immature","c":"adj. irreg.","infap":"شنه","infaf":"shnu","infbp":"شن","infbf":"shn"},{"ts":1527815087,"i":12118,"p":"مړ","f":"muR","g":"muR","e":"dead","c":"adj.","infap":"مړه","infaf":"mRu","infbp":"مړ","infbf":"mR"},{"ts":1527814151,"i":12548,"p":"مل","f":"mal","g":"mal","e":"companion, associate, friend; accompanying, being with","c":"n. m. anim. unisex / adj.","infap":"مله","infaf":"mlu","infbp":"مل","infbf":"ml"},{"ts":1527813580,"i":14473,"p":"یو","f":"yo","g":"yo","e":"one","c":"num.","infap":"یوه","infaf":"yawu","infbp":"یو","infbf":"yaw"},{"ts":1527819345,"i":2463,"p":"پسه","f":"psu","g":"psu","e":"sheep, ram","c":"n. m.","ppp":"پسونه","ppf":"pusoona","ec":"sheep","ep":"sheep"},{"ts":1527822173,"i":4227,"p":"جاړه","f":"jaaRú","g":"jaaRu","e":"bush, shrub","c":"n. m."},{"ts":1527813508,"i":7057,"p":"زړه","f":"zRu","g":"zRu","e":"heart","c":"n. m.","noInf":true,"ppp":"زړونه","ppf":"zRoona"},{"ts":1588857967561,"i":9215,"p":"غوایه","f":"ghwaayú","g":"ghwaayu","e":"bull","c":"n. m. anim."},{"ts":1527817108,"i":9783,"p":"کاته","f":"kaatu","g":"kaatu","e":"look, gaze, examination, inspection, spying","c":"n. m."},{"ts":1527817768,"i":9802,"p":"کارګه","f":"kaargú","g":"kaargu","e":"raven, crow","c":"n. m. anim."},{"ts":1527819245,"i":10447,"p":"کوربانه","f":"korbaanú","g":"korbaanu","e":"master of house, head of family, married man","c":"n. m."},{"ts":1527818516,"i":11294,"p":"لمبېده","f":"lambedú","g":"lambedu","e":"swimming, bathing","c":"n. m."},{"ts":1527813986,"i":11300,"p":"لمر پرېواته","f":"lmarprewaatu","g":"lmarprewaatu","e":"sunset, west","c":"n. m."},{"ts":1527813992,"i":11306,"p":"لمر لوېده","f":"lmarlwedu","g":"lmarlwedu","e":"sunset","c":"n. m."},{"ts":1527813987,"i":11308,"p":"لمرخاته","f":"lmarkhaatu","g":"lmarkhaatu","e":"sunrise, east","c":"n. m."},{"ts":1527818255,"i":11550,"p":"لېوه","f":"lewú","g":"lewu","e":"wolf, wild dog","c":"n. m.","ppp":"لېوان","ppf":"lewáan","ec":"wolf","ep":"wolves"},{"ts":1527821522,"i":12114,"p":"مریه","f":"mrayú","g":"mrayu","e":"slave, servant","c":"n. m."},{"ts":1527812911,"i":12963,"p":"مېړه","f":"meRu","g":"meRu","e":"husband, brave","c":"n. m."},{"ts":1527811626,"i":13452,"p":"نکېده","f":"nukedu","g":"nukedu","e":"impracticability, impossibility, improbability","c":"n. m."},{"ts":1527816410,"i":13656,"p":"نیکه","f":"neekú","g":"neeku","e":"grandfather, grandpa","c":"n. m."},{"ts":1527822420,"i":14040,"p":"واګه","f":"waagu","g":"waagu","e":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","c":"n. m."},{"ts":1527816357,"i":14100,"p":"وراره","f":"wraaru","g":"wraaru","e":"nephew, brother's son","c":"n. m.","ppp":"وریرونه","ppf":"wreeroona"},{"ts":1527823225,"i":14317,"p":"وله","f":"wUlú","g":"wUlu","e":"flock, herd, drove","c":"n. m."},{"ts":1527814789,"i":14393,"p":"وېښته","f":"wextu","g":"wextu","e":"hair","c":"n. m."},{"ts":1527815394,"i":14003,"p":"واده","f":"waadú","g":"waadu","e":"wedding, marriage","c":"n. m."},{"ts":1527818017,"i":177,"p":"اټۍ","f":"aTúy","g":"aTuy","e":"store, shop","c":"n. f."},{"ts":1527812694,"i":903,"p":"انجنۍ","f":"injUnúy","g":"injUnuy","e":"girl","c":"n. f."},{"ts":1527815140,"i":1109,"p":"اونۍ","f":"onúy, ownúy, owunúy","g":"onuy,ownuy,owunuy","e":"week","c":"n. f."},{"ts":1566476931206,"i":1333,"p":"بتۍ","f":"batúy","g":"batuy","e":"lamp, light","c":"n. f."},{"ts":1527822192,"i":1338,"p":"بټۍ","f":"baTúy","g":"baTuy","e":"stove, oven, furnace","c":"n. f."},{"ts":1527820828,"i":1354,"p":"بچۍ","f":"bachúy","g":"bachuy","e":"daughter, girl","c":"n. f."},{"ts":1527822974,"i":1669,"p":"بګۍ","f":"bagúy","g":"baguy","e":"cart, buggy, stroller","c":"n. f."},{"ts":1591805634565,"i":2755,"p":"پوښتۍ","f":"pooxtúy","g":"pooxtuy","e":"rib","c":"n. f."},{"ts":1586276322639,"i":4094,"p":"ټوپۍ","f":"Topúy","g":"Topuy","e":"hat, cap","c":"n. f."},{"ts":1527820058,"i":4095,"p":"ټوټکۍ","f":"ToTakúy","g":"ToTakuy","e":"kneecap, patella","c":"n. f."},{"ts":1527812564,"i":6480,"p":"ډوډۍ","f":"DoDúy","g":"DoDuy","e":"bread, food, meal","c":"n. f."},{"ts":1527821555,"i":7323,"p":"ژۍ","f":"jzúy","g":"jzuy","e":"edge, verge, side","c":"n. f."},{"ts":1527814788,"i":7470,"p":"سپوږمۍ","f":"spoGmúy","g":"spogmuy","e":"moon","c":"n. f."},{"ts":1527820120,"i":9334,"p":"غونډۍ","f":"ghwunDúy","g":"ghwunDuy","e":"hill, hillrock, mound","c":"n. f."},{"ts":1527814203,"i":10012,"p":"کرسۍ","f":"kUrsúy","g":"kUrsuy","e":"chair, seat, stool","c":"n. f."},{"ts":1527812045,"i":10086,"p":"کړکۍ","f":"kuRkúy","g":"kuRkuy","e":"window","c":"n. f."},{"ts":1527816026,"i":10119,"p":"کړۍ","f":"kaRúy","g":"kaRuy","e":"ring, curl; handcuffs, link, chain, fetter; loom; department, section","c":"n. f."},{"ts":1527813870,"i":10150,"p":"کشتۍ","f":"kishtúy","g":"kishtuy","e":"boat, ship","c":"n. f."},{"ts":1527821895,"i":10932,"p":"ګوډۍ","f":"gooDúy","g":"gooDuy","e":"doll","c":"n. f."},{"ts":1527814564,"i":10973,"p":"ګولۍ","f":"golúy","g":"goluy","e":"pill tablet; bullet","c":"n. f."},{"ts":1527811763,"i":11268,"p":"لکۍ","f":"lakúy","g":"lakuy","e":"tail","c":"n. f."},{"ts":1527812659,"i":13813,"p":"هګۍ","f":"hagúy","g":"haguy","e":"egg","c":"n. f."},{"ts":1527821372,"i":13938,"p":"هوسۍ","f":"hosúy","g":"hosuy","e":"gazelle, antelope","c":"n. f."},{"ts":1527815154,"i":2190,"p":"پای","f":"paay","g":"paay","e":"end, finish, close, conclusion","c":"n. m."},{"ts":1527812594,"i":4553,"p":"ځای","f":"dzaay","g":"dzaay","e":"place, space","c":"n. m."},{"ts":1527812525,"i":4700,"p":"چای","f":"chaay","g":"chaay","e":"tea","c":"n. m."},{"ts":1527812783,"i":5459,"p":"خدای","f":"khUdaay","g":"khUdaay","e":"God, Lord","c":"n. m. anim.","ec":"God","ep":"gods"},{"ts":1527819514,"i":5953,"p":"دای","f":"daay","g":"daay","e":"tier, row, foundation (masonry etc.)","c":"n. m."},{"ts":1610797797756,"i":7398,"p":"سای","f":"saay","g":"saay","e":"hollow, depression","c":"n. m.","ec":"hollow"},{"ts":1527822345,"i":7628,"p":"سرای","f":"saráay","g":"saraay","e":"caravansary, inn, large house","c":"n. m.","ec":"carvansary"},{"ts":1586598425514,"i":1852,"p":"بوی","f":"booy","g":"booy","e":"smell","c":"n. m.","ec":"smell"},{"ts":1527814511,"i":5822,"p":"خوی","f":"khooy","g":"khooy","e":"character, nature, disposition, habit","c":"n. m."},{"ts":1527811221,"i":2718,"p":"پورته","f":"porta","g":"porta","e":"above, overhead","c":"loc. adv."},{"ts":1578080952673,"i":5963,"p":"دباندې","f":"dubaande","g":"dubaande","e":"outside, outside of, beyond","c":"loc. adv."},{"ts":1527812558,"i":6196,"p":"دلته","f":"dălta","g":"dalta","e":"here","c":"loc. adv."},{"ts":1527812449,"i":13822,"p":"هلته","f":"hálta, álta","g":"halta,alta","e":"there","c":"loc. adv."},{"ts":1527813122,"i":6236,"p":"دننه","f":"dununa","g":"dununa","e":"inside, within, interior","c":"loc. adv."},{"ts":1527812780,"i":8552,"p":"ښکته","f":"xkuta","g":"xkuta","e":"down, beneath","c":"loc. adv."},{"ts":1527814605,"i":11185,"p":"لرې","f":"lure","g":"lure","e":"far, distant","c":"adj. / loc. adv."},{"ts":1527814708,"i":13290,"p":"نژدې","f":"nijzde, najzde","g":"nijzde,najzde","e":"close, near, soon, almost","c":"adj. / loc. adv."},{"ts":1527814911,"i":13292,"p":"نږدې","f":"naGde","g":"nagde","e":"near, close to, almost","c":"adj. / loc. adv."}]; export default words; \ No newline at end of file diff --git a/src/words/words.ts b/src/words/words.ts index 8abc207..014490d 100644 --- a/src/words/words.ts +++ b/src/words/words.ts @@ -1,20 +1,22 @@ import rawWords from "./raw-words"; import { - isAdjective, - isNoun, - isVerb, + isAdjectiveEntry, + isNounEntry, + isVerbEntry, + isAdverbEntry, } from "../lib/type-predicates"; import { categorize } from "../lib/categorize"; -const words = categorize(rawWords, { - "nouns": isNoun, - "adjectives": isAdjective, - "verbs": isVerb, +const words = categorize(rawWords, { + "nouns": isNounEntry, + "adjectives": isAdjectiveEntry, + "verbs": isVerbEntry, + "adverbs": isAdverbEntry, }); export default words; -export const { nouns, adjectives, verbs } = words; +export const { nouns, adjectives, verbs, adverbs } = words; // console.log( // Object.entries( diff --git a/yarn.lock b/yarn.lock index 82dd9b7..c05f5a6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1684,10 +1684,10 @@ pbf "^3.2.1" rambda "^6.7.0" -"@lingdocs/pashto-inflector@^1.3.2": - version "1.3.2" - resolved "https://npm.lingdocs.com/@lingdocs%2fpashto-inflector/-/pashto-inflector-1.3.2.tgz#a5501d9a56c8590eee052a88ffdbe38a07594f29" - integrity sha512-crZlvjLssb+Q6kh6sAHlg4A4BerJnurSFUMz0fyYl3PlULsZyVHGvKepHYhP5AXyWt34zGiTzHTWapzIWsWtiQ== +"@lingdocs/pashto-inflector@^1.3.5": + version "1.3.5" + resolved "https://npm.lingdocs.com/@lingdocs%2fpashto-inflector/-/pashto-inflector-1.3.5.tgz#cfc311462c686e5591f12ee68b333a2ec479f428" + integrity sha512-Asxu773Z9+0Gxi8wkSD6x3JYcSeJmXqgoHQu1Hvph1oOAac3t8Bn0uXC/OGO5p1leilEHePJT+hkMFmURTArcw== dependencies: classnames "^2.2.6" pbf "^3.2.1"