diff --git a/package.json b/package.json index 4f6bda4..7f11e82 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,10 @@ "markdown-to-jsx": "^7.1.3", "react": "^17.0.1", "react-bootstrap": "^1.5.2", + "react-countdown-circle-timer": "^2.5.4", "react-dom": "^17.0.1", "react-ga": "^3.3.0", + "react-rewards": "^1.1.2", "react-router-dom": "^5.2.0", "react-router-hash-link": "^2.3.1", "react-scripts": "3.4.3", diff --git a/scripts/get-words.js b/scripts/get-words.js index 4f14d12..611af1e 100644 --- a/scripts/get-words.js +++ b/scripts/get-words.js @@ -31,9 +31,10 @@ export default verbs;`; // MAKE NOUN-ADJ FILE const allNounsAdjs = getNounsAdjsFromTsS(entries); - const content1 = `const nounsAdjs = ${JSON.stringify(allNounsAdjs)}; + const content1 = `import { Types as T } from "@lingdocs/pashto-inflector"; +const nounsAdjs: { entry: T.DictionaryEntry, def: string, category: string }[] = ${JSON.stringify(allNounsAdjs)}; export default nounsAdjs;`; - fs.writeFileSync(path.join(verbsPath, "nouns-adjs.js"), content1); + fs.writeFileSync(path.join(verbsPath, "nouns-adjs.ts"), content1); }); function getVerbsFromTsS(entries) { @@ -66,7 +67,7 @@ function getNounsAdjsFromTsS(entries) { return allNounAdjTsS.map(item => { const entry = entries.find(x => item.ts === x.ts); if (!entry) { - console.log("couldn't find ts", ts); + console.log("couldn't find ts", item); return undefined; } return { entry, def: item.e, category: item.category }; diff --git a/scripts/misc-query.js b/scripts/misc-query.js index 77860ea..ac1f9ad 100644 --- a/scripts/misc-query.js +++ b/scripts/misc-query.js @@ -6,6 +6,8 @@ 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]; @@ -14,11 +16,11 @@ const verbTsFiles = fs.readdirSync(collectionPath); fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.arrayBuffer()).then(data => { const { entries } = readDictionary(data); const filtered = entries.filter(e => ( - e.c && (e.c === "n. f.") && e.p.slice(-1) === "ا" + e.c?.startsWith("n. f.") && pConsonants.includes(e.p.slice(-1)) )); const content = `module.exports = [ ${filtered.reduce((text, entry) => ( - text + `{ ts: ${entry.ts}, e: "${entry.e}" }, // ${entry.p} - ${entry.f} + text + `{ ts: ${entry.ts}, e: \`${entry.e.replace(/"/g, '\\"')}\` }, // ${entry.p} - ${entry.f} `), "")} ];`; fs.writeFileSync(path.join(verbsPath, "my-words.js"), content); diff --git a/src/components/Game.tsx b/src/components/Game.tsx new file mode 100644 index 0000000..e88f30c --- /dev/null +++ b/src/components/Game.tsx @@ -0,0 +1,125 @@ +import React, { useState, useRef } from "react"; +import { CountdownCircleTimer } from "react-countdown-circle-timer"; +import Reward, { RewardElement } from 'react-rewards'; +import "./timer.css"; +import { + getPercentageDone, +} from "../lib/game-utils"; +const errorVibration = 200; + +function Game({ questions, Display, timeLimit, Instructions }: GameInput) { + const rewardRef = useRef(null); + const [finish, setFinish] = useState(null); + const [current, setCurrent] = useState | undefined>(undefined); + const [questionBox, setQuestionBox] = useState>(questions()); + const [timerKey, setTimerKey] = useState(1); + + function handleCallback(correct: boolean) { + if (correct) handleAdvance(); + else handleFailure(); + } + function handleFailure() { + // rewardRef.current?.punishMe(); + setFinish("fail"); + navigator.vibrate(errorVibration); + } + function handleAdvance() { + const next = questionBox.next(); + if (next.done) handleFinish(); + else setCurrent(next.value); + } + function handleFinish() { + // post results + setFinish("pass"); + rewardRef.current?.rewardMe(); + } + function handleRestart() { + const newQuestionBox = questions(); + const { value } = newQuestionBox.next(); + // just for type safety -- the generator will have at least one question + if (!value) return; + setQuestionBox(newQuestionBox); + setFinish(null); + setCurrent(value); + setTimerKey(prev => prev + 1); + } + function handleTimeOut() { + setFinish("time out"); + navigator.vibrate(errorVibration); + } + function getProgressWidth(): string { + const num = !current + ? 0 + : (finish === "pass") + ? 100 + : getPercentageDone(current.progress); + return `${num}%`; + } + const progressColor = finish === "pass" + ? "success" + : finish === "fail" + ? "danger" + : "primary"; + return
+
+
+
+
+ {current && } +
+ +
+ {finish === null && + (current + ? + :
+
+ {/* TODO: ADD IN TEXT DISPLAY OPTIONS HERE TOO - WHEN WE START USING THEM*/} + +
+
+ +
+
) + } + {finish === "pass" &&
+

+ 🎉 Finished! +

+ +
} + {(finish === "fail" || finish === "time out") &&
+

{failMessage(current?.progress, finish)}

+ +
} +
+
+
; +} + +function failMessage(progress: Progress | undefined, finish: "time out" | "fail"): string { + const pDone = progress ? getPercentageDone(progress) : 0; + const { message, face } = pDone < 20 + ? { message: "No, sorry", face: "😑" } + : pDone < 30 + ? { message: "Oops, that's wrong", face: "😟" } + : pDone < 55 + ? { message: "Fail", face: "😕" } + : pDone < 78 + ? { message: "You've almost got it!", face: "😩" } + : { message: "Nooo! So close!", face: "😭" }; + return finish === "fail" + ? `${message} ${face}` + : `⏳ Time's Up ${face}`; +} + +export default Game; \ No newline at end of file diff --git a/src/components/GenderGame.tsx b/src/components/GenderGame.tsx new file mode 100644 index 0000000..9729a97 --- /dev/null +++ b/src/components/GenderGame.tsx @@ -0,0 +1,78 @@ +import React from "react"; +import { + getRandomFromList, + makeProgress, +} from "../lib/game-utils"; +import genderColors from "../lib/gender-colors"; +import Game from "./Game"; +import { + Types as T, + Examples, + defaultTextOptions as opts, + removeFVariants, +} from "@lingdocs/pashto-inflector"; +import words from "../words/nouns-adjs"; + +// const masc = words.filter((w) => w.entry.c === "n. m."); +// const fem = words.filter((w) => w.entry.c === "n. f."); +type CategorySet = Record; +const types: Record = { + masc: { + consonantMasc: words.filter((w) => w.category === "consonant-masc"), + eyMasc: words.filter((w) => w.category === "ey-masc"), + uMasc: words.filter((w) => w.category === "u-masc"), + yMasc: words.filter((w) => w.category === "y-masc"), + }, + fem: { + aaFem: words.filter((w) => w.category === "aa-fem"), + eeFem: words.filter((w) => w.category === "ee-fem"), + uyFem: words.filter((w) => w.category === "uy-fem"), + aFem: words.filter((w) => w.category === "a-fem"), + eFem: words.filter((w) => w.category === "e-fem"), + }, + // TODO add ې fem words and balance gender +}; +// consonantFem: words.filter((w) => w.category === "consonant-fem"), + +const amount = 40; + +function* questions () { + const wordPool = {...types}; + for (let i = 0; i < amount; i++) { + const gender = getRandomFromList(Object.keys(wordPool)); + const typeToUse = getRandomFromList(Object.keys(wordPool[gender])); + const question = getRandomFromList(wordPool[gender][typeToUse]).entry; + wordPool[gender][typeToUse] = wordPool[gender][typeToUse].filter(({ entry }) => entry.ts !== question.ts); + yield { + progress: makeProgress(i, amount), + question, + }; + } +} + +function Display({ question, callback }: QuestionDisplayProps) { + function check(gender: "m" | "f") { + callback(!!question.c?.includes(gender)); + } + return
+
+ {[ + removeFVariants({ p: question.p, f: question.f }) + ]} +
+
+ + +
+
+} + +function Instructions() { + return

+ Choose the right gender for each word +

; +} + +export default function() { + return +}; diff --git a/src/components/timer.css b/src/components/timer.css new file mode 100644 index 0000000..6436c1f --- /dev/null +++ b/src/components/timer.css @@ -0,0 +1,59 @@ +.base-timer { + position: relative; + height: 300px; + width: 300px; + } + + /* Removes SVG styling that would hide the time label */ + .base-timer__circle { + fill: none; + stroke: none; + } + + /* The SVG path that displays the timer's progress */ + .base-timer__path-elapsed { + stroke-width: 7px; + stroke: grey; + } + + .base-timer__label { + position: absolute; + + /* Size should match the parent container */ + width: 300px; + height: 300px; + + /* Keep the label aligned to the top */ + top: 0; + + /* Create a flexible box that centers content vertically and horizontally */ + display: flex; + align-items: center; + justify-content: center; + + /* Sort of an arbitrary number; adjust to your liking */ + font-size: 48px; + } + + .base-timer__path-remaining { + /* Just as thick as the original ring */ + stroke-width: 7px; + + /* Rounds the line endings to create a seamless circle */ + stroke-linecap: round; + + /* Makes sure the animation starts at the top of the circle */ + transform: rotate(90deg); + transform-origin: center; + + /* One second aligns with the speed of the countdown timer */ + transition: 1s linear all; + + /* Allows the ring to change color when the color value updates */ + stroke: currentColor; + } + + .base-timer__svg { + /* Flips the svg and makes the animation to move left-to-right */ + transform: scaleX(-1); + } \ No newline at end of file diff --git a/src/content/inflection/feminine-inflection.mdx b/src/content/inflection/feminine-inflection.mdx index e6da4af..3436f91 100644 --- a/src/content/inflection/feminine-inflection.mdx +++ b/src/content/inflection/feminine-inflection.mdx @@ -36,18 +36,18 @@ 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.) ## Feminine Nouns Ending in - + ## Feminine Nouns Ending in - + **Note:** With this pattern, the first inflection is often only used for making the noun plural. Also, many dialects use the plural ending instead. For instance: diff --git a/src/content/inflection/inflection-patterns.mdx b/src/content/inflection/inflection-patterns.mdx index 2a7b59f..264c210 100644 --- a/src/content/inflection/inflection-patterns.mdx +++ b/src/content/inflection/inflection-patterns.mdx @@ -37,7 +37,7 @@ Don't worry about memorizing them all perfectly to start. Instead keep looking b ## Words ending in a consonant / - +
@@ -69,19 +69,19 @@ Notice how it does not use the first feminine inflection - + ## Words ending in a stressed - + ## Words with the "Pashtun" pattern - + **Note**: Nouns in this pattern will often only use the first inflection for the plural. Adjectives will use the 1st inflection for all 3 reasons. ## Shorter irregular words - + diff --git a/src/content/nouns/nouns-gender.mdx b/src/content/nouns/nouns-gender.mdx index 7bd2a1c..340950b 100644 --- a/src/content/nouns/nouns-gender.mdx +++ b/src/content/nouns/nouns-gender.mdx @@ -7,8 +7,10 @@ import { InlinePs, Examples, } from "@lingdocs/pashto-inflector"; -export const femColor = "#FFECEF" -export const mascColor = "#C1D5F4"; +import genderColors from "../../lib/gender-colors"; +import GenderGame from "../../components/GenderGame"; +export const femColor = genderColors.f; +export const mascColor = genderColors.m; export const Masc = () => ( masculine @@ -24,8 +26,8 @@ All nouns in Pashto are either or . Thankfully, you can pretty m Basically: - - if a noun ends in a *consonant* (including ی - y at the end), it's - - if a noun ends in a *vowel*, it's + - if a noun ends in a *consonant* (including ی - y at the end) or a shwa sound it's + - if a noun ends in a different *vowel*, it's Well... almost. 😉 There are a few exceptions and it's a little more complicated than that. @@ -125,6 +127,10 @@ Words ending in can be either can also be plural, as in +**Here's a little game to practice identifying the genders of words:** + + + ## Exceptions ### Feminine words that lost their diff --git a/src/lib/game-utils.ts b/src/lib/game-utils.ts new file mode 100644 index 0000000..5bd51a2 --- /dev/null +++ b/src/lib/game-utils.ts @@ -0,0 +1,30 @@ +export function makeRandomQs( + amount: number, + makeQuestion: () => Q +): () => QuestionGenerator { + function makeProgress(i: number, total: number): Progress { + return { current: i + 1, total }; + } + return function* () { + for (let i = 0; i < amount; i++) { + yield { + progress: makeProgress(i, amount), + question: makeQuestion(), + }; + } + } +} + +export function getPercentageDone(progress: Progress): number { + return Math.round( + (progress.current / (progress.total + 1)) * 100 + ); +} + +export function getRandomFromList(list: T[]): T { + return list[Math.floor((Math.random()*list.length))]; +} + +export function makeProgress(i: number, total: number): Progress { + return { current: i + 1, total }; +} \ No newline at end of file diff --git a/src/lib/gender-colors.ts b/src/lib/gender-colors.ts new file mode 100644 index 0000000..70c3350 --- /dev/null +++ b/src/lib/gender-colors.ts @@ -0,0 +1,4 @@ +export default { + m: "#C1D5F4", + f: "#FFECEF", +} \ No newline at end of file diff --git a/src/types.d.ts b/src/types.d.ts new file mode 100644 index 0000000..17d8d44 --- /dev/null +++ b/src/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 GameInput = { + Instructions: (props: { opts?: import("@lingdocs/pashto-inflector").Types.TextOptions }) => JSX.Element, + questions: () => QuestionGenerator, + Display: (props: QuestionDisplayProps) => JSX.Element, + timeLimit: number; +} \ No newline at end of file diff --git a/src/words/my-words.js b/src/words/my-words.js index e6d7130..e69de29 100644 --- a/src/words/my-words.js +++ b/src/words/my-words.js @@ -1,234 +0,0 @@ -module.exports = [ -{ ts: 1527822023, e: "Asia" }, // آسیا - aasyaa -{ ts: 1527815932, e: "beginning, first-stage" }, // ابتدا - ibtidaa -{ ts: 1527815920, e: "expectation, reliance, hope, support" }, // اتکا - itikaa -{ ts: 1610012325799, e: "moment, interval, space (in time)" }, // اثنا - asnáa -{ ts: 1566652353002, e: "hemaphrodite, she-male" }, // اجړا - ajRáa -{ ts: 1566652548455, e: "hemaphrodite, she-male" }, // اجړا - ijRáa -{ ts: 1527818029, e: "setting forth, giving, fulfilling, execution, fulfillment, implementation, utterance, expression, rendering" }, // ادا - adáa -{ ts: 1527813115, e: "claim" }, // ادعا - idaa -{ ts: 1527811956, e: "rise, elevation, development, evolution, growth" }, // ارتقا - irtiqaa -{ ts: 1527817208, e: "Europe" }, // اروپا - aroopaa -{ ts: 1527812456, e: "need, necessity" }, // اړتیا - aRtiyaa, aRtyaa -{ ts: 1527818026, e: "ease, facility, easiness" }, // اسانتیا - asaantiyaa -{ ts: 1527820201, e: "Australia" }, // استرالیا - astraaliyaa -{ ts: 1527816642, e: "resignation, quitting, retirement" }, // استعفا - istifaa -{ ts: 1585928568994, e: "lack of need, having enough financially, sufficiency" }, // استغنا - istighnáa -{ ts: 1578014484426, e: "washing after going to the bathroom" }, // استنجا - istinjáa -{ ts: 1527816620, e: "misfortune, disaster, danger" }, // اشا - ashaa -{ ts: 1527821548, e: "appetite" }, // اشتها - ishtiháa -{ ts: 1527812697, e: "appetite" }, // اشتیا - ishtiyaa -{ ts: 1610538741714, e: "temptation, seduction, bribery, deception" }, // اغوا - ighwaa -{ ts: 1610539003852, e: "kidnapping, abduction" }, // اغوا - aghwáa -{ ts: 1527820097, e: "Africa" }, // افریقا - afreeqaa -{ ts: 1527813329, e: "disclosure, revealing; disclosed, revealed" }, // افشا - ifshaa -{ ts: 1527816976, e: "residence, place of residence" }, // اقامتګا - iqaamatgaa -{ ts: 1527811654, e: "contentment, satisfaction, sufficiency" }, // اکتفا - iktifaa -{ ts: 1591803517557, e: "appeal, recourse, claim, refuge" }, // التجا - iltijaa -{ ts: 1595252694892, e: "abolishment, canncellation" }, // الغا - ilgháa -{ ts: 1527822448, e: "alphabet" }, // الفبا - alifbaa -{ ts: 1527816907, e: "America, the U.S.A." }, // امریکا - amreekaa -{ ts: 1527818119, e: "stick, walking staff, walking stick, crutch" }, // امسا - amsaa -{ ts: 1527819616, e: "signature" }, // امضا - imzaa -{ ts: 1527823751, e: "spelling, orthography" }, // املا - imláa -{ ts: 1527812451, e: "grandmother" }, // انا - anaa -{ ts: 1566473683629, e: "utimate, extremity, limit, end" }, // انتها - intihaa -{ ts: 1527821364, e: "isolation, seclusion, insularity, retreat" }, // انزوا - inziwáa -{ ts: 1527823452, e: "crying, wailing, weeping, howling" }, // انګولا - angoláa -{ ts: 1527812599, e: "Italy" }, // ایټالیا - eeTaalyaa -{ ts: 1527813060, e: "stop, delay, waiting" }, // ایسارتیا - eesaartyaa -{ ts: 1527822611, e: "truthfulness, righteousness" }, // بډبولتیا - baDboltiyaa -{ ts: 1527822425, e: "equality, evenness" }, // برابرتیا - baraabartyaa -{ ts: 1527819507, e: "Great Britain, England" }, // برتانیا - britaanyaa -{ ts: 1577397158534, e: "fortified castle" }, // برجوره کلا - brajawara kalaa -{ ts: 1527812486, e: "success" }, // بریا - baryaa -{ ts: 1527812510, e: "electricity, lightning" }, // برېښنا - brexnáa -{ ts: 1527816591, e: "sufficiency, to have enough or get by" }, // بستیا - bastyaa -{ ts: 1527818754, e: "duration, length, continuation, existence, immortality" }, // بقا - baqáa -{ ts: 1527814825, e: "frog" }, // بکا - bakaa -{ ts: 1527817914, e: "curds, cottage cheese" }, // بګوړا - bagoRaa -{ ts: 1527811905, e: "misfortune, disaster; monster" }, // بلا - balaa -{ ts: 1527816029, e: "occupation, pursuit, busy-ness, business" }, // بوختیا - bokhtiyaa -{ ts: 1571607895925, e: "bathroom, toilet (Arabic)" }, // بیت الخلا - beytUlkhalaa -{ ts: 1527821566, e: "desert, outdoors" }, // بېدیا - bedyáa -{ ts: 1527814091, e: "wideness, expansiveness" }, // پراختیا - praakhtiyaa -{ ts: 1593690604453, e: "the Parana River" }, // پرنا - parnáa -{ ts: 1593690620347, e: "drowsiness, sleepiness" }, // پرنا - paranáa -{ ts: 1527819817, e: "care, concern" }, // پروا - parwaa -{ ts: 1527813625, e: "Pukhtunkhwa" }, // پښتونخوا - puxtoonkhwaa -{ ts: 1527811304, e: "regret" }, // پښېمانتیا - pxemaantiyaa -{ ts: 1527815664, e: "time, occasion" }, // پلا - plaa -{ ts: 1527818868, e: "placenta" }, // پلاسنتا - plaasintaa -{ ts: 1527815637, e: "refuge, assylum, shelter" }, // پنا - panaa -{ ts: 1527814168, e: "the other side" }, // پورې خوا - pore khwaa -{ ts: 1527823535, e: "powerfullness, strength" }, // پیاوړتیا - pyaawaRtiyaa -{ ts: 1527822928, e: "complication, complicatedness" }, // پېچلتیا - pechiltiyaa -{ ts: 1577398506018, e: "loot, plunder" }, // تالا - taalaa -{ ts: 1527822732, e: "faint or dim light" }, // تته رڼا - tuta raNaa -{ ts: 1527816418, e: "great-grandmother" }, // ترنه انا - tarna anaa -{ ts: 1527815481, e: "fear, fright, anxiety, alarm" }, // ترها - trahaa -{ ts: 1527815482, e: "fear, fright, anxiety, alarm" }, // ترها - tarhaa -{ ts: 1527818927, e: "tension" }, // ترینګلتیا - treengaltiyaa -{ ts: 1527818922, e: "lukewarmness, lack of passion" }, // تړمتیا - taRamtiyaa -{ ts: 1527814640, e: "demand" }, // تقاضا - taqaazaa -{ ts: 1527818459, e: "desire, wish, request" }, // تمنا - tamannáa -{ ts: 1610616965242, e: "shouts, pomp, cries, news, echo" }, // تنتنا - tantanáa -{ ts: 1527823502, e: "towel" }, // تولیا - tawliyáa -{ ts: 1527820236, e: "panting, breathlessness, gasping, puffing, dyspnea, shortness of breath" }, // تیګا - teegaa -{ ts: 1527822848, e: "see ټکهار" }, // ټکا - Tukaa -{ ts: 1577566234929, e: "growing" }, // ټکا - TUkaa -{ ts: 1527814882, e: "praise, exaltation, worship" }, // ثنا - sanaa -{ ts: 1527815043, e: "punishment, retribution" }, // جزا - jazaa -{ ts: 1527820514, e: "geography" }, // جغرافیا - jUghraafiyaa -{ ts: 1527817620, e: "oppression, cruelty, difficulty, suffering, offense, injury" }, // جفا - jafaa, jifaa -{ ts: 1527813741, e: "shine, polish, luster" }, // جلا - jaláa -{ ts: 1610444343375, e: "flag" }, // جنډا - janDaa -{ ts: 1527823420, e: "gambling" }, // جوا - jUwáa -{ ts: 1527818191, e: "cloth, fabric; spider" }, // جولا - jolaa -{ ts: 1527819278, e: "distinction, specialty, unique feature" }, // ځانګړتیا - dzaanguRtiyaa -{ ts: 1527819329, e: "glow, lustre, brilliance, radiance" }, // ځلا - dzaláa -{ ts: 1527821601, e: "speed, quickness" }, // چټکتیا - chaTaktiyáa -{ ts: 1576610895061, e: "splashing, sloshing, plonk, ripple" }, // چړپا - chRapaa -{ ts: 1527819041, e: "cross, crucifix" }, // چلیپا - chaleepaa -{ ts: 1527814591, e: "silence" }, // چوپتیا - chooptiyaa -{ ts: 1527819022, e: "well, water-hole" }, // څا - tsaa -{ ts: 1527823462, e: "heat, high temperature, fever" }, // حما - hUmmáa -{ ts: 1527818809, e: "modesty, bashfulness, shame, staying modest in dress and behaviour (Islam)" }, // حیا - hayáa -{ ts: 1527820313, e: "surprise, amazement, wonder" }, // حیرانتیا - heyraantiyaa -{ ts: 1527816236, e: "knowledge" }, // خبرتیا - khabartiyaa -{ ts: 1527813393, e: "date (food)" }, // خرما - khUrmaa -{ ts: 1588153273589, e: "dustiness, dirtiness, complicatedness" }, // خړپړتیا - khuRpuRtiyaa -{ ts: 1527814225, e: "mistake, error, blunder" }, // خطا - khataa -{ ts: 1610797589510, e: "cavity, emptiness, vacuum, empty space, space (as in planets etc.)" }, // خلا - khaláa -{ ts: 1527817385, e: "laughter, happiness" }, // خندا - khandaa -{ ts: 1527814165, e: "side, direction, appetite, mind, heart" }, // خوا - khwaa -{ ts: 1586341506780, e: "good natured, good humored, nice" }, // خوږ اروا - khoGarwaa -{ ts: 1575237043710, e: "blood money, payment for a death to the surviving family members" }, // خون بها - khoonbaháa -{ ts: 1577384966877, e: "sound of pounding, thumping" }, // دربا - drabáa -{ ts: 1527812582, e: "prayer" }, // دعا - dUaa -{ ts: 1527811295, e: "claim; plea; dispute, conflict" }, // دعوا - dawaa -{ ts: 1527817433, e: "captivating, charming, fascinating; beloved, sweetheart, darling" }, // دل ربا - dilrUbaa -{ ts: 1527815956, e: "comfort, affection, consolation" }, // دم دلاسا - dam dilaasaa -{ ts: 1527812345, e: "world; fig. wealth, possessions, money" }, // دنیا - dUnyaa -{ ts: 1527812543, e: "cilantro/coriander, parsley" }, // دڼیا - daNiyaa -{ ts: 1527813415, e: "medicine, medication" }, // دوا - dawaa -{ ts: 1527819727, e: "sulkiness, bad mood, grumpiness; bile, spleen" }, // ډډتیا - DaDtiyaa -{ ts: 1610538292815, e: "rumour, heresay, murmuring (ډنډوره)" }, // ډنډا - DanDáa -{ ts: 1527811582, e: "sewing, needlework, embroidery; medical treatment" }, // رغا - raghaa -{ ts: 1588076803134, e: "rickshaw" }, // رکشا - riksháa -{ ts: 1527812272, e: "light, glory" }, // رڼا - raNaa -{ ts: 1527811696, e: "health" }, // روغتیا - roghtiyaa -{ ts: 1527819323, e: "clearness, transparency" }, // روڼتیا - rooNtiyaa -{ ts: 1527823245, e: "dream, vision" }, // رویا - rooyáa -{ ts: 1527811340, e: "hypocrisy, insincerity, deceit" }, // ریا - riyaa -{ ts: 1527816165, e: "shivering, trembling, shuddering" }, // رېږدېدا - reGdedaa -{ ts: 1588159632321, e: "rickshaw" }, // رېکشا - reksháa -{ ts: 1527811481, e: "percolation of water, dampness, moisture; drainage system; the time of calving or giving birth (for some animals); oozing, ooze (د خوشحالۍ له زا و -- he was oozing with happiness)" }, // زا - zaa -{ ts: 1586363213172, e: "old age, seniority" }, // زړتیا - zaRtyaa -{ ts: 1527823241, e: "bravery, courage" }, // زړه ورتیا - zRuwartyaa -{ ts: 1527814354, e: "adultery, fornication" }, // زنا - zináa -{ ts: 1527821528, e: "intelligence, smartness" }, // زیرکتیا - zeeraktiyaa -{ ts: 1527813807, e: "weeping, crying" }, // ژړا - jzaRaa -{ ts: 1527818214, e: "breath, breathing, respiration" }, // سا - saa -{ ts: 1527812406, e: "saving, economizing, austerity" }, // سپما - spamaa -{ ts: 1617989871203, e: "tiredness, fatigue, strain, tedious chore etc." }, // ستړتیا - stuRtyaa, stuRtiyaa -{ ts: 1527821240, e: "fatigue, exhaustion" }, // ستړیا - stuRiyaa -{ ts: 1527821549, e: "tiredness, exhaustion" }, // ستومانتیا - stomaantiyaa -{ ts: 1527823321, e: "purchase without weighing" }, // سټ سودا - suTsoodáa -{ ts: 1527815025, e: "retribution (good or bad); punishment, penalty, fine" }, // سزا - sazaa -{ ts: 1527816606, e: "advice, instructions, council, consultation" }, // سلا - salaa -{ ts: 1527817811, e: "peace, restfulness, safety" }, // سلامتیا - salaamatiyaa -{ ts: 1527819524, e: "sky, heavens, firmament, sky blue, canopy; amendment, correction, editing; enrichment; reclamation" }, // سما - samaa -{ ts: 1527818142, e: "ripeness, maturity; flourishing; freshness; planting (of greenery)" }, // سمسورتیا - samsortyáa -{ ts: 1527816041, e: "shopping, buying, purchasing; anxiety, worry" }, // سودا - sawdáa, sodáa -{ ts: 1527816174, e: "back" }, // شا - shaa -{ ts: 1527817809, e: "shame, shyness, embarrassment, disgrace" }, // شرمندتیا - sharmandtiyaa -{ ts: 1527813744, e: "exile, banishment" }, // شړونتیا - shaRoontyaa -{ ts: 1527817273, e: "healing, cure, health, recovery" }, // شفا - shifaa -{ ts: 1586596579414, e: "council (an institution)" }, // شورا - shooraa -{ ts: 1527813427, e: "stinginess, greediness" }, // شومتیا - shoomtiyaa -{ ts: 1527817905, e: "possibility, plausibility" }, // شونتیا - shoontiyaa -{ ts: 1527816550, e: "curse, cursing" }, // ښرا - xuraa -{ ts: 1527815984, e: "beauty" }, // ښکلا - xkulaa -{ ts: 1527816565, e: "cursing, swearing, verbal abuse" }, // ښکنځا - xkandzaa -{ ts: 1527819510, e: "involvement" }, // ښکېلتیا - xkeltiyaa -{ ts: 1527821560, e: "soup, broth" }, // ښوروا - xorwáa -{ ts: 1583525800967, e: "curse, cursing" }, // ښېرا - xeráa -{ ts: 1527819725, e: "bile, gall, petulance, spleen" }, // صفرا - safraa -{ ts: 1527814732, e: "invitation, summons, appeal" }, // صلا - salaa -{ ts: 1527822837, e: "gold" }, // طلا - tiláa -{ ts: 1527814326, e: "ability, skill; gift, donation, grant; endowment, natural talent" }, // عتا - ataa -{ ts: 1527813164, e: "barking, bow-wow, the sound a dog makes" }, // غپا - ghapaa -{ ts: 1527818133, e: "food, nourishment" }, // غذا - ghizaa -{ ts: 1527811790, e: "holy war, war for the faith, battle in holy war" }, // غزا - ghuzaa, ghazaa -{ ts: 1589023650144, e: "covering, membrane, tissue" }, // غشا - ghisháa -{ ts: 1527817670, e: "theft, robbery, stealing" }, // غلا - ghlaa -{ ts: 1610617077034, e: "echo" }, // غنګا - ghungáa -{ ts: 1527814362, e: "cow" }, // غوا - ghwaa -{ ts: 1527816425, e: "great-grandmother" }, // غورله انا - ghwurla anaa -{ ts: 1527816468, e: "great-grandmother" }, // غوره انا - ghwura anaa -{ ts: 1527816426, e: "great-grandmother" }, // غوره نیا - ghwura niyaa -{ ts: 1527820818, e: "noise, (hubbub, commotion)" }, // غوغا - ghoghaa, ghawghaa -{ ts: 1527815508, e: "fatwa, decree, ruling, judgment, sentence (in Islam)" }, // فتوا - fatwáa -{ ts: 1527811929, e: "depravation, depravity, wickedness, immorality" }, // فحشا - fahishaa -{ ts: 1527813470, e: "space, air" }, // فضا - fazaa -{ ts: 1527818102, e: "missing, skipping, missed, skipped (of a religious duty and of fulfilling that duty later, like prayers); judgment; fate, destiny" }, // قضا - qazáa -{ ts: 1585487002625, e: "castle, fort, fortress" }, // قلا - qaláa -{ ts: 1527812728, e: "Canada" }, // کاناډا - kaanaaDaa -{ ts: 1577384309050, e: "snap, click, sound" }, // کړپا - kRapáa -{ ts: 1527822433, e: "castle, fort, fortress" }, // کلا - kalaa -{ ts: 1527819042, e: "church" }, // کلیسا - kaleesáa -{ ts: 1527819215, e: "weakness" }, // کمزورتیا - kamzortiyaa -{ ts: 1527816566, e: "cursing, swearing, verbal abuse" }, // کنځا - kandzaa -{ ts: 1527817341, e: "synagogue" }, // کنیسا - kaneesaa -{ ts: 1527818292, e: "coup, coup d’etat, overthrow" }, // کودتا - koditáa -{ ts: 1578190738698, e: "a crane's call, croaking" }, // کورړا - korRáa -{ ts: 1566475969292, e: "family, wife" }, // کوروالا - korwaalaa -{ ts: 1591382561954, e: "Corona (the virus)" }, // کورونا - koronaa -{ ts: 1588758045381, e: "cholera" }, // کولرا - kolaraa -{ ts: 1527823135, e: "coma" }, // کوما - komaa -{ ts: 1566480780612, e: "poverty" }, // ګدا - gadáa -{ ts: 1611415468422, e: "beggar, panhandler" }, // ګدا - gadáa -{ ts: 1527818082, e: "dance" }, // ګډا - gaDaa -{ ts: 1594834658860, e: "basin" }, // ګډا - guDáa -{ ts: 1591446773492, e: "church" }, // ګرجا - girjáa -{ ts: 1589020883530, e: "warmth, heat" }, // ګرمتیا - garmtiyaa, garmtyaa -{ ts: 1582145455043, e: "flora" }, // ګیا - giyaa -{ ts: 1582336000732, e: "larva" }, // لاروا - laarwaa -{ ts: 1527820096, e: "brigade, squad, troop" }, // لوا - liwaa -{ ts: 1527818599, e: "beans" }, // لوبیا - lobyaa -{ ts: 1527818600, e: "Libya" }, // لوبیا - loobiyaa -{ ts: 1527820098, e: "eagerness, desire, longing, thirst" }, // لېوالتیا - lewaaltiyaa -{ ts: 1527812048, e: "meaning, sense, spirit" }, // مانا - maanaa -{ ts: 1610615401760, e: "subject, matter, essence, subject of an equative sentence; beginning, starting" }, // مبتدا - mUbtadáa -{ ts: 1527822783, e: "jam, preserve, marmalade" }, // مربا - mUrabáa -{ ts: 1527814167, e: "contentedness, satiety" }, // مړه خوا - maRa khwaa -{ ts: 1527817086, e: "smile" }, // مسا - masaa -{ ts: 1527817093, e: "smile" }, // مسکا - muskaa -{ ts: 1527817094, e: "smile" }, // مسکا - mUskaa -{ ts: 1527817095, e: "kind smile" }, // مسکتیا - musktiyaa -{ ts: 1566478486889, e: "fake crying, crocidile tears" }, // مکر ژړا - makurjzaRáa -{ ts: 1527815483, e: "back (body part)" }, // ملا - mlaa -{ ts: 1527819919, e: "malaria" }, // ملاریا - malaariyaa -{ ts: 1527818763, e: "reproach, disapproval, condemnation" }, // ملامتیا - malaamatyaa -{ ts: 1527823170, e: "accompaniment" }, // ملتیا - maltiyáa -{ ts: 1527812230, e: "friendship" }, // ملګرتیا - malgurtiyaa -{ ts: 1527819164, e: "beginning, source, root, origin" }, // منشا - mansháa -{ ts: 1527816513, e: "wife of a mullah, mother" }, // مورا - moraa -{ ts: 1527820543, e: "herd (of horses)" }, // میا - miyaa -{ ts: 1527812910, e: "hospitality; invitation, event, party, banquet, reception" }, // مېلمستیا - melmastiyaa -{ ts: 1617781446945, e: "sickness, illness" }, // ناجوړتیا - naajoRtiyaa, naajoRtyaa -{ ts: 1527819369, e: "dance, dancing, swaying, quivering; agitation" }, // نڅا - natsáa -{ ts: 1527815120, e: "grandmother" }, // نیا - niyaa -{ ts: 1527811740, e: "incompleteness, default, shortcoming" }, // نیمګړتیا - neemguRtiyaa -{ ts: 1527822486, e: "syllable; slowly reading by the syllables" }, // هجا - hijaa -{ ts: 1527812672, e: "air, atmosphere; weather" }, // هوا - hawaa -{ ts: 1527822688, e: "hopefulness, optimism" }, // هیله مندتیا - heelamandtiyaa -{ ts: 1527821040, e: "plague, cholera" }, // وبا - wabáa -{ ts: 1527811271, e: "afar, far off (له ورايه - from afar); a group of women that bring the bride to the groom's house" }, // ورا - wraa -{ ts: 1527823534, e: "ability, capacity, capability, power, volumeá" }, // وړتیا - waRtiyáa -{ ts: 1527816262, e: "loyalty, faithfulness, constancy" }, // وفا - wafaa -{ ts: 1610443988250, e: "division, distribution" }, // وېشلتیا - weshiltyaa, weshiltiyaa -{ ts: 1527816806, e: "speech, statement" }, // وینا - waynaa - -]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/a-fem.js b/src/words/noun-adj-categories/a-fem.js new file mode 100644 index 0000000..603c8ed --- /dev/null +++ b/src/words/noun-adj-categories/a-fem.js @@ -0,0 +1,103 @@ +module.exports = [ + { ts: 1527816466, e: `peace` }, // صلح - sUlha + { ts: 1527816589, e: `plan` }, // طرح - tarha + { ts: 1589023873660, e: `victory, conquest` }, // فتح - fathá + { ts: 1527813791, e: `permission` }, // اجازه - ijaaza +{ ts: 1614083533098, e: `agenda` }, // اجنډه - ajanDa +{ ts: 1527816215, e: `administration, management, directorate` }, // اداره - idaara +{ ts: 1527812687, e: `continuation` }, // ادامه - idaama +{ ts: 1527811661, e: `base, army post, (air) port` }, // اډه - aDa +{ ts: 1527814310, e: `evaluation, appraisal, assessment` }, // ارزونه - arzawuna +{ ts: 1527821380, e: `saw (the tool)` }, // اره - ara +{ ts: 1527822277, e: `mare, female horse; fever` }, // اسپه - aspa +{ ts: 1527814922, e: `addition, add-on, augmentation` }, // اضافه - izaafa +{ ts: 1527822458, e: `expression` }, // افاده - ifaada +{ ts: 1527813303, e: `myth, legend, fairy tale` }, // افسانه - afsaana +{ ts: 1527822494, e: `cheek` }, // انانګه - anaangá +{ ts: 1527817225, e: `measure, dimension, extent, scale` }, // اندازه - andaaza +{ ts: 1527813759, e: `worry, concern, fear` }, // اندېښنه - andexna +{ ts: 1527815787, e: `shoulder` }, // اوږه - ooGá +{ ts: 1527813787, e: `tear (from eye)` }, // اوښکه - ooxka +{ ts: 1527819927, e: `liver` }, // اینه - éena +{ ts: 1527816261, e: `wallet` }, // بټوه - baTwa +{ ts: 1527812001, e: `poriton, part, share` }, // برخه - barkha +{ ts: 1578009902092, e: `veil, burka` }, // برقه - bUrqá +{ ts: 1527816994, e: `program` }, // برنامه - barnaama +{ ts: 1579294091093, e: `balcony, veranda, porch` }, // برنډه - baranDá +{ ts: 1527817837, e: `whorehouse, brothel` }, // بړوا خانه - baRwaakhaana +{ ts: 1527823617, e: `crime, offense, sin, guilt, fault` }, // بزه - bazá +{ ts: 1527823619, e: `moth` }, // بزه - bUzá +{ ts: 1527823620, e: `patch (in a garment)` }, // بزه - bza +{ ts: 1591026261598, e: `she-goat` }, // بزه - buza +{ ts: 1574188090133, e: `contribution, donation, gift, charity` }, // بسپنه - baspuna +{ ts: 1527816590, e: `sufficiency, to have enough or get by` }, // بسنه - basuna +{ ts: 1593852212828, e: `fear, fright` }, // بېره - béra +{ ts: 1527815862, e: `speed, rush, hurry, urgency` }, // بېړه - beRa +{ ts: 1527815156, e: `leaf` }, // پاڼه - paaNa +{ ts: 1527813481, e: `project` }, // پروژه - projza +{ ts: 1527818409, e: `process` }, // پروسه - purosa +{ ts: 1527815192, e: `decision` }, // پرېکړه - prékRa +{ ts: 1527822412, e: `nose` }, // پزه - páza +{ ts: 1527816124, e: `foot` }, // پښه - pxa +{ ts: 1527815155, e: `pretext, excuse` }, // پلمه - palma +{ ts: 1566469328688, e: `fan` }, // پنکه - panka +{ ts: 1527815184, e: `question` }, // پوښتنه - poxtuna +{ ts: 1527822437, e: `shelf, niche` }, // تاخچه - taakhchá +{ ts: 1527814974, e: `fever` }, // تبه - tuba +{ ts: 1527815332, e: `expectation` }, // تمه - tama +{ ts: 1527815716, e: `stone, rock` }, // تیږه - teeGa +{ ts: 1582390417084, e: `escape, flight, running away` }, // تېښته - téxta +{ ts: 1527822268, e: `carriage, buggy` }, // ټانګه - Taangá +{ ts: 1527812014, e: `society, association, gathering, assembly, congregation` }, // ټولنه - Toluna +{ ts: 1527816696, e: `sentence; whole, total, sum` }, // جمله - jUmla +{ ts: 1527820504, e: `land, earth, ground` }, // ځمکه - dzmuka +{ ts: 1527815497, e: `face, picture` }, // څېره - tsera +{ ts: 1527811993, e: `attack, assault` }, // حمله - hamla +{ ts: 1527812720, e: `language` }, // ژبه - jzúba, jzíba +{ ts: 1527812052, e: `brick, cinder-block` }, // خښته - khuxta +{ ts: 1527813475, e: `minute` }, // دقیقه - daqeeqa +{ ts: 1527812542, e: `break, rest` }, // دمه - dama +{ ts: 1527812085, e: `obligation, duty, responsibility; job, work, position` }, // دنده - danda +{ ts: 1527822847, e: `jaw` }, // ژامه - jzaamá +{ ts: 1527815278, e: `night` }, // شپه - shpa +{ ts: 1527813145, e: `tribe` }, // قبیله - qabeela +{ ts: 1566653299904, e: `camara` }, // کمره - kamara +{ ts: 1527812825, e: `street` }, // کوڅه - kootsa +{ ts: 1527812756, e: `banana` }, // کېله - kela +{ ts: 1527812859, e: `game, match` }, // لوبه - lóba +{ ts: 1527819087, e: `defeat` }, // ماته - maata +{ ts: 1588076706989, e: `distance, span` }, // مسافه - masaafá +{ ts: 1527818358, e: `apple` }, // مڼه - maNá +{ ts: 1527812901, e: `stomach` }, // مېده - meda +{ ts: 1527813387, e: `gluing, joining, wrangle, quarrel, fighting, skirmish, battle` }, // نښته - nuxúta +{ ts: 1527815110, e: `sign, mark, indication` }, // نښه - náxa, núxa +{ ts: 1527813391, e: `date (as in time)` }, // نېټه - neTa +{ ts: 1527811429, e: `graveyard, cemetery` }, // هدیره - hadeera +{ ts: 1527814323, e: `gift, present, donation, contribution` }, // هدیه - hadiya +{ ts: 1527812655, e: `week` }, // هفته - hafta +{ ts: 1527812681, e: `agreement` }, // هوکړه - hókRa +{ ts: 1578343468611, e: `tendon, sinew; hamstring` }, // واڼه - wáaNa +{ ts: 1527822717, e: `snow` }, // واوره - wáawra +{ ts: 1527811207, e: `eyebrow` }, // وروځه - wróodza +{ ts: 1527816375, e: `niece; brother's daughter` }, // ورېره - wrera +{ ts: 1527822259, e: `breeze, light wind` }, // وږمه - waGmá +{ ts: 1527814719, e: `weapons, firearms, artillery` }, // وسله - wasla +{ ts: 1527823717, e: `cloth, fabric, material, clothing, garment` }, // کپړه - kapRá +{ ts: 1527816257, e: `notebook, little book` }, // کتابچه - kitaabcha +{ ts: 1527820050, e: `bag, purse` }, // کڅوړه - katsóRa +{ ts: 1594834749012, e: `flirting, wink, flirtatious wink` }, // کرشمه - karishmá, karashmá +{ ts: 1527813252, e: `line, trace` }, // کرښه - kurxa +{ ts: 1527823590, e: `sphere, globe` }, // کره - kará +{ ts: 1527823591, e: `shovel, scraper, scoop` }, // کره - kára +{ ts: 1527815884, e: `criticism` }, // کره کتنه - karakatuna +{ ts: 1527823035, e: `whip` }, // کروړه - karoRá +{ ts: 1527816870, e: `farmland` }, // کرونده - karwanda +{ ts: 1527817371, e: `lament, mourning aloud, wail, cry (also out of hapiness)` }, // کریږه - kreeGa +{ ts: 1598119732734, e: `bitter melon` }, // کرېله - karelá +{ ts: 1527820606, e: `cave, cavern` }, // سمڅه - smútsa +{ ts: 1527815249, e: `song, poem, verse` }, // سندره - sandura +{ ts: 1591034128816, e: `mistake, error, blunder, fault` }, // سهوه - sáhwa +{ ts: 1527814370, e: `nostril` }, // سوږمه - soGma +{ ts: 1527817498, e: `famine, starvation, serious hunger/lack of food, drought, crop failure` }, // سوکړه - sookRá +{ ts: 1527814144, e: `charred log` }, // سوکه - swaka +]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/aa-fem-noun.js b/src/words/noun-adj-categories/aa-fem.js similarity index 100% rename from src/words/noun-adj-categories/aa-fem-noun.js rename to src/words/noun-adj-categories/aa-fem.js diff --git a/src/words/noun-adj-categories/aanu.js b/src/words/noun-adj-categories/aanu-unisex.js similarity index 100% rename from src/words/noun-adj-categories/aanu.js rename to src/words/noun-adj-categories/aanu-unisex.js diff --git a/src/words/noun-adj-categories/consonant-fem.js b/src/words/noun-adj-categories/consonant-fem.js new file mode 100644 index 0000000..4f70897 --- /dev/null +++ b/src/words/noun-adj-categories/consonant-fem.js @@ -0,0 +1,18 @@ +module.exports = [ + { ts: 1527814147, e: `blanket, coving, quilt` }, // بړستن - bRastun +{ ts: 1527818707, e: `wedge; gusset (in a shirt)` }, // ترخځ - turkhúdz +{ ts: 1527822792, e: `narrow mattress used as a bed or a couch, reversible rug` }, // توشک - toshák +{ ts: 1527820524, e: `pelt, skin, hide, leather` }, // څرمن - tsarmún +{ ts: 1527823306, e: `elbow` }, // څنګل - tsangúl +{ ts: 1527813294, e: `comb` }, // ږمنځ - Gmundz +{ ts: 1527811580, e: `needle, injection; pillar, mast` }, // ستن - stun +{ ts: 1527813824, e: `bosom, breast; wrestling` }, // غېږ - gheG +{ ts: 1527815779, e: `swearing, name-calling, verbal abuse, bad language` }, // کنځل - kundzul +{ ts: 1527814150, e: `road, way, path` }, // لار - laar +{ ts: 1527817456, e: `skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)` }, // لمن - lamun +{ ts: 1527822725, e: `span` }, // لوېشت - lwesht +{ ts: 1527811609, e: `claw, paw` }, // منګل - mangul +{ ts: 1527812922, e: `month` }, // میاشت - miyaasht +{ ts: 1527815417, e: `day` }, // ورځ - wradz +{ ts: 1527821684, e: `cloud` }, // ورېځ - wurédz +] \ No newline at end of file diff --git a/src/words/noun-adj-categories/consonant-masc.js b/src/words/noun-adj-categories/consonant-masc.js new file mode 100644 index 0000000..ceb2d11 --- /dev/null +++ b/src/words/noun-adj-categories/consonant-masc.js @@ -0,0 +1,104 @@ +module.exports = [ + { ts: 1527812432, e: `sky, heaven` }, // آسمان - aasmaan + { ts: 1527812431, e: `mango` }, // آم - aam + { ts: 1527812434, e: `sound, voice` }, // آواز - aawaaz + { ts: 1527816724, e: `room, chamber` }, // اتاق - Utaaq + { ts: 1527811859, e: `union, alliance` }, // اتحاد - itihaad + { ts: 1527822033, e: `joining, connection, contiguity, junction` }, // اتصال - ittisáal + { ts: 1527811858, e: `unity, alliance, agreement, understanding, consent; coincidence` }, // اتفاق - itifaaq + { ts: 1527820147, e: `the Atan, the Pashtun/Afghan national dance` }, // اتڼ - atáN + { ts: 1527813560, e: `accusation, charge, indictment` }, // اتهام - itihaam + { ts: 1527812105, e: `respect, honor, esteem, deference` }, // احترام - ihtiraam + { ts: 1527819653, e: `possibility, probability, likelihood` }, // احتمال - ihtimaal + { ts: 1527812689, e: `need, requirement` }, // احتیاج - ihtiyaaj + { ts: 1527812690, e: `caution` }, // احتیاط - ihtiyaat + { ts: 1527813782, e: `feeling, sensation, emotion` }, // احساس - ahsaas + { ts: 1527817303, e: `objection, protest` }, // اعتراض - itiraaz + { ts: 1527813418, e: `influence, effect, affect, action` }, // اغېز - aghez + { ts: 1527816625, e: `disaster` }, // افت - afat + { ts: 1527813558, e: `accusation, charge, blame` }, // الزام - ilzaam + { ts: 1527815388, e: `hope, expectation` }, // امید - Umeed + { ts: 1527812453, e: `picture, painting, image` }, // انځور - andzoor + { ts: 1527813827, e: `fire, flame` }, // اور - or + { ts: 1527814787, e: `rain` }, // باران - baaraan + { ts: 1527817293, e: `roof` }, // بام - baam + { ts: 1527814849, e: `eggplant` }, // بانجن - baanjan + { ts: 1527814106, e: `crisis` }, // بحران - bUhraan + { ts: 1527814885, e: `fortune, luck, fate` }, // بخت - bakht + { ts: 1527811281, e: `garden` }, // بڼ - baN + { ts: 1624039195280, e: `scholarship` }, // بورس - boors + { ts: 1527816877, e: `flag` }, // بیرغ - beyragh + { ts: 1527820423, e: `passport` }, // پاسپورټ - paasporT + { ts: 1527813224, e: `bridge` }, // پل - pUl + { ts: 1527813480, e: `plan` }, // پلان - plaan + { ts: 1527815199, e: `central-asian/middle-eastern rice dish, pilaf` }, // پلاو - pulaaw + { ts: 1527815185, e: `loan, debt` }, // پور - por + { ts: 1527815176, e: `onion` }, // پیاز - piyaaz + { ts: 1527815171, e: `start` }, // پیل - peyl + { ts: 1527816610, e: `crown, crest` }, // تاج - taaj + { ts: 1527822373, e: `vine; mouthful` }, // تاک - taak + { ts: 1527815326, e: `confirmation` }, // تایید - taayeed + { ts: 1527815357, e: `seed` }, // تخم - tUkhum + { ts: 1527821586, e: `pity, sympathy` }, // ترحم - tarahhÚm + { ts: 1527811389, e: `picture` }, // تصویر - tasweer + { ts: 1527814679, e: `guarantee, insurance, security` }, // تضمین - tazmeen + { ts: 1527814258, e: `speech, lecture` }, // تقریر - taqreer + { ts: 1527821670, e: `cheating, deception, fraud, forgery` }, // تقلب - taqalÚb + { ts: 1527811602, e: `attempt, aspiration, intention, effort` }, // تکل - takál + { ts: 1527813398, e: `movement, motion, going` }, // تګ - tug, tag + { ts: 1527822126, e: `anniversary` }, // تلین - tleen + { ts: 1527811308, e: `contact, touch` }, // تماس - tamaas + { ts: 1527817900, e: `body, flesh` }, // تن - tan + { ts: 1527821061, e: `contrast, opposition, contradiction` }, // تناقض - tanaaqÚz + { ts: 1527822387, e: `rope, cord; a measurement of ground or distances` }, // تناو - tanáaw + { ts: 1527818995, e: `lightning` }, // تندر - tandúr + { ts: 1527815362, e: `ball; (cannon) ball` }, // توپ - top + { ts: 1527816820, e: `spit` }, // توک - took + { ts: 1527816520, e: `family, clan, tribe, people` }, // ټبر - Tabar + { ts: 1527811348, e: `wound` }, // ټپ - Tap + { ts: 1527819566, e: `piece, part; cloth, fabric` }, // ټکر - TUkúr + { ts: 1527812213, e: `mosque` }, // جمات - jUmaat + { ts: 1527811705, e: `structure` }, // جوړښت - joRuxt + { ts: 1527814058, e: `answer, reply` }, // ځواب - dzawaab + { ts: 1527816887, e: `life, existence, energy, force` }, // ځواک - dzwaak + { ts: 1527814649, e: `market square, crossroads, paved area in front of entrance` }, // چوک - chok + { ts: 1527815065, e: `hammer` }, // څټک - tsaTak, tsTuk + { ts: 1527814589, e: `side` }, // څنګ - tsang + { ts: 1527816228, e: `boundary, limit, extent` }, // حد - had + { ts: 1527813749, e: `government, reign, rule` }, // حکومت - hUkoomat + { ts: 1527814125, e: `solution` }, // حل - hal + { ts: 1527818703, e: `shirt` }, // خت - khut + { ts: 1527813804, e: `sleep, dream` }, // خوب - khob + { ts: 1527812815, e: `safety, security` }, // خوندیتوب - khwundeetob + { ts: 1527813763, e: `religion, faith` }, // دین - deen + { ts: 1527811517, e: `journey, travel` }, // سفر - safar + { ts: 1527815389, e: `age, life` }, // عمر - Úmur + { ts: 1527816746, e: `tooth` }, // غاښ - ghaax + { ts: 1527812631, e: `ear` }, // غوږ - ghwuG, ghwaG + { ts: 1527812265, e: `decree, order` }, // فرمان - farmaan + { ts: 1527817205, e: `film, movie` }, // فلم - film + { ts: 1527812727, e: `year` }, // کال - kaal + { ts: 1527812817, e: `book` }, // کتاب - kitaab + { ts: 1527812611, e: `step, move` }, // ګام - gaam + { ts: 1527812641, e: `rose, flower` }, // ګل - gUl + { ts: 1527812650, e: `threat, danger, challeng` }, // ګواښ - gwaax + { ts: 1527813521, e: `mourning, grief, grieving, deep sorrow` }, // ماتم - maatam + { ts: 1527812176, e: `evening` }, // ماښام - maaxaam + { ts: 1527813601, e: `death` }, // مرګ - marg + { ts: 1527817691, e: `future` }, // مستقبل - mUstaqbil + { ts: 1527817963, e: `victim-hood, oppression` }, // مظلومیت - mazloomiyát + { ts: 1527811866, e: `damage, defect, loss` }, // نقصان - nUqsaan + { ts: 1527815122, e: `name` }, // نوم - noom + { ts: 1527812661, e: `boy, young lad` }, // هلک - halík, halúk + { ts: 1566476070874, e: `street, road` }, // واټ - waaT + { ts: 1527816036, e: `authority, power` }, // واک - waak + { ts: 1527815400, e: `time` }, // وخت - wakht + { ts: 1527818582, e: `building, prosperity, habitable state` }, // ودانښت - wadaanuxt + { ts: 1527811441, e: `door, gate, entrance` }, // ور - war + { ts: 1527815406, e: `homeland, home country` }, // وطن - watán + { ts: 1573149648251, e: `fellow country-man` }, // وطن وال - watanwaal + { ts: 1586428847646, e: `national (person), a citizen or person of that land` }, // وطنوال - watanwáal + { ts: 1527822208, e: `bat, coward, pipsqueak, hesitant person` }, // وطواط - watwáat + { ts: 1527819571, e: `apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head` }, // وهم - wáhum, wahm + { ts: 1527816332, e: `pride, glory` }, // ویاړ - wyaaR +]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/consonant.js b/src/words/noun-adj-categories/consonant-unisex.js similarity index 100% rename from src/words/noun-adj-categories/consonant.js rename to src/words/noun-adj-categories/consonant-unisex.js diff --git a/src/words/noun-adj-categories/e-fem.js b/src/words/noun-adj-categories/e-fem.js new file mode 100644 index 0000000..9c8b9e3 --- /dev/null +++ b/src/words/noun-adj-categories/e-fem.js @@ -0,0 +1,25 @@ +module.exports = [ + { ts: 1568926976497, e: `x-ray` }, // اکسرې - iksre + { ts: 1602179757779, e: `alphabet` }, // الف بې - alif be + { ts: 1527813840, e: `ashes` }, // ایرې - eere + { ts: 1527816692, e: `glasses, spectacles` }, // اینکې - aynake + { ts: 1527819286, e: `stairs, steps, staircase` }, // پاشتقې - paashtáqe + { ts: 1527816299, e: `money (plural of پېسې)` }, // پیسې - peyse + { ts: 1527814529, e: `buttermilk` }, // تروې - turwe + { ts: 1527816369, e: `widow, woman` }, // تورسرې - torsăre + { ts: 1577408787088, e: `sprey (as in a medicinal spray)` }, // سپرې - spre + { ts: 1527822255, e: `break of dawn, first light of day, sunrise` }, // سپېدې - spedé + { ts: 1626765107329, e: `chickenpox, chicken pox` }, // شرې - sharé + { ts: 1527815008, e: `milk` }, // شودې - shoode + { ts: 1527822131, e: `raw rice, unprocessed rice` }, // شولې - shole + { ts: 1527815009, e: `milk (plural of شيده)` }, // شیدې - sheede + { ts: 1527823571, e: `spit, saliva` }, // ښیالمې - xyaalmé + { ts: 1527816530, e: `sister in law` }, // ښینې - xeene + { ts: 1527823567, e: `spit, saliva, slobber, slime` }, // لاړې - laaRe + { ts: 1527822275, e: `dishes, pots, pans` }, // لوښې - looxe + { ts: 1617443138210, e: `urine, pee, piss` }, // مچیازې - michyaaze, muchyaaze + { ts: 1527814420, e: `yogurt` }, // مستې - maste + { ts: 1577999538077, e: `a sound/cry used to drive sheep on` }, // هرې - hire + { ts: 1586551382412, e: `rice` }, // وریژې - wreejze + { ts: 1527820261, e: `plow, plowing, plough, ploughing` }, // یوې - yuwe +]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/ee-fem-noun.js b/src/words/noun-adj-categories/ee-fem.js similarity index 100% rename from src/words/noun-adj-categories/ee-fem-noun.js rename to src/words/noun-adj-categories/ee-fem.js diff --git a/src/words/noun-adj-categories/ey-masc.js b/src/words/noun-adj-categories/ey-masc.js new file mode 100644 index 0000000..99e6288 --- /dev/null +++ b/src/words/noun-adj-categories/ey-masc.js @@ -0,0 +1,153 @@ +module.exports = [ + { ts: 1527818948, e: `sneezing, sneeze` }, // اټسکی - aTúskey +{ ts: 1527816481, e: `brother in law; sister's husband` }, // اخښی - akhxey +{ ts: 1573681135691, e: `tribal constable, tribal offical with police powers` }, // اربکی - arbakéy +{ ts: 1573659054031, e: `width, spaciousness` }, // ارتوالی - artwaaley, aratwaaley +{ ts: 1527811890, e: `thorn, prickle` }, // ازغی - azghey +{ ts: 1527817036, e: `representative, envoy, ambassador, commissioner` }, // استازی - astaazey +{ ts: 1527816982, e: `residence, dwelling; hostel, dormitory` }, // استوګنځی - astogundzey +{ ts: 1527818489, e: `yawn, sigh, deep breath, shivering` }, // اسوېلی - asweley +{ ts: 1527822497, e: `cheek` }, // اننګی - anangey +{ ts: 1527821967, e: `beaver, seal` }, // اوبسپی - obspéy +{ ts: 1527822190, e: `stove, oven, furnace, hearth, floor of a fireplace` }, // اور غالی - orgháaley +{ ts: 1527821545, e: `volcano` }, // اورشیندی - orsheendéy +{ ts: 1527819192, e: `train` }, // اورګاډی - orgáaDey +{ ts: 1527815585, e: `summer` }, // اوړی - oRey +{ ts: 1527815132, e: `giraffe` }, // اوښ غویی - oox ghwayey +{ ts: 1527816488, e: `brother in law, wife's brother` }, // اوښی - awxey +{ ts: 1623044357441, e: `tuft, clump, shock of hair` }, // ببوتنکی - bubootúnkey +{ ts: 1527821668, e: `spark, speck, flicker` }, // بڅری - batsúrey +{ ts: 1527821239, e: `kidney` }, // بډوری - baDóorey +{ ts: 1527821099, e: `earring` }, // برغوږی - barghwáGey +{ ts: 1527822629, e: `lid, cover` }, // برغولی - barghóley +{ ts: 1527811903, e: `success, victory` }, // بری - barey +{ ts: 1594904072731, e: `bracelet` }, // بنګړی - bangRéy +{ ts: 1527817159, e: `plant` }, // بوټی - booTey +{ ts: 1527815055, e: `terrible` }, // بوږنوړی - boGnwaRey +{ ts: 1610618917483, e: `orphanage, nursery` }, // پالنځی - paalundzéy +{ ts: 1527814666, e: `final point, end point` }, // پای ټکی - paayTakey +{ ts: 1527816195, e: `small turban` }, // پټکی - paTkey +{ ts: 1527811611, e: `field, place where crops are sown` }, // پټی - paTey +{ ts: 1588762458105, e: `kitchen` }, // پخلنځی - pukhlandzéy +{ ts: 1527816059, e: `cooking, preparation of food; wisdom, maturity` }, // پخلی - pakhley +{ ts: 1527821241, e: `acorn` }, // پرګی - purgéy +{ ts: 1527813812, e: `veil, covering for women, cover` }, // پړونی - paRóoney +{ ts: 1527822385, e: `rope, cable, cord` }, // پړی - púRey +{ ts: 1527812980, e: `whispering, murmuring, rumor, gossip` }, // پس پسی - puspusey +{ ts: 1527814005, e: `spring, springtime (season)` }, // پسرلی - psarléy, pusărléy +{ ts: 1527821229, e: `kidney` }, // پښتورګی - paxtawurgey +{ ts: 1527817035, e: `mission, delegation` }, // پلاوی - plaawey +{ ts: 1527815187, e: `mat` }, // پوزی - pozey +{ ts: 1527816627, e: `fleece, pelt, skin, shell, rind, bark; ear lobe` }, // پوستکی - postukey +{ ts: 1527819332, e: `kidney` }, // پوښتورګی - pooxtawúrgey +{ ts: 1527819496, e: `understanding, comprehension` }, // پوهاوی - pohaawéy +{ ts: 1527815168, e: `load, weight, burden` }, // پېټی - peTéy +{ ts: 1527815927, e: `customer` }, // پېرونکی - peroonkey +{ ts: 1527815017, e: `cream` }, // پېروی - perúwey, peráwey +{ ts: 1527815325, e: `violence` }, // تاوتریخوالی - taawtreekhwaaley +{ ts: 1611397750325, e: `screwdriver, screw` }, // تاوی - taawéy +{ ts: 1622374978659, e: `hatchet` }, // تبرګی - tubúrgey +{ ts: 1527818705, e: `gusset (in a shirt)` }, // تخرګی - tkhurgéy +{ ts: 1527814392, e: `band, bandage` }, // تړونی - taRooney +{ ts: 1527822723, e: `side, groin, empty place, void` }, // تشی - túshey +{ ts: 1577585114379, e: `sole (of a shoe); yard, compound; palm` }, // تلی - táley +{ ts: 1527816630, e: `forehead, brow, slope` }, // تندی - tandey +{ ts: 1527821980, e: `bellyband (of a harness)` }, // تڼی - taNéy +{ ts: 1527819719, e: `spleen` }, // توری - tórey +{ ts: 1527819721, e: `letter, letter of the alphabet` }, // توری - tórey +{ ts: 1527819622, e: `rocket, missile` }, // توغندی - toghandéy +{ ts: 1527814705, e: `element, item, material; thing, material, kind, type` }, // توکی - tokey +{ ts: 1527819563, e: `piece, small piece; a length (of cloth); blanket` }, // ټکری - TUkréy +{ ts: 1577408381145, e: `shawl, head-covering` }, // ټکری - Tikréy +{ ts: 1527814667, e: `word; point; dot` }, // ټکی - Tákey +{ ts: 1527813617, e: `shawl, head covering` }, // ټیکری - Teekréy +{ ts: 1527819733, e: `young, youth, young lad` }, // ځلمی - dzalméy +{ ts: 1527815465, e: `official authority, official, authority` }, // چارواکی - chaarwaakey +{ ts: 1527822356, e: `worm, small insect` }, // چنجی - chinjéy +{ ts: 1527822808, e: `basin, bowl` }, // چنی - chanéy +{ ts: 1527822357, e: `worm, small insect` }, // چینجی - cheenjéy +{ ts: 1527819046, e: `drop` }, // څاڅکی - tsáatskey +{ ts: 1527817874, e: `quality, nature` }, // څرنګوالی - tsurangwaaley +{ ts: 1527814041, e: `spring (season)` }, // څړمنی - tsaRmuney +{ ts: 1527813361, e: `column, pilliar, pyramid` }, // څلی - tsaley +{ ts: 1527819027, e: `ladle, dipper` }, // څمڅی - tsamtsey +{ ts: 1573055311846, e: `warning, notice, alarm` }, // خبرداری - khabardaarey +{ ts: 1527820324, e: `melon` }, // خټکی - khaTakéy +{ ts: 1527819828, e: `weight; respect, honour` }, // درناوی - dranaawey +{ ts: 1588161660483, e: `crutch, walking-stick, cane` }, // ډانګوری - Daangooréy +{ ts: 1527813493, e: `majority; heap, pile` }, // ډېری - Derey +{ ts: 1527823700, e: `avalanche, flood, shower` }, // راشی - raashey +{ ts: 1527819525, e: `diminutive form of زړه - little heart; precious, dear` }, // زړګی - zuRgéy +{ ts: 1527819732, e: `young, youth, young lad` }, // زلمی - zalméy +{ ts: 1527813708, e: `good news, gospel` }, // زېری - zerey +{ ts: 1588758498458, e: `jaundice` }, // زېړی - zeRéy +{ ts: 1571626392709, e: `birthplace` }, // زېږنځی - zeGundzey +{ ts: 1527815698, e: `winter` }, // ژمی - jzúmey +{ ts: 1573686563723, e: `wineskin, bagpipe, skin for carrying liquid` }, // ژی - jzey +{ ts: 1527815239, e: `entertainment, fun, recreation` }, // ساتېری - saaterey +{ ts: 1527813725, e: `equal, equivalent, match, precedent` }, // ساری - sáarey +{ ts: 1527814021, e: `spring (season)` }, // سپرلی - sparléy +{ ts: 1527813509, e: `insult, disgrace, defamation, disrespect` }, // سپکاوی - spukaawéy +{ ts: 1527815298, e: `clarification, attestation` }, // سپیناوی - speenaawey +{ ts: 1578002674551, e: `eye-socket, eyelid; orbit` }, // سترغلی - sturghúley +{ ts: 1527811999, e: `star` }, // ستوری - storey +{ ts: 1527817001, e: `throat, larynx` }, // ستونی - stóoney +{ ts: 1527813511, e: `headache, trouble` }, // سرخوږی - sărkhwuGey +{ ts: 1527815251, e: `man` }, // سړی - saRéy +{ ts: 1527819850, e: `lung` }, // سږی - súGey +{ ts: 1527812302, e: `hole, slit, opening` }, // سوری - soorey +{ ts: 1527818221, e: `burning, zeal, fervour` }, // سوی - swey +{ ts: 1527812304, e: `shade, shadow` }, // سیوری - syórey, syóorey +{ ts: 1527815268, e: `thing` }, // شی - shey +{ ts: 1527822527, e: `ankle, ankle-bone` }, // ښتګری - xatgaréy +{ ts: 1527812793, e: `school` }, // ښوونځی - xowundzey +{ ts: 1527821064, e: `a quick, clever, agile, bright man; a swindler, a fraud` }, // ښویکی - xwayakéy +{ ts: 1527822650, e: `largeness, bigness` }, // غټوالی - ghaTwaaley +{ ts: 1527814569, e: `member` }, // غړی - ghuRey +{ ts: 1527817627, e: `arrow` }, // غشی - ghúshey +{ ts: 1527822913, e: `precious stone, precious stone in a signet ring` }, // غمی - ghaméy +{ ts: 1527823466, e: `ear lobe` }, // غنګوری - ghangóorey +{ ts: 1527818483, e: `plate` }, // غوری - ghorey +{ ts: 1527816181, e: `vomit, nausea (Arabic)` }, // قی - qey +{ ts: 1527814715, e: `user` }, // کاروونکی - kaarawoonkey +{ ts: 1578706351012, e: `dress, clothing, underwear, ornament (usually plural)` }, // کالی - kaaley +{ ts: 1527823295, e: `stone, rock` }, // کاڼی - káaNey +{ ts: 1527818563, e: `muscle` }, // کبوړی - kabóoRey +{ ts: 1527822824, e: `booklet, notebook` }, // کتاب ګوټی - kitaabgóTey +{ ts: 1582388629980, e: `pupil (of an eye)` }, // کسی - kúsey +{ ts: 1594906790729, e: `boy` }, // ککی - kakéy +{ ts: 1527812836, e: `village` }, // کلی - kuley, kiley +{ ts: 1527816880, e: `shortage, lack, deficiency` }, // کمی - kamey +{ ts: 1610616852625, e: `echo` }, // کنګرېزی - kangrezéy +{ ts: 1527819196, e: `car, train` }, // ګاډی - gaaDey +{ ts: 1579016593220, e: `beehive; wasps' nest` }, // ګنی - ganéy +{ ts: 1527819076, e: `doll, puppet` }, // ګوډاګی - gooDaagéy +{ ts: 1527822505, e: `cheek` }, // ګومبوری - goomboorey +{ ts: 1527819079, e: `puppet` }, // لاسپوڅی - laaspotséy +{ ts: 1573149568665, e: `access, availability` }, // لاسرسی - laasraséy +{ ts: 1527817464, e: `wood, timber` }, // لرګی - largey +{ ts: 1527822801, e: `sleeve` }, // لستوڼی - lastóNey +{ ts: 1527812416, e: `brook, rivulet, small irrigation` }, // لښتی - laxtey +{ ts: 1527814401, e: `toy` }, // لوبونی - lobawuney +{ ts: 1527814519, e: `side, direction` }, // لوری - lorey +{ ts: 1527813846, e: `smoke` }, // لوګی - loogéy +{ ts: 1527823103, e: `perspective, viewpoint` }, // لیدلوری - leedlorey +{ ts: 1527819920, e: `mosquito, midge` }, // ماشی - maashey +{ ts: 1527820224, e: `fly swatter` }, // مچوژی - muchwajzéy +{ ts: 1591871316865, e: `prefix (grammar)` }, // مختاړی - mukhtaaRey +{ ts: 1527817105, e: `smile, smiling` }, // مړخندی - muRkhandey +{ ts: 1527817770, e: `dead body, corpse` }, // مړی - múRey +{ ts: 1527813189, e: `fall, autumn` }, // منی - máney +{ ts: 1527812925, e: `peanut` }, // مومپلی - mompaley +{ ts: 1527812421, e: `ant` }, // مېږی - meGey +{ ts: 1527819227, e: `lack` }, // نشتوالی - nashtwaaley +{ ts: 1527823577, e: `sapling, seedling, sprout, young tree` }, // نیالګی - niyaalgey +{ ts: 1527812073, e: `bone` }, // هډوکی - haDookey +{ ts: 1527812668, e: `welcome` }, // هرکلی - hărkáley +{ ts: 1527820928, e: `awkward/silly laugh, unmotivated laugh` }, // هرکی - hurkéy +{ ts: 1588153218244, e: `height, elevation, tallness` }, // هسکوالی - haskwáaley +{ ts: 1585309922022, e: `flu, respiratory illness, influenza, cold` }, // والګی - waalgéy +{ ts: 1527813014, e: `vein, nerve` }, // وژی - wajzey +{ ts: 1527821465, e: `shoulder` }, // ولی - wuléy +{ ts: 1527814004, e: `summer` }, // ووړی - woRey +] \ No newline at end of file diff --git a/src/words/noun-adj-categories/ey-stressed.js b/src/words/noun-adj-categories/ey-stressed-unisex.js similarity index 100% rename from src/words/noun-adj-categories/ey-stressed.js rename to src/words/noun-adj-categories/ey-stressed-unisex.js diff --git a/src/words/noun-adj-categories/ey-unstressed.js b/src/words/noun-adj-categories/ey-unstressed-unisex.js similarity index 100% rename from src/words/noun-adj-categories/ey-unstressed.js rename to src/words/noun-adj-categories/ey-unstressed-unisex.js diff --git a/src/words/noun-adj-categories/short-irreg.js b/src/words/noun-adj-categories/short-irreg-unisex.js similarity index 100% rename from src/words/noun-adj-categories/short-irreg.js rename to src/words/noun-adj-categories/short-irreg-unisex.js diff --git a/src/words/noun-adj-categories/u-masc.js b/src/words/noun-adj-categories/u-masc.js new file mode 100644 index 0000000..9e785ab --- /dev/null +++ b/src/words/noun-adj-categories/u-masc.js @@ -0,0 +1,23 @@ +module.exports = [ + { ts: 1527819345, e: `sheep, ram` }, // پسه - psu + { ts: 1527822173, e: `bush, shrub` }, // جاړه - jaaRú + { ts: 1527813508, e: `heart` }, // زړه - zRu + { ts: 1588857967561, e: `bull` }, // غوایه - ghwaayú + { ts: 1527817108, e: `look, gaze, examination, inspection, spying` }, // کاته - kaatu + { ts: 1527817768, e: `raven, crow` }, // کارګه - kaargu + { ts: 1527819245, e: `master of house, head of family, married man` }, // کوربانه - korbaanú + { ts: 1527818516, e: `swimming, bathing` }, // لمبېده - lambedú + { ts: 1527813986, e: `sunset, west` }, // لمر پرېواته - lmarprewaatu + { ts: 1527813992, e: `sunset` }, // لمر لوېده - lmarlwedu + { ts: 1527813987, e: `sunrise, east` }, // لمرخاته - lmarkhaatu + { ts: 1527818255, e: `wolf, wild dog` }, // لېوه - lewú + { ts: 1527821522, e: `slave, servant` }, // مریه - mrayú + { ts: 1527812911, e: `husband, brave` }, // مېړه - meRu + { ts: 1527811626, e: `impracticability, impossibility, improbability` }, // نکېده - nukedu + { ts: 1527816410, e: `grandfather, grandpa` }, // نیکه - neekú + { ts: 1527822420, e: `rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar` }, // واګه - waagu + { ts: 1527816357, e: `nephew, brother's son` }, // وراره - wraaru + { ts: 1527823225, e: `flock, herd, drove` }, // وله - wUlú + { ts: 1527814789, e: `hair` }, // وېښته - wextu + { ts: 1527815394, e: 'wedding' }, // واده - waadú +]; \ No newline at end of file diff --git a/src/words/noun-adj-categories/uy-fem-noun.js b/src/words/noun-adj-categories/uy-fem.js similarity index 100% rename from src/words/noun-adj-categories/uy-fem-noun.js rename to src/words/noun-adj-categories/uy-fem.js diff --git a/src/words/noun-adj-categories/y-masc.js b/src/words/noun-adj-categories/y-masc.js new file mode 100644 index 0000000..2cb4b7c --- /dev/null +++ b/src/words/noun-adj-categories/y-masc.js @@ -0,0 +1,14 @@ +module.exports = [ + { ts: 1527815154, e: `end, finish, close, conclusion` }, // پای - paay +{ ts: 1527812594, e: `place, space` }, // ځای - dzaay +{ ts: 1527812525, e: `tea` }, // چای - chaay +{ ts: 1527812783, e: `God, Lord` }, // خدای - khUdaay +{ ts: 1527819514, e: `tier, row, foundation (masonry etc.)` }, // دای - daay +{ ts: 1610797797756, e: `hollow, depression` }, // سای - saay +{ ts: 1527822345, e: `caravansary, inn, large house` }, // سرای - saráay + + +{ ts: 1586598425514, e: `smell` }, // بوی - booy +{ ts: 1527814511, e: `character, nature, disposition, habit` }, // خوی - khooy +{ ts: 1566468540788, e: `rabbit` }, // سوی - sooy +] \ No newline at end of file diff --git a/src/words/nouns-adjs.ts b/src/words/nouns-adjs.ts new file mode 100644 index 0000000..d925721 --- /dev/null +++ b/src/words/nouns-adjs.ts @@ -0,0 +1,3 @@ +import { Types as T } from "@lingdocs/pashto-inflector"; +const nounsAdjs: { entry: T.DictionaryEntry, def: string, category: string }[] = [{"entry":{"ts":1527816466,"i":8648,"p":"صلح","f":"sUlha","g":"sUlha","e":"peace","c":"n. f."},"def":"peace","category":"a-fem"},{"entry":{"ts":1527816589,"i":8721,"p":"طرح","f":"tarha","g":"tarha","e":"plan","c":"n. f."},"def":"plan","category":"a-fem"},{"entry":{"ts":1589023873660,"i":9373,"p":"فتح","f":"fathá","g":"fatha","e":"victory, conquest","c":"n. f."},"def":"victory, conquest","category":"a-fem"},{"entry":{"ts":1527813791,"i":189,"p":"اجازه","f":"ijaaza","g":"ijaaza","e":"permission","c":"n. f."},"def":"permission","category":"a-fem"},{"entry":{"ts":1614083533098,"i":213,"p":"اجنډه","f":"ajanDa","g":"ajanDa","e":"agenda","c":"n. f."},"def":"agenda","category":"a-fem"},{"entry":{"ts":1527816215,"i":316,"p":"اداره","f":"idaara","g":"idaara","e":"administration, management, directorate","c":"n. f."},"def":"administration, management, directorate","category":"a-fem"},{"entry":{"ts":1527812687,"i":319,"p":"ادامه","f":"idaama","g":"idaama","e":"continuation","c":"n. f."},"def":"continuation","category":"a-fem"},{"entry":{"ts":1527811661,"i":341,"p":"اډه","f":"aDa","g":"aDa","e":"base, army post, (air) port","c":"n. f."},"def":"base, army post, (air) port","category":"a-fem"},{"entry":{"ts":1527814310,"i":380,"p":"ارزونه","f":"arzawuna","g":"arzawuna","e":"evaluation, appraisal, assessment","c":"n. f."},"def":"evaluation, appraisal, assessment","category":"a-fem"},{"entry":{"ts":1527821380,"i":397,"p":"اره","f":"ara","g":"ara","e":"saw (the tool)","c":"n. f."},"def":"saw (the tool)","category":"a-fem"},{"entry":{"ts":1527822277,"i":476,"p":"اسپه","f":"aspa","g":"aspa","e":"mare, female horse; fever","c":"n. f."},"def":"mare, female horse; fever","category":"a-fem"},{"entry":{"ts":1527814922,"i":607,"p":"اضافه","f":"izaafa","g":"izaafa","e":"addition, add-on, augmentation","c":"n. f."},"def":"addition, add-on, augmentation","category":"a-fem"},{"entry":{"ts":1527822458,"i":670,"p":"افاده","f":"ifaada","g":"ifaada","e":"expression","c":"n. f."},"def":"expression","category":"a-fem"},{"entry":{"ts":1527813303,"i":683,"p":"افسانه","f":"afsaana","g":"afsaana","e":"myth, legend, fairy tale","c":"n. f."},"def":"myth, legend, fairy tale","category":"a-fem"},{"entry":{"ts":1527822494,"i":868,"p":"انانګه","f":"anaangá","g":"anaanga","e":"cheek","c":"n. f."},"def":"cheek","category":"a-fem"},{"entry":{"ts":1527817225,"i":918,"p":"اندازه","f":"andaaza","g":"andaaza","e":"measure, dimension, extent, scale","c":"n. f."},"def":"measure, dimension, extent, scale","category":"a-fem"},{"entry":{"ts":1527813759,"i":925,"p":"اندېښنه","f":"andexna","g":"andexna","e":"worry, concern, fear","c":"n. f."},"def":"worry, concern, fear","category":"a-fem"},{"entry":{"ts":1527815787,"i":1076,"p":"اوږه","f":"ooGá","g":"ooga","e":"shoulder","c":"n. f."},"def":"shoulder","category":"a-fem"},{"entry":{"ts":1527813787,"i":1090,"p":"اوښکه","f":"ooxka","g":"ooxka","e":"tear (from eye)","c":"n. f."},"def":"tear (from eye)","category":"a-fem"},{"entry":{"ts":1527819927,"i":1179,"p":"اینه","f":"éena","g":"eena","e":"liver","c":"n. f."},"def":"liver","category":"a-fem"},{"entry":{"ts":1527816261,"i":1335,"p":"بټوه","f":"baTwa","g":"baTwa","e":"wallet","c":"n. f."},"def":"wallet","category":"a-fem"},{"entry":{"ts":1527812001,"i":1479,"p":"برخه","f":"barkha","g":"barkha","e":"poriton, part, share","c":"n. f."},"def":"poriton, part, share","category":"a-fem"},{"entry":{"ts":1578009902092,"i":1509,"p":"برقه","f":"bUrqá","g":"bUrka","e":"veil, burka","c":"n. f."},"def":"veil, burka","category":"a-fem"},{"entry":{"ts":1527816994,"i":1534,"p":"برنامه","f":"barnaama","g":"barnaama","e":"program","c":"n. f."},"def":"program","category":"a-fem"},{"entry":{"ts":1579294091093,"i":1537,"p":"برنډه","f":"baranDá","g":"baranDa","e":"balcony, veranda, porch","c":"n. f."},"def":"balcony, veranda, porch","category":"a-fem"},{"entry":{"ts":1527817837,"i":1567,"p":"بړوا خانه","f":"baRwaakhaana","g":"baRwaakhaana","e":"whorehouse, brothel","c":"n. f."},"def":"whorehouse, brothel","category":"a-fem"},{"entry":{"ts":1527823617,"i":1581,"p":"بزه","f":"bazá","g":"baza","e":"crime, offense, sin, guilt, fault","c":"n. f."},"def":"crime, offense, sin, guilt, fault","category":"a-fem"},{"entry":{"ts":1527823619,"i":1582,"p":"بزه","f":"bUzá","g":"bUza","e":"moth","c":"n. f."},"def":"moth","category":"a-fem"},{"entry":{"ts":1527823620,"i":1583,"p":"بزه","f":"bza","g":"bza","e":"patch (in a garment)","c":"n. f."},"def":"patch (in a garment)","category":"a-fem"},{"entry":{"ts":1591026261598,"i":1584,"p":"بزه","f":"buza","g":"buza","e":"she-goat","c":"n. f."},"def":"she-goat","category":"a-fem"},{"entry":{"ts":1574188090133,"i":1594,"p":"بسپنه","f":"baspuna","g":"baspuna","e":"contribution, donation, gift, charity","c":"n. f."},"def":"contribution, donation, gift, charity","category":"a-fem"},{"entry":{"ts":1527816590,"i":1608,"p":"بسنه","f":"basuna","g":"basuna","e":"sufficiency, to have enough or get by","c":"n. f."},"def":"sufficiency, to have enough or get by","category":"a-fem"},{"entry":{"ts":1593852212828,"i":2004,"p":"بېره","f":"béra","g":"bera","e":"fear, fright","c":"n. f."},"def":"fear, fright","category":"a-fem"},{"entry":{"ts":1527815862,"i":2016,"p":"بېړه","f":"beRa","g":"beRa","e":"speed, rush, hurry, urgency","c":"n. f."},"def":"speed, rush, hurry, urgency","category":"a-fem"},{"entry":{"ts":1527815156,"i":2180,"p":"پاڼه","f":"paaNa","g":"paaNa","e":"leaf","c":"n. f."},"def":"leaf","category":"a-fem"},{"entry":{"ts":1527813481,"i":2360,"p":"پروژه","f":"projza","g":"projza","e":"project","c":"n. f."},"def":"project","category":"a-fem"},{"entry":{"ts":1527818409,"i":2364,"p":"پروسه","f":"purosa","g":"purosa","e":"process","c":"n. f."},"def":"process","category":"a-fem"},{"entry":{"ts":1527815192,"i":2387,"p":"پرېکړه","f":"prékRa","g":"prekRa","e":"decision","c":"n. f."},"def":"decision","category":"a-fem"},{"entry":{"ts":1527822412,"i":2423,"p":"پزه","f":"páza","g":"paza","e":"nose","c":"n. f."},"def":"nose","category":"a-fem"},{"entry":{"ts":1527816124,"i":2487,"p":"پښه","f":"pxa","g":"pxa","e":"foot","c":"n. f."},"def":"foot","category":"a-fem"},{"entry":{"ts":1527815155,"i":2532,"p":"پلمه","f":"palma","g":"palma","e":"pretext, excuse","c":"n. f."},"def":"pretext, excuse","category":"a-fem"},{"entry":{"ts":1566469328688,"i":2614,"p":"پنکه","f":"panka","g":"panka","e":"fan","c":"n. f."},"def":"fan","category":"a-fem"},{"entry":{"ts":1527815184,"i":2745,"p":"پوښتنه","f":"poxtuna","g":"poxtuna","e":"question","c":"n. f."},"def":"question","category":"a-fem"},{"entry":{"ts":1527822437,"i":2960,"p":"تاخچه","f":"taakhchá","g":"taakhcha","e":"shelf, niche","c":"n. f."},"def":"shelf, niche","category":"a-fem"},{"entry":{"ts":1527814974,"i":3067,"p":"تبه","f":"tuba","g":"tuba","e":"fever","c":"n. f."},"def":"fever","category":"a-fem"},{"entry":{"ts":1527815332,"i":3664,"p":"تمه","f":"tama","g":"tama","e":"expectation","c":"n. f."},"def":"expectation","category":"a-fem"},{"entry":{"ts":1527815716,"i":3945,"p":"تیږه","f":"teeGa","g":"teega","e":"stone, rock","c":"n. f."},"def":"stone, rock","category":"a-fem"},{"entry":{"ts":1582390417084,"i":3948,"p":"تېښته","f":"téxta","g":"texta","e":"escape, flight, running away","c":"n. f."},"def":"escape, flight, running away","category":"a-fem"},{"entry":{"ts":1527822268,"i":3988,"p":"ټانګه","f":"Taangá","g":"Taanga","e":"carriage, buggy","c":"n. f."},"def":"carriage, buggy","category":"a-fem"},{"entry":{"ts":1527812014,"i":4116,"p":"ټولنه","f":"Toluna","g":"Toluna","e":"society, association, gathering, assembly, congregation","c":"n. f."},"def":"society, association, gathering, assembly, congregation","category":"a-fem"},{"entry":{"ts":1527816696,"i":4395,"p":"جمله","f":"jUmla","g":"jUmla","e":"sentence; whole, total, sum","c":"n. f."},"def":"sentence; whole, total, sum","category":"a-fem"},{"entry":{"ts":1527820504,"i":4580,"p":"ځمکه","f":"dzmúka","g":"dzmuka","e":"land, earth, ground","c":"n. f."},"def":"land, earth, ground","category":"a-fem"},{"entry":{"ts":1527815497,"i":5145,"p":"څېره","f":"tsera","g":"tsera","e":"face, picture","c":"n. f."},"def":"face, picture","category":"a-fem"},{"entry":{"ts":1527811993,"i":5293,"p":"حمله","f":"hamla","g":"hamla","e":"attack, assault","c":"n. f."},"def":"attack, assault","category":"a-fem"},{"entry":{"ts":1527812720,"i":7259,"p":"ژبه","f":"jzúba, jzíba","g":"jzuba,jziba","e":"language","c":"n. f."},"def":"language","category":"a-fem"},{"entry":{"ts":1527812052,"i":5556,"p":"خښته","f":"khuxta","g":"khuxta","e":"brick, cinder-block","c":"n. f."},"def":"brick, cinder-block","category":"a-fem"},{"entry":{"ts":1527813475,"i":6145,"p":"دقیقه","f":"daqeeqa","g":"dakeeka","e":"minute","c":"n. f.","app":"دقائق","apf":"daqaa'iq"},"def":"minute","category":"a-fem"},{"entry":{"ts":1527812542,"i":6211,"p":"دمه","f":"dama","g":"dama","e":"break, rest","c":"n. f."},"def":"break, rest","category":"a-fem"},{"entry":{"ts":1527812085,"i":6214,"p":"دنده","f":"danda","g":"danda","e":"obligation, duty, responsibility; job, work, position","c":"n. f."},"def":"obligation, duty, responsibility; job, work, position","category":"a-fem"},{"entry":{"ts":1527822847,"i":7247,"p":"ژامه","f":"jzaamá","g":"jzaama","e":"jaw","c":"n. f."},"def":"jaw","category":"a-fem"},{"entry":{"ts":1527815278,"i":8159,"p":"شپه","f":"shpa","g":"shpa","e":"night","c":"n. f."},"def":"night","category":"a-fem"},{"entry":{"ts":1527813145,"i":9583,"p":"قبیله","f":"qabeela","g":"kabeela","e":"tribe","c":"n. f.","app":"قبایل","apf":"qabaayul"},"def":"tribe","category":"a-fem"},{"entry":{"ts":1566653299904,"i":10259,"p":"کمره","f":"kamara","g":"kamara","e":"camara","c":"n. f."},"def":"camara","category":"a-fem"},{"entry":{"ts":1527812825,"i":10402,"p":"کوڅه","f":"kootsa","g":"kootsa","e":"street","c":"n. f."},"def":"street","category":"a-fem"},{"entry":{"ts":1527812756,"i":10581,"p":"کېله","f":"kela","g":"kela","e":"banana","c":"n. f."},"def":"banana","category":"a-fem"},{"entry":{"ts":1527812859,"i":11351,"p":"لوبه","f":"lóba","g":"loba","e":"game, match","c":"n. f."},"def":"game, match","category":"a-fem"},{"entry":{"ts":1527819087,"i":11532,"p":"ماته","f":"maata","g":"maata","e":"defeat","c":"n. f."},"def":"defeat","category":"a-fem"},{"entry":{"ts":1588076706989,"i":12158,"p":"مسافه","f":"masaafá","g":"masaafa","e":"distance, span","c":"n. f."},"def":"distance, span","category":"a-fem"},{"entry":{"ts":1527818358,"i":12730,"p":"مڼه","f":"maNá","g":"maNa","e":"apple","c":"n. f."},"def":"apple","category":"a-fem"},{"entry":{"ts":1527812901,"i":12906,"p":"مېده","f":"meda","g":"meda","e":"stomach","c":"n. f."},"def":"stomach","category":"a-fem"},{"entry":{"ts":1527813387,"i":13310,"p":"نښته","f":"nuxúta","g":"nuxuta","e":"gluing, joining, wrangle, quarrel, fighting, skirmish, battle","c":"n. f."},"def":"gluing, joining, wrangle, quarrel, fighting, skirmish, battle","category":"a-fem"},{"entry":{"ts":1527815110,"i":13316,"p":"نښه","f":"náxa, núxa","g":"naxa,nuxa","e":"sign, mark, indication","c":"n. f."},"def":"sign, mark, indication","category":"a-fem"},{"entry":{"ts":1527813391,"i":13590,"p":"نېټه","f":"neTa","g":"neTa","e":"date (as in time)","c":"n. f."},"def":"date (as in time)","category":"a-fem"},{"entry":{"ts":1527811429,"i":13708,"p":"هدیره","f":"hadeera","g":"hadeera","e":"graveyard, cemetery","c":"n. f."},"def":"graveyard, cemetery","category":"a-fem"},{"entry":{"ts":1527814323,"i":13709,"p":"هدیه","f":"hadiya","g":"hadiya","e":"gift, present, donation, contribution","c":"n. f."},"def":"gift, present, donation, contribution","category":"a-fem"},{"entry":{"ts":1527812655,"i":13770,"p":"هفته","f":"hafta","g":"hafta","e":"week","c":"n. f."},"def":"week","category":"a-fem"},{"entry":{"ts":1527812681,"i":13906,"p":"هوکړه","f":"hókRa","g":"hokRa","e":"agreement","c":"n. f."},"def":"agreement","category":"a-fem"},{"entry":{"ts":1578343468611,"i":14012,"p":"واڼه","f":"wáaNa","g":"waaNa","e":"tendon, sinew; hamstring","c":"n. f."},"def":"tendon, sinew; hamstring","category":"a-fem"},{"entry":{"ts":1527822717,"i":14013,"p":"واوره","f":"wáawra","g":"waawra","e":"snow","c":"n. f."},"def":"snow","category":"a-fem"},{"entry":{"ts":1527811207,"i":14113,"p":"وروځه","f":"wróodza","g":"wroodza","e":"eyebrow","c":"n. f."},"def":"eyebrow","category":"a-fem"},{"entry":{"ts":1527816375,"i":14140,"p":"ورېره","f":"wrera","g":"wrera","e":"niece; brother's daughter","c":"n. f."},"def":"niece; brother's daughter","category":"a-fem"},{"entry":{"ts":1527822259,"i":14191,"p":"وږمه","f":"waGmá","g":"wagma","e":"breeze, light wind","c":"n. f."},"def":"breeze, light wind","category":"a-fem"},{"entry":{"ts":1527814719,"i":14202,"p":"وسله","f":"wasla","g":"wasla","e":"weapons, firearms, artillery","c":"n. f."},"def":"weapons, firearms, artillery","category":"a-fem"},{"entry":{"ts":1527823717,"i":9888,"p":"کپړه","f":"kapRá","g":"kapRa","e":"cloth, fabric, material, clothing, garment","c":"n. f."},"def":"cloth, fabric, material, clothing, garment","category":"a-fem"},{"entry":{"ts":1527816257,"i":9896,"p":"کتابچه","f":"kitaabcha","g":"kitaabcha","e":"notebook, little book","c":"n. f."},"def":"notebook, little book","category":"a-fem"},{"entry":{"ts":1527820050,"i":9946,"p":"کڅوړه","f":"katsóRa","g":"katsoRa","e":"bag, purse","c":"n. f."},"def":"bag, purse","category":"a-fem"},{"entry":{"ts":1594834749012,"i":9987,"p":"کرشمه","f":"karishmá, karashmá","g":"karishma,karashma","e":"flirting, wink, flirtatious wink","c":"n. f."},"def":"flirting, wink, flirtatious wink","category":"a-fem"},{"entry":{"ts":1527813252,"i":9989,"p":"کرښه","f":"kurxa","g":"kurxa","e":"line, trace","c":"n. f."},"def":"line, trace","category":"a-fem"},{"entry":{"ts":1527823590,"i":10019,"p":"کره","f":"kará","g":"kara","e":"sphere, globe","c":"n. f."},"def":"sphere, globe","category":"a-fem"},{"entry":{"ts":1527823591,"i":10020,"p":"کره","f":"kára","g":"kara","e":"shovel, scraper, scoop","c":"n. f."},"def":"shovel, scraper, scoop","category":"a-fem"},{"entry":{"ts":1527815884,"i":10023,"p":"کره کتنه","f":"karakatuna","g":"karakatuna","e":"criticism","c":"n. f."},"def":"criticism","category":"a-fem"},{"entry":{"ts":1527823035,"i":10032,"p":"کروړه","f":"karoRá","g":"karoRa","e":"whip","c":"n. f."},"def":"whip","category":"a-fem"},{"entry":{"ts":1527816870,"i":10034,"p":"کرونده","f":"karwanda","g":"karwanda","e":"farmland","c":"n. f."},"def":"farmland","category":"a-fem"},{"entry":{"ts":1527817371,"i":10040,"p":"کریږه","f":"kreeGa","g":"kreega","e":"lament, mourning aloud, wail, cry (also out of hapiness)","c":"n. f."},"def":"lament, mourning aloud, wail, cry (also out of hapiness)","category":"a-fem"},{"entry":{"ts":1598119732734,"i":10042,"p":"کرېله","f":"karelá","g":"karela","e":"bitter melon","c":"n. f."},"def":"bitter melon","category":"a-fem"},{"entry":{"ts":1527820606,"i":7817,"p":"سمڅه","f":"smútsa","g":"smutsa","e":"cave, cavern","c":"n. f."},"def":"cave, cavern","category":"a-fem"},{"entry":{"ts":1527815249,"i":7856,"p":"سندره","f":"sandura","g":"sandura","e":"song, poem, verse","c":"n. f."},"def":"song, poem, verse","category":"a-fem"},{"entry":{"ts":1591034128816,"i":7888,"p":"سهوه","f":"sáhwa","g":"sahwa","e":"mistake, error, blunder, fault","c":"n. f."},"def":"mistake, error, blunder, fault","category":"a-fem"},{"entry":{"ts":1527814370,"i":7951,"p":"سوږمه","f":"soGma","g":"sogma","e":"nostril","c":"n. f."},"def":"nostril","category":"a-fem"},{"entry":{"ts":1527817498,"i":7967,"p":"سوکړه","f":"sookRá","g":"sookRa","e":"famine, starvation, serious hunger/lack of food, drought, crop failure","c":"n. f."},"def":"famine, starvation, serious hunger/lack of food, drought, crop failure","category":"a-fem"},{"entry":{"ts":1527814144,"i":7970,"p":"سوکه","f":"swaka","g":"swaka","e":"charred log","c":"n. f."},"def":"charred log","category":"a-fem"},{"entry":{"ts":1527813115,"i":331,"p":"ادعا","f":"idaa","g":"idaa","e":"claim","c":"n. f."},"def":"claim","category":"aa-fem"},{"entry":{"ts":1527818119,"i":836,"p":"امسا","f":"amsaa","g":"amsaa","e":"stick, walking staff, walking stick, crutch","c":"n. f."},"def":"stick, walking staff, walking stick, crutch","category":"aa-fem"},{"entry":{"ts":1527815043,"i":4313,"p":"جزا","f":"jazaa","g":"jazaa","e":"punishment, retribution","c":"n. f."},"def":"punishment, retribution","category":"aa-fem"},{"entry":{"ts":1527819022,"i":4974,"p":"څا","f":"tsaa","g":"tsaa","e":"well, water-hole","c":"n. f."},"def":"well, water-hole","category":"aa-fem"},{"entry":{"ts":1527814225,"i":5564,"p":"خطا","f":"khataa","g":"khataa","e":"mistake, error, blunder","c":"n. f."},"def":"mistake, error, blunder","category":"aa-fem"},{"entry":{"ts":1610797589510,"i":5585,"p":"خلا","f":"khaláa","g":"khalaa","e":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","c":"n. f."},"def":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","category":"aa-fem"},{"entry":{"ts":1527812582,"i":6118,"p":"دعا","f":"dUaa","g":"dUaa","e":"prayer","c":"n. f."},"def":"prayer","category":"aa-fem"},{"entry":{"ts":1527813415,"i":6236,"p":"دوا","f":"dawaa","g":"dawaa","e":"medicine, medication","c":"n. f."},"def":"medicine, medication","category":"aa-fem"},{"entry":{"ts":1527812272,"i":6824,"p":"رڼا","f":"raNaa","g":"raNaa","e":"light, glory","c":"n. f."},"def":"light, glory","category":"aa-fem"},{"entry":{"ts":1527823245,"i":6908,"p":"رویا","f":"rooyáa","g":"rooyaa","e":"dream, vision","c":"n. f."},"def":"dream, vision","category":"aa-fem"},{"entry":{"ts":1586596579414,"i":8413,"p":"شورا","f":"shooraa","g":"shooraa","e":"council (an institution)","c":"n. f."},"def":"council (an institution)","category":"aa-fem"},{"entry":{"ts":1527815984,"i":8538,"p":"ښکلا","f":"xkulaa","g":"xkulaa","e":"beauty","c":"n. f."},"def":"beauty","category":"aa-fem"},{"entry":{"ts":1527817670,"i":9127,"p":"غلا","f":"ghlaa","g":"ghlaa","e":"theft, robbery, stealing","c":"n. f."},"def":"theft, robbery, stealing","category":"aa-fem"},{"entry":{"ts":1527814362,"i":9191,"p":"غوا","f":"ghwaa","g":"ghwaa","e":"cow","c":"n. f."},"def":"cow","category":"aa-fem"},{"entry":{"ts":1585487002625,"i":9672,"p":"قلا","f":"qaláa","g":"kalaa","e":"castle, fort, fortress","c":"n. f."},"def":"castle, fort, fortress","category":"aa-fem"},{"entry":{"ts":1527812048,"i":11618,"p":"مانا","f":"maanaa","g":"maanaa","e":"meaning, sense, spirit","c":"n. f."},"def":"meaning, sense, spirit","category":"aa-fem"},{"entry":{"ts":1527815483,"i":12514,"p":"ملا","f":"mlaa","g":"mlaa","e":"back (body part)","c":"n. f."},"def":"back (body part)","category":"aa-fem"},{"entry":{"ts":1527812230,"i":12572,"p":"ملګرتیا","f":"malgurtiyaa","g":"malgurtiyaa","e":"friendship","c":"n. f."},"def":"friendship","category":"aa-fem"},{"entry":{"ts":1527812910,"i":12952,"p":"مېلمستیا","f":"melmastiyaa","g":"melmastiyaa","e":"hospitality; invitation, event, party, banquet, reception","c":"n. f."},"def":"hospitality; invitation, event, party, banquet, reception","category":"aa-fem"},{"entry":{"ts":1617781446945,"i":13013,"p":"ناجوړتیا","f":"naajoRtiyaa, naajoRtyaa","g":"naajoRtiyaa,naajoRtyaa","e":"sickness, illness","c":"n. f."},"def":"sickness, illness","category":"aa-fem"},{"entry":{"ts":1527815120,"i":13572,"p":"نیا","f":"niyaa","g":"niyaa","e":"grandmother","c":"n. f."},"def":"grandmother","category":"aa-fem"},{"entry":{"ts":1527811740,"i":13634,"p":"نیمګړتیا","f":"neemguRtiyaa","g":"neemguRtiyaa","e":"incompleteness, default, shortcoming","c":"n. f."},"def":"incompleteness, default, shortcoming","category":"aa-fem"},{"entry":{"ts":1527821040,"i":14015,"p":"وبا","f":"wabáa","g":"wabaa","e":"plague, cholera","c":"n. f."},"def":"plague, cholera","category":"aa-fem"},{"entry":{"ts":1527823534,"i":14153,"p":"وړتیا","f":"waRtiyáa","g":"waRtiyaa","e":"ability, capacity, capability, power, volumeá","c":"n. f."},"def":"ability, capacity, capability, power, volumeá","category":"aa-fem"},{"entry":{"ts":1610443988250,"i":14351,"p":"وېشلتیا","f":"weshiltyaa, weshiltiyaa","g":"weshiltyaa,weshiltiyaa","e":"division, distribution","c":"n. f."},"def":"division, distribution","category":"aa-fem"},{"entry":{"ts":1527816806,"i":14367,"p":"وینا","f":"waynaa","g":"waynaa","e":"speech, statement","c":"n. f."},"def":"speech, statement","category":"aa-fem"},{"entry":{"ts":1527815197,"i":2482,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. unisex / adj. irreg.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},"def":"Pashtun","category":"aanu-unisex"},{"entry":{"ts":1527813148,"i":2356,"p":"پروت","f":"prot","g":"prot","e":"lying, lying down or on, located, situated","c":"adj. irreg.","infap":"پراته","infaf":"praatu","infbp":"پرت","infbf":"prat"},"def":"lying","category":"aanu-unisex"},{"entry":{"ts":1574867531681,"i":2706,"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"},"def":"mature, ripe, cooked","category":"aanu-unisex"},{"entry":{"ts":1576952412644,"i":2733,"p":"پوست","f":"post","g":"post","e":"soft, tender, gentle, loosened","c":"adj. irreg.","infap":"پاسته","infaf":"paastu","infbp":"پست","infbf":"past"},"def":"soft","category":"aanu-unisex"},{"entry":{"ts":1527815366,"i":3334,"p":"تریخ","f":"treekh","g":"treekh","e":"bitter, hot, spicy (of food); terrible, miserable (of life)","c":"adj. irreg.","infap":"تراخه","infaf":"traakhu","infbp":"ترخ","infbf":"turkh"},"def":"bitter","category":"aanu-unisex"},{"entry":{"ts":1527818789,"i":3343,"p":"تریو","f":"treew","g":"treew","e":"salty, savoury, sour, acid, bitter, grumpy","c":"adj. irreg.","infap":"تراوه","infaf":"traawu","infbp":"ترو","infbf":"truw"},"def":"sour","category":"aanu-unisex"},{"entry":{"ts":1527817664,"i":3777,"p":"تود","f":"tod","g":"tod","e":"warm, hot","c":"adj.","infap":"تاوده","infaf":"taawdu","infbp":"تود","infbf":"tawd"},"def":"hot","category":"aanu-unisex"},{"entry":{"ts":1527816071,"i":5417,"p":"خپور","f":"khpor","g":"khpor","e":"spread, dispersed, publicized, published","c":"adj.","infap":"خپاره","infaf":"khpaaru","infbp":"خپر","infbf":"khpar"},"def":"spread","category":"aanu-unisex"},{"entry":{"ts":1574865652928,"i":5737,"p":"خوږ","f":"khoG","g":"khog","e":"sweet, nice","c":"adj. irreg.","infap":"خواږه","infaf":"khwaaGu","infbp":"خوږ","infbf":"khwaG"},"def":"sweet","category":"aanu-unisex"},{"entry":{"ts":1527813499,"i":6064,"p":"دروند","f":"droond","g":"droond","e":"heavy; respectable, reliable, serious","c":"adj.","infap":"درانه","infaf":"draanu","infbp":"درن","infbf":"dran"},"def":"heavy","category":"aanu-unisex"},{"entry":{"ts":1527813943,"i":6582,"p":"راستون","f":"raastoon","g":"raastoon","e":"returned, come back","c":"adj.","infap":"راستانه","infaf":"raastaanu","infbp":"راستن","infbf":"raastan"},"def":"returned, come back","category":"aanu-unisex"},{"entry":{"ts":1576596860977,"i":6903,"p":"روڼ","f":"rooN","g":"rooN","e":"shiny, bright, clear, enlightened, transparent","c":"adj. irreg.","infap":"راڼه","infaf":"raaNu","infbp":"رڼ","infbf":"raN"},"def":"clear, bright","category":"aanu-unisex"},{"entry":{"ts":1527811971,"i":6962,"p":"ړوند","f":"Roond","g":"Roond","e":"blind","c":"adj.","infap":"ړانده","infaf":"Raandu","infbp":"ړند","infbf":"Rand"},"def":"blind","category":"aanu-unisex"},{"entry":{"ts":1527815451,"i":7175,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},"def":"old","category":"aanu-unisex"},{"entry":{"ts":1527815300,"i":7451,"p":"سپور","f":"spor","g":"spor","e":"mounted, rider, riding","c":"adj.","infap":"سپاره","infaf":"spaaru","infbp":"سپر","infbf":"spar"},"def":"rider, mounted","category":"aanu-unisex"},{"entry":{"ts":1527819505,"i":7536,"p":"ستون","f":"stoon","g":"stoon","e":"being (in a place after returning, coming back etc.), delayed, late, lagging","c":"adj. irreg.","infap":"ستانه","infaf":"staanu","infbp":"ستن","infbf":"stan"},"def":"being (in a place after returning, coming back etc.)","category":"aanu-unisex"},{"entry":{"ts":1527813293,"i":7926,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},"def":"red; hot","category":"aanu-unisex"},{"entry":{"ts":1600080053835,"i":7928,"p":"سور","f":"sor","g":"sor","e":"riding, mounted (Pakistani)","c":"adj.","infap":"سواره","infaf":"swaaru","infbp":"سور","infbf":"swar"},"def":"riding, mounted","category":"aanu-unisex"},{"entry":{"ts":1527813068,"i":7945,"p":"سوړ","f":"soR","g":"soR","e":"cold, cool; patient; lazy; inactive; satisfied","c":"adj.","infap":"ساړه","infaf":"saaRu","infbp":"سړ","infbf":"saR"},"def":"cold","category":"aanu-unisex"},{"entry":{"ts":1527813172,"i":10466,"p":"کوږ","f":"koG","g":"kog","e":"crooked, bent","c":"adj.","infap":"کاږه","infaf":"kaaGu","infbp":"کږ","infbf":"kaG"},"def":"bent","category":"aanu-unisex"},{"entry":{"ts":1527811973,"i":10548,"p":"کوڼ","f":"kooN","g":"kooN","e":"deaf","c":"adj.","infap":"کاڼه","infaf":"kaaNu","infbp":"کڼ","infbf":"kaN"},"def":"deaf","category":"aanu-unisex"},{"entry":{"ts":1527817123,"i":11431,"p":"لومد","f":"loomd","g":"loomd","e":"damp, wet, moist, humid","c":"adj.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1527817117,"i":11438,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لانده","infaf":"laandu","infbp":"لند","infbf":"land"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1576889120767,"i":11439,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1527812927,"i":12817,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},"def":"full, satisfied","category":"aanu-unisex"},{"entry":{"ts":1527812908,"i":12953,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},"def":"guest","category":"aanu-unisex"},{"entry":{"ts":1579463171333,"i":13519,"p":"نوږ","f":"noG","g":"nog","e":"cleansed, cleaned, purified","c":"adj.","infap":"ناږه","infaf":"naaGu","infbp":"نږ","infbf":"naG"},"def":"cleansed","category":"aanu-unisex"},{"entry":{"ts":1576113803291,"i":14307,"p":"ووړ","f":"woR","g":"woR","e":"small, little","c":"adj. irreg.","infap":"واړه","infaf":"waaRu","infbp":"وړ","infbf":"waR"},"def":"small","category":"aanu-unisex"},{"entry":{"ts":1527814147,"i":1563,"p":"بړستن","f":"bRastun","g":"bRastun","e":"blanket, coving, quilt","c":"n. f."},"def":"blanket, coving, quilt","category":"consonant-fem"},{"entry":{"ts":1527818707,"i":3243,"p":"ترخځ","f":"turkhúdz","g":"turkhudz","e":"wedge; gusset (in a shirt)","c":"n. f."},"def":"wedge; gusset (in a shirt)","category":"consonant-fem"},{"entry":{"ts":1527822792,"i":3816,"p":"توشک","f":"toshák","g":"toshak","e":"narrow mattress used as a bed or a couch, reversible rug","c":"n. f."},"def":"narrow mattress used as a bed or a couch, reversible rug","category":"consonant-fem"},{"entry":{"ts":1527820524,"i":5045,"p":"څرمن","f":"tsarmún","g":"tsarmun","e":"pelt, skin, hide, leather","c":"n. f."},"def":"pelt, skin, hide, leather","category":"consonant-fem"},{"entry":{"ts":1527823306,"i":5104,"p":"څنګل","f":"tsangúl","g":"tsangul","e":"elbow","c":"n. f."},"def":"elbow","category":"consonant-fem"},{"entry":{"ts":1527813294,"i":7314,"p":"ږمنځ","f":"Gmundz","g":"gmundz","e":"comb","c":"n. f."},"def":"comb","category":"consonant-fem"},{"entry":{"ts":1527811580,"i":7523,"p":"ستن","f":"stun","g":"stun","e":"needle, injection; pillar, mast","c":"n. f."},"def":"needle, injection; pillar, mast","category":"consonant-fem"},{"entry":{"ts":1527813824,"i":9341,"p":"غېږ","f":"gheG","g":"gheg","e":"bosom, breast; wrestling","c":"n. f."},"def":"bosom, breast; wrestling","category":"consonant-fem"},{"entry":{"ts":1527815779,"i":10294,"p":"کنځل","f":"kundzul","g":"kundzul","e":"swearing, name-calling, verbal abuse, bad language","c":"n. f."},"def":"swearing, name-calling, verbal abuse, bad language","category":"consonant-fem"},{"entry":{"ts":1527814150,"i":11009,"p":"لار","f":"laar","g":"laar","e":"road, way, path","c":"n. f."},"def":"road, way, path","category":"consonant-fem"},{"entry":{"ts":1527817456,"i":11291,"p":"لمن","f":"lamun","g":"lamun","e":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","c":"n. f."},"def":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","category":"consonant-fem"},{"entry":{"ts":1527822725,"i":11450,"p":"لوېشت","f":"lwesht","g":"lwesht","e":"span","c":"n. f."},"def":"span","category":"consonant-fem"},{"entry":{"ts":1527811609,"i":12713,"p":"منګل","f":"mangul","g":"mangul","e":"claw, paw","c":"n. f."},"def":"claw, paw","category":"consonant-fem"},{"entry":{"ts":1527812922,"i":12887,"p":"میاشت","f":"miyaasht","g":"miyaasht","e":"month","c":"n. f."},"def":"month","category":"consonant-fem"},{"entry":{"ts":1527815417,"i":14083,"p":"ورځ","f":"wradz","g":"wradz","e":"day","c":"n. f."},"def":"day","category":"consonant-fem"},{"entry":{"ts":1527821684,"i":14138,"p":"ورېځ","f":"wurédz","g":"wuredz","e":"cloud","c":"n. f."},"def":"cloud","category":"consonant-fem"},{"entry":{"ts":1527812432,"i":66,"p":"آسمان","f":"aasmaan","g":"aasmaan","e":"sky, heaven","c":"n. m."},"def":"sky, heaven","category":"consonant-masc"},{"entry":{"ts":1527812431,"i":83,"p":"آم","f":"aam","g":"aam","e":"mango","c":"n. m."},"def":"mango","category":"consonant-masc"},{"entry":{"ts":1527812434,"i":99,"p":"آواز","f":"aawaaz","g":"aawaaz","e":"sound, voice","c":"n. m."},"def":"sound, voice","category":"consonant-masc"},{"entry":{"ts":1527816724,"i":140,"p":"اتاق","f":"wutáaq, Utáaq","g":"wutaak,Utaak","e":"room, chamber","c":"n. m.","diacExcept":true},"def":"room, chamber","category":"consonant-masc"},{"entry":{"ts":1527811859,"i":142,"p":"اتحاد","f":"itihaad","g":"itihaad","e":"union, alliance","c":"n. m."},"def":"union, alliance","category":"consonant-masc"},{"entry":{"ts":1527822033,"i":145,"p":"اتصال","f":"ittisáal","g":"ittisaal","e":"joining, connection, contiguity, junction","c":"n. m."},"def":"joining, connection, contiguity, junction","category":"consonant-masc"},{"entry":{"ts":1527811858,"i":146,"p":"اتفاق","f":"itifaaq","g":"itifaak","e":"unity, alliance, agreement, understanding, consent; coincidence","c":"n. m."},"def":"unity, alliance, agreement, understanding, consent; coincidence","category":"consonant-masc"},{"entry":{"ts":1527820147,"i":161,"p":"اتڼ","f":"atáN","g":"ataN","e":"the Atan, the Pashtun/Afghan national dance","c":"n. m."},"def":"the Atan, the Pashtun/Afghan national dance","category":"consonant-masc"},{"entry":{"ts":1527813560,"i":166,"p":"اتهام","f":"itihaam","g":"itihaam","e":"accusation, charge, indictment","c":"n. m.","app":"اتهامات","apf":"itihaamáat"},"def":"accusation, charge, indictment","category":"consonant-masc"},{"entry":{"ts":1527812105,"i":234,"p":"احترام","f":"ihtiraam","g":"ihtiraam","e":"respect, honor, esteem, deference","c":"n. m."},"def":"respect, honor, esteem, deference","category":"consonant-masc"},{"entry":{"ts":1527819653,"i":240,"p":"احتمال","f":"ihtimaal","g":"ihtimaal","e":"possibility, probability, likelihood","c":"n. m."},"def":"possibility, probability, likelihood","category":"consonant-masc"},{"entry":{"ts":1527812689,"i":242,"p":"احتیاج","f":"ihtiyaaj","g":"ihtiyaaj","e":"need, requirement","c":"n. m.","app":"احتیاجات","apf":"ihtiyaajáat"},"def":"need, requirement","category":"consonant-masc"},{"entry":{"ts":1527812690,"i":244,"p":"احتیاط","f":"ihtiyaat","g":"ihtiyaat","e":"caution","c":"n. m."},"def":"caution","category":"consonant-masc"},{"entry":{"ts":1527813782,"i":246,"p":"احساس","f":"ahsaas","g":"ahsaas","e":"feeling, sensation, emotion","c":"n. m."},"def":"feeling, sensation, emotion","category":"consonant-masc"},{"entry":{"ts":1527817303,"i":630,"p":"اعتراض","f":"itiraaz","g":"itiraaz","e":"objection, protest","c":"n. m."},"def":"objection, protest","category":"consonant-masc"},{"entry":{"ts":1527813418,"i":667,"p":"اغېز","f":"aghez","g":"aghez","e":"influence, effect, affect, action","c":"n. m."},"def":"influence, effect, affect, action","category":"consonant-masc"},{"entry":{"ts":1527816625,"i":672,"p":"افت","f":"afat","g":"afat","e":"disaster","c":"n. m."},"def":"disaster","category":"consonant-masc"},{"entry":{"ts":1527813558,"i":761,"p":"الزام","f":"ilzaam","g":"ilzaam","e":"accusation, charge, blame","c":"n. m."},"def":"accusation, charge, blame","category":"consonant-masc"},{"entry":{"ts":1527815388,"i":853,"p":"امید","f":"Umeed","g":"Umeed","e":"hope, expectation","c":"n. m."},"def":"hope, expectation","category":"consonant-masc"},{"entry":{"ts":1527812453,"i":908,"p":"انځور","f":"andzoor","g":"andzoor","e":"picture, painting, image","c":"n. m."},"def":"picture, painting, image","category":"consonant-masc"},{"entry":{"ts":1527813827,"i":1033,"p":"اور","f":"or","g":"or","e":"fire, flame","c":"n. m."},"def":"fire, flame","category":"consonant-masc"},{"entry":{"ts":1527814787,"i":1234,"p":"باران","f":"baaraan","g":"baaraan","e":"rain","c":"n. m."},"def":"rain","category":"consonant-masc"},{"entry":{"ts":1527817293,"i":1296,"p":"بام","f":"baam","g":"baam","e":"roof","c":"n. m."},"def":"roof","category":"consonant-masc"},{"entry":{"ts":1527814849,"i":1300,"p":"بانجن","f":"baanjan","g":"baanjan","e":"eggplant","c":"n. m."},"def":"eggplant","category":"consonant-masc"},{"entry":{"ts":1527814106,"i":1357,"p":"بحران","f":"bUhraan","g":"bUhraan","e":"crisis","c":"n. m."},"def":"crisis","category":"consonant-masc"},{"entry":{"ts":1527814885,"i":1359,"p":"بخت","f":"bakht","g":"bakht","e":"fortune, luck, fate","c":"n. m."},"def":"fortune, luck, fate","category":"consonant-masc"},{"entry":{"ts":1527811281,"i":1748,"p":"بڼ","f":"baN","g":"baN","e":"garden","c":"n. m."},"def":"garden","category":"consonant-masc"},{"entry":{"ts":1624039195280,"i":1811,"p":"بورس","f":"boors","g":"boors","e":"scholarship","c":"n. m."},"def":"scholarship","category":"consonant-masc"},{"entry":{"ts":1527816877,"i":2003,"p":"بیرغ","f":"beyragh","g":"beyragh","e":"flag","c":"n. m."},"def":"flag","category":"consonant-masc"},{"entry":{"ts":1527820423,"i":2134,"p":"پاسپورټ","f":"paasporT","g":"paasporT","e":"passport","c":"n. m."},"def":"passport","category":"consonant-masc"},{"entry":{"ts":1527813224,"i":2505,"p":"پل","f":"pUl","g":"pUl","e":"bridge","c":"n. m.","infap":"پله","infaf":"plu","infbp":"پل","infbf":"pl"},"def":"bridge","category":"consonant-masc"},{"entry":{"ts":1527813480,"i":2514,"p":"پلان","f":"plaan","g":"plaan","e":"plan","c":"n. m."},"def":"plan","category":"consonant-masc"},{"entry":{"ts":1527815199,"i":2519,"p":"پلاو","f":"pulaaw","g":"pulaaw","e":"central-asian/middle-eastern rice dish, pilaf","c":"n. m."},"def":"central-asian/middle-eastern rice dish, pilaf","category":"consonant-masc"},{"entry":{"ts":1527815185,"i":2710,"p":"پور","f":"por","g":"por","e":"loan, debt","c":"n. m."},"def":"loan, debt","category":"consonant-masc"},{"entry":{"ts":1527815176,"i":2789,"p":"پیاز","f":"piyaaz","g":"piyaaz","e":"onion","c":"n. m."},"def":"onion","category":"consonant-masc"},{"entry":{"ts":1527815171,"i":2919,"p":"پیل","f":"peyl","g":"peyl","e":"start","c":"n. m."},"def":"start","category":"consonant-masc"},{"entry":{"ts":1527816610,"i":2956,"p":"تاج","f":"taaj","g":"taaj","e":"crown, crest","c":"n. m."},"def":"crown, crest","category":"consonant-masc"},{"entry":{"ts":1527822373,"i":2988,"p":"تاک","f":"taak","g":"taak","e":"vine; mouthful","c":"n. m."},"def":"vine; mouthful","category":"consonant-masc"},{"entry":{"ts":1527815326,"i":3033,"p":"تایید","f":"taayeed","g":"taayeed","e":"confirmation","c":"n. m."},"def":"confirmation","category":"consonant-masc"},{"entry":{"ts":1527815357,"i":3151,"p":"تخم","f":"tUkhum","g":"tUkhum","e":"seed","c":"n. m."},"def":"seed","category":"consonant-masc"},{"entry":{"ts":1527821586,"i":3241,"p":"ترحم","f":"tarahhÚm","g":"tarahhUm","e":"pity, sympathy","c":"n. m."},"def":"pity, sympathy","category":"consonant-masc"},{"entry":{"ts":1527811389,"i":3450,"p":"تصویر","f":"tasweer","g":"tasweer","e":"picture","c":"n. m.","app":"تصاویر","apf":"tasaaweer"},"def":"picture","category":"consonant-masc"},{"entry":{"ts":1527814679,"i":3455,"p":"تضمین","f":"tazmeen","g":"tazmeen","e":"guarantee, insurance, security","c":"n. m."},"def":"guarantee, insurance, security","category":"consonant-masc"},{"entry":{"ts":1527814258,"i":3541,"p":"تقریر","f":"taqreer","g":"takreer","e":"speech, lecture","c":"n. m."},"def":"speech, lecture","category":"consonant-masc"},{"entry":{"ts":1527821670,"i":3549,"p":"تقلب","f":"taqalÚb","g":"takalUb","e":"cheating, deception, fraud, forgery","c":"n. m."},"def":"cheating, deception, fraud, forgery","category":"consonant-masc"},{"entry":{"ts":1527811602,"i":3576,"p":"تکل","f":"takál","g":"takal","e":"attempt, aspiration, intention, effort","c":"n. m."},"def":"attempt, aspiration, intention, effort","category":"consonant-masc"},{"entry":{"ts":1527813398,"i":3586,"p":"تګ","f":"tug, tag","g":"tug,tag","e":"movement, motion, going","c":"n. m."},"def":"movement, motion, going","category":"consonant-masc"},{"entry":{"ts":1527822126,"i":3626,"p":"تلین","f":"tleen","g":"tleen","e":"anniversary","c":"n. m."},"def":"anniversary","category":"consonant-masc"},{"entry":{"ts":1527811308,"i":3630,"p":"تماس","f":"tamaas","g":"tamaas","e":"contact, touch","c":"n. m."},"def":"contact, touch","category":"consonant-masc"},{"entry":{"ts":1527817900,"i":3673,"p":"تن","f":"tan","g":"tan","e":"body, flesh","c":"n. m."},"def":"body, flesh","category":"consonant-masc"},{"entry":{"ts":1527821061,"i":3676,"p":"تناقض","f":"tanaaqÚz","g":"tanaakUz","e":"contrast, opposition, contradiction","c":"n. m."},"def":"contrast, opposition, contradiction","category":"consonant-masc"},{"entry":{"ts":1527822387,"i":3677,"p":"تناو","f":"tanáaw","g":"tanaaw","e":"rope, cord; a measurement of ground or distances","c":"n. m."},"def":"rope, cord; a measurement of ground or distances","category":"consonant-masc"},{"entry":{"ts":1527818995,"i":3688,"p":"تندر","f":"tandúr","g":"tandur","e":"lightning","c":"n. m."},"def":"lightning","category":"consonant-masc"},{"entry":{"ts":1527815362,"i":3763,"p":"توپ","f":"top","g":"top","e":"ball; (cannon) ball","c":"n. m."},"def":"ball; (cannon) ball","category":"consonant-masc"},{"entry":{"ts":1527816820,"i":3843,"p":"توک","f":"took","g":"took","e":"spit","c":"n. m."},"def":"spit","category":"consonant-masc"},{"entry":{"ts":1527816520,"i":3992,"p":"ټبر","f":"Tabar","g":"Tabar","e":"family, clan, tribe, people","c":"n. m."},"def":"family, clan, tribe, people","category":"consonant-masc"},{"entry":{"ts":1527811348,"i":3993,"p":"ټپ","f":"Tap","g":"Tap","e":"wound","c":"n. m."},"def":"wound","category":"consonant-masc"},{"entry":{"ts":1527819566,"i":4030,"p":"ټکر","f":"TUkúr","g":"TUkur","e":"piece, part; cloth, fabric","c":"n. m."},"def":"piece, part; cloth, fabric","category":"consonant-masc"},{"entry":{"ts":1527812213,"i":4382,"p":"جمات","f":"jUmaat","g":"jUmaat","e":"mosque","c":"n. m."},"def":"mosque","category":"consonant-masc"},{"entry":{"ts":1527811705,"i":4490,"p":"جوړښت","f":"joRuxt","g":"joRuxt","e":"structure","c":"n. m."},"def":"structure","category":"consonant-masc"},{"entry":{"ts":1527814058,"i":4604,"p":"ځواب","f":"dzawaab","g":"dzawaab","e":"answer, reply","c":"n. m."},"def":"answer, reply","category":"consonant-masc"},{"entry":{"ts":1527816887,"i":4605,"p":"ځواک","f":"dzwaak","g":"dzwaak","e":"life, existence, energy, force","c":"n. m."},"def":"life, existence, energy, force","category":"consonant-masc"},{"entry":{"ts":1527814649,"i":4914,"p":"چوک","f":"chok","g":"chok","e":"market square, crossroads, paved area in front of entrance","c":"n. m."},"def":"market square, crossroads, paved area in front of entrance","category":"consonant-masc"},{"entry":{"ts":1527815065,"i":5014,"p":"څټک","f":"tsaTak, tsTuk","g":"tsaTak,tsTuk","e":"hammer","c":"n. m."},"def":"hammer","category":"consonant-masc"},{"entry":{"ts":1527814589,"i":5103,"p":"څنګ","f":"tsang","g":"tsang","e":"side","c":"n. m."},"def":"side","category":"consonant-masc"},{"entry":{"ts":1527816228,"i":5198,"p":"حد","f":"had","g":"had","e":"boundary, limit, extent","c":"n. m.","app":"حدود","apf":"hUdood"},"def":"boundary, limit, extent","category":"consonant-masc"},{"entry":{"ts":1527813749,"i":5271,"p":"حکومت","f":"hUkoomat","g":"hUkoomat","e":"government, reign, rule","c":"n. m."},"def":"government, reign, rule","category":"consonant-masc"},{"entry":{"ts":1527814125,"i":5274,"p":"حل","f":"hal","g":"hal","e":"solution","c":"n. m."},"def":"solution","category":"consonant-masc"},{"entry":{"ts":1527818703,"i":5418,"p":"خت","f":"khut","g":"khut","e":"shirt","c":"n. m."},"def":"shirt","category":"consonant-masc"},{"entry":{"ts":1527813804,"i":5680,"p":"خوب","f":"khob","g":"khob","e":"sleep, dream","c":"n. m."},"def":"sleep, dream","category":"consonant-masc"},{"entry":{"ts":1527812815,"i":5800,"p":"خوندیتوب","f":"khwundeetob","g":"khwundeetob","e":"safety, security","c":"n. m."},"def":"safety, security","category":"consonant-masc"},{"entry":{"ts":1527813763,"i":6337,"p":"دین","f":"deen","g":"deen","e":"religion, faith","c":"n. m."},"def":"religion, faith","category":"consonant-masc"},{"entry":{"ts":1527811517,"i":7740,"p":"سفر","f":"safar","g":"safar","e":"journey, travel","c":"n. m."},"def":"journey, travel","category":"consonant-masc"},{"entry":{"ts":1527815389,"i":8929,"p":"عمر","f":"Úmur","g":"Umur","e":"age, life","c":"n. m."},"def":"age, life","category":"consonant-masc"},{"entry":{"ts":1527816746,"i":8992,"p":"غاښ","f":"ghaax","g":"ghaax","e":"tooth","c":"n. m."},"def":"tooth","category":"consonant-masc"},{"entry":{"ts":1527812631,"i":9260,"p":"غوږ","f":"ghwuG, ghwaG","g":"ghwug,ghwag","e":"ear","c":"n. m."},"def":"ear","category":"consonant-masc"},{"entry":{"ts":1527812265,"i":9420,"p":"فرمان","f":"farmaan","g":"farmaan","e":"decree, order","c":"n. m."},"def":"decree, order","category":"consonant-masc"},{"entry":{"ts":1527817205,"i":9493,"p":"فلم","f":"film","g":"film","e":"film, movie","c":"n. m."},"def":"film, movie","category":"consonant-masc"},{"entry":{"ts":1527812727,"i":9827,"p":"کال","f":"kaal","g":"kaal","e":"year","c":"n. m."},"def":"year","category":"consonant-masc"},{"entry":{"ts":1527812817,"i":9893,"p":"کتاب","f":"kitaab","g":"kitaab","e":"book","c":"n. m."},"def":"book","category":"consonant-masc"},{"entry":{"ts":1527812611,"i":10616,"p":"ګام","f":"gaam","g":"gaam","e":"step, move","c":"n. m."},"def":"step, move","category":"consonant-masc"},{"entry":{"ts":1527812641,"i":10780,"p":"ګل","f":"gUl","g":"gUl","e":"rose, flower","c":"n. m."},"def":"rose, flower","category":"consonant-masc"},{"entry":{"ts":1527812650,"i":10866,"p":"ګواښ","f":"gwaax","g":"gwaax","e":"threat, danger, challeng","c":"n. m."},"def":"threat, danger, challeng","category":"consonant-masc"},{"entry":{"ts":1527813521,"i":11530,"p":"ماتم","f":"maatam","g":"maatam","e":"mourning, grief, grieving, deep sorrow","c":"n. m."},"def":"mourning, grief, grieving, deep sorrow","category":"consonant-masc"},{"entry":{"ts":1527812176,"i":11575,"p":"ماښام","f":"maaxaam","g":"maaxaam","e":"evening","c":"n. m."},"def":"evening","category":"consonant-masc"},{"entry":{"ts":1527813601,"i":12051,"p":"مرګ","f":"marg","g":"marg","e":"death","c":"n. m."},"def":"death","category":"consonant-masc"},{"entry":{"ts":1527817691,"i":12180,"p":"مستقبل","f":"mUstaqbil","g":"mUstakbil","e":"future","c":"n. m."},"def":"future","category":"consonant-masc"},{"entry":{"ts":1527817963,"i":12344,"p":"مظلومیت","f":"mazloomiyát","g":"mazloomiyat","e":"victim-hood, oppression","c":"n. m."},"def":"victim-hood, oppression","category":"consonant-masc"},{"entry":{"ts":1527811866,"i":13401,"p":"نقصان","f":"nUqsaan","g":"nUksaan","e":"damage, defect, loss","c":"n. m."},"def":"damage, defect, loss","category":"consonant-masc"},{"entry":{"ts":1527815122,"i":13554,"p":"نوم","f":"noom","g":"noom","e":"name","c":"n. m.","ppp":"نمونه","ppf":"nUmoona"},"def":"name","category":"consonant-masc"},{"entry":{"ts":1527812661,"i":13786,"p":"هلک","f":"halík, halúk","g":"halik,haluk","e":"boy, young lad","c":"n. m."},"def":"boy, young lad","category":"consonant-masc"},{"entry":{"ts":1566476070874,"i":13961,"p":"واټ","f":"waaT","g":"waaT","e":"street, road","c":"n. m."},"def":"street, road","category":"consonant-masc"},{"entry":{"ts":1527816036,"i":13995,"p":"واک","f":"waak","g":"waak","e":"authority, power","c":"n. m."},"def":"authority, power","category":"consonant-masc"},{"entry":{"ts":1527815400,"i":14041,"p":"وخت","f":"wakht","g":"wakht","e":"time","c":"n. m."},"def":"time","category":"consonant-masc"},{"entry":{"ts":1527818582,"i":14046,"p":"ودانښت","f":"wadaanuxt","g":"wadaanuxt","e":"building, prosperity, habitable state","c":"n. m."},"def":"building, prosperity, habitable state","category":"consonant-masc"},{"entry":{"ts":1527811441,"i":14055,"p":"ور","f":"war","g":"war","e":"door, gate, entrance","c":"n. m.","infap":"وره","infaf":"wru","infbp":"ور","infbf":"wr"},"def":"door, gate, entrance","category":"consonant-masc"},{"entry":{"ts":1527815406,"i":14223,"p":"وطن","f":"watán","g":"watan","e":"homeland, home country","c":"n. m."},"def":"homeland, home country","category":"consonant-masc"},{"entry":{"ts":1573149648251,"i":14225,"p":"وطن وال","f":"watanwaal","g":"watanwaal","e":"fellow country-man","c":"n. m."},"def":"fellow country-man","category":"consonant-masc"},{"entry":{"ts":1586428847646,"i":14228,"p":"وطنوال","f":"watanwáal","g":"watanwaal","e":"national (person), a citizen or person of that land","c":"n. m."},"def":"national (person), a citizen or person of that land","category":"consonant-masc"},{"entry":{"ts":1527822208,"i":14229,"p":"وطواط","f":"watwáat","g":"watwaat","e":"bat, coward, pipsqueak, hesitant person","c":"n. m."},"def":"bat, coward, pipsqueak, hesitant person","category":"consonant-masc"},{"entry":{"ts":1527819571,"i":14300,"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"},"def":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","category":"consonant-masc"},{"entry":{"ts":1527816332,"i":14317,"p":"ویاړ","f":"wyaaR","g":"wyaaR","e":"pride, glory","c":"n. m."},"def":"pride, glory","category":"consonant-masc"},{"entry":{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. unisex"},"def":"cook, chef","category":"consonant-unisex"},{"entry":{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. / adj."},"def":"hero, brave","category":"consonant-unisex"},{"entry":{"ts":1527821649,"i":183,"p":"اثرناک","f":"asarnáak","g":"asarnaak","e":"impressive, effective, influencing","c":"adj.","l":1527815870},"def":"impressive, effective, influencing","category":"consonant-unisex"},{"entry":{"ts":1527818704,"i":352,"p":"ارت","f":"arát","g":"arat","e":"wide, spacious, extensive","c":"adj."},"def":"wide, spacious, extensive","category":"consonant-unisex"},{"entry":{"ts":1578340121962,"i":445,"p":"ازاد","f":"azáad","g":"azaad","e":"free, released","c":"adj."},"def":"free, independant","category":"consonant-unisex"},{"entry":{"ts":1527819418,"i":5410,"p":"خپلواک","f":"khpulwaak","g":"khpulwaak","e":"independent, free, autonomous","c":"adj."},"def":"independant, autonomous","category":"consonant-unisex"},{"entry":{"ts":1527817146,"i":532,"p":"استوګن","f":"astogan","g":"astogan","e":"resident; established, installed, settled","c":"n. m. / adj."},"def":"resident; settled","category":"consonant-unisex"},{"entry":{"ts":1527813713,"i":855,"p":"امیدوار","f":"Umeedwaar","g":"Umeedwaar","e":"hopeful, pregnant","c":"adj."},"def":"hopeful, pregnant","category":"consonant-unisex"},{"entry":{"ts":1527819451,"i":967,"p":"انګرېز","f":"angréz","g":"angrez","e":"Englishman, English (adjective)","c":"n. m. / adj."},"def":"Englishman, English (adjective)","category":"consonant-unisex"},{"entry":{"ts":1527820346,"i":986,"p":"انلاین","f":"anlaayn","g":"anlaayn","e":"on-line","c":"adj."},"def":"on-line","category":"consonant-unisex"},{"entry":{"ts":1527813667,"i":998,"p":"اهم","f":"ahám","g":"aham","e":"important","c":"adj."},"def":"important","category":"consonant-unisex"},{"entry":{"ts":1598724912198,"i":1024,"p":"اوچ","f":"ooch","g":"ooch","e":"dry","c":"adj."},"def":"dry","category":"consonant-unisex"},{"entry":{"ts":1527815138,"i":1044,"p":"اورپک","f":"orpak","g":"orpak","e":"insurgent, wicked, terrorist","c":"n. m. / adj."},"def":"insurgent","category":"consonant-unisex"},{"entry":{"ts":1586452587974,"i":1068,"p":"اوزګار","f":"oozgáar","g":"oozgaar","e":"free, unoccupied, available, at leisure","c":"adj."},"def":"free, available","category":"consonant-unisex"},{"entry":{"ts":1527816489,"i":1172,"p":"ایماندار","f":"eemaandaar","g":"eemaandaar","e":"faithful, believer, devoted, correct, true","c":"adj. / n. m."},"def":"faithful, believer","category":"consonant-unisex"},{"entry":{"ts":1527820433,"i":1197,"p":"باتور","f":"baatóor","g":"baatoor","e":"courageous, brave, valiant","c":"adj."},"def":"valiant","category":"consonant-unisex"},{"entry":{"ts":1527813425,"i":1369,"p":"بخیل","f":"bakheel","g":"bakheel","e":"stingy, miserly, closefisted","c":"adj."},"def":"stingy","category":"consonant-unisex"},{"entry":{"ts":1527812511,"i":1370,"p":"بد","f":"bud, bad","g":"bud,bad","e":"bad","c":"adj."},"def":"bad","category":"consonant-unisex"},{"entry":{"ts":1527812518,"i":1441,"p":"برابر","f":"buraabur","g":"buraabur","e":"equal, even, all good","c":"adj."},"def":"equal, even, set up","category":"consonant-unisex"},{"entry":{"ts":1527811861,"i":1457,"p":"بربنډ","f":"barbunD","g":"barbunD","e":"naked; bare","c":"adj."},"def":"naked","category":"consonant-unisex"},{"entry":{"ts":1527811511,"i":1614,"p":"بشپړ","f":"bushpuR","g":"bushpuR","e":"full, complete, total, exhaustive, fulfilled, finished, utmost, superior, mature","c":"adj."},"def":"full, complete","category":"consonant-unisex"},{"entry":{"ts":1527812515,"i":1665,"p":"بل","f":"bul","g":"bul","e":"other, next","c":"adj."},"def":"other, next","category":"consonant-unisex"},{"entry":{"ts":1527815725,"i":1673,"p":"بلد","f":"balad","g":"balad","e":"knowledgeable, informed, acquainted, accustomed, used to, familiar with","c":"adj."},"def":"knowledgeable, accustomed","category":"consonant-unisex"},{"entry":{"ts":1577301753727,"i":1709,"p":"بند","f":"band","g":"band","e":"closed, blocked, stopped","c":"adj."},"def":"closed","category":"consonant-unisex"},{"entry":{"ts":1527812490,"i":1929,"p":"بې کار","f":"be kaar","g":"bekaar","e":"useless","c":"adj."},"def":"useless","category":"consonant-unisex"},{"entry":{"ts":1527812031,"i":2048,"p":"بېل","f":"bel","g":"bel","e":"separate, different, various","c":"adj."},"def":"separate, different","category":"consonant-unisex"},{"entry":{"ts":1527815144,"i":2142,"p":"پاک","f":"paak","g":"paak","e":"clean, pure","c":"adj."},"def":"clean, pure","category":"consonant-unisex"},{"entry":{"ts":1527815201,"i":2220,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},"def":"hidden","category":"consonant-unisex"},{"entry":{"ts":1527815179,"i":2533,"p":"پلن","f":"plun","g":"plun","e":"wide, broad, flat, dull, vapid","c":"adj."},"def":"wide","category":"consonant-unisex"},{"entry":{"ts":1527819059,"i":2599,"p":"پنډ","f":"punD","g":"punD","e":"thick, fat","c":"adj."},"def":"thick, fat","category":"consonant-unisex"},{"entry":{"ts":1611767359178,"i":3258,"p":"ترسناک","f":"tarsnáak","g":"tarsnaak","e":"compassionate","c":"adj."},"def":"compassionate","category":"consonant-unisex"},{"entry":{"ts":1527813270,"i":3324,"p":"تروش","f":"troosh","g":"troosh","e":"sour; sarcasm","c":"adj. / n. m."},"def":"sour","category":"consonant-unisex"},{"entry":{"ts":1527813817,"i":3714,"p":"تنګ","f":"tang","g":"tang","e":"narrow, tight, cramped, constrained; troubled, bothered, annoyed","c":"adj."},"def":"narrow, cramped","category":"consonant-unisex"},{"entry":{"ts":1527816354,"i":3908,"p":"تیار","f":"tayaar","g":"tayaar","e":"ready, prepared","c":"adj."},"def":"ready","category":"consonant-unisex"},{"entry":{"ts":1527817056,"i":3938,"p":"تېز","f":"tez","g":"tez","e":"sharp, pointed, quick, fast","c":"adj."},"def":"sharp, fast","category":"consonant-unisex"},{"entry":{"ts":1527814076,"i":4117,"p":"ټولنیز","f":"Toluneez","g":"Toluneez","e":"social","c":"adj."},"def":"societal, social","category":"consonant-unisex"},{"entry":{"ts":1527819864,"i":4139,"p":"ټیټ","f":"TeeT","g":"TeeT","e":"short, low, inferior","c":"adj."},"def":"low","category":"consonant-unisex"},{"entry":{"ts":1527811894,"i":4166,"p":"ټینګ","f":"Teeng","g":"Teeng","e":"firm, thick, strong, tough, rigid","c":"adj."},"def":"firm, tough, rigid","category":"consonant-unisex"},{"entry":{"ts":1527812943,"i":4172,"p":"ثابت","f":"saabit","g":"saabit","e":"constant, firm, fixed, stable, established, proven","c":"adj."},"def":"constant, stable, proven","category":"consonant-unisex"},{"entry":{"ts":1527813085,"i":4185,"p":"ثقیل","f":"saqeel","g":"sakeel","e":"heavy, difficult, hard to digest, indigestible, lazy, burdensome","c":"adj."},"def":"heavy, difficult","category":"consonant-unisex"},{"entry":{"ts":1527820479,"i":4244,"p":"جاهل","f":"jaahíl","g":"jaahil","e":"ignorant, stupid","c":"adj."},"def":"ignorant","category":"consonant-unisex"},{"entry":{"ts":1588160800930,"i":4281,"p":"جراح","f":"jarráah","g":"jarraah","e":"surgeon","c":"n. m. unisex"},"def":"surgeon","category":"consonant-unisex"},{"entry":{"ts":1527812707,"i":4345,"p":"جګ","f":"jig, jug","g":"jig,jug","e":"high, tall","c":"adj."},"def":"high, tall","category":"consonant-unisex"},{"entry":{"ts":1527816944,"i":4471,"p":"جوت","f":"jawat","g":"jawat","e":"clear, evident, explained, apparent, established","c":"adj."},"def":"clear, evident","category":"consonant-unisex"},{"entry":{"ts":1527822996,"i":4481,"p":"جوخت","f":"jokht","g":"jokht","e":"alongside, adjoining, next to, very close","c":"adj."},"def":"alongside, adjoining","category":"consonant-unisex"},{"entry":{"ts":1527812711,"i":4487,"p":"جوړ","f":"joR","g":"joR","e":"well, healthy, whole, made","c":"adj."},"def":"well, healthy","category":"consonant-unisex"},{"entry":{"ts":1527816323,"i":4570,"p":"ځلاند","f":"dzalaand","g":"dzalaand","e":"shining, sparkling, outstanding, brilliant","c":"adj."},"def":"shining, sparkling","category":"consonant-unisex"},{"entry":{"ts":1527812291,"i":4607,"p":"ځوان","f":"dzwaan","g":"dzwaan","e":"young, youth, youthful","c":"n. m. / adj."},"def":"young, youthful","category":"consonant-unisex"},{"entry":{"ts":1527820112,"i":4616,"p":"ځوړند","f":"dzwáRund","g":"dzwaRund","e":"hanging","c":"adj."},"def":"hanging","category":"consonant-unisex"},{"entry":{"ts":1527819672,"i":4673,"p":"چالاک","f":"chaaláak","g":"chaalaak","e":"crafty, sly, tricky; quick, fast, nimble","c":"adj."},"def":"crafty","category":"consonant-unisex"},{"entry":{"ts":1527811230,"i":4718,"p":"چټک","f":"chaTak","g":"chaTak","e":"quick, fast","c":"adj."},"def":"quick, fast","category":"consonant-unisex"},{"entry":{"ts":1527812524,"i":4817,"p":"چلان","f":"chalaan","g":"chalaan","e":"started, in motion","c":"adj."},"def":"started, in motion","category":"consonant-unisex"},{"entry":{"ts":1527822858,"i":5007,"p":"څپول","f":"tsapól","g":"tsapol","e":"curly, wavy; winnow","c":"adj. / n. m."},"def":"curly, wavy","category":"consonant-unisex"},{"entry":{"ts":1527815370,"i":5038,"p":"څرګند","f":"tsărgund","g":"tsargund","e":"clear, obvious, apparent, disclosed","c":"adj."},"def":"clear, apparent","category":"consonant-unisex"},{"entry":{"ts":1576366107077,"i":5065,"p":"څک","f":"tsak","g":"tsak","e":"straight, upright, pricked up, erect, alert","c":"adj."},"def":"straight, upright","category":"consonant-unisex"},{"entry":{"ts":1527812113,"i":5171,"p":"حاضر","f":"haazir, haazur","g":"haazir,haazur","e":"present, on hand, ready, available, appearing; ready, prepared","c":"adj.","app":"حاضرین","apf":"haazireen"},"def":"present, on hand, ready","category":"consonant-unisex"},{"entry":{"ts":1527820699,"i":5183,"p":"حامل","f":"haamíl","g":"haamil","e":"carrying, transporting, conveying, pregnant","c":"adj."},"def":"pregnant, carrying","category":"consonant-unisex"},{"entry":{"ts":1527819824,"i":5219,"p":"حریص","f":"harées","g":"harees","e":"greedy, mean","c":"adj."},"def":"greedy","category":"consonant-unisex"},{"entry":{"ts":1527812669,"i":5230,"p":"حساس","f":"hasaas","g":"hasaas","e":"sensitive, delicate","c":"adj."},"def":"sensitive","category":"consonant-unisex"},{"entry":{"ts":1527812057,"i":5363,"p":"خام","f":"khaam","g":"khaam","e":"raw, unripe, immature","c":"adj."},"def":"raw, unripe","category":"consonant-unisex"},{"entry":{"ts":1527811523,"i":5381,"p":"خاین","f":"khaayin","g":"khaayin","e":"traitor, treacherous","c":"n. m. / adj."},"def":"traitor, treacherous","category":"consonant-unisex"},{"entry":{"ts":1527814219,"i":5406,"p":"خپل","f":"khpul","g":"khpul","e":"relative; one's own, farmiliar","c":"adj. / n. m."},"def":"relative, one's own","category":"consonant-unisex"},{"entry":{"ts":1527812795,"i":5412,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. unisex / adj. ??"},"def":"relative","category":"consonant-unisex"},{"entry":{"ts":1527812808,"i":5653,"p":"خوار","f":"khwaar","g":"khwaar","e":"poor, pitiful, miserable, thin","c":"adj."},"def":"poor, miserable","category":"consonant-unisex"},{"entry":{"ts":1611065752352,"i":5965,"p":"دربجن","f":"drabjan","g":"drabjan","e":"moldy, mildewy","c":"adj."},"def":"moldy","category":"consonant-unisex"},{"entry":{"ts":1527814880,"i":6215,"p":"دنګ","f":"dung","g":"dung","e":"tall, strapping","c":"adj."},"def":"tall","category":"consonant-unisex"},{"entry":{"ts":1527812537,"i":6350,"p":"ډاډمن","f":"DaaDmun","g":"DaaDmun","e":"assured, secure, confident","c":"adj."},"def":"assured","category":"consonant-unisex"},{"entry":{"ts":1527812583,"i":6414,"p":"ډک","f":"Duk","g":"Duk","e":"full","c":"adj."},"def":"full","category":"consonant-unisex"},{"entry":{"ts":1527822674,"i":6456,"p":"ډنګر","f":"Dungár, Dangár","g":"Dungar,Dangar","e":"singular and plural cattle; bull, ox; thin, skinny, gaunt, emaciated","c":"n. m. / adj."},"def":"gaunt","category":"consonant-unisex"},{"entry":{"ts":1527817256,"i":6462,"p":"ډوب","f":"Doob","g":"Doob","e":"drowned, sunk, submerged","c":"adj."},"def":"sunk","category":"consonant-unisex"},{"entry":{"ts":1527812559,"i":6480,"p":"ډېر","f":"Der","g":"Der","e":"very, lots, many","c":"adj. / adv."},"def":"very, lots","category":"consonant-unisex"},{"entry":{"ts":1527814277,"i":6890,"p":"روغ","f":"rogh","g":"rogh","e":"healthy, well, intact, good, built-up","c":"adj."},"def":"healthy","category":"consonant-unisex"},{"entry":{"ts":1609780006604,"i":7018,"p":"زرخېز","f":"zarkhéz","g":"zarkhez","e":"rich, fruitful","c":"adj."},"def":"fruitful","category":"consonant-unisex"},{"entry":{"ts":1527817116,"i":7025,"p":"زرغون","f":"zarghóon","g":"zarghoon","e":"green, flourishing, flowering, growing; immature, unripe","c":"adj."},"def":"green, flourishing","category":"consonant-unisex"},{"entry":{"ts":1527814026,"i":7036,"p":"زرین","f":"zareen","g":"zareen","e":"golden","c":"adj."},"def":"golden","category":"consonant-unisex"},{"entry":{"ts":1567594312839,"i":7058,"p":"زړه ور","f":"zuRawár","g":"zuRawar","e":"brave, courageous","c":"adj."},"def":"brave","category":"consonant-unisex"},{"entry":{"ts":1527815848,"i":7280,"p":"ژمن","f":"jzman","g":"jzman","e":"dedicated, committed","c":"adj."},"def":"committed","category":"consonant-unisex"},{"entry":{"ts":1527813498,"i":7440,"p":"سپک","f":"spuk","g":"spuk","e":"light; dishonorable, not respectable","c":"adj."},"def":"light","category":"consonant-unisex"},{"entry":{"ts":1610447888169,"i":7452,"p":"سپور","f":"spor","g":"spor","e":"stale, dry (bread/crust); offensive, unpleasant (word)","c":"adj."},"def":"stale, dry (bread/crust); offensive, unpleasant (word)","category":"consonant-unisex"},{"entry":{"ts":1578329248464,"i":7471,"p":"سپین","f":"speen","g":"speen","e":"white (fig. clear, honest, beautiful)","c":"adj."},"def":"white","category":"consonant-unisex"},{"entry":{"ts":1527811860,"i":7493,"p":"ستر","f":"stur","g":"stur","e":"big, large, great","c":"adj."},"def":"great","category":"consonant-unisex"},{"entry":{"ts":1527820178,"i":7539,"p":"ستونزمن","f":"stoonzmán","g":"stoonzman","e":"difficult, hard, problematic, fraught with difficulties, tough, awkward","c":"adj."},"def":"problematic","category":"consonant-unisex"},{"entry":{"ts":1527815246,"i":7571,"p":"سخت","f":"sakht","g":"sakht","e":"hard, difficult","c":"adj."},"def":"difficult","category":"consonant-unisex"},{"entry":{"ts":1527817262,"i":8372,"p":"شنډ","f":"shanD","g":"shanD","e":"barren, sterile, unfruitful, neutralized, diffused","c":"adj."},"def":"barren","category":"consonant-unisex"},{"entry":{"ts":1527813426,"i":8436,"p":"شوم","f":"shoom","g":"shoom","e":"stingy, miserly, closefisted","c":"adj."},"def":"stingy","category":"consonant-unisex"},{"entry":{"ts":1527812625,"i":9021,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},"def":"big","category":"consonant-unisex"},{"entry":{"ts":1527811846,"i":9841,"p":"کامیاب","f":"kaamyaab","g":"kaamyaab","e":"successful","c":"adj."},"def":"successful","category":"consonant-unisex"},{"entry":{"ts":1527823678,"i":9863,"p":"کاهل","f":"kaahíl","g":"kaahil","e":"lazy, sluggish, stagnant","c":"adj."},"def":"lazy","category":"consonant-unisex"},{"entry":{"ts":1527814896,"i":9875,"p":"کبرجن","f":"kaburjun, kibrjun","g":"kaburjun,kibrjun","e":"proud, arrogant","c":"adj."},"def":"proud, arrogant","category":"consonant-unisex"},{"entry":{"ts":1527813117,"i":10199,"p":"کلک","f":"klak, kluk","g":"klak,kluk","e":"firm, solid, staunch, steadfast, serious, hard, unwavering","c":"adj."},"def":"firm, solid","category":"consonant-unisex"},{"entry":{"ts":1578769492475,"i":10228,"p":"کم","f":"kam","g":"kam","e":"few, little","c":"adj."},"def":"few, little","category":"consonant-unisex"},{"entry":{"ts":1578769409512,"i":10260,"p":"کمزور","f":"kamzór","g":"kamzor","e":"weak","c":"adj."},"def":"weak","category":"consonant-unisex"},{"entry":{"ts":1527812639,"i":10681,"p":"ګران","f":"graan","g":"graan","e":"dear, valuable, expensive, difficult","c":"adj."},"def":"dear, difficult","category":"consonant-unisex"},{"entry":{"ts":1527816786,"i":10693,"p":"ګرد","f":"gurd","g":"gurd","e":"all, entire, whole, everything; round circular","c":"adj."},"def":"all","category":"consonant-unisex"},{"entry":{"ts":1527814811,"i":10720,"p":"ګرم","f":"garm, garum","g":"garm,garum","e":"warm, hot","c":"adj."},"def":"warm, hot","category":"consonant-unisex"},{"entry":{"ts":1527817662,"i":10721,"p":"ګرم","f":"gram","g":"gram","e":"guilty, blamed, culprit, culpable","c":"adj."},"def":"guilty","category":"consonant-unisex"},{"entry":{"ts":1527812308,"i":10852,"p":"ګڼ","f":"gaN","g":"gaN","e":"thick, dense, heavy, deep, lots","c":"adj."},"def":"thick, lots","category":"consonant-unisex"},{"entry":{"ts":1527813848,"i":11512,"p":"لېوال","f":"lewaal","g":"lewaal","e":"desiring, eager, thirsting, lover","c":"adj."},"def":"desiring, eager","category":"consonant-unisex"},{"entry":{"ts":1527816011,"i":11528,"p":"مات","f":"maat","g":"maat","e":"broken, split, defeated","c":"adj."},"def":"broken","category":"consonant-unisex"},{"entry":{"ts":1527812881,"i":11567,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. unisex"},"def":"child","category":"consonant-unisex"},{"entry":{"ts":1527817007,"i":11605,"p":"مالوم","f":"maaloom","g":"maaloom","e":"known","c":"adj."},"def":"known","category":"consonant-unisex"},{"entry":{"ts":1527814321,"i":11749,"p":"مثبت","f":"mUsbat","g":"mUsbat","e":"positive; proven","c":"adj."},"def":"positive","category":"consonant-unisex"},{"entry":{"ts":1527811264,"i":11857,"p":"محکوم","f":"mahkoom","g":"mahkoom","e":"condemned, sentenced, criminal; subjugated","c":"adj."},"def":"condemned","category":"consonant-unisex"},{"entry":{"ts":1527814802,"i":12009,"p":"مردار","f":"mUrdáar","g":"mUrdaar","e":"foul, unclean, dirty","c":"adj."},"def":"foul","category":"consonant-unisex"},{"entry":{"ts":1527821812,"i":12426,"p":"مغرور","f":"maghróor","g":"maghroor","e":"haughty, arrogant, conceited","c":"adj."},"def":"arrogant","category":"consonant-unisex"},{"entry":{"ts":1527820222,"i":12524,"p":"ملاست","f":"mlaast","g":"mlaast","e":"lying down, lying","c":"adj."},"def":"lying down","category":"consonant-unisex"},{"entry":{"ts":1527814344,"i":12749,"p":"مهم","f":"mUhím","g":"mUhim","e":"important","c":"adj."},"def":"important","category":"consonant-unisex"},{"entry":{"ts":1527816033,"i":13035,"p":"نادر","f":"naadir","g":"naadir","e":"uncommon","c":"adj."},"def":"uncommon","category":"consonant-unisex"},{"entry":{"ts":1527815106,"i":13072,"p":"ناست","f":"naast","g":"naast","e":"sitting, seated","c":"adj."},"def":"sitting, seated","category":"consonant-unisex"},{"entry":{"ts":1527815127,"i":13222,"p":"نرس","f":"nurs","g":"nurs","e":"nurse","c":"n. m. unisex"},"def":"nurse","category":"consonant-unisex"},{"entry":{"ts":1527821673,"i":13433,"p":"نمجن","f":"namjún","g":"namjun","e":"moist, damp, wet","c":"adj."},"def":"moist, damp, wet","category":"consonant-unisex"},{"entry":{"ts":1527815130,"i":14028,"p":"وچ","f":"wuch, wUch","g":"wuch,wUch","e":"dry, land, ground","c":"adj. / n. m."},"def":"dry, land, ground","category":"consonant-unisex"},{"entry":{"ts":1527817486,"i":14064,"p":"وران","f":"wraan","g":"wraan","e":"ruined, destroyed; destructive, bad, naughty","c":"adj."},"def":"ruined, destroyed; destructive, bad, naughty","category":"consonant-unisex"},{"entry":{"ts":1527814373,"i":14100,"p":"ورک","f":"wruk","g":"wruk","e":"lost","c":"adj."},"def":"lost","category":"consonant-unisex"},{"entry":{"ts":1527822838,"i":14121,"p":"وروست","f":"wrost","g":"wrost","e":"decayed, spoiled, rotten","c":"adj."},"def":"decayed, spoiled, rotten","category":"consonant-unisex"},{"entry":{"ts":1609949334478,"i":14134,"p":"وریت","f":"wreet","g":"wreet","e":"roasted, grilled, barbequed, roast, burnt","c":"adj."},"def":"roasted","category":"consonant-unisex"},{"entry":{"ts":1527823106,"i":14146,"p":"ورین","f":"wreen","g":"wreen","e":"cheerful","c":"adj."},"def":"cheerful","category":"consonant-unisex"},{"entry":{"ts":1527811544,"i":14258,"p":"ولاړ","f":"waláaR, wuláaR","g":"walaaR,wulaaR","e":"standing","c":"adj."},"def":"standing","category":"consonant-unisex"},{"entry":{"ts":1527815498,"i":14377,"p":"یاد","f":"yaad","g":"yaad","e":"aforementioned","c":"adj."},"def":"aforementioned","category":"consonant-unisex"},{"entry":{"ts":1527815434,"i":14398,"p":"یخ","f":"yakh, yukh","g":"yakh,yukh","e":"cold","c":"n. m. / adj."},"def":"cold","category":"consonant-unisex"},{"entry":{"ts":1568926976497,"i":731,"p":"اکسرې","f":"iksre","g":"iksre","e":"x-ray","c":"n. f."},"def":"x-ray","category":"e-fem"},{"entry":{"ts":1602179757779,"i":766,"p":"الف بې","f":"alif be","g":"alifbe","e":"alphabet","c":"n. f."},"def":"alphabet","category":"e-fem"},{"entry":{"ts":1527813840,"i":1140,"p":"ایرې","f":"eere","g":"eere","e":"ashes","c":"n. f. pl.","l":1527813839},"def":"ashes","category":"e-fem"},{"entry":{"ts":1527816692,"i":1178,"p":"اینکې","f":"aynake","g":"aynake","e":"glasses, spectacles","c":"n. f. pl."},"def":"glasses, spectacles","category":"e-fem"},{"entry":{"ts":1527819286,"i":2138,"p":"پاشتقې","f":"paashtáqe","g":"paashtake","e":"stairs, steps, staircase","c":"n. f. pl."},"def":"stairs, steps, staircase","category":"e-fem"},{"entry":{"ts":1527816299,"i":2870,"p":"پیسې","f":"peyse","g":"peyse","e":"money (plural of پېسې)","c":"n. f. pl."},"def":"money (plural of پېسې)","category":"e-fem"},{"entry":{"ts":1527814529,"i":3325,"p":"تروې","f":"turwe","g":"turwe","e":"buttermilk","c":"n. f. pl."},"def":"buttermilk","category":"e-fem"},{"entry":{"ts":1527816369,"i":3794,"p":"تورسرې","f":"torsăre","g":"torsare","e":"widow, woman","c":"n. f."},"def":"widow, woman","category":"e-fem"},{"entry":{"ts":1577408787088,"i":7430,"p":"سپرې","f":"spre","g":"spre","e":"sprey (as in a medicinal spray)","c":"n. f."},"def":"sprey (as in a medicinal spray)","category":"e-fem"},{"entry":{"ts":1527822255,"i":7465,"p":"سپېدې","f":"spedé","g":"spede","e":"break of dawn, first light of day, sunrise","c":"n. f. pl."},"def":"break of dawn, first light of day, sunrise","category":"e-fem"},{"entry":{"ts":1626765107329,"i":8242,"p":"شرې","f":"sharé","g":"share","e":"chickenpox, chicken pox","c":"n. f. pl."},"def":"chickenpox, chicken pox","category":"e-fem"},{"entry":{"ts":1527815008,"i":8409,"p":"شودې","f":"shoode","g":"shoode","e":"milk","c":"n. f. pl."},"def":"milk","category":"e-fem"},{"entry":{"ts":1527822131,"i":8434,"p":"شولې","f":"shole","g":"shole","e":"raw rice, unprocessed rice","c":"n. f. pl."},"def":"raw rice, unprocessed rice","category":"e-fem"},{"entry":{"ts":1527815009,"i":8460,"p":"شیدې","f":"sheede","g":"sheede","e":"milk (plural of شيده)","c":"n. f. pl."},"def":"milk (plural of شيده)","category":"e-fem"},{"entry":{"ts":1527823571,"i":8578,"p":"ښیالمې","f":"xyaalmé","g":"xyaalme","e":"spit, saliva","c":"n. f. pl."},"def":"spit, saliva","category":"e-fem"},{"entry":{"ts":1527816530,"i":8591,"p":"ښینې","f":"xeene","g":"xeene","e":"sister in law","c":"n. f."},"def":"sister in law","category":"e-fem"},{"entry":{"ts":1527823567,"i":11023,"p":"لاړې","f":"laaRe","g":"laaRe","e":"spit, saliva, slobber, slime","c":"n. f. pl."},"def":"spit, saliva, slobber, slime","category":"e-fem"},{"entry":{"ts":1527822275,"i":11416,"p":"لوښې","f":"looxe","g":"looxe","e":"dishes, pots, pans","c":"n. f. pl."},"def":"dishes, pots, pans","category":"e-fem"},{"entry":{"ts":1617443138210,"i":11811,"p":"مچیازې","f":"michyaaze, muchyaaze","g":"michyaaze,muchyaaze","e":"urine, pee, piss","c":"n. f. pl."},"def":"urine, pee, piss","category":"e-fem"},{"entry":{"ts":1527814420,"i":12190,"p":"مستې","f":"maste","g":"maste","e":"yogurt","c":"n. f. pl."},"def":"yogurt","category":"e-fem"},{"entry":{"ts":1577999538077,"i":13738,"p":"هرې","f":"hire","g":"hire","e":"a sound/cry used to drive sheep on","c":"n. f."},"def":"a sound/cry used to drive sheep on","category":"e-fem"},{"entry":{"ts":1586551382412,"i":14141,"p":"وریژې","f":"wreejze","g":"wreejze","e":"rice","c":"n. f. pl."},"def":"rice","category":"e-fem"},{"entry":{"ts":1527820261,"i":14473,"p":"یوې","f":"yuwe","g":"yuwe","e":"plow, plowing, plough, ploughing","c":"n. f."},"def":"plow, plowing, plough, ploughing","category":"e-fem"},{"entry":{"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."},"def":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","category":"ee-fem"},{"entry":{"ts":1527813939,"i":54,"p":"آزادي","f":"aazaadee","g":"aazaadee","e":"freedom, independence","c":"n. f."},"def":"freedom, independence","category":"ee-fem"},{"entry":{"ts":1527818402,"i":159,"p":"اتلولي","f":"atalwalée","g":"atalwalee","e":"championship; courage","c":"n. f."},"def":"championship; courage","category":"ee-fem"},{"entry":{"ts":1527814060,"i":474,"p":"اساني","f":"asaanee","g":"asaanee","e":"ease","c":"n. f."},"def":"ease","category":"ee-fem"},{"entry":{"ts":1527821293,"i":799,"p":"امادګي","f":"amaadagee","g":"amaadagee","e":"preparation, readiness, planning","c":"n. f."},"def":"preparation, readiness, planning","category":"ee-fem"},{"entry":{"ts":1527819502,"i":1211,"p":"باچهي","f":"baachahee","g":"baachahee","e":"kingship, kingdom, rule, throne, authority","c":"n. f."},"def":"kingship, kingdom, rule, throne, authority","category":"ee-fem"},{"entry":{"ts":1527820035,"i":1216,"p":"باداري","f":"baadaaree","g":"baadaaree","e":"dominion, holding sway over someone","c":"n. f."},"def":"dominion, holding sway over someone","category":"ee-fem"},{"entry":{"ts":1527817732,"i":1382,"p":"بدبختي","f":"badbakhtee","g":"badbakhtee","e":"misfortune, difficulty","c":"n. f."},"def":"misfortune, difficulty","category":"ee-fem"},{"entry":{"ts":1588786872582,"i":1415,"p":"بدنامي","f":"badnaamee","g":"badnaamee","e":"shame, disrepute, dishonour","c":"n. f."},"def":"shame, disrepute, dishonour","category":"ee-fem"},{"entry":{"ts":1573682378816,"i":2062,"p":"بیماري","f":"beemaaree","g":"beemaaree","e":"sickness, illness","c":"n. f."},"def":"sickness, illness","category":"ee-fem"},{"entry":{"ts":1527816817,"i":2150,"p":"پاکوالي","f":"paakwaalee","g":"paakwaalee","e":"cleanliness, hygiene","c":"n. f."},"def":"cleanliness, hygiene","category":"ee-fem"},{"entry":{"ts":1586204619186,"i":2353,"p":"پرهېزګاري","f":"parhezgaaree","g":"parhezgaaree","e":"righteousness, abstinence, self-control","c":"n. f."},"def":"righteousness, abstinence, self-control","category":"ee-fem"},{"entry":{"ts":1584444376984,"i":2510,"p":"پلارواکي","f":"plaarwaakee","g":"plaarwaakee","e":"patriarchy","c":"n. f."},"def":"patriarchy","category":"ee-fem"},{"entry":{"ts":1527818744,"i":3275,"p":"ترکاڼي","f":"tarkaaNee","g":"tarkaaNee","e":"carpentry","c":"n. f."},"def":"carpentry","category":"ee-fem"},{"entry":{"ts":1527815337,"i":3386,"p":"تسلي","f":"tasallee","g":"tasallee","e":"consolation, comfort, satisfaction","c":"n. f."},"def":"consolation, comfort, satisfaction","category":"ee-fem"},{"entry":{"ts":1527819521,"i":5759,"p":"خوشالي","f":"khoshaalee","g":"khoshaalee","e":"happiness (خوشحالي)","c":"n. f."},"def":"happiness (خوشحالي)","category":"ee-fem"},{"entry":{"ts":1527818037,"i":5764,"p":"خوشبختي","f":"khooshbakhtee","g":"khooshbakhtee","e":"good fortune, good luck, hapiness","c":"n. f."},"def":"good fortune, good luck, hapiness","category":"ee-fem"},{"entry":{"ts":1527815914,"i":5767,"p":"خوشبیني","f":"khooshbeenee","g":"khooshbeenee","e":"optimism","c":"n. f."},"def":"optimism","category":"ee-fem"},{"entry":{"ts":1527811877,"i":6279,"p":"دوستي","f":"dostee","g":"dostee","e":"friendship","c":"n. f."},"def":"friendship","category":"ee-fem"},{"entry":{"ts":1527818019,"i":6284,"p":"دوکانداري","f":"dookaandaaree","g":"dookaandaaree","e":"shopkeeping, retail store selling","c":"n. f."},"def":"shopkeeping, retail store selling","category":"ee-fem"},{"entry":{"ts":1527822080,"i":6336,"p":"دېموکراسي","f":"demokraasee","g":"demokraasee","e":"democracy","c":"n. f."},"def":"democracy","category":"ee-fem"},{"entry":{"ts":1527813462,"i":10584,"p":"کیلي","f":"keelee","g":"keelee","e":"key","c":"n. f."},"def":"key","category":"ee-fem"},{"entry":{"ts":1527814492,"i":10624,"p":"ګاوداري","f":"gaawdaaree","g":"gaawdaaree","e":"cattle farming","c":"n. f."},"def":"cattle farming","category":"ee-fem"},{"entry":{"ts":1610013679820,"i":14118,"p":"ورورولي","f":"wrorwalée","g":"wrorwalee","e":"brotherhood","c":"n. f."},"def":"brotherhood","category":"ee-fem"},{"entry":{"ts":1527818948,"i":173,"p":"اټسکی","f":"aTúskey","g":"aTuskey","e":"sneezing, sneeze","c":"n. m."},"def":"sneezing, sneeze","category":"ey-masc"},{"entry":{"ts":1527816481,"i":295,"p":"اخښی","f":"akhxey","g":"akhxey","e":"brother in law; sister's husband","c":"n. m."},"def":"brother in law; sister's husband","category":"ey-masc"},{"entry":{"ts":1573681135691,"i":349,"p":"اربکی","f":"arbakéy","g":"arbakey","e":"tribal constable, tribal offical with police powers","c":"n. m."},"def":"tribal constable, tribal offical with police powers","category":"ey-masc"},{"entry":{"ts":1573659054031,"i":365,"p":"ارتوالی","f":"artwaaley, aratwaaley","g":"artwaaley,aratwaaley","e":"width, spaciousness","c":"n. m."},"def":"width, spaciousness","category":"ey-masc"},{"entry":{"ts":1527811890,"i":453,"p":"ازغی","f":"azghey","g":"azghey","e":"thorn, prickle","c":"n. m."},"def":"thorn, prickle","category":"ey-masc"},{"entry":{"ts":1527817036,"i":484,"p":"استازی","f":"astaazey","g":"astaazey","e":"representative, envoy, ambassador, commissioner","c":"n. m."},"def":"representative, envoy, ambassador, commissioner","category":"ey-masc"},{"entry":{"ts":1527816982,"i":533,"p":"استوګنځی","f":"astogundzey","g":"astogundzey","e":"residence, dwelling; hostel, dormitory","c":"n. m."},"def":"residence, dwelling; hostel, dormitory","category":"ey-masc"},{"entry":{"ts":1527818489,"i":560,"p":"اسوېلی","f":"asweley","g":"asweley","e":"yawn, sigh, deep breath, shivering","c":"n. m."},"def":"yawn, sigh, deep breath, shivering","category":"ey-masc"},{"entry":{"ts":1527822497,"i":989,"p":"اننګی","f":"anangey","g":"anangey","e":"cheek","c":"n. m."},"def":"cheek","category":"ey-masc"},{"entry":{"ts":1527821967,"i":1009,"p":"اوبسپی","f":"obspéy","g":"obspey","e":"beaver, seal","c":"n. m."},"def":"beaver, seal","category":"ey-masc"},{"entry":{"ts":1527822190,"i":1034,"p":"اور غالی","f":"orgháaley","g":"orghaaley","e":"stove, oven, furnace, hearth, floor of a fireplace","c":"n. m."},"def":"stove, oven, furnace, hearth, floor of a fireplace","category":"ey-masc"},{"entry":{"ts":1527821545,"i":1048,"p":"اورشیندی","f":"orsheendéy","g":"orsheendey","e":"volcano","c":"n. m."},"def":"volcano","category":"ey-masc"},{"entry":{"ts":1527819192,"i":1050,"p":"اورګاډی","f":"orgáaDey","g":"orgaaDey","e":"train","c":"n. m."},"def":"train","category":"ey-masc"},{"entry":{"ts":1527815585,"i":1064,"p":"اوړی","f":"oRey","g":"oRey","e":"summer","c":"n. m."},"def":"summer","category":"ey-masc"},{"entry":{"ts":1527815132,"i":1087,"p":"اوښ غویی","f":"oox ghwayey","g":"ooxghwayey","e":"giraffe","c":"n. m."},"def":"giraffe","category":"ey-masc"},{"entry":{"ts":1527816488,"i":1091,"p":"اوښی","f":"awxey","g":"awxey","e":"brother in law, wife's brother","c":"n. m."},"def":"brother in law, wife's brother","category":"ey-masc"},{"entry":{"ts":1623044357441,"i":1328,"p":"ببوتنکی","f":"bubootúnkey","g":"bubootunkey","e":"tuft, clump, shock of hair","c":"n. m."},"def":"tuft, clump, shock of hair","category":"ey-masc"},{"entry":{"ts":1527821668,"i":1354,"p":"بڅری","f":"batsúrey","g":"batsurey","e":"spark, speck, flicker","c":"n. m."},"def":"spark, speck, flicker","category":"ey-masc"},{"entry":{"ts":1527821239,"i":1437,"p":"بډوری","f":"baDóorey","g":"baDoorey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527821099,"i":1500,"p":"برغوږی","f":"barghwáGey","g":"barghwagey","e":"earring","c":"n. m."},"def":"earring","category":"ey-masc"},{"entry":{"ts":1527822629,"i":1501,"p":"برغولی","f":"barghóley","g":"bargholey","e":"lid, cover","c":"n. m."},"def":"lid, cover","category":"ey-masc"},{"entry":{"ts":1527811903,"i":1542,"p":"بری","f":"barey","g":"barey","e":"success, victory","c":"n. m."},"def":"success, victory","category":"ey-masc"},{"entry":{"ts":1594904072731,"i":1737,"p":"بنګړی","f":"bangRéy","g":"bangRey","e":"bracelet","c":"n. m."},"def":"bracelet","category":"ey-masc"},{"entry":{"ts":1527817159,"i":1788,"p":"بوټی","f":"booTey","g":"booTey","e":"plant","c":"n. m."},"def":"plant","category":"ey-masc"},{"entry":{"ts":1527815055,"i":1817,"p":"بوږنوړی","f":"boGnwaRey","g":"bognwaRey","e":"terrible","c":"adj."},"def":"terrible","category":"ey-masc"},{"entry":{"ts":1610618917483,"i":2160,"p":"پالنځی","f":"paalundzéy","g":"paalundzey","e":"orphanage, nursery","c":"n. m."},"def":"orphanage, nursery","category":"ey-masc"},{"entry":{"ts":1527814666,"i":2186,"p":"پای ټکی","f":"paayTakey","g":"paayTakey","e":"final point, end point","c":"n. m."},"def":"final point, end point","category":"ey-masc"},{"entry":{"ts":1527816195,"i":2229,"p":"پټکی","f":"paTkey","g":"paTkey","e":"small turban","c":"n. m."},"def":"small turban","category":"ey-masc"},{"entry":{"ts":1527811611,"i":2235,"p":"پټی","f":"paTey","g":"paTey","e":"field, place where crops are sown","c":"n. m."},"def":"field, place where crops are sown","category":"ey-masc"},{"entry":{"ts":1588762458105,"i":2256,"p":"پخلنځی","f":"pukhlandzéy","g":"pukhlandzey","e":"kitchen","c":"n. m."},"def":"kitchen","category":"ey-masc"},{"entry":{"ts":1527816059,"i":2257,"p":"پخلی","f":"pakhley","g":"pakhley","e":"cooking, preparation of food; wisdom, maturity","c":"n. m."},"def":"cooking, preparation of food; wisdom, maturity","category":"ey-masc"},{"entry":{"ts":1527821241,"i":2325,"p":"پرګی","f":"purgéy, pirgéy","g":"purgey,pirgey","e":"acorn","c":"n. m."},"def":"acorn","category":"ey-masc"},{"entry":{"ts":1527813812,"i":2419,"p":"پړونی","f":"paRóoney","g":"paRooney","e":"veil, covering for women, cover","c":"n. m."},"def":"veil, covering for women, cover","category":"ey-masc"},{"entry":{"ts":1527822385,"i":2420,"p":"پړی","f":"púRey","g":"puRey","e":"rope, cable, cord","c":"n. m."},"def":"rope, cable, cord","category":"ey-masc"},{"entry":{"ts":1527812980,"i":2434,"p":"پس پسی","f":"puspusey","g":"puspusey","e":"whispering, murmuring, rumor, gossip","c":"n. m."},"def":"whispering, murmuring, rumor, gossip","category":"ey-masc"},{"entry":{"ts":1527814005,"i":2450,"p":"پسرلی","f":"psarléy, pusărléy","g":"psarley,pusarley","e":"spring, springtime (season)","c":"n. m."},"def":"spring, springtime (season)","category":"ey-masc"},{"entry":{"ts":1527821229,"i":2481,"p":"پښتورګی","f":"paxtawurgey","g":"paxtawurgey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527817035,"i":2520,"p":"پلاوی","f":"plaawey","g":"plaawey","e":"mission, delegation","c":"n. m."},"def":"mission, delegation","category":"ey-masc"},{"entry":{"ts":1527815187,"i":2732,"p":"پوزی","f":"pozey","g":"pozey","e":"mat","c":"n. m."},"def":"mat","category":"ey-masc"},{"entry":{"ts":1527816627,"i":2736,"p":"پوستکی","f":"postukey","g":"postukey","e":"fleece, pelt, skin, shell, rind, bark; ear lobe","c":"n. m."},"def":"fleece, pelt, skin, shell, rind, bark; ear lobe","category":"ey-masc"},{"entry":{"ts":1527819332,"i":2747,"p":"پوښتورګی","f":"pooxtawúrgey","g":"pooxtawurgey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527819496,"i":2769,"p":"پوهاوی","f":"pohaawéy","g":"pohaawey","e":"understanding, comprehension","c":"n. m."},"def":"understanding, comprehension","category":"ey-masc"},{"entry":{"ts":1527815168,"i":2804,"p":"پېټی","f":"peTéy","g":"peTey","e":"load, weight, burden","c":"n. m."},"def":"load, weight, burden","category":"ey-masc"},{"entry":{"ts":1527815927,"i":2850,"p":"پېرونکی","f":"peroonkey","g":"peroonkey","e":"customer","c":"n. m. unisex"},"def":"customer","category":"ey-masc"},{"entry":{"ts":1527815017,"i":2852,"p":"پېروی","f":"perúwey, peráwey","g":"peruwey,perawey","e":"cream","c":"n. m."},"def":"cream","category":"ey-masc"},{"entry":{"ts":1527815325,"i":3021,"p":"تاوتریخوالی","f":"taawtreekhwaaley","g":"taawtreekhwaaley","e":"violence","c":"n. m."},"def":"violence","category":"ey-masc"},{"entry":{"ts":1611397750325,"i":3027,"p":"تاوی","f":"taawéy","g":"taawey","e":"screwdriver, screw","c":"n. m."},"def":"screwdriver, screw","category":"ey-masc"},{"entry":{"ts":1622374978659,"i":3051,"p":"تبرګی","f":"tubúrgey","g":"tuburgey","e":"hatchet","c":"n. m."},"def":"hatchet","category":"ey-masc"},{"entry":{"ts":1527818705,"i":3135,"p":"تخرګی","f":"tkhurgéy","g":"tkhurgey","e":"gusset (in a shirt)","c":"n. m."},"def":"gusset (in a shirt)","category":"ey-masc"},{"entry":{"ts":1527814392,"i":3363,"p":"تړونی","f":"taRooney","g":"taRooney","e":"band, bandage","c":"n. m."},"def":"band, bandage","category":"ey-masc"},{"entry":{"ts":1527822723,"i":3424,"p":"تشی","f":"túshey","g":"tushey","e":"side, groin, empty place, void","c":"n. m."},"def":"side, groin, empty place, void","category":"ey-masc"},{"entry":{"ts":1577585114379,"i":3624,"p":"تلی","f":"táley","g":"taley","e":"sole (of a shoe); yard, compound; palm","c":"n. m."},"def":"sole (of a shoe); yard, compound; palm","category":"ey-masc"},{"entry":{"ts":1527816630,"i":3698,"p":"تندی","f":"tandey","g":"tandey","e":"forehead, brow, slope","c":"n. m."},"def":"forehead, brow, slope","category":"ey-masc"},{"entry":{"ts":1527821980,"i":3735,"p":"تڼی","f":"taNéy","g":"taNey","e":"bellyband (of a harness)","c":"n. m."},"def":"bellyband (of a harness)","category":"ey-masc"},{"entry":{"ts":1527819719,"i":3804,"p":"توری","f":"tórey","g":"torey","e":"spleen","c":"n. m."},"def":"spleen","category":"ey-masc"},{"entry":{"ts":1527819721,"i":3805,"p":"توری","f":"toréy","g":"torey","e":"letter, letter of the alphabet","c":"n. m."},"def":"letter, letter of the alphabet","category":"ey-masc"},{"entry":{"ts":1527819622,"i":3830,"p":"توغندی","f":"toghandéy","g":"toghandey","e":"rocket, missile","c":"n. m."},"def":"rocket, missile","category":"ey-masc"},{"entry":{"ts":1527814705,"i":3858,"p":"توکی","f":"tokey","g":"tokey","e":"element, item, material; thing, material, kind, type","c":"n. m."},"def":"element, item, material; thing, material, kind, type","category":"ey-masc"},{"entry":{"ts":1527819563,"i":4032,"p":"ټکری","f":"TUkréy","g":"TUkrey","e":"piece, small piece; a length (of cloth); blanket","c":"n. m."},"def":"piece, small piece; a length (of cloth); blanket","category":"ey-masc"},{"entry":{"ts":1577408381145,"i":4033,"p":"ټکری","f":"Tikréy","g":"Tikrey","e":"shawl, head-covering","c":"n. m."},"def":"shawl, head-covering","category":"ey-masc"},{"entry":{"ts":1527814667,"i":4045,"p":"ټکی","f":"Tákey","g":"Takey","e":"word; point; dot","c":"n. m."},"def":"word; point; dot","category":"ey-masc"},{"entry":{"ts":1527813617,"i":4151,"p":"ټیکری","f":"Teekréy","g":"Teekrey","e":"shawl, head covering","c":"n. m."},"def":"shawl, head covering","category":"ey-masc"},{"entry":{"ts":1527819733,"i":4573,"p":"ځلمی","f":"dzalméy","g":"dzalmey","e":"young, youth, young lad","c":"n. m."},"def":"young, youth, young lad","category":"ey-masc"},{"entry":{"ts":1527815465,"i":4659,"p":"چارواکی","f":"chaarwaakey","g":"chaarwaakey","e":"official authority, official, authority","c":"n. m."},"def":"official authority, official, authority","category":"ey-masc"},{"entry":{"ts":1527822356,"i":4847,"p":"چنجی","f":"chinjéy","g":"chinjey","e":"worm, small insect","c":"n. m."},"def":"worm, small insect","category":"ey-masc"},{"entry":{"ts":1527822808,"i":4865,"p":"چنی","f":"chanéy","g":"chaney","e":"basin, bowl","c":"n. m."},"def":"basin, bowl","category":"ey-masc"},{"entry":{"ts":1527822357,"i":4965,"p":"چینجی","f":"cheenjéy","g":"cheenjey","e":"worm, small insect","c":"n. m."},"def":"worm, small insect","category":"ey-masc"},{"entry":{"ts":1527819046,"i":4977,"p":"څاڅکی","f":"tsáatskey","g":"tsaatskey","e":"drop","c":"n. m."},"def":"drop","category":"ey-masc"},{"entry":{"ts":1527817874,"i":5049,"p":"څرنګوالی","f":"tsurangwaaley","g":"tsurangwaaley","e":"quality, nature","c":"n. m."},"def":"quality, nature","category":"ey-masc"},{"entry":{"ts":1527814041,"i":5054,"p":"څړمنی","f":"tsaRmuney","g":"tsaRmuney","e":"spring (season)","c":"n. m."},"def":"spring (season)","category":"ey-masc"},{"entry":{"ts":1527813361,"i":5090,"p":"څلی","f":"tsaley","g":"tsaley","e":"column, pilliar, pyramid","c":"n. m."},"def":"column, pilliar, pyramid","category":"ey-masc"},{"entry":{"ts":1527819027,"i":5095,"p":"څمڅی","f":"tsamtsey","g":"tsamtsey","e":"ladle, dipper","c":"n. m."},"def":"ladle, dipper","category":"ey-masc"},{"entry":{"ts":1573055311846,"i":5388,"p":"خبرداری","f":"khabardaarey","g":"khabardaarey","e":"warning, notice, alarm","c":"n. m."},"def":"warning, notice, alarm","category":"ey-masc"},{"entry":{"ts":1527820324,"i":5429,"p":"خټکی","f":"khaTakéy","g":"khaTakey","e":"melon","c":"n. m."},"def":"melon","category":"ey-masc"},{"entry":{"ts":1527819828,"i":6035,"p":"درناوی","f":"dranaawey","g":"dranaawey","e":"weight; respect, honour","c":"n. m."},"def":"weight; respect, honour","category":"ey-masc"},{"entry":{"ts":1588161660483,"i":6373,"p":"ډانګوری","f":"Daangooréy","g":"Daangoorey","e":"crutch, walking-stick, cane","c":"n. m."},"def":"crutch, walking-stick, cane","category":"ey-masc"},{"entry":{"ts":1527813493,"i":6486,"p":"ډېری","f":"Derey","g":"Derey","e":"majority; heap, pile","c":"n. m."},"def":"majority; heap, pile","category":"ey-masc"},{"entry":{"ts":1527823700,"i":6589,"p":"راشی","f":"raashey","g":"raashey","e":"avalanche, flood, shower","c":"n. m."},"def":"avalanche, flood, shower","category":"ey-masc"},{"entry":{"ts":1527819525,"i":7041,"p":"زړګی","f":"zuRgéy","g":"zuRgey","e":"diminutive form of زړه - little heart; precious, dear","c":"n. m."},"def":"diminutive form of زړه - little heart; precious, dear","category":"ey-masc"},{"entry":{"ts":1527819732,"i":7093,"p":"زلمی","f":"zalméy","g":"zalmey","e":"young, youth, young lad","c":"n. m."},"def":"young, youth, young lad","category":"ey-masc"},{"entry":{"ts":1527813708,"i":7224,"p":"زېری","f":"zerey","g":"zerey","e":"good news, gospel","c":"n. m."},"def":"good news, gospel","category":"ey-masc"},{"entry":{"ts":1588758498458,"i":7229,"p":"زېړی","f":"zeRéy","g":"zeRey","e":"jaundice","c":"n. m."},"def":"jaundice","category":"ey-masc"},{"entry":{"ts":1571626392709,"i":7233,"p":"زېږنځی","f":"zeGundzey","g":"zegundzey","e":"birthplace","c":"n. m."},"def":"birthplace","category":"ey-masc"},{"entry":{"ts":1527815698,"i":7284,"p":"ژمی","f":"jzúmey, jzímey","g":"jzumey,jzimey","e":"winter","c":"n. m."},"def":"winter","category":"ey-masc"},{"entry":{"ts":1573686563723,"i":7307,"p":"ژی","f":"jzey","g":"jzey","e":"wineskin, bagpipe, skin for carrying liquid","c":"n. m."},"def":"wineskin, bagpipe, skin for carrying liquid","category":"ey-masc"},{"entry":{"ts":1527815239,"i":7332,"p":"ساتېری","f":"saaterey","g":"saaterey","e":"entertainment, fun, recreation","c":"n. m."},"def":"entertainment, fun, recreation","category":"ey-masc"},{"entry":{"ts":1527813725,"i":7348,"p":"ساری","f":"sáarey","g":"saarey","e":"equal, equivalent, match, precedent","c":"n. m."},"def":"equal, equivalent, match, precedent","category":"ey-masc"},{"entry":{"ts":1527814021,"i":7427,"p":"سپرلی","f":"sparléy","g":"sparley","e":"spring (season)","c":"n. m."},"def":"spring (season)","category":"ey-masc"},{"entry":{"ts":1527813509,"i":7441,"p":"سپکاوی","f":"spukaawéy","g":"spukaawey","e":"insult, disgrace, defamation, disrespect","c":"n. m."},"def":"insult, disgrace, defamation, disrespect","category":"ey-masc"},{"entry":{"ts":1527815298,"i":7479,"p":"سپیناوی","f":"speenaawey","g":"speenaawey","e":"clarification, attestation","c":"n. m."},"def":"clarification, attestation","category":"ey-masc"},{"entry":{"ts":1578002674551,"i":7496,"p":"سترغلی","f":"sturghúley","g":"sturghuley","e":"eye-socket, eyelid; orbit","c":"n. m."},"def":"eye-socket, eyelid; orbit","category":"ey-masc"},{"entry":{"ts":1527811999,"i":7531,"p":"ستوری","f":"storey","g":"storey","e":"star","c":"n. m."},"def":"star","category":"ey-masc"},{"entry":{"ts":1527817001,"i":7542,"p":"ستونی","f":"stóoney","g":"stooney","e":"throat, larynx","c":"n. m."},"def":"throat, larynx","category":"ey-masc"},{"entry":{"ts":1527813511,"i":7642,"p":"سرخوږی","f":"sărkhooGéy, sărkhwuGéy","g":"sarkhoogey,sarkhwugey","e":"headache, trouble","c":"n. m."},"def":"headache, trouble","category":"ey-masc"},{"entry":{"ts":1527815251,"i":7717,"p":"سړی","f":"saRéy","g":"saRey","e":"man","c":"n. m."},"def":"man","category":"ey-masc"},{"entry":{"ts":1527819850,"i":7725,"p":"سږی","f":"súGey","g":"sugey","e":"lung","c":"n. m."},"def":"lung","category":"ey-masc"},{"entry":{"ts":1527812302,"i":7937,"p":"سوری","f":"soorey","g":"soorey","e":"hole, slit, opening","c":"n. m."},"def":"hole, slit, opening","category":"ey-masc"},{"entry":{"ts":1527818221,"i":8007,"p":"سوی","f":"swey","g":"swey","e":"burning, zeal, fervour","c":"n. m."},"def":"burning, zeal, fervour","category":"ey-masc"},{"entry":{"ts":1527812304,"i":8085,"p":"سیوری","f":"syórey, syóorey","g":"syorey,syoorey","e":"shade, shadow","c":"n. m."},"def":"shade, shadow","category":"ey-masc"},{"entry":{"ts":1527815268,"i":8456,"p":"شی","f":"shey","g":"shey","e":"thing","c":"n. m."},"def":"thing","category":"ey-masc"},{"entry":{"ts":1527822527,"i":8516,"p":"ښتګری","f":"xatgaréy","g":"xatgarey","e":"ankle, ankle-bone","c":"n. m."},"def":"ankle, ankle-bone","category":"ey-masc"},{"entry":{"ts":1527812793,"i":8567,"p":"ښوونځی","f":"xowundzey","g":"xowundzey","e":"school","c":"n. m."},"def":"school","category":"ey-masc"},{"entry":{"ts":1527821064,"i":8572,"p":"ښویکی","f":"xwayakéy","g":"xwayakey","e":"a quick, clever, agile, bright man; a swindler, a fraud","c":"n. m."},"def":"a quick, clever, agile, bright man; a swindler, a fraud","category":"ey-masc"},{"entry":{"ts":1527822650,"i":9025,"p":"غټوالی","f":"ghaTwaaley","g":"ghaTwaaley","e":"largeness, bigness","c":"n. m."},"def":"largeness, bigness","category":"ey-masc"},{"entry":{"ts":1527814569,"i":9091,"p":"غړی","f":"ghuRey","g":"ghuRey","e":"member","c":"n. m."},"def":"member","category":"ey-masc"},{"entry":{"ts":1527817627,"i":9111,"p":"غشی","f":"ghúshey","g":"ghushey","e":"arrow","c":"n. m."},"def":"arrow","category":"ey-masc"},{"entry":{"ts":1527822913,"i":9167,"p":"غمی","f":"ghaméy","g":"ghamey","e":"precious stone, precious stone in a signet ring","c":"n. m."},"def":"precious stone, precious stone in a signet ring","category":"ey-masc"},{"entry":{"ts":1527823466,"i":9178,"p":"غنګوری","f":"ghangóorey","g":"ghangoorey","e":"ear lobe","c":"n. m."},"def":"ear lobe","category":"ey-masc"},{"entry":{"ts":1527818483,"i":9233,"p":"غوری","f":"ghorey","g":"ghorey","e":"plate","c":"n. m."},"def":"plate","category":"ey-masc"},{"entry":{"ts":1527816181,"i":9726,"p":"قی","f":"qey","g":"key","e":"vomit, nausea (Arabic)","c":"n. m."},"def":"vomit, nausea (Arabic)","category":"ey-masc"},{"entry":{"ts":1527814715,"i":9786,"p":"کاروونکی","f":"kaarawoonkey","g":"kaarawoonkey","e":"user","c":"n. m. unisex"},"def":"user","category":"ey-masc"},{"entry":{"ts":1578706351012,"i":9833,"p":"کالی","f":"kaaley","g":"kaaley","e":"dress, clothing, underwear, ornament (usually plural)","c":"n. m."},"def":"dress, clothing, underwear, ornament (usually plural)","category":"ey-masc"},{"entry":{"ts":1527823295,"i":9861,"p":"کاڼی","f":"káaNey","g":"kaaNey","e":"stone, rock","c":"n. m."},"def":"stone, rock","category":"ey-masc"},{"entry":{"ts":1527818563,"i":9880,"p":"کبوړی","f":"kabóoRey","g":"kabooRey","e":"muscle","c":"n. m."},"def":"muscle","category":"ey-masc"},{"entry":{"ts":1527822824,"i":9894,"p":"کتاب ګوټی","f":"kitaabgóTey","g":"kitaabgoTey","e":"booklet, notebook","c":"n. m."},"def":"booklet, notebook","category":"ey-masc"},{"entry":{"ts":1582388629980,"i":10115,"p":"کسی","f":"kúsey","g":"kusey","e":"pupil (of an eye)","c":"n. m."},"def":"pupil (of an eye)","category":"ey-masc"},{"entry":{"ts":1594906790729,"i":10180,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. unisex"},"def":"boy","category":"ey-masc"},{"entry":{"ts":1527812836,"i":10220,"p":"کلی","f":"kuley, kiley","g":"kuley,kiley","e":"village","c":"n. m."},"def":"village","category":"ey-masc"},{"entry":{"ts":1527816880,"i":10272,"p":"کمی","f":"kamey","g":"kamey","e":"shortage, lack, deficiency","c":"n. m."},"def":"shortage, lack, deficiency","category":"ey-masc"},{"entry":{"ts":1610616852625,"i":10330,"p":"کنګرېزی","f":"kangrezéy","g":"kangrezey","e":"echo","c":"n. m."},"def":"echo","category":"ey-masc"},{"entry":{"ts":1527819196,"i":10603,"p":"ګاډی","f":"gáaDey","g":"gaaDey","e":"car, train","c":"n. m."},"def":"car, train","category":"ey-masc"},{"entry":{"ts":1579016593220,"i":10850,"p":"ګنی","f":"ganéy","g":"ganey","e":"beehive; wasps' nest","c":"n. m."},"def":"beehive; wasps' nest","category":"ey-masc"},{"entry":{"ts":1527819076,"i":10898,"p":"ګوډاګی","f":"gooDaagéy","g":"gooDaagey","e":"doll, puppet","c":"n. m."},"def":"doll, puppet","category":"ey-masc"},{"entry":{"ts":1527822505,"i":10954,"p":"ګومبوری","f":"goomboorey","g":"goomboorey","e":"cheek","c":"n. m."},"def":"cheek","category":"ey-masc"},{"entry":{"ts":1527819079,"i":11046,"p":"لاسپوڅی","f":"laaspotséy","g":"laaspotsey","e":"puppet","c":"n. m."},"def":"puppet","category":"ey-masc"},{"entry":{"ts":1573149568665,"i":11049,"p":"لاسرسی","f":"laasraséy","g":"laasrasey","e":"access, availability","c":"n. m."},"def":"access, availability","category":"ey-masc"},{"entry":{"ts":1527817464,"i":11146,"p":"لرګی","f":"largey","g":"largey","e":"wood, timber","c":"n. m."},"def":"wood, timber","category":"ey-masc"},{"entry":{"ts":1527822801,"i":11191,"p":"لستوڼی","f":"lastóNey","g":"lastoNey","e":"sleeve","c":"n. m."},"def":"sleeve","category":"ey-masc"},{"entry":{"ts":1527812416,"i":11201,"p":"لښتی","f":"laxtey","g":"laxtey","e":"brook, rivulet, small irrigation","c":"n. m."},"def":"brook, rivulet, small irrigation","category":"ey-masc"},{"entry":{"ts":1527814401,"i":11354,"p":"لوبونی","f":"lobawuney","g":"lobawuney","e":"toy","c":"n. m."},"def":"toy","category":"ey-masc"},{"entry":{"ts":1527814519,"i":11386,"p":"لوری","f":"lorey","g":"lorey","e":"side, direction","c":"n. m."},"def":"side, direction","category":"ey-masc"},{"entry":{"ts":1527813846,"i":11421,"p":"لوګی","f":"loogéy","g":"loogey","e":"smoke","c":"n. m."},"def":"smoke","category":"ey-masc"},{"entry":{"ts":1527823103,"i":11470,"p":"لیدلوری","f":"leedlorey","g":"leedlorey","e":"perspective, viewpoint","c":"n. m."},"def":"perspective, viewpoint","category":"ey-masc"},{"entry":{"ts":1527819920,"i":11571,"p":"ماشی","f":"maashey","g":"maashey","e":"mosquito, midge","c":"n. m."},"def":"mosquito, midge","category":"ey-masc"},{"entry":{"ts":1527820224,"i":11809,"p":"مچوژی","f":"muchwajzéy","g":"muchwajzey","e":"fly swatter","c":"n. m."},"def":"fly swatter","category":"ey-masc"},{"entry":{"ts":1591871316865,"i":11894,"p":"مختاړی","f":"mukhtaaRey","g":"mukhtaaRey","e":"prefix (grammar)","c":"n. m."},"def":"prefix (grammar)","category":"ey-masc"},{"entry":{"ts":1527817105,"i":12092,"p":"مړخندی","f":"muRkhandey","g":"muRkhandey","e":"smile, smiling","c":"n. m."},"def":"smile, smiling","category":"ey-masc"},{"entry":{"ts":1527817770,"i":12109,"p":"مړی","f":"múRey","g":"muRey","e":"dead body, corpse","c":"n. m."},"def":"dead body, corpse","category":"ey-masc"},{"entry":{"ts":1527813189,"i":12727,"p":"منی","f":"máney","g":"maney","e":"fall, autumn","c":"n. m."},"def":"fall, autumn","category":"ey-masc"},{"entry":{"ts":1527812925,"i":12864,"p":"مومپلی","f":"mompaley","g":"mompaley","e":"peanut","c":"n. m."},"def":"peanut","category":"ey-masc"},{"entry":{"ts":1527812421,"i":12933,"p":"مېږی","f":"meGey","g":"megey","e":"ant","c":"n. m."},"def":"ant","category":"ey-masc"},{"entry":{"ts":1527819227,"i":13295,"p":"نشتوالی","f":"nashtwaaley","g":"nashtwaaley","e":"lack","c":"n. m."},"def":"lack","category":"ey-masc"},{"entry":{"ts":1527823577,"i":13582,"p":"نیالګی","f":"niyaalgey","g":"niyaalgey","e":"sapling, seedling, sprout, young tree","c":"n. m."},"def":"sapling, seedling, sprout, young tree","category":"ey-masc"},{"entry":{"ts":1527812073,"i":13717,"p":"هډوکی","f":"haDookey","g":"haDookey","e":"bone","c":"n. m."},"def":"bone","category":"ey-masc"},{"entry":{"ts":1527812668,"i":13730,"p":"هرکلی","f":"hărkáley","g":"harkaley","e":"welcome","c":"n. m."},"def":"welcome","category":"ey-masc"},{"entry":{"ts":1527820928,"i":13733,"p":"هرکی","f":"hurkéy","g":"hurkey","e":"awkward/silly laugh, unmotivated laugh","c":"n. m."},"def":"awkward/silly laugh, unmotivated laugh","category":"ey-masc"},{"entry":{"ts":1588153218244,"i":13754,"p":"هسکوالی","f":"haskwáaley","g":"haskwaaley","e":"height, elevation, tallness","c":"n. m."},"def":"height, elevation, tallness","category":"ey-masc"},{"entry":{"ts":1585309922022,"i":14005,"p":"والګی","f":"waalgéy","g":"waalgey","e":"flu, respiratory illness, influenza, cold","c":"n. m."},"def":"flu, respiratory illness, influenza, cold","category":"ey-masc"},{"entry":{"ts":1527813014,"i":14186,"p":"وژی","f":"wajzey","g":"wajzey","e":"vein, nerve","c":"n. m."},"def":"vein, nerve","category":"ey-masc"},{"entry":{"ts":1527821465,"i":14282,"p":"ولی","f":"wuléy","g":"wuley","e":"shoulder","c":"n. m."},"def":"shoulder","category":"ey-masc"},{"entry":{"ts":1527814004,"i":14313,"p":"ووړی","f":"woRey","g":"woRey","e":"summer","c":"n. m."},"def":"summer","category":"ey-masc"},{"entry":{"ts":1527822004,"i":33,"p":"آخرینی","f":"aakhireenéy","g":"aakhireeney","e":"last, final, latest","c":"adj."},"def":"last, final","category":"ey-stressed-unisex"},{"entry":{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. unisex"},"def":"Afghan (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1612616237182,"i":2147,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. unisex"},"def":"Pakistani (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1527813400,"i":1081,"p":"اوسنی","f":"oosanéy","g":"oosaney","e":"current, present","c":"adj."},"def":"current","category":"ey-stressed-unisex"},{"entry":{"ts":1527815661,"i":1100,"p":"اولنی","f":"awwalunéy","g":"awwaluney","e":"first, beginning","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527812476,"i":1351,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. unisex"},"def":"child","category":"ey-stressed-unisex"},{"entry":{"ts":1527816646,"i":1772,"p":"بهرنی","f":"baharanéy, bahranéy","g":"baharaney,bahraney","e":"foreigner, foreign; outside, outer","c":"adj."},"def":"foreigner, outer","category":"ey-stressed-unisex"},{"entry":{"ts":1527818769,"i":2014,"p":"بېړنی","f":"beRanéy","g":"beRaney","e":"emergency","c":"adj."},"def":"emergency","category":"ey-stressed-unisex"},{"entry":{"ts":1592382613021,"i":2264,"p":"پخوانی","f":"pakhwaanéy","g":"pakhwaaney","e":"old, ancient, previous, former","c":"adj."},"def":"old, ancient, former","category":"ey-stressed-unisex"},{"entry":{"ts":1527819532,"i":2303,"p":"پردی","f":"pradéy, prudéy","g":"pradey,prudey","e":"foreign, unrelated, another('s)","c":"adj."},"def":"foreign, unrelated","category":"ey-stressed-unisex"},{"entry":{"ts":1577381894391,"i":2342,"p":"پرنګی","f":"parangéy","g":"parangey","e":"Englishman, Westerner, foreigner","c":"n. m. / adj."},"def":"Englishman, Westerner","category":"ey-stressed-unisex"},{"entry":{"ts":1527820194,"i":2515,"p":"پلانکی","f":"pulaankéy","g":"pulaankey","e":"so-and-so, such-and-such, ambiguous pronoun (فلان)","c":"adj. / n. m. unisex"},"def":"so-and-so","category":"ey-stressed-unisex"},{"entry":{"ts":1527820130,"i":2555,"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. unisex","ppp":"پلویان","ppf":"palawiyáan"},"def":"adherent","category":"ey-stressed-unisex"},{"entry":{"ts":1582390092514,"i":2711,"p":"پورتنی","f":"portinéy","g":"portiney","e":"upper, above","c":"adj."},"def":"upper, above","category":"ey-stressed-unisex"},{"entry":{"ts":1610617741649,"i":4594,"p":"ځنډنی","f":"dzanDanéy, dzanDunéy","g":"dzanDaney,dzanDuney","e":"old, ancient","c":"adj."},"def":"old, ancient","category":"ey-stressed-unisex"},{"entry":{"ts":1610793723568,"i":4958,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. unisex"},"def":"goat","category":"ey-stressed-unisex"},{"entry":{"ts":1527819362,"i":5750,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. unisex"},"def":"calf (animal)","category":"ey-stressed-unisex"},{"entry":{"ts":1590052667427,"i":6002,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. unisex"},"def":"witness","category":"ey-stressed-unisex"},{"entry":{"ts":1527822854,"i":6961,"p":"ړومبی","f":"Roombéy","g":"Roombey","e":"first, before","c":"adj."},"def":"first, before","category":"ey-stressed-unisex"},{"entry":{"ts":1527820213,"i":7102,"p":"زمری","f":"zmaréy","g":"zmarey","e":"lion","c":"n. m. unisex"},"def":"lion","category":"ey-stressed-unisex"},{"entry":{"ts":1527813923,"i":7304,"p":"ژوندی","f":"jzwundéy","g":"jzwundey","e":"living","c":"adj."},"def":"living","category":"ey-stressed-unisex"},{"entry":{"ts":1527815299,"i":7455,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. unisex"},"def":"dog","category":"ey-stressed-unisex"},{"entry":{"ts":1527820788,"i":8502,"p":"ښارنی","f":"xaaranéy","g":"xaaraney","e":"city, urban","c":"adj."},"def":"city, urban","category":"ey-stressed-unisex"},{"entry":{"ts":1527812822,"i":10395,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small","c":"adj."},"def":"little, small","category":"ey-stressed-unisex"},{"entry":{"ts":1527823742,"i":10397,"p":"کوچی","f":"kochéy","g":"kochey","e":"migratory, nomadic","c":"adj."},"def":"nomadic","category":"ey-stressed-unisex"},{"entry":{"ts":1527818765,"i":10755,"p":"ګړندی","f":"guRandéy","g":"guRandey","e":"speedy, high speed, fast, quick","c":"adj."},"def":"speedy, quick","category":"ey-stressed-unisex"},{"entry":{"ts":1527819130,"i":10787,"p":"ګلالی","f":"gUlaaléy","g":"gUlaaley","e":"pretty, beautiful, lovely, cute, sweet","c":"adj."},"def":"cute","category":"ey-stressed-unisex"},{"entry":{"ts":1576101261017,"i":10847,"p":"ګنګی","f":"gUngéy, gangéy","g":"gUngey,gangey","e":"mute, dumb (person)","c":"n. m. unisex / adj."},"def":"mute (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1582316583262,"i":11090,"p":"لاندینی","f":"laandeenéy","g":"laandeeney","e":"lower, bottom","c":"adj."},"def":"lower, bottom","category":"ey-stressed-unisex"},{"entry":{"ts":1527816249,"i":11289,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. unisex"},"def":"grandchild","category":"ey-stressed-unisex"},{"entry":{"ts":1527813472,"i":11432,"p":"لومړنی","f":"loomRanéy","g":"loomRaney","e":"first","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527813132,"i":11434,"p":"لومړی","f":"loomRéy","g":"loomRey","e":"first","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527819910,"i":11715,"p":"متلی","f":"mutléy","g":"mutley","e":"slippery, smooth","c":"adj."},"def":"slippery, smooth","category":"ey-stressed-unisex"},{"entry":{"ts":1527820414,"i":12641,"p":"منځنی","f":"mandzunéy","g":"mandzuney","e":"middle, central","c":"adj."},"def":"middle, central","category":"ey-stressed-unisex"},{"entry":{"ts":1527811202,"i":12888,"p":"میاشتنی","f":"miyaashtanéy","g":"miyaashtaney","e":"monthly","c":"adj."},"def":"monthly","category":"ey-stressed-unisex"},{"entry":{"ts":1527819320,"i":13235,"p":"نری","f":"naréy","g":"narey","e":"thin; mild; high (pitch)","c":"adj."},"def":"thin","category":"ey-stressed-unisex"},{"entry":{"ts":1527816251,"i":13438,"p":"نمسی","f":"nmaséy","g":"nmasey","e":"grandchild","c":"n. m. unisex"},"def":"grandchild","category":"ey-stressed-unisex"},{"entry":{"ts":1527821373,"i":13899,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. unisex"},"def":"deer","category":"ey-stressed-unisex"},{"entry":{"ts":1527813636,"i":14128,"p":"وروستی","f":"wroostéy","g":"wroostey","e":"last, latest, recent","c":"adj."},"def":"last","category":"ey-stressed-unisex"},{"entry":{"ts":1527815430,"i":14445,"p":"یوازنی","f":"yawaazunéy","g":"yawaazuney","e":"only, unique, sole","c":"adj."},"def":"only","category":"ey-stressed-unisex"},{"entry":{"ts":1582853867682,"i":1083,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. unisex"},"def":"resident","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813469,"i":1366,"p":"بخښونکی","f":"bakhxóonkey","g":"bakhxoonkey","e":"forgiving","c":"adj."},"def":"forgiving","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817829,"i":2718,"p":"پوروړی","f":"porwáRey, porawúRey","g":"porwaRey,porawuRey","e":"debtor, in debt","c":"n. m. unisex"},"def":"debtor","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815205,"i":2796,"p":"پیاوړی","f":"pyaawáRey","g":"pyaawaRey","e":"powerful, strong, great","c":"adj."},"def":"powerful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815924,"i":2849,"p":"پېرودونکی","f":"perodoonkey","g":"perodoonkey","e":"customer","c":"n. m. unisex"},"def":"customer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819604,"i":3341,"p":"ترینګلی","f":"treengúley","g":"treenguley","e":"tense, stern, grim, sour, moody (person)","c":"adj."},"def":"tense, stern","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813406,"i":3351,"p":"تړلی","f":"taRuley","g":"taRuley","e":"bound, tied, closed","c":"adj."},"def":"bound, tied","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815381,"i":3370,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},"def":"thirsty","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817607,"i":3784,"p":"تور مخی","f":"tormúkhey","g":"tormukhey","e":"disgraceful, shameful, dishonered","c":"adj."},"def":"disgraceful, shameful, dishonered","category":"ey-unstressed-unisex"},{"entry":{"ts":1527822859,"i":5008,"p":"څپولی","f":"tsapoley","g":"tsapoley","e":"dishevelled, messy, curly (with hair etc.)","c":"adj."},"def":"dishevelled, messy, curly (with hair etc.)","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811466,"i":5154,"p":"څېړونکی","f":"tseRoonkey","g":"tseRoonkey","e":"researcher","c":"n. m. unisex"},"def":"researcher","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812377,"i":5268,"p":"حکم منونکی","f":"hUkum munoonkey","g":"hUkummunoonkey","e":"obedient, submissive","c":"adj."},"def":"obedient, submissive","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817299,"i":5312,"p":"حیرانوونکی","f":"heyraanawoonkey","g":"heyraanawoonkey","e":"amazing, surprising","c":"adj."},"def":"amazing, surprising","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813282,"i":5485,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. unisex"},"def":"seller","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812809,"i":5654,"p":"خوار ځواکی","f":"khwaar dzwaakey","g":"khwaardzwaakey","e":"malnourished, underfed","c":"adj."},"def":"malnourished","category":"ey-unstressed-unisex"},{"entry":{"ts":1591871233587,"i":5740,"p":"خوږژبی","f":"khoGjzubey","g":"khogjzubey","e":"well-spoken","c":"adj."},"def":"well-spoken","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814118,"i":5991,"p":"دردوونکی","f":"dărdawoonkey","g":"dardawoonkey","e":"painful, hurtful, agonizing","c":"adj."},"def":"painful, agonizing","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820657,"i":6082,"p":"درېیمګړی","f":"dre`yamgúRey","g":"dreyamguRey","e":"mediator, arbitrator","c":"n. m. unisex"},"def":"mediator, arbitrator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527818179,"i":6303,"p":"دوه ګوری","f":"dwagórey","g":"dwagorey","e":"cross-eyed, blind in one eye, one eyed","c":"adj."},"def":"cross-eyed, blind in one eye, one eyed","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815713,"i":6558,"p":"راتلونکی","f":"raatloonkey","g":"raatloonkey","e":"coming, future","c":"adj."},"def":"coming, future","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812142,"i":6749,"p":"رښتنی","f":"rixtíney","g":"rixtiney","e":"truthful, true","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812161,"i":6750,"p":"رښتونی","f":"rixtóoney","g":"rixtooney","e":"truthful","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811507,"i":6756,"p":"رښتینی","f":"rixtéeney","g":"rixteeney","e":"true, truthful, righteous, good","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813758,"i":7004,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. unisex"},"def":"student","category":"ey-unstressed-unisex"},{"entry":{"ts":1577058349091,"i":7045,"p":"زړه پوری","f":"zRupoorey","g":"zRupoorey","e":"interesting, entertaining, attractive, pleasant","c":"adj."},"def":"interesting, pleasant","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817400,"i":7053,"p":"زړه سواندی","f":"zRuswaandey","g":"zRuswaandey","e":"merciful, compassionate, soft-hearted","c":"adj."},"def":"merciful, compassionate","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819587,"i":7254,"p":"ژباړونکی","f":"jzbaaRoonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. unisex"},"def":"translator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814888,"i":7275,"p":"ژغورونکی","f":"jzghoroonkey","g":"jzghoroonkey","e":"savior, saviour, rescuer","c":"n. m. unisex"},"def":"savior, saviour, rescuer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527818109,"i":7461,"p":"سپېڅلی","f":"spetsúley","g":"spetsuley","e":"absolutely or perfectly clean, uncontaminated, pure (holy, magnificent – سپيڅلي??)","c":"adj."},"def":"pure, holy, magnificent","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811338,"i":7473,"p":"سپین زړی","f":"speenzuRey","g":"speenzuRey","e":"sincere hearted, candid, trusting","c":"adj."},"def":"sincere hearted, trusting","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815306,"i":7510,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},"def":"tired","category":"ey-unstressed-unisex"},{"entry":{"ts":1527822745,"i":7552,"p":"سټکوری","f":"suTkóorey","g":"suTkoorey","e":"burned, charred; wrinkling, puckering; seared, scorched; frozen stiff with cold; withered","c":"adj."},"def":"burned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817442,"i":7575,"p":"سخت زړی","f":"sakhtzúRey","g":"sakhtzuRey","e":"heard-hearted, cruel, heartless, callous","c":"adj."},"def":"heard-hearted","category":"ey-unstressed-unisex"},{"entry":{"ts":1527816932,"i":7632,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. unisex"},"def":"soldier","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820170,"i":7855,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. unisex"},"def":"singer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819964,"i":7911,"p":"سوځېدونکی","f":"swadzedoonkey","g":"swadzedoonkey","e":"burning","c":"adj."},"def":"burning","category":"ey-unstressed-unisex"},{"entry":{"ts":1527821951,"i":8006,"p":"سوی","f":"súwey","g":"suwey","e":"burned","c":"adj."},"def":"burned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812779,"i":8540,"p":"ښکلی","f":"xkÚley","g":"xkUley","e":"beautiful","c":"adj."},"def":"beautiful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812806,"i":8568,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. unisex"},"def":"teacher","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811350,"i":9150,"p":"غلی","f":"ghúley","g":"ghuley","e":"quiet, silent","c":"adj."},"def":"quiet, silent","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819637,"i":9773,"p":"کارکوونکی","f":"kaarkawoonkey","g":"kaarkawoonkey","e":"worker","c":"n. m. unisex"},"def":"worker","category":"ey-unstressed-unisex"},{"entry":{"ts":1527818613,"i":10263,"p":"کمزوری","f":"kamzórey","g":"kamzorey","e":"weak, feeble, frail, faint, poor","c":"adj."},"def":"weak","category":"ey-unstressed-unisex"},{"entry":{"ts":1595516629483,"i":10341,"p":"کڼوونکی","f":"kaNawóonkey","g":"kaNawoonkey","e":"deafening","c":"adj.","l":1578770339559},"def":"deafening","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820661,"i":12965,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. unisex"},"def":"mediator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814047,"i":13558,"p":"نوموړی","f":"noomwáRey","g":"noomwaRey","e":"aforesaid, above-mentioned","c":"adj."},"def":"aforesaid, above-mentioned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813822,"i":13568,"p":"نوی","f":"núwey","g":"nuwey","e":"new","c":"adj."},"def":"new","category":"ey-unstressed-unisex"},{"entry":{"ts":1586453720908,"i":13703,"p":"هڅوونکی","f":"hatsawoonkey","g":"hatsawoonkey","e":"encouraging / encourager","c":"adj."},"def":"encouraging","category":"ey-unstressed-unisex"},{"entry":{"ts":1588163180700,"i":13942,"p":"هېښوونکی","f":"hexawóonkey","g":"hexawoonkey","e":"stunning, shocking, perplexing, amazing","c":"adj."},"def":"stunning, amazing","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823715,"i":14155,"p":"وړکوټی","f":"waRkóTey","g":"waRkoTey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823714,"i":14156,"p":"وړکی","f":"waRÚkey","g":"waRUkey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815403,"i":14161,"p":"وړوکی","f":"waRóokey","g":"waRookey","e":"little, small","c":"adj."},"def":"little, small","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813916,"i":14185,"p":"وژونکی","f":"wajzóonkey","g":"wajzoonkey","e":"killing, lethal, deadly","c":"adj."},"def":"lethal, deadly","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815424,"i":14194,"p":"وږی","f":"wúGey","g":"wugey","e":"hungry","c":"adj."},"def":"hungry","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823713,"i":14308,"p":"ووړکی","f":"wóRkey","g":"woRkey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527816455,"i":14352,"p":"وېشلی","f":"weshúley","g":"weshuley","e":"separated, divided","c":"adj."},"def":"separated, divided","category":"ey-unstressed-unisex"},{"entry":{"ts":1527816778,"i":1070,"p":"اوږد","f":"ooGd, ooGud","g":"oogd,oogud","e":"long","c":"adj.","infap":"اوږده","infaf":"ooGdu","infbp":"اوږد","infbf":"ooGd"},"def":"long","category":"short-irreg-unisex"},{"entry":{"ts":1527822706,"i":1104,"p":"اوم","f":"oom","g":"oom","e":"raw, uncooked; blunt, crude; unripe, immature, not fully developed","c":"adj.","infap":"اومه","infaf":"oomu","infbp":"اوم","infbf":"oom"},"def":"raw, unripe, immature","category":"short-irreg-unisex"},{"entry":{"ts":1527812802,"i":5457,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},"def":"donkey","category":"short-irreg-unisex"},{"entry":{"ts":1527813293,"i":7926,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},"def":"red, hot","category":"short-irreg-unisex"},{"entry":{"ts":1527815265,"i":8482,"p":"شین","f":"sheen","g":"sheen","e":"green, blue; unripe, immature","c":"adj. irreg.","infap":"شنه","infaf":"shnu","infbp":"شن","infbf":"shn"},"def":"green, blue","category":"short-irreg-unisex"},{"entry":{"ts":1527812796,"i":8554,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj. irreg.","infap":"ښه","infaf":"xu","infbp":"ښ","infbf":"x"},"def":"good","category":"short-irreg-unisex"},{"entry":{"ts":1527812624,"i":9125,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},"def":"thief","category":"short-irreg-unisex"},{"entry":{"ts":1527815087,"i":12088,"p":"مړ","f":"muR","g":"muR","e":"dead","c":"adj.","infap":"مړه","infaf":"mRu","infbp":"مړ","infbf":"mR"},"def":"dead","category":"short-irreg-unisex"},{"entry":{"ts":1527814151,"i":12512,"p":"مل","f":"mal","g":"mal","e":"companion, associate, friend; accompanying, being with","c":"n. m. unisex / adj.","infap":"مله","infaf":"mlu","infbp":"مل","infbf":"ml"},"def":"companion, friend","category":"short-irreg-unisex"},{"entry":{"ts":1527813580,"i":14435,"p":"یو","f":"yo","g":"yo","e":"one","c":"num. / n. m. irreg. unisex","infap":"یوه","infaf":"yawu","infbp":"یو","infbf":"yaw"},"def":"one","category":"short-irreg-unisex"},{"entry":{"ts":1527819345,"i":2457,"p":"پسه","f":"psu","g":"psu","e":"sheep, ram","c":"n. m.","ppp":"پسونه","ppf":"pusoona"},"def":"sheep, ram","category":"u-masc"},{"entry":{"ts":1527822173,"i":4218,"p":"جاړه","f":"jaaRú","g":"jaaRu","e":"bush, shrub","c":"n. m."},"def":"bush, shrub","category":"u-masc"},{"entry":{"ts":1527813508,"i":7042,"p":"زړه","f":"zRu","g":"zRu","e":"heart","c":"n. m.","ppp":"زړونه","ppf":"zRoona"},"def":"heart","category":"u-masc"},{"entry":{"ts":1588857967561,"i":9192,"p":"غوایه","f":"ghwaayú","g":"ghwaayu","e":"bull","c":"n. m."},"def":"bull","category":"u-masc"},{"entry":{"ts":1527817108,"i":9757,"p":"کاته","f":"kaatu","g":"kaatu","e":"look, gaze, examination, inspection, spying","c":"n. m."},"def":"look, gaze, examination, inspection, spying","category":"u-masc"},{"entry":{"ts":1527817768,"i":9776,"p":"کارګه","f":"kaargu","g":"kaargu","e":"raven, crow","c":"n. m."},"def":"raven, crow","category":"u-masc"},{"entry":{"ts":1527819245,"i":10418,"p":"کوربانه","f":"korbaanú","g":"korbaanu","e":"master of house, head of family, married man","c":"n. m."},"def":"master of house, head of family, married man","category":"u-masc"},{"entry":{"ts":1527818516,"i":11265,"p":"لمبېده","f":"lambedú","g":"lambedu","e":"swimming, bathing","c":"n. m."},"def":"swimming, bathing","category":"u-masc"},{"entry":{"ts":1527813986,"i":11271,"p":"لمر پرېواته","f":"lmarprewaatu","g":"lmarprewaatu","e":"sunset, west","c":"n. m."},"def":"sunset, west","category":"u-masc"},{"entry":{"ts":1527813992,"i":11277,"p":"لمر لوېده","f":"lmarlwedu","g":"lmarlwedu","e":"sunset","c":"n. m."},"def":"sunset","category":"u-masc"},{"entry":{"ts":1527813987,"i":11279,"p":"لمرخاته","f":"lmarkhaatu","g":"lmarkhaatu","e":"sunrise, east","c":"n. m."},"def":"sunrise, east","category":"u-masc"},{"entry":{"ts":1527818255,"i":11521,"p":"لېوه","f":"lewú","g":"lewu","e":"wolf, wild dog","c":"n. m.","ppp":"لېوان","ppf":"lewáan"},"def":"wolf, wild dog","category":"u-masc"},{"entry":{"ts":1527821522,"i":12084,"p":"مریه","f":"mrayú","g":"mrayu","e":"slave, servant","c":"n. m."},"def":"slave, servant","category":"u-masc"},{"entry":{"ts":1527812911,"i":12926,"p":"مېړه","f":"meRu","g":"meRu","e":"husband, brave","c":"n. m.","ppp":"مېړونه","ppf":"meRoona"},"def":"husband, brave","category":"u-masc"},{"entry":{"ts":1527811626,"i":13417,"p":"نکېده","f":"nukedu","g":"nukedu","e":"impracticability, impossibility, improbability","c":"n. m."},"def":"impracticability, impossibility, improbability","category":"u-masc"},{"entry":{"ts":1527816410,"i":13619,"p":"نیکه","f":"neekú","g":"neeku","e":"grandfather, grandpa","c":"n. m."},"def":"grandfather, grandpa","category":"u-masc"},{"entry":{"ts":1527822420,"i":14002,"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."},"def":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","category":"u-masc"},{"entry":{"ts":1527816357,"i":14062,"p":"وراره","f":"wraaru","g":"wraaru","e":"nephew, brother's son","c":"n. m.","ppp":"وریرونه","ppf":"wreeroona"},"def":"nephew, brother's son","category":"u-masc"},{"entry":{"ts":1527823225,"i":14279,"p":"وله","f":"wUlú","g":"wUlu","e":"flock, herd, drove","c":"n. m."},"def":"flock, herd, drove","category":"u-masc"},{"entry":{"ts":1527814789,"i":14355,"p":"وېښته","f":"wextu","g":"wextu","e":"hair","c":"n. m."},"def":"hair","category":"u-masc"},{"entry":{"ts":1527815394,"i":13965,"p":"واده","f":"waadu","g":"waadu","e":"wedding, marriage; married","c":"n. m. / adj."},"def":"wedding","category":"u-masc"},{"entry":{"ts":1527818017,"i":177,"p":"اټۍ","f":"aTuy","g":"aTuy","e":"store, shop","c":"n. f."},"def":"store, shop","category":"uy-fem"},{"entry":{"ts":1527812694,"i":903,"p":"انجنۍ","f":"injUnuy","g":"injUnuy","e":"girl","c":"n. f."},"def":"girl","category":"uy-fem"},{"entry":{"ts":1527815140,"i":1107,"p":"اونۍ","f":"onuy, ownuy, owunuy","g":"onuy,ownuy,owunuy","e":"week","c":"n. f."},"def":"week","category":"uy-fem"},{"entry":{"ts":1566476931206,"i":1331,"p":"بتۍ","f":"batúy","g":"batuy","e":"lamp, light","c":"n. f."},"def":"lamp, light","category":"uy-fem"},{"entry":{"ts":1527822192,"i":1336,"p":"بټۍ","f":"baTúy","g":"baTuy","e":"stove, oven, furnace","c":"n. f."},"def":"stove, oven, furnace","category":"uy-fem"},{"entry":{"ts":1527820828,"i":1352,"p":"بچۍ","f":"bachúy","g":"bachuy","e":"daughter, girl","c":"n. f."},"def":"daughter, girl","category":"uy-fem"},{"entry":{"ts":1527822974,"i":1663,"p":"بګۍ","f":"bagúy","g":"baguy","e":"cart, buggy, stroller","c":"n. f."},"def":"cart, buggy, stroller","category":"uy-fem"},{"entry":{"ts":1591805634565,"i":2749,"p":"پوښتۍ","f":"pooxtúy","g":"pooxtuy","e":"rib","c":"n. f."},"def":"rib","category":"uy-fem"},{"entry":{"ts":1586276322639,"i":4085,"p":"ټوپۍ","f":"Topuy","g":"Topuy","e":"hat, cap","c":"n. f."},"def":"hat, cap","category":"uy-fem"},{"entry":{"ts":1527820058,"i":4086,"p":"ټوټکۍ","f":"ToTakúy","g":"ToTakuy","e":"kneecap, patella","c":"n. f."},"def":"kneecap, patella","category":"uy-fem"},{"entry":{"ts":1527812564,"i":6465,"p":"ډوډۍ","f":"DoDuy","g":"DoDuy","e":"bread, food, meal","c":"n. f."},"def":"bread, food, meal","category":"uy-fem"},{"entry":{"ts":1527821555,"i":7308,"p":"ژۍ","f":"jzuy","g":"jzuy","e":"edge, verge, side","c":"n. f."},"def":"edge, verge, side","category":"uy-fem"},{"entry":{"ts":1527814788,"i":7454,"p":"سپوږمۍ","f":"spoGmuy","g":"spogmuy","e":"moon","c":"n. f."},"def":"moon","category":"uy-fem"},{"entry":{"ts":1527820120,"i":9310,"p":"غونډۍ","f":"ghwunDúy","g":"ghwunDuy","e":"hill, hillrock, mound","c":"n. f."},"def":"hill, hillrock, mound","category":"uy-fem"},{"entry":{"ts":1527814203,"i":9986,"p":"کرسۍ","f":"kUrsuy","g":"kUrsuy","e":"chair, seat, stool","c":"n. f."},"def":"chair, seat, stool","category":"uy-fem"},{"entry":{"ts":1527812045,"i":10059,"p":"کړکۍ","f":"kuRkúy","g":"kuRkuy","e":"window","c":"n. f."},"def":"window","category":"uy-fem"},{"entry":{"ts":1527816026,"i":10092,"p":"کړۍ","f":"kaRuy","g":"kaRuy","e":"ring, curl; handcuffs, link, chain, fetter; loom; department, section","c":"n. f."},"def":"ring, curl; handcuffs, link, chain; loom; department, section","category":"uy-fem"},{"entry":{"ts":1527813870,"i":10123,"p":"کشتۍ","f":"kishtúy","g":"kishtuy","e":"boat, ship","c":"n. f."},"def":"boat, ship","category":"uy-fem"},{"entry":{"ts":1527821895,"i":10903,"p":"ګوډۍ","f":"gooDúy","g":"gooDuy","e":"doll","c":"n. f."},"def":"doll","category":"uy-fem"},{"entry":{"ts":1527814564,"i":10944,"p":"ګولۍ","f":"golúy","g":"goluy","e":"pill tablet; bullet","c":"n. f."},"def":"pill tablet; bullet","category":"uy-fem"},{"entry":{"ts":1527811763,"i":11239,"p":"لکۍ","f":"lakuy","g":"lakuy","e":"tail","c":"n. f."},"def":"tail","category":"uy-fem"},{"entry":{"ts":1527812659,"i":13776,"p":"هګۍ","f":"haguy","g":"haguy","e":"egg","c":"n. f."},"def":"egg","category":"uy-fem"},{"entry":{"ts":1527821372,"i":13900,"p":"هوسۍ","f":"hosúy","g":"hosuy","e":"gazelle, antelope","c":"n. f."},"def":"gazelle, antelope","category":"uy-fem"},{"entry":{"ts":1527815154,"i":2184,"p":"پای","f":"paay","g":"paay","e":"end, finish, close, conclusion","c":"n. m."},"def":"end, finish, close, conclusion","category":"y-masc"},{"entry":{"ts":1527812594,"i":4543,"p":"ځای","f":"dzaay","g":"dzaay","e":"place, space","c":"n. m."},"def":"place, space","category":"y-masc"},{"entry":{"ts":1527812525,"i":4688,"p":"چای","f":"chaay","g":"chaay","e":"tea","c":"n. m."},"def":"tea","category":"y-masc"},{"entry":{"ts":1527812783,"i":5445,"p":"خدای","f":"khUdaay","g":"khUdaay","e":"God, Lord","c":"n. m."},"def":"God, Lord","category":"y-masc"},{"entry":{"ts":1527819514,"i":5938,"p":"دای","f":"daay","g":"daay","e":"tier, row, foundation (masonry etc.)","c":"n. m."},"def":"tier, row, foundation (masonry etc.)","category":"y-masc"},{"entry":{"ts":1610797797756,"i":7383,"p":"سای","f":"saay","g":"saay","e":"hollow, depression","c":"n. m."},"def":"hollow, depression","category":"y-masc"},{"entry":{"ts":1527822345,"i":7611,"p":"سرای","f":"saráay","g":"saraay","e":"caravansary, inn, large house","c":"n. m."},"def":"caravansary, inn, large house","category":"y-masc"},{"entry":{"ts":1586598425514,"i":1846,"p":"بوی","f":"booy","g":"booy","e":"smell","c":"n. m."},"def":"smell","category":"y-masc"},{"entry":{"ts":1527814511,"i":5806,"p":"خوی","f":"khooy","g":"khooy","e":"character, nature, disposition, habit","c":"n. m."},"def":"character, nature, disposition, habit","category":"y-masc"},{"entry":{"ts":1566468540788,"i":8008,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. unisex"},"def":"rabbit","category":"y-masc"}]; +export default nounsAdjs; \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index c8ebbd7..76e95bd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1348,6 +1348,18 @@ resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== +"@emotion/is-prop-valid@^0.7.3": + version "0.7.3" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.7.3.tgz#a6bf4fa5387cbba59d44e698a4680f481a8da6cc" + integrity sha512-uxJqm/sqwXw3YPA5GXX365OBcJGFtxUVkB6WyezqFHlNe9jqUWH5ur2O2M8dGBz61kn1g3ZBlzUunFQXQIClhA== + dependencies: + "@emotion/memoize" "0.7.1" + +"@emotion/memoize@0.7.1": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.1.tgz#e93c13942592cf5ef01aa8297444dc192beee52f" + integrity sha512-Qv4LTqO11jepd5Qmlp3M1YEjBumoTHcHFdgPTQ+sFlIL5myi/7xu/POwP7IRu6odBdmLXdtIs1D6TuW6kbwbbg== + "@fortawesome/fontawesome-free@^5.15.2": version "5.15.2" resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.2.tgz#218cd7276ab4f9ab57cc3d2efa2697e6a579f25d" @@ -1625,6 +1637,22 @@ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@popmotion/easing@^1.0.1": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@popmotion/easing/-/easing-1.0.2.tgz#17d925c45b4bf44189e5a38038d149df42d8c0b4" + integrity sha512-IkdW0TNmRnWTeWI7aGQIVDbKXPWHVEYdGgd5ZR4SH/Ty/61p63jCjrPxX1XrR7IGkl08bjhJROStD7j+RKgoIw== + +"@popmotion/popcorn@^0.4.4": + version "0.4.4" + resolved "https://registry.yarnpkg.com/@popmotion/popcorn/-/popcorn-0.4.4.tgz#a5f906fccdff84526e3fcb892712d7d8a98d6adc" + integrity sha512-jYO/8319fKoNLMlY4ZJPiPu8Ea8occYwRZhxpaNn/kZsK4QG2E7XFlXZMJBsTWDw7I1i0uaqyC4zn1nwEezLzg== + dependencies: + "@popmotion/easing" "^1.0.1" + framesync "^4.0.1" + hey-listen "^1.0.8" + style-value-types "^3.1.7" + tslib "^1.10.0" + "@popperjs/core@^2.5.3": version "2.9.1" resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.1.tgz#7f554e7368c9ab679a11f4a042ca17149d70cf12" @@ -1878,6 +1906,11 @@ dependencies: "@types/unist" "*" +"@types/invariant@^2.2.29": + version "2.2.35" + resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be" + integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg== + "@types/invariant@^2.2.33": version "2.2.34" resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.34.tgz#05e4f79f465c2007884374d4795452f995720bbe" @@ -1945,6 +1978,11 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-13.9.2.tgz#ace1880c03594cc3e80206d96847157d8e7fa349" integrity sha512-bnoqK579sAYrQbp73wwglccjJ4sfRdKU7WNEZ5FW4K2U6Kc0/eZ5kvXG0JKsEKFB50zrFmfFt52/cvBbZa7eXg== +"@types/node@^10.0.5": + version "10.17.60" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" + integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== + "@types/node@^14.14.35": version "14.14.35" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" @@ -4806,6 +4844,11 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== +estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" @@ -5118,7 +5161,7 @@ find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-cache-dir@^3.3.1: +find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== @@ -5248,6 +5291,13 @@ fragment-cache@^0.2.1: dependencies: map-cache "^0.2.2" +framesync@^4.0.0, framesync@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/framesync/-/framesync-4.1.0.tgz#69a8db3ca432dc70d6a76ba882684a1497ef068a" + integrity sha512-MmgZ4wCoeVxNbx2xp5hN/zPDCbLSKiDt4BbbslK7j/pM2lg5S0vhTNv1v8BCVb99JPIo6hXBFdwzU7Q4qcAaoQ== + dependencies: + hey-listen "^1.0.5" + fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" @@ -5261,6 +5311,15 @@ from2@^2.1.0: inherits "^2.0.1" readable-stream "^2.0.0" +fs-extra@8.1.0, fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + fs-extra@^4.0.2: version "4.0.3" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" @@ -5279,15 +5338,6 @@ fs-extra@^7.0.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -5683,6 +5733,11 @@ hex-color-regex@^1.1.0: resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== +hey-listen@^1.0.5, hey-listen@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68" + integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q== + history@^4.9.0: version "4.10.1" resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" @@ -7355,6 +7410,11 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3 dependencies: js-tokens "^3.0.0 || ^4.0.0" +lottie-web@^5.5.7: + version "5.7.13" + resolved "https://registry.yarnpkg.com/lottie-web/-/lottie-web-5.7.13.tgz#c4087e4742c485fc2c4034adad65d1f3fcd438b0" + integrity sha512-6iy93BGPkdk39b0jRgJ8Zosxi8QqcMP5XcDvg1f0XAvEkke6EMCl6BUO4Lu78dpgvfG2tzut4QJ+0vCrfbrldQ== + lower-case-first@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" @@ -8661,6 +8721,32 @@ pnp-webpack-plugin@1.6.4: dependencies: ts-pnp "^1.1.6" +popmotion-pose@^3.4.10: + version "3.4.11" + resolved "https://registry.yarnpkg.com/popmotion-pose/-/popmotion-pose-3.4.11.tgz#be9d89dda2051566ff28ecd9fafea2ea4af74436" + integrity sha512-KjaevePyC1+Q3ylIcBO3YMhCouE1a/3bvtBXThrwz44fw1yXCUQagPJGkGirXI/J1xF+w3Lx3bpkkgwArizpEQ== + dependencies: + "@popmotion/easing" "^1.0.1" + hey-listen "^1.0.5" + popmotion "^8.7.1" + pose-core "^2.1.1" + style-value-types "^3.0.6" + ts-essentials "^1.0.3" + tslib "^1.10.0" + +popmotion@^8.7.1: + version "8.7.6" + resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-8.7.6.tgz#0f6aa461bdcbcdbf24cb70afb054e91cb39eccb3" + integrity sha512-gzU0mRAik8FIEOP4Nk5yqYptJIvHLoq/IRU+rANmKjDZ7tynAivYQ9cIJAxVaoS9h0zfXvN0cFBAg93ncmHHkA== + dependencies: + "@popmotion/easing" "^1.0.1" + "@popmotion/popcorn" "^0.4.4" + framesync "^4.0.0" + hey-listen "^1.0.5" + style-value-types "^3.1.7" + stylefire "^7.0.1" + tslib "^1.10.0" + portfinder@^1.0.26: version "1.0.28" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" @@ -8670,6 +8756,18 @@ portfinder@^1.0.26: debug "^3.1.1" mkdirp "^0.5.5" +pose-core@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pose-core/-/pose-core-2.1.1.tgz#53d9f961c73d73f5017f58e955bf7b5a52a1ccc9" + integrity sha512-fV1sDfu80debHmKerikypqGoORMEUHVwGh/BlWnqUSmmzQGYIg8neDrdwe66hFeRO+adr2qS4ZERSu/ZVjOiSQ== + dependencies: + "@types/invariant" "^2.2.29" + "@types/node" "^10.0.5" + hey-listen "^1.0.5" + rollup-plugin-typescript2 "^0.25.2" + tslib "^1.10.0" + typescript "^3.7.2" + posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" @@ -9651,6 +9749,13 @@ react-bootstrap@^1.5.2: uncontrollable "^7.2.1" warning "^4.0.3" +react-countdown-circle-timer@^2.5.4: + version "2.5.4" + resolved "https://registry.yarnpkg.com/react-countdown-circle-timer/-/react-countdown-circle-timer-2.5.4.tgz#95cb58e5e734deffd9087a13279d8924463cc239" + integrity sha512-nKGlpS6UzfWI+k66ZVYAjcZZbZeCJuB1Xkcdci+6De1KghHfs5IwjMCdAAcZP1n1m3+tyuhLF+GVB8FRmh27RQ== + dependencies: + use-elapsed-time "2.1.8" + react-dev-utils@^10.2.1: version "10.2.1" resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-10.2.1.tgz#f6de325ae25fa4d546d09df4bb1befdc6dd19c19" @@ -9729,6 +9834,24 @@ react-overlays@^5.0.0: uncontrollable "^7.0.0" warning "^4.0.3" +react-pose@^4.0.8: + version "4.0.10" + resolved "https://registry.yarnpkg.com/react-pose/-/react-pose-4.0.10.tgz#fde1c6c388ec210f7099dfe2b8dd2f89a75db7d0" + integrity sha512-OKc5oqKw+nL9FvIokxn8MmaAmkNsWv64hLX9xWWcMWXSgEo745hzYUqDn2viMJ97mf76oPy6Vc+BS4k6Kwj78g== + dependencies: + "@emotion/is-prop-valid" "^0.7.3" + hey-listen "^1.0.5" + popmotion-pose "^3.4.10" + tslib "^1.10.0" + +react-rewards@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/react-rewards/-/react-rewards-1.1.2.tgz#0bc3a429cbba5c018a3cddcc3b7803e76ea31181" + integrity sha512-PaMv6m5slvjJjkuRLMyN/0cmMQ63OXyVnh1R3jUgZRgtePbfJZNtGgSKBjYjesSeSmRUV1P+o0scQhTOulLoEg== + dependencies: + lottie-web "^5.5.7" + react-pose "^4.0.8" + react-router-dom@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.2.0.tgz#9e65a4d0c45e13289e66c7b17c7e175d0ea15662" @@ -10307,6 +10430,13 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= +resolve@1.12.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" + integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== + dependencies: + path-parse "^1.0.6" + resolve@1.15.0: version "1.15.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5" @@ -10384,6 +10514,24 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +rollup-plugin-typescript2@^0.25.2: + version "0.25.3" + resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.25.3.tgz#a5fb2f0f85488789334ce540abe6c7011cbdf40f" + integrity sha512-ADkSaidKBovJmf5VBnZBZe+WzaZwofuvYdzGAKTN/J4hN7QJCFYAq7IrH9caxlru6T5qhX41PNFS1S4HqhsGQg== + dependencies: + find-cache-dir "^3.0.0" + fs-extra "8.1.0" + resolve "1.12.0" + rollup-pluginutils "2.8.1" + tslib "1.10.0" + +rollup-pluginutils@2.8.1: + version "2.8.1" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97" + integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg== + dependencies: + estree-walker "^0.6.1" + rsvp@^4.8.4: version "4.8.5" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" @@ -11182,6 +11330,25 @@ style-to-object@0.3.0, style-to-object@^0.3.0: dependencies: inline-style-parser "0.1.1" +style-value-types@^3.0.6, style-value-types@^3.1.7: + version "3.2.0" + resolved "https://registry.yarnpkg.com/style-value-types/-/style-value-types-3.2.0.tgz#eb89cab1340823fa7876f3e289d29d99c92111bb" + integrity sha512-ih0mGsrYYmVvdDi++/66O6BaQPRPRMQHoZevNNdMMcPlP/cH28Rnfsqf1UEba/Bwfuw9T8BmIMwbGdzsPwQKrQ== + dependencies: + hey-listen "^1.0.8" + tslib "^1.10.0" + +stylefire@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/stylefire/-/stylefire-7.0.3.tgz#9120ecbb084111788e0ddaa04074799750f20d1d" + integrity sha512-Q0l7NSeFz/OkX+o6/7Zg3VZxSAZeQzQpYomWmIpOehFM/rJNMSLVX5fgg6Q48ut2ETNKwdhm97mPNU643EBCoQ== + dependencies: + "@popmotion/popcorn" "^0.4.4" + framesync "^4.0.0" + hey-listen "^1.0.8" + style-value-types "^3.1.7" + tslib "^1.10.0" + stylehacks@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" @@ -11494,11 +11661,21 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== +ts-essentials@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-1.0.4.tgz#ce3b5dade5f5d97cf69889c11bf7d2da8555b15a" + integrity sha512-q3N1xS4vZpRouhYHDPwO0bDW3EZ6SK9CrrDHxi/D6BPReSjpVgWIOpLS2o0gSBZm+7q/wyKp6RVM1AeeW7uyfQ== + ts-pnp@1.1.6, ts-pnp@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.6.tgz#389a24396d425a0d3162e96d2b4638900fdc289a" integrity sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ== +tslib@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== + tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: version "1.11.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" @@ -11568,6 +11745,11 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= +typescript@^3.7.2: + version "3.9.10" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" + integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== + typescript@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3" @@ -11889,6 +12071,11 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" +use-elapsed-time@2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/use-elapsed-time/-/use-elapsed-time-2.1.8.tgz#3c830ae730e2bc204f2294b66be15580f0016ea5" + integrity sha512-lNLTDffKHdHWweQNvnch9tFI2eRP3tXccSLrwE7U6xrfyWFNEgNQZWWsGhQvtwKa0kJ6L+7E5wKbi3jg86opjg== + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"