diff --git a/src/global.d.ts b/src/global.d.ts new file mode 100644 index 00000000..0ddde2e1 --- /dev/null +++ b/src/global.d.ts @@ -0,0 +1,19 @@ +import {cloneDeep} from "lodash-es" + +export {} + +declare global { + interface Console { + json(v: any): void + } + + interface Console { + parse(v: any): void + } +} +console.json = function (v: any) { + console.log(cloneDeep(v)) +} +console.parse = function (v: any) { + console.log(JSON.parse(v)) +} diff --git a/src/main.ts b/src/main.ts index c881570c..f870b895 100644 --- a/src/main.ts +++ b/src/main.ts @@ -9,6 +9,7 @@ import router from "@/router.ts"; import VueVirtualScroller from 'vue-virtual-scroller' import 'vue-virtual-scroller/dist/vue-virtual-scroller.css' import 'virtual:uno.css'; +import './global.d.ts' const i18n = createI18n({ locale: 'zh-CN', diff --git a/src/pages/pc/word/DictDetail.vue b/src/pages/pc/word/DictDetail.vue index 6a94dd6c..b12295ff 100644 --- a/src/pages/pc/word/DictDetail.vue +++ b/src/pages/pc/word/DictDetail.vue @@ -17,7 +17,7 @@ import BaseButton from "@/components/BaseButton.vue"; import {useRoute, useRouter} from "vue-router"; import {useBaseStore} from "@/stores/base.ts"; import EditBook from "@/pages/pc/article/components/EditBook.vue"; -import {_getDictDataByUrl, _nextTick} from "@/utils"; +import {_getDictDataByUrl, _nextTick, convertToWord} from "@/utils"; import {emitter, EventKey} from "@/utils/eventBus.ts"; const runtimeStore = useRuntimeStore() @@ -60,114 +60,6 @@ const wordRules = reactive({ ], }) -//从字符串里面转换为Word格式 -function convertToWord(raw) { - const safeString = (str) => (typeof str === 'string' ? str.trim() : ''); - const safeSplit = (str, sep) => - safeString(str) ? safeString(str).split(sep).filter(Boolean) : []; - - // 1. trans - const trans = safeSplit(raw.trans, '\n').map(line => { - const match = line.match(/^([^\s.]+\.?)\s*(.*)$/); - if (match) { - let pos = safeString(match[1]); - let cn = safeString(match[2]); - - // 如果 pos 不是常规词性(不以字母开头),例如 "【名】" - if (!/^[a-zA-Z]+\.?$/.test(pos)) { - cn = safeString(line); // 整行放到 cn - pos = ''; // pos 置空 - } - - return {pos, cn}; - } - return {pos: '', cn: safeString(line)}; - }); - - // 2. sentences - const sentences = safeSplit(raw.sentences, '\n\n').map(block => { - const [c, cn] = block.split('\n'); - return {c: safeString(c), cn: safeString(cn)}; - }); - - // 3. phrases - const phrases = safeSplit(raw.phrases, '\n\n').map(block => { - const [c, cn] = block.split('\n'); - return {c: safeString(c), cn: safeString(cn)}; - }); - - // 4. synos - const synos = safeSplit(raw.synos, '\n\n').map(block => { - const lines = block.split('\n').map(safeString); - const [posCn, wsStr] = lines; - let pos = ''; - let cn = ''; - - if (posCn) { - const posMatch = posCn.match(/^([a-zA-Z.]+)(.*)$/); - pos = posMatch ? safeString(posMatch[1]) : ''; - cn = posMatch ? safeString(posMatch[2]) : safeString(posCn); - } - const ws = wsStr ? wsStr.split('/').map(safeString) : []; - - return {pos, cn, ws}; - }); - - // 5. relWords - const relWordsText = safeString(raw.relWords); - let root = ''; - const rels = []; - - if (relWordsText) { - const relLines = relWordsText.split('\n').filter(Boolean); - if (relLines.length > 0) { - root = safeString(relLines[0].replace(/^词根:/, '')); - let currentPos = ''; - let currentWords = []; - - for (let i = 1; i < relLines.length; i++) { - const line = relLines[i].trim(); - if (!line) continue; - - if (/^[a-z]+\./i.test(line)) { - if (currentPos && currentWords.length > 0) { - rels.push({pos: currentPos, words: currentWords}); - } - currentPos = safeString(line.replace(':', '')); - currentWords = []; - } else if (line.includes(':')) { - const [c, cn] = line.split(':'); - currentWords.push({c: safeString(c), cn: safeString(cn)}); - } - } - if (currentPos && currentWords.length > 0) { - rels.push({pos: currentPos, words: currentWords}); - } - } - } - - // 6. etymology - const etymology = safeSplit(raw.etymology, '\n\n').map(block => { - const lines = block.split('\n').map(safeString); - const t = lines.shift() || ''; - const d = lines.join('\n').trim(); - return {t, d}; - }); - - return getDefaultWord({ - id: raw.id, - word: safeString(raw.word), - phonetic0: safeString(raw.phonetic0), - phonetic1: safeString(raw.phonetic1), - trans, - sentences, - phrases, - synos, - relWords: {root, rels}, - etymology, - custom: true - }); -} function syncDictInMyStudyList(study = false) { _nextTick(() => { diff --git a/src/pages/test/data.json b/src/pages/test/data.json index 9cb26502..cbb34f6a 100644 --- a/src/pages/test/data.json +++ b/src/pages/test/data.json @@ -1,115326 +1 @@ -{ - "val": { - "myDictList": [ - { - "id": "collect", - "name": "收藏", - "description": "", - "sort": 0, - "originWords": [ - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - }, - { - "name": "govern", - "trans": [ - "vt.统治,管理,治理,支配(词或短语的形式或用法)", - "vi.控制,支配,操纵" - ], - "usphone": "ˈgʌvərn", - "ukphone": "ˈgʌvn", - "id": "WKgenr", - "checked": false - }, - { - "name": "analyse", - "trans": [ - "vt.分析,分解,细察na.“analyze”的变体" - ], - "usphone": "ˈænəˌlaɪz", - "ukphone": "ˈænəlaɪz", - "id": "XJKM6n", - "checked": false - }, - { - "name": "discourage", - "trans": [ - "vt.使气馁,使沮丧,阻碍,劝阻" - ], - "usphone": "dɪsˈkɜ:rɪdʒ", - "ukphone": "dɪsˈkʌrɪdʒ", - "id": "bZ8CsM", - "checked": false - }, - { - "name": "resemble", - "trans": [ - "vt.与…相像,类似于" - ], - "usphone": "rɪˈzɛmbəl", - "ukphone": "rɪˈzembl", - "id": "LUkzNc", - "checked": false - }, - { - "name": "remote", - "trans": [ - "adj.(时间上)遥远的,远离的,远程的,微小的", - "n.远程操作,遥控器", - "vt.使…向远方延伸,把…延展到远处" - ], - "usphone": "rɪˈmoʊt", - "ukphone": "rɪˈməʊt", - "id": "VSmPzX", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n.薪水,薪金,薪俸", - "vt.给…加薪,给…薪水,发…薪水,付…薪水" - ], - "usphone": "ˈsælri", - "ukphone": "ˈsæləri", - "id": "kBXagB", - "checked": false - }, - { - "name": "pollution", - "trans": [ - "n.污染(作用),腐败,堕落,沾污" - ], - "usphone": "pəˈluʃən", - "ukphone": "pəˈlu:ʃn", - "id": "I2blza", - "checked": false - }, - { - "name": "pretend", - "trans": [ - "vt.假装,伪装,假称,装扮", - "vi.扮演,自称,假装,矫作", - "adj.仿制的" - ], - "usphone": "prɪˈtɛnd", - "ukphone": "prɪˈtend", - "id": "SqZxqL", - "checked": false - } - ], - "words": [ - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - }, - { - "name": "govern", - "trans": [ - "vt.统治,管理,治理,支配(词或短语的形式或用法)", - "vi.控制,支配,操纵" - ], - "usphone": "ˈgʌvərn", - "ukphone": "ˈgʌvn", - "id": "WKgenr", - "checked": false - }, - { - "name": "analyse", - "trans": [ - "vt.分析,分解,细察na.“analyze”的变体" - ], - "usphone": "ˈænəˌlaɪz", - "ukphone": "ˈænəlaɪz", - "id": "XJKM6n", - "checked": false - }, - { - "name": "discourage", - "trans": [ - "vt.使气馁,使沮丧,阻碍,劝阻" - ], - "usphone": "dɪsˈkɜ:rɪdʒ", - "ukphone": "dɪsˈkʌrɪdʒ", - "id": "bZ8CsM", - "checked": false - }, - { - "name": "resemble", - "trans": [ - "vt.与…相像,类似于" - ], - "usphone": "rɪˈzɛmbəl", - "ukphone": "rɪˈzembl", - "id": "LUkzNc", - "checked": false - }, - { - "name": "remote", - "trans": [ - "adj.(时间上)遥远的,远离的,远程的,微小的", - "n.远程操作,遥控器", - "vt.使…向远方延伸,把…延展到远处" - ], - "usphone": "rɪˈmoʊt", - "ukphone": "rɪˈməʊt", - "id": "VSmPzX", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n.薪水,薪金,薪俸", - "vt.给…加薪,给…薪水,发…薪水,付…薪水" - ], - "usphone": "ˈsælri", - "ukphone": "ˈsæləri", - "id": "kBXagB", - "checked": false - }, - { - "name": "pollution", - "trans": [ - "n.污染(作用),腐败,堕落,沾污" - ], - "usphone": "pəˈluʃən", - "ukphone": "pəˈlu:ʃn", - "id": "I2blza", - "checked": false - }, - { - "name": "pretend", - "trans": [ - "vt.假装,伪装,假称,装扮", - "vi.扮演,自称,假装,矫作", - "adj.仿制的" - ], - "usphone": "prɪˈtɛnd", - "ukphone": "prɪˈtend", - "id": "SqZxqL", - "checked": false - } - ], - "chapterWordNumber": 30, - "chapterWords": [ - [ - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - }, - { - "name": "govern", - "trans": [ - "vt.统治,管理,治理,支配(词或短语的形式或用法)", - "vi.控制,支配,操纵" - ], - "usphone": "ˈgʌvərn", - "ukphone": "ˈgʌvn", - "id": "WKgenr", - "checked": false - }, - { - "name": "analyse", - "trans": [ - "vt.分析,分解,细察na.“analyze”的变体" - ], - "usphone": "ˈænəˌlaɪz", - "ukphone": "ˈænəlaɪz", - "id": "XJKM6n", - "checked": false - }, - { - "name": "discourage", - "trans": [ - "vt.使气馁,使沮丧,阻碍,劝阻" - ], - "usphone": "dɪsˈkɜ:rɪdʒ", - "ukphone": "dɪsˈkʌrɪdʒ", - "id": "bZ8CsM", - "checked": false - }, - { - "name": "resemble", - "trans": [ - "vt.与…相像,类似于" - ], - "usphone": "rɪˈzɛmbəl", - "ukphone": "rɪˈzembl", - "id": "LUkzNc", - "checked": false - }, - { - "name": "remote", - "trans": [ - "adj.(时间上)遥远的,远离的,远程的,微小的", - "n.远程操作,遥控器", - "vt.使…向远方延伸,把…延展到远处" - ], - "usphone": "rɪˈmoʊt", - "ukphone": "rɪˈməʊt", - "id": "VSmPzX", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n.薪水,薪金,薪俸", - "vt.给…加薪,给…薪水,发…薪水,付…薪水" - ], - "usphone": "ˈsælri", - "ukphone": "ˈsæləri", - "id": "kBXagB", - "checked": false - }, - { - "name": "pollution", - "trans": [ - "n.污染(作用),腐败,堕落,沾污" - ], - "usphone": "pəˈluʃən", - "ukphone": "pəˈlu:ʃn", - "id": "I2blza", - "checked": false - }, - { - "name": "pretend", - "trans": [ - "vt.假装,伪装,假称,装扮", - "vi.扮演,自称,假装,矫作", - "adj.仿制的" - ], - "usphone": "prɪˈtɛnd", - "ukphone": "prɪˈtend", - "id": "SqZxqL", - "checked": false - } - ] - ], - "residueWords": [], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 9, - "resourceId": "", - "url": "", - "category": "自带字典", - "tags": [ - "自带" - ], - "translateLanguage": "common", - "type": "collect", - "language": "en" - }, - { - "id": "skip", - "name": "已掌握", - "description": "", - "sort": 0, - "originWords": [], - "words": [], - "chapterWordNumber": 30, - "chapterWords": [], - "residueWords": [], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 0, - "resourceId": "", - "url": "", - "category": "自带字典", - "tags": [], - "translateLanguage": "common", - "type": "simple", - "language": "en" - }, - { - "id": "wrong", - "name": "错词本", - "description": "", - "sort": 0, - "originWords": [ - { - "name": "cancel", - "trans": [ - "vt.取消,注销,抵消,偿还,〈数〉约去", - "vi.抵消,中和", - "n.撤销,注销,〈数〉(相)约" - ], - "usphone": "ˈkænsəl", - "ukphone": "ˈkænsl", - "id": "GahU2e" - }, - { - "name": "have", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "received", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "I", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "just", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - } - ], - "words": [ - { - "name": "cancel", - "trans": [ - "vt.取消,注销,抵消,偿还,〈数〉约去", - "vi.抵消,中和", - "n.撤销,注销,〈数〉(相)约" - ], - "usphone": "ˈkænsəl", - "ukphone": "ˈkænsl", - "id": "GahU2e" - }, - { - "name": "have", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "received", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "I", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "just", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - } - ], - "chapterWordNumber": 30, - "chapterWords": [ - [ - { - "name": "cancel", - "trans": [ - "vt.取消,注销,抵消,偿还,〈数〉约去", - "vi.抵消,中和", - "n.撤销,注销,〈数〉(相)约" - ], - "usphone": "ˈkænsəl", - "ukphone": "ˈkænsl", - "id": "GahU2e" - }, - { - "name": "have", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "received", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "I", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "just", - "usphone": "", - "ukphone": "", - "trans": [], - "nextSpace": true, - "isSymbol": false, - "symbolPosition": "" - }, - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - } - ] - ], - "residueWords": [], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 0, - "resourceId": "", - "url": "", - "category": "自带字典", - "tags": [], - "translateLanguage": "common", - "type": "wrong", - "language": "en" - }, - { - "id": "cet4", - "name": "CET-4", - "description": "大学英语四级词库", - "sort": 0, - "originWords": [ - { - "name": "cancel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qHl8vi" - }, - { - "name": "explosive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YplgI9" - }, - { - "name": "numerous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pWy2vu" - }, - { - "name": "govern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WKgenr" - }, - { - "name": "analyse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XJKM6n" - }, - { - "name": "discourage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bZ8CsM" - }, - { - "name": "resemble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LUkzNc" - }, - { - "name": "remote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSmPzX" - }, - { - "name": "salary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kBXagB" - }, - { - "name": "pollution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I2blza" - }, - { - "name": "pretend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SqZxqL" - }, - { - "name": "kettle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BbeeNh" - }, - { - "name": "wreck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MDPjhy" - }, - { - "name": "drunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9HJ2Yz" - }, - { - "name": "calculate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xHUfio" - }, - { - "name": "persistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LVpLkf" - }, - { - "name": "sake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGW8-K" - }, - { - "name": "conceal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IFG1vx" - }, - { - "name": "audience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lrxee0" - }, - { - "name": "meanwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wG3NOe" - }, - { - "name": "possess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GMu5Hx" - }, - { - "name": "competent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LqLca4" - }, - { - "name": "investment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Crbzh" - }, - { - "name": "neutral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "07xu1P" - }, - { - "name": "scratch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JvKnv-" - }, - { - "name": "optional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FFUPPV" - }, - { - "name": "require", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HEQOsg" - }, - { - "name": "circular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7fm36U" - }, - { - "name": "analysis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mJlQgS" - }, - { - "name": "click", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kfNxuM" - }, - { - "name": "fashionable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "00c98I" - }, - { - "name": "devise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8D9O4u" - }, - { - "name": "apparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qNSvg" - }, - { - "name": "journalist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8evA7" - }, - { - "name": "exposure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k65n2B" - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5lHHi" - }, - { - "name": "protective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuJ0GM" - }, - { - "name": "sideways", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GrnvFU" - }, - { - "name": "multicultural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coLp3a" - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F36H_1" - }, - { - "name": "humble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q2cMw6" - }, - { - "name": "chapter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NwNXeP" - }, - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xkFFx" - }, - { - "name": "independent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWX3TS" - }, - { - "name": "carriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LmgPWb" - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nRzIoD" - }, - { - "name": "infinite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GvehsM" - }, - { - "name": "concede", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqRiR5" - }, - { - "name": "elect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dUzFh" - }, - { - "name": "weekly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c_vw1V" - }, - { - "name": "result", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "94BY5I" - }, - { - "name": "golf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUpPNk" - }, - { - "name": "selfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXUQmi" - }, - { - "name": "sexism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjRcHY" - }, - { - "name": "commission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdUyC8" - }, - { - "name": "headline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7DIH6" - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tKsfGK" - }, - { - "name": "rational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMInT3" - }, - { - "name": "policy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-Tgm-" - }, - { - "name": "editorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RalDwT" - }, - { - "name": "resume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QC1iCc" - }, - { - "name": "rebuild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8vOXc" - }, - { - "name": "committee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fu3qy9" - }, - { - "name": "namely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HRNu3k" - }, - { - "name": "artistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zgngr2" - }, - { - "name": "union", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DY0Fxm" - }, - { - "name": "plentiful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IvMbSj" - }, - { - "name": "halt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-aCF5t" - }, - { - "name": "component", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zFB-IZ" - }, - { - "name": "consultant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o65Kl5" - }, - { - "name": "sunset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3LKisP" - }, - { - "name": "obvious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JizB7_" - }, - { - "name": "illustration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INxD6N" - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_Ea1L" - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WGd3n4" - }, - { - "name": "surgery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmku_h" - }, - { - "name": "liberal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EHIYoO" - }, - { - "name": "violent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Aw9imZ" - }, - { - "name": "harmony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kiSgzO" - }, - { - "name": "resolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pCEin" - }, - { - "name": "chill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ti_E37" - }, - { - "name": "confront", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZffzRp" - }, - { - "name": "dominate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "On72E4" - }, - { - "name": "imitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjC4d1" - }, - { - "name": "faithful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gH_SBp" - }, - { - "name": "reproduce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Lp5Yt" - }, - { - "name": "institution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7afUKt" - }, - { - "name": "pad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j4Uv2Y" - }, - { - "name": "provocation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqJ2QW" - }, - { - "name": "ambition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJvrdI" - }, - { - "name": "scholarship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tu5dyz" - }, - { - "name": "exceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pjl9X6" - }, - { - "name": "besides", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NT88gc" - }, - { - "name": "preposition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfTg8Z" - }, - { - "name": "enlarge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-5wIyi" - }, - { - "name": "implement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71nb92" - }, - { - "name": "export", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djif4N" - }, - { - "name": "Christ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5pK4_" - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSuWIO" - }, - { - "name": "pat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezl6ou" - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMPKgt" - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JT8_kI" - }, - { - "name": "visibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aTP4tC" - }, - { - "name": "invitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OXuOlS" - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ah1X0" - }, - { - "name": "enormous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SVBveN" - }, - { - "name": "moisture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_AHf" - }, - { - "name": "toast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJ1Y11" - }, - { - "name": "frustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DdBbcs" - }, - { - "name": "external", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7a3tRl" - }, - { - "name": "aside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4L9zxK" - }, - { - "name": "circumstance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bCnV7C" - }, - { - "name": "revise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sf_DOD" - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ot3BWG" - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvbhym" - }, - { - "name": "harm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgD6po" - }, - { - "name": "semiconductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTLLIp" - }, - { - "name": "rope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rya_Vj" - }, - { - "name": "provided", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_jUkBO" - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Yh2iu" - }, - { - "name": "gasoline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcFssh" - }, - { - "name": "indispensable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8CSpX" - }, - { - "name": "medium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64E1Mk" - }, - { - "name": "lens", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6aHCS0" - }, - { - "name": "wisdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7aMwY5" - }, - { - "name": "fatal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6N4NkH" - }, - { - "name": "nowhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ws9YZI" - }, - { - "name": "motive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RYkx14" - }, - { - "name": "romantic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NXI80a" - }, - { - "name": "motivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRmlMS" - }, - { - "name": "spoil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYcTMS" - }, - { - "name": "airline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AnFRgG" - }, - { - "name": "multiply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3I1KSJ" - }, - { - "name": "ridge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8TbLx3" - }, - { - "name": "pilot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G1BKtx" - }, - { - "name": "umbrella", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzsC7F" - }, - { - "name": "approval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7v5yM" - }, - { - "name": "mobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0-ZZtV" - }, - { - "name": "perform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6AqES" - }, - { - "name": "multiple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2OzwDU" - }, - { - "name": "peak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8TZ4a" - }, - { - "name": "evolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHyQsR" - }, - { - "name": "portrait", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9zGgX" - }, - { - "name": "halfway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bb12vs" - }, - { - "name": "expose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRFsge" - }, - { - "name": "concentrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUIYlN" - }, - { - "name": "magnet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KI7OC1" - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qh9YGD" - }, - { - "name": "weld", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XTflrL" - }, - { - "name": "up-to-date", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pKgvh8" - }, - { - "name": "complaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEELnv" - }, - { - "name": "translation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a5F-jO" - }, - { - "name": "cancer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vueIG" - }, - { - "name": "personnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXMGng" - }, - { - "name": "hopeless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TFTsxR" - }, - { - "name": "outlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sSGA6" - }, - { - "name": "fountain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NSCjjb" - }, - { - "name": "offense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bxuGzE" - }, - { - "name": "breadth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJeMGX" - }, - { - "name": "catalog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJeoVp" - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2muX5" - }, - { - "name": "focus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GwwEa" - }, - { - "name": "invisible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kFmjRt" - }, - { - "name": "entire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LCiPtl" - }, - { - "name": "pea", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qECm7q" - }, - { - "name": "pill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yvRbQ" - }, - { - "name": "wrist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IC7fC7" - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I3wSCR" - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5r8YV1" - }, - { - "name": "flour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PKfeZ" - }, - { - "name": "implication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sh3P-t" - }, - { - "name": "camel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0vvtD" - }, - { - "name": "fierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bX23Xm" - }, - { - "name": "bump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9UX-py" - }, - { - "name": "reservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFpDEX" - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_itNk9" - }, - { - "name": "proceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GWRfRi" - }, - { - "name": "considering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQZIA9" - }, - { - "name": "corporation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vn37YF" - }, - { - "name": "loyalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQeOQ" - }, - { - "name": "bulb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VM63RV" - }, - { - "name": "dismiss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Znf-Tp" - }, - { - "name": "propose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mAP8W2" - }, - { - "name": "intelligence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2984Ah" - }, - { - "name": "reform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZJ623" - }, - { - "name": "draught", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OaeBKW" - }, - { - "name": "daylight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_QhP" - }, - { - "name": "install", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QEF38o" - }, - { - "name": "integration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mLxe0" - }, - { - "name": "indication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KbXLrJ" - }, - { - "name": "bulk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kolegg" - }, - { - "name": "coach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvrfTX" - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jyqY5e" - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sne_jD" - }, - { - "name": "gum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cAKfxA" - }, - { - "name": "circuit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h6RnSG" - }, - { - "name": "pine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZ8fX8" - }, - { - "name": "magnificent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0zRNxy" - }, - { - "name": "guy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb775D" - }, - { - "name": "respectively", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkoOYg" - }, - { - "name": "protection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bLafft" - }, - { - "name": "pint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWeqSf" - }, - { - "name": "restrict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EmOptv" - }, - { - "name": "instant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AP5A4u" - }, - { - "name": "conjunction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieNPnp" - }, - { - "name": "peer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HndoX" - }, - { - "name": "orderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7pjEWn" - }, - { - "name": "costly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cpHwGe" - }, - { - "name": "roast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L7C-Po" - }, - { - "name": "violence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hw_nU9" - }, - { - "name": "succession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHjfZn" - }, - { - "name": "accordingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Txzr7" - }, - { - "name": "consequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VSb3D" - }, - { - "name": "product", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9VQA86" - }, - { - "name": "particularly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wFz7GT" - }, - { - "name": "dominant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-Z04y" - }, - { - "name": "heading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aS6AYW" - }, - { - "name": "lover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IrKCqb" - }, - { - "name": "vinegar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQXnV1" - }, - { - "name": "intellectual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtBjfa" - }, - { - "name": "cheat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p4uwmH" - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hRjvB5" - }, - { - "name": "undoubtedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WC3hyx" - }, - { - "name": "infect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5UDugz" - }, - { - "name": "tide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W71Rog" - }, - { - "name": "prohibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYyYGR" - }, - { - "name": "bacteria", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXSUfK" - }, - { - "name": "minor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PyO8bI" - }, - { - "name": "arrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QSHIjH" - }, - { - "name": "cop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7dTNZr" - }, - { - "name": "fuel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVVHV9" - }, - { - "name": "hostile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfPI5i" - }, - { - "name": "aeroplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JboXZ" - }, - { - "name": "manner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sPtmr8" - }, - { - "name": "employee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73s6sI" - }, - { - "name": "associate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxDiuf" - }, - { - "name": "pray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B84s3j" - }, - { - "name": "lad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NItCP_" - }, - { - "name": "crawl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ehXerE" - }, - { - "name": "identical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hzp8ey" - }, - { - "name": "lag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RGrHBr" - }, - { - "name": "towel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nX8Eix" - }, - { - "name": "charity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sORBly" - }, - { - "name": "academic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lqIv9z" - }, - { - "name": "function", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dhBMNX" - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F-3vpk" - }, - { - "name": "pit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X-1Lmk" - }, - { - "name": "lap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0e4zu" - }, - { - "name": "mineral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KrgV4" - }, - { - "name": "stock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jk2ZKk" - }, - { - "name": "representative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OuMkPt" - }, - { - "name": "suspend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6_4Jss" - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jkmp1Y" - }, - { - "name": "well-known", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aiFzJF" - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wXvjEx" - }, - { - "name": "terror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKA6po" - }, - { - "name": "comparison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pPSUI" - }, - { - "name": "surge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZTaym" - }, - { - "name": "lest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VVY_i" - }, - { - "name": "heroic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LN-qhy" - }, - { - "name": "sway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_otQ8v" - }, - { - "name": "basis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zqJySr" - }, - { - "name": "tutor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NsqYxe" - }, - { - "name": "senator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvA9m" - }, - { - "name": "adventure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyOisJ" - }, - { - "name": "successive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nK-nBX" - }, - { - "name": "condition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Az4UUW" - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VQfNR" - }, - { - "name": "ceremony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wRUrM" - }, - { - "name": "obligation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hJvvD" - }, - { - "name": "improve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VtBF7n" - }, - { - "name": "gym", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aFvW9s" - }, - { - "name": "rarely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGfnxW" - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U6Fesn" - }, - { - "name": "governor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zyHQU" - }, - { - "name": "twist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CG0Uxs" - }, - { - "name": "locate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGQkLJ" - }, - { - "name": "unite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dp6Rru" - }, - { - "name": "lavatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pnvun8" - }, - { - "name": "exterior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4_Zly" - }, - { - "name": "technique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ns_IVJ" - }, - { - "name": "combat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZbX-W" - }, - { - "name": "troop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NEhCaY" - }, - { - "name": "scenery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txgkkf" - }, - { - "name": "unity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reclAG" - }, - { - "name": "effective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgUpme" - }, - { - "name": "pursue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7MF0q" - }, - { - "name": "similarly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c75Xyv" - }, - { - "name": "convey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLbqSh" - }, - { - "name": "muscle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JQJ4n" - }, - { - "name": "design", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H1pFvY" - }, - { - "name": "extra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u9F3-h" - }, - { - "name": "generous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0s1QZE" - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVG80I" - }, - { - "name": "possibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGpF7M" - }, - { - "name": "lane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFX832" - }, - { - "name": "garlic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVU7CE" - }, - { - "name": "chief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O2jqtZ" - }, - { - "name": "accord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGgyWF" - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q5YHPz" - }, - { - "name": "automatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuABX4" - }, - { - "name": "doubtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOWzeD" - }, - { - "name": "despite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "noVRY7" - }, - { - "name": "opening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhG9co" - }, - { - "name": "industrial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1inkQh" - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qg2LwF" - }, - { - "name": "conduct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALsE92" - }, - { - "name": "stable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MyOVZp" - }, - { - "name": "lamb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czq_Zl" - }, - { - "name": "pillow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JeGHES" - }, - { - "name": "harness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dkYUFv" - }, - { - "name": "fantastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSBA8m" - }, - { - "name": "sketch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGAt8m" - }, - { - "name": "tidy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NexyUq" - }, - { - "name": "respond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xz6RZR" - }, - { - "name": "incident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q71rNZ" - }, - { - "name": "maintenance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ai2je0" - }, - { - "name": "marry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brdLdm" - }, - { - "name": "decay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PTzXBG" - }, - { - "name": "absorb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7ss7XC" - }, - { - "name": "supply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvhs4X" - }, - { - "name": "concern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0aK_3m" - }, - { - "name": "circulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qirj1v" - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5uYR71" - }, - { - "name": "liable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uDXSwM" - }, - { - "name": "cargo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oin0bz" - }, - { - "name": "confidential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOYUrZ" - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBgi0G" - }, - { - "name": "element", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "InI2Xw" - }, - { - "name": "chaos", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2YMODo" - }, - { - "name": "mankind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ba4m-5" - }, - { - "name": "abundant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g4N0wy" - }, - { - "name": "pace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eGOQZ6" - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zs4kL5" - }, - { - "name": "probable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyTxGm" - }, - { - "name": "forecast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tjLoTY" - }, - { - "name": "uncover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9F9Mg" - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mRbXM8" - }, - { - "name": "pack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hXnE8_" - }, - { - "name": "restraint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7o3OQ" - }, - { - "name": "input", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2HmVly" - }, - { - "name": "cue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZSOTI" - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MIS_Sw" - }, - { - "name": "reality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8qUSTc" - }, - { - "name": "stereotype", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aISBit" - }, - { - "name": "enroll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QuX3zd" - }, - { - "name": "offend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7rbsWx" - }, - { - "name": "molecule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYul8J" - }, - { - "name": "resign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8l_rD1" - }, - { - "name": "bathe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBgqG6" - }, - { - "name": "workman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCx9B4" - }, - { - "name": "sophisticated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rvhxMO" - }, - { - "name": "sunrise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0R3z7" - }, - { - "name": "entertainment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfMunl" - }, - { - "name": "document", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCb-5d" - }, - { - "name": "starve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YQY5CB" - }, - { - "name": "battery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-S_mtE" - }, - { - "name": "chase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYvVXD" - }, - { - "name": "accident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h0MjRb" - }, - { - "name": "marine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N6omIx" - }, - { - "name": "clay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bcSclb" - }, - { - "name": "anyway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_RUeE" - }, - { - "name": "promote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TpMQc6" - }, - { - "name": "routine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "df9-rx" - }, - { - "name": "attack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "34UaXX" - }, - { - "name": "humour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lWNAoj" - }, - { - "name": "divorce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gEj8SV" - }, - { - "name": "currency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UijDye" - }, - { - "name": "canal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QY5jR_" - }, - { - "name": "attach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZkqmj" - }, - { - "name": "distribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-YW_E" - }, - { - "name": "ankle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aChngH" - }, - { - "name": "convict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXisSf" - }, - { - "name": "legislation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBs82k" - }, - { - "name": "clause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izhik3" - }, - { - "name": "quiz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gFyfsL" - }, - { - "name": "participate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ghdimg" - }, - { - "name": "ingredient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRUBPx" - }, - { - "name": "surplus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RJmav" - }, - { - "name": "correspondence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQdiLQ" - }, - { - "name": "refresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JFiweH" - }, - { - "name": "librarian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AQIHCf" - }, - { - "name": "intimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "78Rr0v" - }, - { - "name": "reporter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRv4qu" - }, - { - "name": "declaration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6KVUP" - }, - { - "name": "disclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L4erJo" - }, - { - "name": "religion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DtfrLU" - }, - { - "name": "diagram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ClZqrL" - }, - { - "name": "claw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjJFZY" - }, - { - "name": "torture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDA3GH" - }, - { - "name": "prayer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLlvdQ" - }, - { - "name": "tragedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib6R3K" - }, - { - "name": "charm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWYaO_" - }, - { - "name": "clap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8cfWIK" - }, - { - "name": "purple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jJhxke" - }, - { - "name": "quit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "skqZO7" - }, - { - "name": "economical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0dJ1t" - }, - { - "name": "prosperous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v9j_Sc" - }, - { - "name": "polish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l3uOl" - }, - { - "name": "cabinet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ds4yex" - }, - { - "name": "chart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OZNiF6" - }, - { - "name": "optical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhyXhD" - }, - { - "name": "fashion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lTmTRs" - }, - { - "name": "insurance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AB94xa" - }, - { - "name": "preface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIVhfy" - }, - { - "name": "principle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKFvB_" - }, - { - "name": "lid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZQihJ0" - }, - { - "name": "tedious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUCs3k" - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mfXMa" - }, - { - "name": "secure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4N9nd" - }, - { - "name": "domestic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJ4JPd" - }, - { - "name": "deception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6wewqw" - }, - { - "name": "basically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D_JpXq" - }, - { - "name": "donation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wk8jFn" - }, - { - "name": "avenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUfss9" - }, - { - "name": "immense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHkWoq" - }, - { - "name": "budget", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1c9fYS" - }, - { - "name": "given", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeYosb" - }, - { - "name": "hay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK7ngo" - }, - { - "name": "chest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9ylyYY" - }, - { - "name": "tension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kicqrf" - }, - { - "name": "definite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6cdTz6" - }, - { - "name": "reflection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_-sQm" - }, - { - "name": "ultimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dHTkN" - }, - { - "name": "campus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li3s3R" - }, - { - "name": "adapt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixrc-Q" - }, - { - "name": "solicitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "If5v_l" - }, - { - "name": "cheerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFXuXx" - }, - { - "name": "merit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9O89UN" - }, - { - "name": "misunderstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NTbmfn" - }, - { - "name": "guilty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "17HCsV" - }, - { - "name": "measure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "raU0MI" - }, - { - "name": "overall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yhffj3" - }, - { - "name": "receipt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yd6rU8" - }, - { - "name": "assume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ob0Gq" - }, - { - "name": "pepper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G3PgF6" - }, - { - "name": "plural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l03Mb" - }, - { - "name": "doctoral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "duezrj" - }, - { - "name": "concept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12ZxGJ" - }, - { - "name": "resistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6umRae" - }, - { - "name": "effort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-u5ms" - }, - { - "name": "video", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R3nNFY" - }, - { - "name": "disaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LBj6Kp" - }, - { - "name": "agriculture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVwoI8" - }, - { - "name": "weapon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QM_Q6" - }, - { - "name": "grocer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9IDqF" - }, - { - "name": "stare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-q4s9" - }, - { - "name": "painful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_49kcw" - }, - { - "name": "vote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DYQsC" - }, - { - "name": "steady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7v2QM" - }, - { - "name": "enhance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63RQKc" - }, - { - "name": "enclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opxegS" - }, - { - "name": "convention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VX8tEl" - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rtg5NR" - }, - { - "name": "center", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "irZy3z" - }, - { - "name": "suspicion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NCwueq" - }, - { - "name": "purchase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LNhcIc" - }, - { - "name": "refusal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iC4UAM" - }, - { - "name": "technician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMa-eq" - }, - { - "name": "generic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NqcjXb" - }, - { - "name": "genius", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CmOXbx" - }, - { - "name": "alike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJivn" - }, - { - "name": "fund", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IDH-xl" - }, - { - "name": "gravity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hWGpDg" - }, - { - "name": "typical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HDfR4" - }, - { - "name": "quotation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vekYS" - }, - { - "name": "finance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etcS9Y" - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTzC2p" - }, - { - "name": "tray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhUAXn" - }, - { - "name": "downward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50WJaR" - }, - { - "name": "cabbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gSC3RC" - }, - { - "name": "regulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Ue1ig" - }, - { - "name": "palm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U_mMrs" - }, - { - "name": "hydrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIrfQt" - }, - { - "name": "infant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "itrC_4" - }, - { - "name": "hen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZr55R" - }, - { - "name": "whoever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4FdJa" - }, - { - "name": "carbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ng2weJ" - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWRDxN" - }, - { - "name": "payment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1IdNN" - }, - { - "name": "specifically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KguhOt" - }, - { - "name": "controversial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PjnfLL" - }, - { - "name": "attain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3etmNW" - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8j0WKZ" - }, - { - "name": "gallery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riwgne" - }, - { - "name": "hardware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rR4I2R" - }, - { - "name": "deputy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRj_ec" - }, - { - "name": "warmth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-bGxAh" - }, - { - "name": "supreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c88MQF" - }, - { - "name": "ambulance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKc9gL" - }, - { - "name": "priority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INJ_Kw" - }, - { - "name": "slope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SbS-m" - }, - { - "name": "philosophy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH9TSK" - }, - { - "name": "preventive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4JJge" - }, - { - "name": "creative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyvL-Y" - }, - { - "name": "junior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eHGTt8" - }, - { - "name": "allocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pgRJXs" - }, - { - "name": "provide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u7pUCK" - }, - { - "name": "standpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oax8Lf" - }, - { - "name": "worship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WaWkq" - }, - { - "name": "lawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4PQ_u0" - }, - { - "name": "primary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MGSusa" - }, - { - "name": "log", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBLlnR" - }, - { - "name": "solar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-mhxho" - }, - { - "name": "consume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TzOq_t" - }, - { - "name": "formation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MFG5sR" - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_tr0p" - }, - { - "name": "triangle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bvduR-" - }, - { - "name": "accidental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QT-5mU" - }, - { - "name": "assure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "35l2uY" - }, - { - "name": "consult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4EYph" - }, - { - "name": "theme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISnR2W" - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KhJs_A" - }, - { - "name": "merely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opRowm" - }, - { - "name": "contradiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MLz9It" - }, - { - "name": "fuss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VpDvl" - }, - { - "name": "wealth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnW6V5" - }, - { - "name": "editor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HvoPAX" - }, - { - "name": "barrel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NPgQnh" - }, - { - "name": "means", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E9_guI" - }, - { - "name": "desire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qQPBF5" - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QqTlDR" - }, - { - "name": "efficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB-76I" - }, - { - "name": "initial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eWT-3" - }, - { - "name": "unfortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6f_FNt" - }, - { - "name": "consistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ggfo43" - }, - { - "name": "reverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYxWMb" - }, - { - "name": "heterogeneity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mywwyQ" - }, - { - "name": "sword", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mFE2z" - }, - { - "name": "permanent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpDwhR" - }, - { - "name": "barely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uNFjQ" - }, - { - "name": "summarize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3SsnWr" - }, - { - "name": "chap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wp73ba" - }, - { - "name": "facility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TK33ps" - }, - { - "name": "beam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZGzvmT" - }, - { - "name": "alliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKdXdm" - }, - { - "name": "civilization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLxMrI" - }, - { - "name": "fiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4haAIg" - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HiFLiw" - }, - { - "name": "replace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QedIs" - }, - { - "name": "appointment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3Amw1" - }, - { - "name": "hip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iBGpqa" - }, - { - "name": "merry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SQiipN" - }, - { - "name": "dam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cd6SOk" - }, - { - "name": "pessimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ER5VXK" - }, - { - "name": "commander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnfn_S" - }, - { - "name": "bloom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AIHq6j" - }, - { - "name": "major", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYzTiw" - }, - { - "name": "zone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WTIfiT" - }, - { - "name": "emphasis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aPrEsS" - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8kNmOj" - }, - { - "name": "feasible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XJzK3f" - }, - { - "name": "prescribe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m4pW1m" - }, - { - "name": "potential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j50ziZ" - }, - { - "name": "bean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88_4Y6" - }, - { - "name": "accustomed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2u9k-l" - }, - { - "name": "combination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VRQj2b" - }, - { - "name": "obtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcIm8N" - }, - { - "name": "turbine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMTW3s" - }, - { - "name": "repeatedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tE9-HY" - }, - { - "name": "curiosity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "btYUc1" - }, - { - "name": "gross", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N3Mn--" - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lpwU4r" - }, - { - "name": "resist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kn0AZ1" - }, - { - "name": "liter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Htz2M3" - }, - { - "name": "format", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxZO-P" - }, - { - "name": "sacrifice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5JxzWC" - }, - { - "name": "illegal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-cwnRl" - }, - { - "name": "stimulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tk88HR" - }, - { - "name": "formal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1Qb75" - }, - { - "name": "congratulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8zLFN" - }, - { - "name": "rainbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BjOiF2" - }, - { - "name": "soak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMNrRU" - }, - { - "name": "soar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5OcUm1" - }, - { - "name": "salesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qlQnY2" - }, - { - "name": "interference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DRPazJ" - }, - { - "name": "fibre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzbqQO" - }, - { - "name": "sustain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "istRYV" - }, - { - "name": "entertain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ggku3s" - }, - { - "name": "altitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvHbwR" - }, - { - "name": "classify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8Dn_P" - }, - { - "name": "ease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYmtRV" - }, - { - "name": "critical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZW3JM" - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqzLIK" - }, - { - "name": "mathematics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6r2CnZ" - }, - { - "name": "wagon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrJVHj" - }, - { - "name": "elsewhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cPVnn3" - }, - { - "name": "penetrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4Rwv8" - }, - { - "name": "principal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fUQVhE" - }, - { - "name": "tend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8dAWf" - }, - { - "name": "exceedingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gn9v" - }, - { - "name": "specimen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cACJjZ" - }, - { - "name": "relief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpFAMY" - }, - { - "name": "dimension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2A8Hq" - }, - { - "name": "introduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y_M8DU" - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7lHsta" - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBTgxU" - }, - { - "name": "philosopher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2Pcxb" - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rJ7mKA" - }, - { - "name": "therapy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IwY7Dj" - }, - { - "name": "alternative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CoTQTj" - }, - { - "name": "banner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8g2_2Y" - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zXaicC" - }, - { - "name": "encounter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNSPHp" - }, - { - "name": "soda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kuwklm" - }, - { - "name": "colleague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLJZjj" - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Jftcw" - }, - { - "name": "approve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6w6H6" - }, - { - "name": "interaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08_E2b" - }, - { - "name": "chew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pt9f8H" - }, - { - "name": "interfere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRS-Nq" - }, - { - "name": "apartment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eN4cjs" - }, - { - "name": "account", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-lV_dp" - }, - { - "name": "uneasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8a0fQX" - }, - { - "name": "tolerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zx36ve" - }, - { - "name": "developmental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ocpyAo" - }, - { - "name": "stack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EfrWg1" - }, - { - "name": "underline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "in7VxM" - }, - { - "name": "innocent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LddDN4" - }, - { - "name": "compassion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lgGhof" - }, - { - "name": "alphabet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nl6vAi" - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_h3Eq" - }, - { - "name": "evaluation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vCIleZ" - }, - { - "name": "crack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jXtkK6" - }, - { - "name": "bind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iURb7W" - }, - { - "name": "trim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZbE-QR" - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hU02mU" - }, - { - "name": "dental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YVaC0Q" - }, - { - "name": "predictable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iI2xTA" - }, - { - "name": "diverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOfNUg" - }, - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYzHbI" - }, - { - "name": "cube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgJc81" - }, - { - "name": "rally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-yEpiJ" - }, - { - "name": "prime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mBn4oV" - }, - { - "name": "happen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j8xfPq" - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OwluKm" - }, - { - "name": "mild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nx77cp" - }, - { - "name": "profile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7uzPM" - }, - { - "name": "loyal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k5xwAf" - }, - { - "name": "preference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtkyVX" - }, - { - "name": "impact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G65eUK" - }, - { - "name": "opportunity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVh0OL" - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GlPalK" - }, - { - "name": "dorm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDB6dC" - }, - { - "name": "whichever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gbzdfw" - }, - { - "name": "court", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ELBKWC" - }, - { - "name": "venture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezCtsg" - }, - { - "name": "mill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzm-V8" - }, - { - "name": "bucket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJkudF" - }, - { - "name": "senior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0LjAtp" - }, - { - "name": "dose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c3ZBUd" - }, - { - "name": "route", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB72IC" - }, - { - "name": "enthusiasm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ke7nl" - }, - { - "name": "flexible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3KVT6v" - }, - { - "name": "adult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gep-10" - }, - { - "name": "attitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WN3GDL" - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoCLEi" - }, - { - "name": "organ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIyypZ" - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5f_K3" - }, - { - "name": "treatment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4A7OPm" - }, - { - "name": "compare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iFG9YO" - }, - { - "name": "pluralism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F2eLc2" - }, - { - "name": "influential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RbPR1" - }, - { - "name": "shiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5f4zpS" - }, - { - "name": "Bible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIHUI_" - }, - { - "name": "liquor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oq3NTn" - }, - { - "name": "honourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xq8FeG" - }, - { - "name": "characteristic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48hn-W" - }, - { - "name": "transparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHmCyY" - }, - { - "name": "interior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Y6UQ2" - }, - { - "name": "rouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYGGrv" - }, - { - "name": "journal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AtVTt-" - }, - { - "name": "grasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nwa_an" - }, - { - "name": "involvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2UUIR" - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jnn0Pv" - }, - { - "name": "unlike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wLfF3y" - }, - { - "name": "assembly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIrUJI" - }, - { - "name": "hearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSzOki" - }, - { - "name": "acquisition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zbtzzo" - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GhdUOV" - }, - { - "name": "rigid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hKp4hV" - }, - { - "name": "deadline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lqdez4" - }, - { - "name": "so-called", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Z5qT9" - }, - { - "name": "grateful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hgfF7X" - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIw2Pu" - }, - { - "name": "chin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-O1eXS" - }, - { - "name": "emotional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cKBLBq" - }, - { - "name": "operational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53hnFH" - }, - { - "name": "staff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lz4z5h" - }, - { - "name": "involve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P-6iq9" - }, - { - "name": "noticeable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYTIDh" - }, - { - "name": "assemble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UNK76t" - }, - { - "name": "blast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EIrAEN" - }, - { - "name": "series", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mi-x5e" - }, - { - "name": "complicated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQX7Ao" - }, - { - "name": "cultivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RknEtF" - }, - { - "name": "maximum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aNGeki" - }, - { - "name": "thrive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FyFUo-" - }, - { - "name": "purse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_o92M" - }, - { - "name": "represent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DPIsaz" - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ML6Ej" - }, - { - "name": "dialect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6TdjSy" - }, - { - "name": "accountant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CzxUOZ" - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D6N0_Q" - }, - { - "name": "dim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nVnD_e" - }, - { - "name": "emergency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eqoSr3" - }, - { - "name": "dip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vKnBt" - }, - { - "name": "recreational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uM9alm" - }, - { - "name": "faculty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2zaTiB" - }, - { - "name": "trail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brTwgH" - }, - { - "name": "passport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Q00n" - }, - { - "name": "prior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aXI2ae" - }, - { - "name": "considerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hVieyn" - }, - { - "name": "clue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "leTAhM" - }, - { - "name": "legal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgJmFY" - }, - { - "name": "bracket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbGA_q" - }, - { - "name": "highway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V0lcQj" - }, - { - "name": "vanish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w4FwUI" - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0x82Bg" - }, - { - "name": "sightseeing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T_p6gU" - }, - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lCjaxw" - }, - { - "name": "static", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztkH_Q" - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zKgs3I" - }, - { - "name": "planet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gBSr4p" - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8uU9rh" - }, - { - "name": "exhaust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HebXIW" - }, - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g5bS0L" - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PCkseU" - }, - { - "name": "grape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDXZ6x" - }, - { - "name": "conviction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9Magb" - }, - { - "name": "scholar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zryCvg" - }, - { - "name": "straw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-KEOdY" - }, - { - "name": "regarding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4YRAc" - }, - { - "name": "graph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVzxJY" - }, - { - "name": "vision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FAZbRg" - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-TJ5k" - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRK3tG" - }, - { - "name": "acceptance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDLmHt" - }, - { - "name": "relativity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rZ88gU" - }, - { - "name": "beneficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e60oFI" - }, - { - "name": "tackle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D-SSQo" - }, - { - "name": "reckon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TU4YiC" - }, - { - "name": "confusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAOXLz" - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDt9oI" - }, - { - "name": "loan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ru0pj" - }, - { - "name": "virtual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWmKTk" - }, - { - "name": "squeeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6svsM" - }, - { - "name": "blank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aop2wT" - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_LkFcx" - }, - { - "name": "session", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gid1oa" - }, - { - "name": "additional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q1iyiV" - }, - { - "name": "worthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MsX0pv" - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcL7do" - }, - { - "name": "expectation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvBOi0" - }, - { - "name": "title", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rco3n7" - }, - { - "name": "mist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1jhiB" - }, - { - "name": "primarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpmRjT" - }, - { - "name": "duration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qU-QNW" - }, - { - "name": "plantation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m2uMQb" - }, - { - "name": "ignore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHU2Bl" - }, - { - "name": "loaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GjuLcx" - }, - { - "name": "nuclear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JMKEQn" - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b0D3q7" - }, - { - "name": "outward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B9gWaU" - }, - { - "name": "bloody", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53ex32" - }, - { - "name": "poetry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2simaT" - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGnb5B" - }, - { - "name": "vapour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5kOvDG" - }, - { - "name": "sole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUzdR9" - }, - { - "name": "jury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_T2IcL" - }, - { - "name": "holy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N-ODmy" - }, - { - "name": "spelling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WA4MuK" - }, - { - "name": "relax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--zIl7" - }, - { - "name": "priest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wzoLxC" - }, - { - "name": "monitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50AXZl" - }, - { - "name": "permission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3R4WZ" - }, - { - "name": "grand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3FNbEw" - }, - { - "name": "schedule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyNNHE" - }, - { - "name": "postage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--_r9q" - }, - { - "name": "tame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgD2BV" - }, - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b13SKF" - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp51Y2" - }, - { - "name": "interpret", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrkhxL" - }, - { - "name": "spectacular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-wpJP" - }, - { - "name": "inherit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t2A89i" - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J1FT--" - }, - { - "name": "blanket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ch95rg" - }, - { - "name": "grant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ec5kTL" - }, - { - "name": "injection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bgs2xV" - }, - { - "name": "envy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BsTY-f" - }, - { - "name": "hut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OKyu_r" - }, - { - "name": "invincible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iIo8-0" - }, - { - "name": "discount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObsOaF" - }, - { - "name": "convert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57h1Dt" - }, - { - "name": "construct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dUtg_0" - }, - { - "name": "attempt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "knshPS" - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sE8D3b" - }, - { - "name": "superficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NMCMx" - }, - { - "name": "division", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nB23dR" - }, - { - "name": "executive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yF_jv6" - }, - { - "name": "navigation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wCVBrt" - }, - { - "name": "melt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4cnOD" - }, - { - "name": "hook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk38z" - }, - { - "name": "stale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cJcSEN" - }, - { - "name": "balance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c55biq" - }, - { - "name": "cigar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r7wkFv" - }, - { - "name": "action", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZbobz" - }, - { - "name": "stadium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wJWCP" - }, - { - "name": "whereas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u-HjoL" - }, - { - "name": "pitch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ro89YO" - }, - { - "name": "kindness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dtrkkV" - }, - { - "name": "adoptive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H4utCH" - }, - { - "name": "chop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuNbV4" - }, - { - "name": "electrical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2h1umk" - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KNbB20" - }, - { - "name": "being", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHUsJJ" - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dcC3Jg" - }, - { - "name": "protest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gbq-Nw" - }, - { - "name": "classification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5UAGo" - }, - { - "name": "vacant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EO1z1N" - }, - { - "name": "physicist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WY0OUS" - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "77TrBF" - }, - { - "name": "underground", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zcij9D" - }, - { - "name": "curse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sg7Kf5" - }, - { - "name": "impression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gO_lbA" - }, - { - "name": "baseball", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Gldsd" - }, - { - "name": "interval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEKVOx" - }, - { - "name": "evaluate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDlerz" - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZLCDLd" - }, - { - "name": "status", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HY1JNt" - }, - { - "name": "shield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usKYJD" - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4mvR7G" - }, - { - "name": "inference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUgPmH" - }, - { - "name": "curve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BMUNwo" - }, - { - "name": "dot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XmeWL-" - }, - { - "name": "skim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ecLn7" - }, - { - "name": "phenomenon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRFCca" - }, - { - "name": "notify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-DYo6" - }, - { - "name": "mention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2sVwbI" - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VD3bD" - }, - { - "name": "laundry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "72hYwf" - }, - { - "name": "accumulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HS5soM" - }, - { - "name": "crime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e7oP0y" - }, - { - "name": "heave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r72nM8" - }, - { - "name": "leisure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zJWKfc" - }, - { - "name": "nourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_aOQnw" - }, - { - "name": "surround", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SwB_cd" - }, - { - "name": "mat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rbSBSI" - }, - { - "name": "cigarette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8PJxol" - }, - { - "name": "torch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YOxnl" - }, - { - "name": "positive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYi2tA" - }, - { - "name": "favourite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFE1uA" - }, - { - "name": "menu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rQuBzR" - }, - { - "name": "prospect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dVwS5Y" - }, - { - "name": "radar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y72rsP" - }, - { - "name": "refugee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ntKpmk" - }, - { - "name": "aluminium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ugqXag" - }, - { - "name": "comparable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEsYg2" - }, - { - "name": "specialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1pbpat" - }, - { - "name": "rotate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w39H_g" - }, - { - "name": "instance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxGkkg" - }, - { - "name": "opera", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j665OJ" - }, - { - "name": "presumably", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6NNMBt" - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s1uaNb" - }, - { - "name": "subject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD6lao" - }, - { - "name": "practically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-uCjA5" - }, - { - "name": "recognition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-kb_c" - }, - { - "name": "cassette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v0mp8i" - }, - { - "name": "blade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nf3HvZ" - }, - { - "name": "arrangement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SgN0I" - }, - { - "name": "revenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4GQ6jZ" - }, - { - "name": "strip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyFxnF" - }, - { - "name": "solution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJiZ8a" - }, - { - "name": "continuous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6sSNFs" - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txUS6Q" - }, - { - "name": "accelerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mwCSfG" - }, - { - "name": "backward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9LB7D" - }, - { - "name": "grain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wakCS" - }, - { - "name": "maid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBF3F7" - }, - { - "name": "residence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTLA6k" - }, - { - "name": "credit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eM5VLW" - }, - { - "name": "regardless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_7chzq" - }, - { - "name": "oxygen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-C2r6M" - }, - { - "name": "intensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bJUCMo" - }, - { - "name": "alter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-h3DCv" - }, - { - "name": "combine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bOUrCs" - }, - { - "name": "ideal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UI32F" - }, - { - "name": "bearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_PRCk" - }, - { - "name": "illustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S4QjL5" - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oQUrRk" - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Eln7P8" - }, - { - "name": "broom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UIlTo" - }, - { - "name": "establishment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVIOkX" - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tZKBnh" - }, - { - "name": "breeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zff7Ah" - }, - { - "name": "trash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nYPJqQ" - }, - { - "name": "painter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FlVHcV" - }, - { - "name": "millimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqHR-3" - }, - { - "name": "horn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JIMCSz" - }, - { - "name": "specialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-BpRdp" - }, - { - "name": "infer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9ZpQb" - }, - { - "name": "compass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lhdISz" - }, - { - "name": "background", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iO83O4" - }, - { - "name": "sore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebLWDb" - }, - { - "name": "dispose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wJYJKg" - }, - { - "name": "glow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yji4xw" - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "735ptK" - }, - { - "name": "laughter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xqQgwI" - }, - { - "name": "constitution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CiCqHO" - }, - { - "name": "blend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXvrtN" - }, - { - "name": "certificate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dAeGKe" - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wYiLu1" - }, - { - "name": "sour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6yZOUx" - }, - { - "name": "delete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNLozw" - }, - { - "name": "nonsense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mw3dx_" - }, - { - "name": "stain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pVnKML" - }, - { - "name": "transform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ORxp-0" - }, - { - "name": "leadership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBgTW_" - }, - { - "name": "genuine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3oRKTy" - }, - { - "name": "X-ray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DypmR6" - }, - { - "name": "physical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XQ1Jx" - }, - { - "name": "fulfil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E5eukS" - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2jeQS" - }, - { - "name": "spokesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w2Ls4S" - }, - { - "name": "equation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xz22J-" - }, - { - "name": "impressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88Ar9u" - }, - { - "name": "compound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1WGMd7" - }, - { - "name": "structure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kInsRn" - }, - { - "name": "intensity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-Qyrn" - }, - { - "name": "waken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4DHcG" - }, - { - "name": "stake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KOuGzW" - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JqthVU" - }, - { - "name": "witness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2RObw" - }, - { - "name": "concerning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f2ajeF" - }, - { - "name": "attraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qu_Nqs" - }, - { - "name": "conventional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JSFYf-" - }, - { - "name": "regulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CrJAZi" - }, - { - "name": "puzzle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HdkXtq" - }, - { - "name": "circulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qn-Ew8" - }, - { - "name": "bake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UVZwfO" - }, - { - "name": "mere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aJhyxR" - }, - { - "name": "accommodation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y2pcPG" - }, - { - "name": "evident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dk45X2" - }, - { - "name": "suburb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TCei6X" - }, - { - "name": "lodge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDtVVJ" - }, - { - "name": "threat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uuWf4W" - }, - { - "name": "writer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAoOCd" - }, - { - "name": "simplify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kvEove" - }, - { - "name": "breast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqHEGK" - }, - { - "name": "invention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CnDUdS" - }, - { - "name": "mercy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6CvKlt" - }, - { - "name": "annoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QW4LE7" - }, - { - "name": "curl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2hQtKR" - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zk-q9n" - }, - { - "name": "psychological", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcu9fi" - }, - { - "name": "glue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rndzHy" - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0Drys" - }, - { - "name": "scream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e4scp2" - }, - { - "name": "sorrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oo-YVY" - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2_Ylb" - }, - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RQO7nV" - }, - { - "name": "observer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sw0Kbc" - }, - { - "name": "character", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIkgTx" - }, - { - "name": "reflect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ILOu5" - }, - { - "name": "procession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JQxoKd" - }, - { - "name": "contribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MD2GGh" - }, - { - "name": "Marxist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9pv6Y2" - }, - { - "name": "bang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lmfhbu" - }, - { - "name": "brow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfU2Xs" - }, - { - "name": "meaning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JE1gT" - }, - { - "name": "ignorant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XQSIv" - }, - { - "name": "magnetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SnffRN" - }, - { - "name": "band", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LkMibN" - }, - { - "name": "orbit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV8krw" - }, - { - "name": "comprise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mGJzn9" - }, - { - "name": "moderate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w3aIcS" - }, - { - "name": "resident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ym0UVv" - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iV_1S-" - }, - { - "name": "distinguish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ckO0Q" - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HA87TK" - }, - { - "name": "outer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQ5MKO" - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hBt4N4" - }, - { - "name": "fluent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vRUz71" - }, - { - "name": "shortcoming", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "09E1Nt" - }, - { - "name": "substantial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63pmET" - }, - { - "name": "execute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZanQ1" - }, - { - "name": "benefit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8jeQo" - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrYu37" - }, - { - "name": "vitamin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6FQs4o" - }, - { - "name": "intention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIQqZf" - }, - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KieWN4" - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uCPvz1" - }, - { - "name": "pillar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vgcW3u" - }, - { - "name": "thereby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CSo-cp" - }, - { - "name": "unique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xwc4up" - }, - { - "name": "funeral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgS9mq" - }, - { - "name": "boost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EP4Jcx" - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3ca4W" - }, - { - "name": "sincere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISmP4z" - }, - { - "name": "male", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2Toyp" - }, - { - "name": "ministry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqZmnY" - }, - { - "name": "religious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOkHkl" - }, - { - "name": "nevertheless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSSuBv" - }, - { - "name": "prominent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mN2sDP" - }, - { - "name": "shelter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6vrg7" - }, - { - "name": "outset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8KUtt" - }, - { - "name": "jewel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nbpwZg" - }, - { - "name": "scan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c90tNi" - }, - { - "name": "association", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N07ysN" - }, - { - "name": "fundamental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "05faIu" - }, - { - "name": "eliminate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5B2xU" - }, - { - "name": "global", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v23z3S" - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRlGoK" - }, - { - "name": "outline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "euIA6l" - }, - { - "name": "fade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejLx7e" - }, - { - "name": "unless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoImd-" - }, - { - "name": "butterfly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0HyVq" - }, - { - "name": "excess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IKS1DS" - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "avSM_z" - }, - { - "name": "perspective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M9OogC" - }, - { - "name": "relationship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sjRS1N" - }, - { - "name": "equality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3U7Kd" - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ua_FK" - }, - { - "name": "dictation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aaPjvr" - }, - { - "name": "stiff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCuams" - }, - { - "name": "expression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c9okSz" - }, - { - "name": "invade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K6J3KH" - }, - { - "name": "reaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Gmvmj" - }, - { - "name": "childhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIfqtz" - }, - { - "name": "wolf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yHhY5K" - }, - { - "name": "accordance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rqx0an" - }, - { - "name": "thorough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrmme6" - }, - { - "name": "appeal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u2NGJr" - }, - { - "name": "democracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OdgBfU" - }, - { - "name": "transportation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v3QntD" - }, - { - "name": "dye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FUvF51" - }, - { - "name": "evolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dk4ff4" - }, - { - "name": "extensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEVG56" - }, - { - "name": "congratulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkTJ2y" - }, - { - "name": "abandon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYCWNZ" - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kwm0LR" - }, - { - "name": "inspire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ou0O0" - }, - { - "name": "marvelous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJRosF" - }, - { - "name": "household", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SLDpVV" - }, - { - "name": "geometry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0bHxL" - }, - { - "name": "ratio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ji5ogh" - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3z5-dc" - }, - { - "name": "agent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CyPnCj" - }, - { - "name": "wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zr4S2C" - }, - { - "name": "wholly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjcV0d" - }, - { - "name": "instinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "74JBJp" - }, - { - "name": "approximate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uz7V8D" - }, - { - "name": "invest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UnYF6p" - }, - { - "name": "afterward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMse_k" - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vinesw" - }, - { - "name": "project", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOPjBt" - }, - { - "name": "shrug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sm3mnl" - }, - { - "name": "independence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDr_Gi" - }, - { - "name": "coordination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz-A39" - }, - { - "name": "presentation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMZwDh" - }, - { - "name": "diameter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gx71" - }, - { - "name": "barn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGYFr2" - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Qw0a3" - }, - { - "name": "loop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p78tO7" - }, - { - "name": "restrain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tyfNS" - }, - { - "name": "greedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N68BwQ" - }, - { - "name": "awkward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSm262" - }, - { - "name": "bare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Irxx4r" - }, - { - "name": "ruin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhbJdh" - }, - { - "name": "crane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3BpuZ7" - }, - { - "name": "beard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ICnCK" - }, - { - "name": "impatient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "swOPZv" - }, - { - "name": "spill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2fIDFt" - }, - { - "name": "owing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tLbMOC" - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u1dZal" - }, - { - "name": "gardener", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w83RNo" - }, - { - "name": "conquest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VP-DXW" - }, - { - "name": "finding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dmrg4e" - }, - { - "name": "dense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_tZGi" - }, - { - "name": "fortnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWhlLj" - }, - { - "name": "laboratory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "emrAAi" - }, - { - "name": "inspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7aY-z" - }, - { - "name": "campaign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uIn02b" - }, - { - "name": "systematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XA9T2y" - }, - { - "name": "vital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IFeHHG" - }, - { - "name": "conflict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reTgav" - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLsN4q" - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wn7_t9" - }, - { - "name": "appliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNiupo" - }, - { - "name": "mass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SD0Iax" - }, - { - "name": "lord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjw1mm" - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PPzufL" - }, - { - "name": "amateur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3o2EzO" - }, - { - "name": "poisonous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s8GGTC" - }, - { - "name": "condemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IQpIch" - }, - { - "name": "beast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "evRKJ5" - }, - { - "name": "assistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-t-Uhq" - }, - { - "name": "commerce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2xbZCp" - }, - { - "name": "gesture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AYQPpQ" - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cYYa5" - }, - { - "name": "poem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GzpdqB" - }, - { - "name": "interest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73_AnV" - }, - { - "name": "gulf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xhKtcv" - }, - { - "name": "poet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OyFtLV" - }, - { - "name": "definition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X8nEyC" - }, - { - "name": "shave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWFgB_" - }, - { - "name": "organic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_K5_Gw" - }, - { - "name": "mask", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yyRp7L" - }, - { - "name": "summary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRN5Cm" - }, - { - "name": "apply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KwoJUt" - }, - { - "name": "inferior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y5CGx5" - }, - { - "name": "steamer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qFxuHl" - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGs-7f" - }, - { - "name": "overlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m5QJZ_" - }, - { - "name": "politician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PYLNwW" - }, - { - "name": "incredible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "by1Omw" - }, - { - "name": "dramatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkZyD7" - }, - { - "name": "mosquito", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yG4Xj" - }, - { - "name": "guitar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4JQNL8" - }, - { - "name": "layout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zSuTmh" - }, - { - "name": "artificial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pjh2QS" - }, - { - "name": "imaginary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K65kj1" - }, - { - "name": "removal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e6P1ni" - }, - { - "name": "formula", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vFHKDg" - }, - { - "name": "comment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrcfvr" - }, - { - "name": "revolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hG3LXw" - }, - { - "name": "disgust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jptN0" - }, - { - "name": "stem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INDK2-" - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dEfmD" - }, - { - "name": "trend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vDtask" - }, - { - "name": "achievement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O4toW0" - }, - { - "name": "mechanic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9F5eQ4" - }, - { - "name": "desirable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vnxuv" - }, - { - "name": "balcony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJhgmX" - }, - { - "name": "consist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wgy8BL" - }, - { - "name": "preparation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uRq6-7" - }, - { - "name": "reliable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "idpkS4" - }, - { - "name": "relate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1Eqr" - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3jIYav" - }, - { - "name": "elevator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lO2-Fe" - }, - { - "name": "grammar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Y26ob" - }, - { - "name": "enable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJNjEA" - }, - { - "name": "preliminary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S2I8J2" - }, - { - "name": "dependent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cg2_VW" - }, - { - "name": "obstacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_D4rh1" - }, - { - "name": "profession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4Wqfn" - }, - { - "name": "calculator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZSzS7" - }, - { - "name": "van", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ydG1l" - }, - { - "name": "biology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9lolg" - }, - { - "name": "worm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LDg8mw" - }, - { - "name": "compress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UF4Ws2" - }, - { - "name": "arise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DJVIJS" - }, - { - "name": "collaborative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIYjAJ" - }, - { - "name": "cherish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "62fcwz" - }, - { - "name": "constitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32yLrE" - }, - { - "name": "cattle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B6kSTs" - }, - { - "name": "imagination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYI11I" - }, - { - "name": "resistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XSt2zQ" - }, - { - "name": "underneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JTna5t" - }, - { - "name": "nursery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "boR5Y9" - }, - { - "name": "mate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cuKy7H" - }, - { - "name": "convince", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_neEgV" - }, - { - "name": "emperor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHJqr4" - }, - { - "name": "prolong", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nj2bwp" - }, - { - "name": "theory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joz99V" - }, - { - "name": "distress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYRtWW" - }, - { - "name": "flock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uEsTO" - }, - { - "name": "internal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zEyEMj" - }, - { - "name": "extension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb_m1x" - }, - { - "name": "signature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1x1I" - }, - { - "name": "steep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muU2iF" - }, - { - "name": "thumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z87bBc" - }, - { - "name": "republican", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6J_wXH" - }, - { - "name": "literary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbjT3Z" - }, - { - "name": "architect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qugxw4" - }, - { - "name": "forehead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QatsWU" - }, - { - "name": "classical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ItTHv" - }, - { - "name": "privilege", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOEGJE" - }, - { - "name": "foundation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S5ynoi" - }, - { - "name": "substitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BaNEcl" - }, - { - "name": "punch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6Cduf" - }, - { - "name": "naturally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_0Yk-5" - }, - { - "name": "flexibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pz6tNF" - }, - { - "name": "mysterious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3r2bXb" - }, - { - "name": "moreover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GK0-uT" - }, - { - "name": "identity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opHpWR" - }, - { - "name": "scatter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PAz4oN" - }, - { - "name": "installation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7jKw5q" - }, - { - "name": "writing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2tgmKV" - }, - { - "name": "federal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ElOnIN" - }, - { - "name": "violate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS44j8" - }, - { - "name": "verify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij7IWU" - }, - { - "name": "collective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YWXOsb" - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PK-893" - }, - { - "name": "steer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJfGAp" - }, - { - "name": "event", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIN81X" - }, - { - "name": "academy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9M5y2c" - }, - { - "name": "undergo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2LWT3" - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bI6ufp" - }, - { - "name": "include", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWRobZ" - }, - { - "name": "sympathize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZyosAm" - }, - { - "name": "alongside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoeTUV" - }, - { - "name": "swallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "02Rn-W" - }, - { - "name": "agency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u6wFA4" - }, - { - "name": "coupon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_lwLh" - }, - { - "name": "railroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QFZSEj" - }, - { - "name": "nucleus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLe5Or" - }, - { - "name": "fascinating", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EpggG" - }, - { - "name": "abstract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SeqN3G" - }, - { - "name": "sting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MHVm72" - }, - { - "name": "haste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nkQKIE" - }, - { - "name": "agenda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EdM8NK" - }, - { - "name": "appearance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2aNm5" - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPAA6T" - }, - { - "name": "culture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30bzUC" - }, - { - "name": "sleeve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGbvth" - }, - { - "name": "devotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDEYVv" - }, - { - "name": "anonymous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIrRvz" - }, - { - "name": "stir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IndalO" - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DYv-4A" - }, - { - "name": "span", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MQ74w" - }, - { - "name": "insult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eaVneS" - }, - { - "name": "existence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5DkcL" - }, - { - "name": "craft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gG2OX4" - }, - { - "name": "butcher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k_k3KT" - }, - { - "name": "poll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ia8ISq" - }, - { - "name": "minority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zRk2S5" - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7DAPJ" - }, - { - "name": "float", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzVTPj" - }, - { - "name": "graceful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjGqZj" - }, - { - "name": "fourfold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fcf4Cx" - }, - { - "name": "preferable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7xMy98" - }, - { - "name": "reference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EGrSjv" - }, - { - "name": "frog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VetPFX" - }, - { - "name": "spite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zLjUJS" - }, - { - "name": "chamber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T0EvMq" - }, - { - "name": "arrange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IqkbnT" - }, - { - "name": "coarse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Wne5E" - }, - { - "name": "nephew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KfJQwy" - }, - { - "name": "publicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJdAkP" - }, - { - "name": "depart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Se8ff1" - }, - { - "name": "exaggerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2qG-Uu" - }, - { - "name": "imply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eC_f6k" - }, - { - "name": "capture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9HIou" - }, - { - "name": "commitment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUdTRe" - }, - { - "name": "spade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x7liRT" - }, - { - "name": "manufacture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpUA93" - }, - { - "name": "sequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmVrtl" - }, - { - "name": "collision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82KfYv" - }, - { - "name": "qualification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nO7JYU" - }, - { - "name": "provision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km4qK6" - }, - { - "name": "recruit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rBO1-Z" - }, - { - "name": "thrust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3YogR" - }, - { - "name": "fame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9WR4b2" - }, - { - "name": "replacement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HE_bQ4" - }, - { - "name": "mud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UCaTgi" - }, - { - "name": "mug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12Cclf" - }, - { - "name": "pond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sGy68J" - }, - { - "name": "arrival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LaFulC" - }, - { - "name": "scientific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hJ1Ccv" - }, - { - "name": "frequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Px0X18" - }, - { - "name": "according", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AfgvcI" - }, - { - "name": "insure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqcUsT" - }, - { - "name": "powder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEn8_" - }, - { - "name": "membership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jtXn3" - }, - { - "name": "error", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zVRAp" - }, - { - "name": "platform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tHOkz4" - }, - { - "name": "network", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9jGQbi" - }, - { - "name": "jealous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fRMks" - }, - { - "name": "rust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmK89l" - }, - { - "name": "trace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zrb0Ma" - }, - { - "name": "Negro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xlvK6d" - }, - { - "name": "modernization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmXZuv" - }, - { - "name": "grave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rFJ0G-" - }, - { - "name": "criminology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dn3-Oa" - }, - { - "name": "advantage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2l7Fz" - }, - { - "name": "assistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lriJaC" - }, - { - "name": "inn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tnbbny" - }, - { - "name": "instead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bbYrjb" - }, - { - "name": "controversy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qV1FE" - }, - { - "name": "command", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iR8vF1" - }, - { - "name": "newsstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzUI8q" - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gVhrxL" - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxbztB" - }, - { - "name": "dessert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QXQhTI" - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "At_p4B" - }, - { - "name": "anticipate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rWByC6" - }, - { - "name": "variable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nGdwSC" - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2eIha" - }, - { - "name": "growth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qp3OE_" - }, - { - "name": "landscape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Qj63Z" - }, - { - "name": "weave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChLdjH" - }, - { - "name": "carrot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fokXCd" - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6IJ9Q8" - }, - { - "name": "exception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahMgZ8" - }, - { - "name": "vague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKPsGf" - }, - { - "name": "temporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czQprn" - }, - { - "name": "fare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iVCvf3" - }, - { - "name": "desperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikzb86" - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qgYDFH" - }, - { - "name": "awful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0bWmCp" - }, - { - "name": "accuracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_R1LB" - }, - { - "name": "handy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wjyM1z" - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAiNVA" - }, - { - "name": "resolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y4ha5C" - }, - { - "name": "via", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Euil74" - }, - { - "name": "setting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2BL09H" - }, - { - "name": "score", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3-nJaB" - }, - { - "name": "quote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HXHLDl" - }, - { - "name": "graduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uTWYVN" - }, - { - "name": "famine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALNjND" - }, - { - "name": "gramme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wnjCBG" - }, - { - "name": "absent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhod7R" - }, - { - "name": "rag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snXb8Q" - }, - { - "name": "visual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N70vVV" - }, - { - "name": "understanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SInRQq" - }, - { - "name": "empire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VrJuyu" - }, - { - "name": "educate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIlfcd" - }, - { - "name": "fairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_daan_" - }, - { - "name": "ashamed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9FOjrK" - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhucHW" - }, - { - "name": "rat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix5xKW" - }, - { - "name": "mayor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s5koJN" - }, - { - "name": "virtually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P9UhaT" - }, - { - "name": "fairly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZoTbue" - }, - { - "name": "handwriting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8npK2L" - }, - { - "name": "merchant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DpuOMj" - }, - { - "name": "raw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bpRxJN" - }, - { - "name": "proportional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UkVJeG" - }, - { - "name": "economy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vELI40" - }, - { - "name": "community", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jfCf8l" - }, - { - "name": "packet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gLd52U" - }, - { - "name": "version", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y6Wh4N" - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WzREWT" - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xrYC3D" - }, - { - "name": "nationality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g7IYpD" - }, - { - "name": "selection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yw1tE" - }, - { - "name": "institute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "io2ZIk" - }, - { - "name": "aboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7gBj6V" - }, - { - "name": "endure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6EZSzH" - }, - { - "name": "detail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqvNr7" - }, - { - "name": "shortly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UhiwAi" - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gMwrbt" - }, - { - "name": "appropriate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ml8XQ4" - }, - { - "name": "providing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cBe8k5" - }, - { - "name": "fate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBdduK" - }, - { - "name": "throat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqrxqT" - }, - { - "name": "utility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbwy29" - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dx_4eo" - }, - { - "name": "manual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djTNDa" - }, - { - "name": "measurement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WDe0UG" - }, - { - "name": "optimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EyGXw8" - }, - { - "name": "vocabulary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qoEhbB" - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bwz7ZN" - }, - { - "name": "aspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dWQwYb" - }, - { - "name": "particle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ToPj9S" - }, - { - "name": "aggressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QIs-Z" - }, - { - "name": "behavior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhtKuk" - }, - { - "name": "musician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "58hHri" - }, - { - "name": "minimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bgIU3Z" - }, - { - "name": "descend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Xrvyt" - }, - { - "name": "saint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOMzQc" - }, - { - "name": "density", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vxYHG" - }, - { - "name": "logical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJgU_e" - }, - { - "name": "oblige", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRrR1O" - }, - { - "name": "slam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PFGb4z" - }, - { - "name": "characterize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ODmHWO" - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2GiSk" - }, - { - "name": "ridiculous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dLbhGX" - }, - { - "name": "handbag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dwi7ce" - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Po5VEX" - }, - { - "name": "spin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ovhcxA" - }, - { - "name": "severe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mWk5kb" - }, - { - "name": "emerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aQ8uex" - }, - { - "name": "shallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYtoP8" - }, - { - "name": "lease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oVlYxd" - }, - { - "name": "exploit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMJMzt" - }, - { - "name": "slap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LS0shJ" - }, - { - "name": "spit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcPmT-" - }, - { - "name": "scout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ty9U9l" - }, - { - "name": "anniversary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lBRGb8" - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhnBv5" - }, - { - "name": "restless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vhwLG" - }, - { - "name": "persuasive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1M6kK5" - }, - { - "name": "fleet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kl14HQ" - }, - { - "name": "communicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZWqPV6" - }, - { - "name": "evidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_2kzJ" - }, - { - "name": "saddle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xcqRV9" - }, - { - "name": "rural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y92rmE" - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-QxHu" - }, - { - "name": "historical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHn2XX" - }, - { - "name": "repetition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_sX7l" - }, - { - "name": "fortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KJdd6e" - }, - { - "name": "acid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OkpPyJ" - }, - { - "name": "transmission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bd1JCK" - }, - { - "name": "shortage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7NQ_7" - }, - { - "name": "discrimination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRzEhp" - }, - { - "name": "female", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZuKMfj" - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeGURw" - }, - { - "name": "swift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ypLJrF" - }, - { - "name": "surrender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "flMcq-" - }, - { - "name": "faint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5boff" - }, - { - "name": "world-wide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kio_tL" - }, - { - "name": "minister", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIszTL" - }, - { - "name": "pose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vmBXF-" - }, - { - "name": "remedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6itWt" - }, - { - "name": "jail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qqydYi" - }, - { - "name": "consent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9uC0z" - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rtJow6" - }, - { - "name": "typewriter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejwP5_" - }, - { - "name": "helpless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ms9BWx" - }, - { - "name": "respect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_oWO5J" - }, - { - "name": "volume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YeAF05" - }, - { - "name": "retreat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zO2K1T" - }, - { - "name": "ache", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjfOk7" - }, - { - "name": "mutual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5zcjt" - }, - { - "name": "shell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7f9Iz" - }, - { - "name": "guideline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mr9i_b" - }, - { - "name": "loose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "igEoTb" - }, - { - "name": "therefore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fuzTSO" - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gc9ibl" - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gyyrFx" - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBvOEs" - }, - { - "name": "private", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mnPNxL" - }, - { - "name": "baggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbKyK_" - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4gH1j" - }, - { - "name": "breakdown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXjA61" - }, - { - "name": "paste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0tYx" - }, - { - "name": "overtake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60E6Kp" - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS4hes" - }, - { - "name": "overnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeTiG7" - }, - { - "name": "behave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b3IybY" - }, - { - "name": "stretch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SEeYy7" - }, - { - "name": "undo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uFPgbH" - }, - { - "name": "accomplish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMy593" - }, - { - "name": "laser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMy2zQ" - }, - { - "name": "mixture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqNHlK" - }, - { - "name": "engine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxYYpP" - }, - { - "name": "responsible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fY39B" - }, - { - "name": "scope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-HVY0O" - }, - { - "name": "democratic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30xzEM" - }, - { - "name": "medal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYaw-O" - }, - { - "name": "satellite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wkRCFT" - }, - { - "name": "bullet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLFpms" - }, - { - "name": "recorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQwSOc" - }, - { - "name": "identify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjHkkz" - }, - { - "name": "embrace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdYQG0" - }, - { - "name": "nitrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1LK6" - }, - { - "name": "pour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Ul-9M" - }, - { - "name": "label", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wncfdT" - }, - { - "name": "improvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JzkQxi" - }, - { - "name": "slippery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZdJYBv" - }, - { - "name": "scissors", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxbvDd" - }, - { - "name": "significance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0PsSO" - }, - { - "name": "modify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYQf8c" - }, - { - "name": "horizon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E31K3t" - }, - { - "name": "environment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AU54KG" - }, - { - "name": "airplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mH6vSK" - }, - { - "name": "pledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d77a5w" - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mw0eo6" - }, - { - "name": "reservoir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Su1Lwn" - }, - { - "name": "deliberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hPDtA5" - }, - { - "name": "swear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bugduQ" - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmTUB" - }, - { - "name": "decorate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d_deRA" - }, - { - "name": "copyright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_BIIT" - }, - { - "name": "biotechnology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vHE_pI" - }, - { - "name": "career", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dos5Ja" - }, - { - "name": "occupation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeiMXd" - }, - { - "name": "tendency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3jAt6" - }, - { - "name": "release", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYBw7_" - }, - { - "name": "charter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ij4RA4" - }, - { - "name": "slim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DMwjRM" - }, - { - "name": "arithmetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fd6mCj" - }, - { - "name": "rib", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yG8SI4" - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PsmG53" - }, - { - "name": "liberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecjGlg" - }, - { - "name": "rid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dE8Jnw" - }, - { - "name": "variation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbgo40" - }, - { - "name": "moral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ey_-l5" - }, - { - "name": "defect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zwiBk" - }, - { - "name": "reinforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBcLWH" - }, - { - "name": "explode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83VWnS" - }, - { - "name": "casual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7tra5" - }, - { - "name": "decline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3URsd6" - }, - { - "name": "property", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ki-ZZk" - }, - { - "name": "succeeding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joISXq" - }, - { - "name": "brave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThMrdB" - }, - { - "name": "similar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fF3W_j" - }, - { - "name": "viewpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pdbiJ" - }, - { - "name": "anyhow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4y9Pi8" - }, - { - "name": "specify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnXTLs" - }, - { - "name": "whistle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWRDHE" - }, - { - "name": "handle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sWcATe" - }, - { - "name": "forth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oXrzZt" - }, - { - "name": "tough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5_MwXl" - }, - { - "name": "crossing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yrh8nY" - }, - { - "name": "script", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W-NQYT" - }, - { - "name": "submerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZq6xW" - }, - { - "name": "system", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "twQhIE" - }, - { - "name": "compose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OJd83T" - }, - { - "name": "spot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Foeej" - }, - { - "name": "roller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t0XRZg" - }, - { - "name": "partial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2dr7i0" - }, - { - "name": "aid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFw7K2" - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMBuD3" - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xi56UL" - }, - { - "name": "retain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftU2o-" - }, - { - "name": "swell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8v-WS" - }, - { - "name": "skilled", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28lYws" - }, - { - "name": "local", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g1yK6C" - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rqseHL" - }, - { - "name": "crude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mZLVAH" - }, - { - "name": "manufacturer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-XCImk" - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIxs0Y" - }, - { - "name": "valid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5qdcg" - }, - { - "name": "withstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cLZ5Qz" - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a57ieF" - }, - { - "name": "vacuum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyFi0B" - }, - { - "name": "encourage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzneP4" - }, - { - "name": "bubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDumq9" - }, - { - "name": "era", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3MO2Q7" - }, - { - "name": "yield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WdKU6" - }, - { - "name": "electronic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmmbrw" - }, - { - "name": "vacation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gT3r6A" - }, - { - "name": "outcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HVp44C" - }, - { - "name": "elegant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9crgY0" - }, - { - "name": "tender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yk5ktx" - }, - { - "name": "curriculum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QZV6pi" - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6o0aPn" - }, - { - "name": "powerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgGmnZ" - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_8bKbF" - }, - { - "name": "species", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0Tzzh" - }, - { - "name": "anchor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_gF6V" - }, - { - "name": "preceding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HMyde1" - }, - { - "name": "cite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2E7xx" - }, - { - "name": "logic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "40iIh-" - }, - { - "name": "acquaintance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YLRwO9" - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mysw2" - }, - { - "name": "internship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-fqwq" - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wiJaxE" - }, - { - "name": "eyesight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmZIUS" - }, - { - "name": "precision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVqpt5" - }, - { - "name": "glove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y38_Ae" - }, - { - "name": "screen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FLBW6v" - }, - { - "name": "naked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tkdwjp" - }, - { - "name": "trial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4vOOQd" - }, - { - "name": "correspond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KR4D4B" - }, - { - "name": "spur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r6bFaq" - }, - { - "name": "perception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNRi_A" - }, - { - "name": "rear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-37SY" - }, - { - "name": "amongst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsqB17" - }, - { - "name": "undertake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M7dJI-" - }, - { - "name": "insect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I7RDZr" - }, - { - "name": "bureau", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikaJMA" - }, - { - "name": "moist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4MyVU" - }, - { - "name": "cable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e3v1ps" - }, - { - "name": "qualify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKSf-r" - }, - { - "name": "intense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mANDv0" - }, - { - "name": "pregnant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-K27q" - }, - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pdFDpj" - }, - { - "name": "estate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxG-XY" - }, - { - "name": "applicable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yQAd4j" - }, - { - "name": "admission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IR0eF5" - }, - { - "name": "brass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KudbqD" - }, - { - "name": "expense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP2NSi" - }, - { - "name": "rumour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzV2MC" - }, - { - "name": "contemporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPZs-U" - }, - { - "name": "gear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Usokgs" - }, - { - "name": "boundary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z64Hqa" - }, - { - "name": "rob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V12SY_" - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "colPHm" - }, - { - "name": "financial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-bGU0" - }, - { - "name": "rod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSiESv" - }, - { - "name": "dumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMEvMu" - }, - { - "name": "respective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDDxIf" - }, - { - "name": "media", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pfnmyu" - }, - { - "name": "favour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6QQYW" - }, - { - "name": "pollute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0NuhPJ" - }, - { - "name": "harden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HtnY97" - }, - { - "name": "eve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wfxPx" - }, - { - "name": "pronoun", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRj69d" - }, - { - "name": "define", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "16nTW2" - }, - { - "name": "dictate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EgNH1B" - }, - { - "name": "construction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brw8XO" - }, - { - "name": "predict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "26vnUX" - }, - { - "name": "dump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zcmcxc" - }, - { - "name": "render", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0rS9B" - }, - { - "name": "universal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P1ZOsC" - }, - { - "name": "chemist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XRObbG" - }, - { - "name": "frontier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-nlAi" - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUjLtg" - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ue3Mny" - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JI42yg" - }, - { - "name": "drawer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vc0F15" - }, - { - "name": "requirement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IW0OGv" - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UaGTsd" - }, - { - "name": "employment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W7gnEg" - }, - { - "name": "specific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lztMe" - }, - { - "name": "application", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h8_fpl" - }, - { - "name": "engage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dkg_Dt" - }, - { - "name": "acre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C4KWpC" - }, - { - "name": "whisper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRCvdG" - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwZBn3" - }, - { - "name": "semester", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pRJ3Oy" - }, - { - "name": "strategy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmfAu0" - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ow8Xom" - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "exIU4b" - }, - { - "name": "clumsy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VuKskd" - }, - { - "name": "territory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbV1pX" - }, - { - "name": "concession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yxwImt" - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "11JuTS" - }, - { - "name": "maintain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lKF1LA" - }, - { - "name": "shift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfiXIl" - }, - { - "name": "echo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr3yzr" - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Olk8bc" - }, - { - "name": "bargain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gYV545" - }, - { - "name": "professional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zxR-EJ" - }, - { - "name": "elective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z2vX34" - }, - { - "name": "accusation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oxZwBS" - }, - { - "name": "protein", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XOf8HE" - }, - { - "name": "annual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xU04OX" - }, - { - "name": "exclusive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsQ-yJ" - }, - { - "name": "jar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdQXri" - }, - { - "name": "poverty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQHdgx" - }, - { - "name": "resort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l_YyU2" - }, - { - "name": "goodness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_q0xf-" - }, - { - "name": "lightning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yTqjUg" - }, - { - "name": "jaw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2drNy" - }, - { - "name": "margin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD3pgj" - }, - { - "name": "remain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KSU7zW" - }, - { - "name": "amaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL3-At" - }, - { - "name": "refine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9Hshm" - }, - { - "name": "mount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bauq8X" - }, - { - "name": "demand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixGHaE" - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G9b9v-" - }, - { - "name": "atomic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcZPEl" - }, - { - "name": "deposit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6qRuv9" - }, - { - "name": "centimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QfQE2O" - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cTKxHc" - }, - { - "name": "rotten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gi_PiJ" - }, - { - "name": "skillful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPHKr_" - }, - { - "name": "flash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwSh3w" - }, - { - "name": "accuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69b4xX" - }, - { - "name": "housing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "th60Vq" - }, - { - "name": "devil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B_8z8L" - }, - { - "name": "guarantee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0UmQm" - }, - { - "name": "recommend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F8PrEi" - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ig0fT0" - }, - { - "name": "fertile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXMvV7" - }, - { - "name": "automobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsFZJM" - }, - { - "name": "notion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qtBycP" - }, - { - "name": "diversity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ep0EEl" - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6d0oy" - }, - { - "name": "tractor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VkL7z" - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BgMp6r" - }, - { - "name": "grace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jxwh5u" - }, - { - "name": "advertisement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F_QQV8" - }, - { - "name": "ripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z5FI3r" - }, - { - "name": "attribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "psxC5G" - }, - { - "name": "mechanism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vIGSl" - }, - { - "name": "detection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NOKn0" - }, - { - "name": "triumph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZKC_8" - }, - { - "name": "vice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fwt8kH" - }, - { - "name": "horror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BcuPn" - }, - { - "name": "poison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1OlU0" - }, - { - "name": "thoughtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1k5x00" - }, - { - "name": "gram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Stihh" - }, - { - "name": "empower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV3lza" - }, - { - "name": "riot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXCEOi" - }, - { - "name": "arouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJsarR" - }, - { - "name": "nest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCU9_s" - }, - { - "name": "tour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mitj_G" - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tt2L68" - }, - { - "name": "boring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeTMI2" - }, - { - "name": "classic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-AFTi" - }, - { - "name": "ownership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wqfh3T" - }, - { - "name": "metric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ceY9DR" - }, - { - "name": "absolute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_XdT9_" - }, - { - "name": "ash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d75lj2" - }, - { - "name": "describe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vQbCLp" - }, - { - "name": "suck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGhB95" - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F21gHE" - }, - { - "name": "rub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uvntqV" - }, - { - "name": "presently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ZAJhc" - }, - { - "name": "wealthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cE9Ucl" - }, - { - "name": "rug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6z8wnu" - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQDV8v" - }, - { - "name": "dusk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qLv_9o" - }, - { - "name": "administration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgXb-F" - }, - { - "name": "occasional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hxNM0k" - }, - { - "name": "boast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F7ZFHm" - }, - { - "name": "operator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6OqSy" - }, - { - "name": "debate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bz8qYt" - }, - { - "name": "spacecraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNFbyH" - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gipRxD" - }, - { - "name": "segment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiOaGz" - }, - { - "name": "stripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tww3rz" - }, - { - "name": "jet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxA-gx" - }, - { - "name": "helpful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RWArTB" - }, - { - "name": "statistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XtiMO6" - }, - { - "name": "attractive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QwDB6j" - }, - { - "name": "superb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sl4iu7" - }, - { - "name": "mold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r2qTmo" - }, - { - "name": "engineering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ubyK-" - }, - { - "name": "significant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crDQIN" - }, - { - "name": "bold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CEAbu6" - }, - { - "name": "bleed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThJIP7" - }, - { - "name": "delicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "up1AGj" - }, - { - "name": "catalogue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cfCCNS" - }, - { - "name": "whatever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDzWrm" - }, - { - "name": "decrease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8jIBQ" - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4ifpR" - }, - { - "name": "museum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yzQxTQ" - }, - { - "name": "ignorance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CpXA4" - }, - { - "name": "senate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hr0q0L" - }, - { - "name": "trumpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u8p6oG" - }, - { - "name": "bolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSq3rA" - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djlKwe" - }, - { - "name": "import", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Zte5_" - }, - { - "name": "occupy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmkZhW" - }, - { - "name": "submit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qftnM8" - }, - { - "name": "mood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1bTHkM" - }, - { - "name": "boom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hkOvKf" - }, - { - "name": "absence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f96lrs" - }, - { - "name": "attract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gnS9De" - }, - { - "name": "edition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tNNyS" - }, - { - "name": "simplicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wW8-8X" - }, - { - "name": "cautious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D7lqaZ" - }, - { - "name": "disappear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g6Uwax" - }, - { - "name": "summit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a0Eckx" - }, - { - "name": "recession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ee3K_6" - }, - { - "name": "conclusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yCpYZG" - }, - { - "name": "typist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EWd9Pn" - }, - { - "name": "durable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSBp-g" - }, - { - "name": "negative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QDfxVA" - }, - { - "name": "impose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1w0uVc" - }, - { - "name": "ally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joEFUR" - }, - { - "name": "statement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3dx8L" - }, - { - "name": "hence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39STLJ" - }, - { - "name": "memorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxDwFm" - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYqESH" - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4OdWQW" - }, - { - "name": "pinch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fAbTI-" - }, - { - "name": "delivery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QybJ5E" - }, - { - "name": "rack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfRC6W" - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hSFHuc" - }, - { - "name": "conquer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vur3kH" - }, - { - "name": "learned", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUaQfT" - }, - { - "name": "substance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AehFEK" - }, - { - "name": "frown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KTE0D5" - }, - { - "name": "bond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vARY0E" - }, - { - "name": "target", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tJDn_M" - }, - { - "name": "wax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ynKRTf" - }, - { - "name": "grind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLOTc6" - }, - { - "name": "urban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_yQK_i" - }, - { - "name": "furthermore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uzUQMk" - }, - { - "name": "guidance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZZtTmR" - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4Fwfi" - }, - { - "name": "flame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DhSSSB" - }, - { - "name": "container", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-kig-" - }, - { - "name": "leader", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ljlR-s" - }, - { - "name": "delicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7DcM-" - }, - { - "name": "discard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QK2i4" - }, - { - "name": "fancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K4JFxY" - }, - { - "name": "rebel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V6xkU1" - }, - { - "name": "bounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLz98M" - }, - { - "name": "usage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w5vKrW" - }, - { - "name": "tissue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UCIki" - }, - { - "name": "experimental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vTPAkA" - }, - { - "name": "loosen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "67y66h" - }, - { - "name": "rent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3A0GUA" - }, - { - "name": "nearby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DeIkus" - }, - { - "name": "carpenter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XASr0R" - }, - { - "name": "cart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0CoMl" - }, - { - "name": "modest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNq6QQ" - }, - { - "name": "cast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O-fXGu" - }, - { - "name": "anxious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nOSHb1" - }, - { - "name": "hatred", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cZZU9Z" - }, - { - "name": "crush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i5qwcW" - }, - { - "name": "largely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VzcnS7" - }, - { - "name": "slice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zOCXXS" - }, - { - "name": "frost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1mrm5" - }, - { - "name": "electron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAREaK" - }, - { - "name": "incline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tff-R" - }, - { - "name": "truly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12xC_l" - }, - { - "name": "cash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0tGFyK" - }, - { - "name": "counsel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5SVeW5" - }, - { - "name": "item", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82wA02" - }, - { - "name": "gene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uBDFWx" - }, - { - "name": "liver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usZrsm" - }, - { - "name": "suicide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vhQ_u" - }, - { - "name": "violet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aGqyTk" - }, - { - "name": "hollow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I0FKs-" - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dHThTM" - }, - { - "name": "saving", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A0cBHd" - }, - { - "name": "rely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tU3ac" - }, - { - "name": "hospitalize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIn_zS" - }, - { - "name": "slide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cINVvB" - }, - { - "name": "utilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TeOaOu" - }, - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Jxnbm" - }, - { - "name": "prevail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-D1ip9" - }, - { - "name": "waist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_QNWb" - }, - { - "name": "excessive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YZceEk" - }, - { - "name": "flesh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0g131w" - }, - { - "name": "jungle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zvIPta" - }, - { - "name": "portion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60SrwO" - }, - { - "name": "settle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqZll" - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux9Shi" - }, - { - "name": "harsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NuolZ" - }, - { - "name": "connexion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GNpxnm" - }, - { - "name": "vehicle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1Fpnm" - }, - { - "name": "scrape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yD7u3x" - }, - { - "name": "hardship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jrJfmI" - }, - { - "name": "confuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5lWlTX" - }, - { - "name": "cushion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JXTqP3" - }, - { - "name": "scold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G-jlaF" - }, - { - "name": "glorious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FNNT1D" - }, - { - "name": "civilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeQOo" - }, - { - "name": "physician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG8TmC" - }, - { - "name": "architecture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWD_IX" - }, - { - "name": "stress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "je7dx-" - }, - { - "name": "grip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQMrqh" - }, - { - "name": "explore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXXi1T" - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sj1fJs" - }, - { - "name": "electricity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfrIau" - }, - { - "name": "climate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VLmaP" - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8yF_HW" - }, - { - "name": "bore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5ddXl" - }, - { - "name": "crust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-iED6k" - }, - { - "name": "disorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "350IfC" - }, - { - "name": "criticize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "44Zw0_" - }, - { - "name": "organization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69VhLM" - }, - { - "name": "rage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uxj2-e" - }, - { - "name": "width", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wvrwUN" - }, - { - "name": "dairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cD1RdQ" - }, - { - "name": "board", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jaVrX-" - }, - { - "name": "economic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aD5mFc" - }, - { - "name": "stuff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0V_t1D" - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZrcyKI" - }, - { - "name": "widow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGXgHn" - }, - { - "name": "distinction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cVDYlc" - }, - { - "name": "mature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rthm-T" - }, - { - "name": "navy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s3XGOZ" - }, - { - "name": "fee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RMUyef" - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yhx_H" - }, - { - "name": "influence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix8qIs" - }, - { - "name": "whip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ll8VgG" - }, - { - "name": "protocol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Op0Hwk" - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oWPcCn" - }, - { - "name": "provoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZhn3" - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJiG6i" - }, - { - "name": "talent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXdDYb" - }, - { - "name": "percentage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6jHDy" - }, - { - "name": "negotiate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFaob-" - }, - { - "name": "strain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "56zraU" - }, - { - "name": "hunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jbpSgM" - }, - { - "name": "violin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ei73g0" - }, - { - "name": "remonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tlPDIp" - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NBSYM1" - }, - { - "name": "visible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHU6AU" - }, - { - "name": "crisis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0gRDc" - }, - { - "name": "rail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NaSndH" - }, - { - "name": "survival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW5XB1" - }, - { - "name": "germ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oUku7p" - }, - { - "name": "inner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YMihBc" - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fqFEZm" - }, - { - "name": "keen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "70RUTA" - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yWPn8F" - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGC36L" - }, - { - "name": "transfer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8tSltF" - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V9yCTq" - }, - { - "name": "veteran", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xBjCmG" - }, - { - "name": "indifferent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jSmVI6" - }, - { - "name": "outside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BwP0_Z" - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztu2yG" - }, - { - "name": "affection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MnnUiB" - }, - { - "name": "eagle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71B54D" - }, - { - "name": "cruise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXlmFk" - }, - { - "name": "elementary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1eBbqT" - }, - { - "name": "topic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kXx0po" - }, - { - "name": "solemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y24ijH" - }, - { - "name": "perceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ac8jNM" - }, - { - "name": "omit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Co1ofe" - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rdo0Kg" - }, - { - "name": "option", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZeBmYy" - }, - { - "name": "erroneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WYb9oE" - }, - { - "name": "raid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNCPGU" - }, - { - "name": "politics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vWxlRK" - }, - { - "name": "acute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4E_6vp" - }, - { - "name": "limitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HONnVh" - }, - { - "name": "sponsor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xJIrqI" - }, - { - "name": "kindergarten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kYmedV" - }, - { - "name": "unexpected", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k7_R-Z" - }, - { - "name": "crucial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muuJ1Y" - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnlAq_" - }, - { - "name": "faith", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUNmfH" - }, - { - "name": "generator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqpq33" - }, - { - "name": "insert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5ggTq" - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGHMhL" - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KLfmB" - }, - { - "name": "microscope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aHjl45" - }, - { - "name": "necessarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lklLZE" - }, - { - "name": "highlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YiU8MN" - }, - { - "name": "candidate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6E9EM0" - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5irZCG" - }, - { - "name": "parallel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzF4Hv" - }, - { - "name": "reject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PM7q3M" - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o94SCV" - }, - { - "name": "cashier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zUjKqU" - }, - { - "name": "sheer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ItSENB" - }, - { - "name": "miracle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BEuoCB" - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MrvGwX" - }, - { - "name": "original", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BLO8fp" - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fv98LB" - }, - { - "name": "handful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Gciaw" - }, - { - "name": "assignment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tr8sUd" - }, - { - "name": "nylon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ECJhee" - }, - { - "name": "yawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtMyMO" - }, - { - "name": "electric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdCCL5" - }, - { - "name": "terminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3TBfqO" - }, - { - "name": "kingdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a3lySR" - }, - { - "name": "differ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zTGTv" - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zWxoc6" - }, - { - "name": "latter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AMHfmw" - }, - { - "name": "depression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vZgAMw" - }, - { - "name": "reduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XBXSYB" - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYZBwu" - }, - { - "name": "equivalent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tKQyn" - }, - { - "name": "gaol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPGbkh" - }, - { - "name": "conversely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iZnyNI" - }, - { - "name": "sauce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1bFi" - }, - { - "name": "ban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oFzppW" - }, - { - "name": "fascinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_-TGJ" - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TlatkD" - }, - { - "name": "diplomatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ls7IEE" - }, - { - "name": "bat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CvjW9e" - }, - { - "name": "neighbourhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBVIXJ" - }, - { - "name": "draft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OI4gZX" - }, - { - "name": "complex", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwM-Ap" - }, - { - "name": "rank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z_NdMP" - }, - { - "name": "assumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "umk90n" - }, - { - "name": "pension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bhisMr" - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQY9FV" - }, - { - "name": "fluid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yfiCUL" - }, - { - "name": "bay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "heQUOP" - }, - { - "name": "outlet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1TUNIz" - }, - { - "name": "neglect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYTP9i" - }, - { - "name": "addition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NKVAPo" - }, - { - "name": "gang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66Bp-1" - }, - { - "name": "shrink", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFhn99" - }, - { - "name": "ancestor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKz2-X" - }, - { - "name": "textile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zb4zrB" - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WoSU8c" - }, - { - "name": "panic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZB7yG-" - }, - { - "name": "extend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4eBj56" - }, - { - "name": "fold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tVJjg_" - }, - { - "name": "plastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i_GXRX" - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHe8n0" - }, - { - "name": "chemical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DZ9EV" - }, - { - "name": "interpretation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wMzR3t" - }, - { - "name": "ax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AWuqLw" - }, - { - "name": "intermediate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KmeRq3" - }, - { - "name": "folk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUhLgO" - }, - { - "name": "consideration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PRxN4W" - }, - { - "name": "competitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AcwCB4" - }, - { - "name": "enquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dYQ3G" - }, - { - "name": "applause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQsihN" - }, - { - "name": "frank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W3ncEx" - }, - { - "name": "abuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZuTJ" - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKZQGy" - }, - { - "name": "scheme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEIskd" - }, - { - "name": "affect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RZlmm" - }, - { - "name": "deaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7IzliP" - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7JnG9" - }, - { - "name": "consequently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TAPC_9" - }, - { - "name": "virus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVQAzh" - }, - { - "name": "drain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X7rtLl" - }, - { - "name": "isolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fyTj3I" - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GEOUA2" - }, - { - "name": "amuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Np8XT" - }, - { - "name": "inward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IBGpC3" - }, - { - "name": "responsibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GiVTg1" - }, - { - "name": "enquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sRK7e0" - }, - { - "name": "civil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVmwy2" - }, - { - "name": "popularity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qmBnA-" - }, - { - "name": "subsequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q-oJ1l" - }, - { - "name": "indicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6iFi0" - }, - { - "name": "scarcely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGfMoz" - }, - { - "name": "panel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a-b6Hc" - }, - { - "name": "outstanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TmFRbM" - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HFThRX" - }, - { - "name": "sew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVbLDN" - }, - { - "name": "oval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yONOb9" - }, - { - "name": "column", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hjFn5-" - }, - { - "name": "procedure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BhzFw_" - }, - { - "name": "sample", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uOiIS" - }, - { - "name": "integrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zd4p9O" - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "REHzoj" - }, - { - "name": "applicant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dZYH-r" - }, - { - "name": "tropical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L6CfJA" - }, - { - "name": "partner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wlU5Aw" - }, - { - "name": "plunge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uS9qLf" - }, - { - "name": "diagnose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7firVS" - }, - { - "name": "somewhat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaAqwE" - }, - { - "name": "earnest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcxERQ" - }, - { - "name": "spider", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iOrsB-" - }, - { - "name": "interview", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGm40H" - }, - { - "name": "essential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNJHWd" - }, - { - "name": "clarify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JwIBcJ" - }, - { - "name": "furnace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXq2UD" - }, - { - "name": "ditch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZZFpb" - }, - { - "name": "deck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T3cZcN" - }, - { - "name": "scare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MYO6pg" - }, - { - "name": "thunder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i4fxau" - }, - { - "name": "observe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tvX1Ty" - }, - { - "name": "humorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOeKto" - }, - { - "name": "furnish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jL0kUa" - }, - { - "name": "bet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9z4aph" - }, - { - "name": "contact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IF77R1" - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zZKOvJ" - }, - { - "name": "discharge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O7wHka" - }, - { - "name": "exclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbToQf" - }, - { - "name": "scary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9QWEP" - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7e4Cue" - }, - { - "name": "utmost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8wwJhV" - }, - { - "name": "image", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nmy1PC" - }, - { - "name": "consultancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qf10G-" - }, - { - "name": "ribbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KX6g5Y" - }, - { - "name": "garbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MRq9fX" - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XwoCwk" - }, - { - "name": "mainland", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGvQc6" - }, - { - "name": "homogeneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOa56E" - }, - { - "name": "anxiety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqWP_P" - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRohc4" - }, - { - "name": "adjust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OBI2EI" - }, - { - "name": "popularize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mF5Rox" - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BkTmWc" - }, - { - "name": "vigorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km5JUL" - }, - { - "name": "debt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u0MKfE" - }, - { - "name": "refrigerator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hteJcm" - }, - { - "name": "necessity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oos5TT" - }, - { - "name": "fog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wxgKjL" - }, - { - "name": "frame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qyCq3a" - }, - { - "name": "lucky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUmz95" - }, - { - "name": "origin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_Cq7c" - }, - { - "name": "industrialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D2mIkx" - }, - { - "name": "clash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6v5Izm" - }, - { - "name": "compel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hn1fl8" - }, - { - "name": "capable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ehr1us" - }, - { - "name": "depress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zNPaRQ" - }, - { - "name": "parade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uqg8SD" - }, - { - "name": "burden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxpYkw" - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKOJhE" - }, - { - "name": "lemon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PgWFXj" - }, - { - "name": "personality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZYiEf" - }, - { - "name": "plot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Axg4Nt" - }, - { - "name": "sanction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M8i4Qp" - }, - { - "name": "rate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYoEZ9" - }, - { - "name": "alert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ele-tr" - }, - { - "name": "await", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xbROux" - }, - { - "name": "sin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChMF4n" - }, - { - "name": "client", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5cLY3n" - }, - { - "name": "prosperity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgQL8q" - }, - { - "name": "divide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnzMGL" - }, - { - "name": "contrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AyECUO" - }, - { - "name": "lump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCFq4r" - }, - { - "name": "digital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nI4cx3" - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "buuBq0" - }, - { - "name": "historic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4YOoAX" - }, - { - "name": "oven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TaCwN1" - }, - { - "name": "bound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4YMIc" - }, - { - "name": "counter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5n6LR" - }, - { - "name": "rhythm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQG0OM" - }, - { - "name": "stroke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z_OfST" - }, - { - "name": "breed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6eaS6g" - }, - { - "name": "management", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2lVQrc" - }, - { - "name": "publish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KjiKs" - }, - { - "name": "realm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlwP3h" - }, - { - "name": "correspondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lL9Eh2" - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jxSYDH" - }, - { - "name": "renew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wt1TVw" - }, - { - "name": "bid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sv_KB3" - }, - { - "name": "prompt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2YOnW" - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTrKZx" - }, - { - "name": "comprehensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PwAGm2" - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_7uHK" - }, - { - "name": "withdraw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_26NqJ" - }, - { - "name": "assign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VNHr04" - }, - { - "name": "elaborate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQIq8" - }, - { - "name": "feather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNn_e6" - }, - { - "name": "corridor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wdayik" - }, - { - "name": "decade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXZAso" - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uFdVZ" - }, - { - "name": "select", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FsVtJL" - }, - { - "name": "fulfill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGt08O" - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X9Dhge" - }, - { - "name": "congress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wL6f_" - }, - { - "name": "advanced", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNYyyY" - }, - { - "name": "mechanical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TodES6" - }, - { - "name": "recommendation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9YXqo" - }, - { - "name": "welfare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JqOwj" - }, - { - "name": "flourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j9KIn3" - }, - { - "name": "output", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14XFN-" - }, - { - "name": "fatigue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "65asKW" - }, - { - "name": "striking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ZdRVU" - }, - { - "name": "vessel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRcNAQ" - }, - { - "name": "majority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Tsx59" - }, - { - "name": "drag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_rqROE" - }, - { - "name": "crown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rP7AGq" - }, - { - "name": "likely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WU7loH" - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOt0rJ" - }, - { - "name": "gymnasium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARiljk" - }, - { - "name": "issue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftWJZ9" - }, - { - "name": "vain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N8ISND" - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XxuxJ" - }, - { - "name": "index", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMj6pn" - }, - { - "name": "fry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fXRB8z" - }, - { - "name": "youngster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_ql-4" - }, - { - "name": "odd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udQbY5" - }, - { - "name": "lung", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1OUss9" - }, - { - "name": "conservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4CzqvV" - }, - { - "name": "distraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gJZYKA" - }, - { - "name": "supplement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3f1Fqh" - }, - { - "name": "contrast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MCQP1v" - }, - { - "name": "paragraph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f39EK3" - }, - { - "name": "judgement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KHerql" - }, - { - "name": "proportion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2yq0P0" - }, - { - "name": "widen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvbP3L" - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5oKFPz" - }, - { - "name": "occurrence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qhFyq" - }, - { - "name": "inflation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r8Fbs2" - }, - { - "name": "thinking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efCt_9" - }, - { - "name": "cycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yJyiP6" - }, - { - "name": "disposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fNgbSx" - }, - { - "name": "settlement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71y2l4" - }, - { - "name": "delegate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObNFvq" - }, - { - "name": "literature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ET_-4" - }, - { - "name": "sphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mbd5ZT" - }, - { - "name": "inquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4GXwg" - }, - { - "name": "prejudice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXL3y1" - }, - { - "name": "dissolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sOGg-k" - }, - { - "name": "digest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSWybW" - }, - { - "name": "angle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A48cEi" - }, - { - "name": "immigrant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DTFs9s" - }, - { - "name": "tradition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TVVdpn" - }, - { - "name": "ability", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0vKfb" - }, - { - "name": "urgent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvGEKm" - }, - { - "name": "belief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mOJfZ6" - }, - { - "name": "bundle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_m9l9_" - }, - { - "name": "suggestion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7KBUU" - }, - { - "name": "systematic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b38JA6" - }, - { - "name": "cupboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XhE35N" - }, - { - "name": "generally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "555HJC" - }, - { - "name": "bacon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Jq_7Q" - }, - { - "name": "likewise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAESMW" - }, - { - "name": "slender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dxNHX" - }, - { - "name": "troublesome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0y1U3" - }, - { - "name": "instruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xgGXZ" - }, - { - "name": "oral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ekT0-x" - }, - { - "name": "married", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJFLC5" - }, - { - "name": "transaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fttlkW" - }, - { - "name": "conscious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SlN8bu" - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8bH-Ls" - }, - { - "name": "auto", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUlGS2" - }, - { - "name": "sigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nfe5Xa" - }, - { - "name": "constant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zOs2V" - }, - { - "name": "pants", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-89hR" - }, - { - "name": "mislead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EXITz" - }, - { - "name": "split", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SmPZBI" - }, - { - "name": "orchestra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uwrQ1x" - }, - { - "name": "publication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6WrY6I" - }, - { - "name": "sufficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lGyqZW" - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-xNxta" - }, - { - "name": "antique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u367wE" - }, - { - "name": "sow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9TtJ8T" - }, - { - "name": "widespread", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MpYHhj" - }, - { - "name": "petroleum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKMKDZ" - }, - { - "name": "communication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNOXh2" - }, - { - "name": "directly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRA0OG" - }, - { - "name": "tolerance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-sRH8-" - }, - { - "name": "kneel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Id2Lk" - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nz0fa" - }, - { - "name": "fasten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztm_N2" - }, - { - "name": "contest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLbtog" - }, - { - "name": "author", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwtHHr" - }, - { - "name": "dirt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XN0WtY" - }, - { - "name": "astrophysics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6BB7U" - }, - { - "name": "greenhouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4F5NLv" - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENYZoD" - }, - { - "name": "plus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fprc2r" - }, - { - "name": "establish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPGkVo" - }, - { - "name": "expansion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tvtwfw" - }, - { - "name": "relevant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "apGhbR" - }, - { - "name": "entry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LR9Yfs" - }, - { - "name": "license", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Tex6y" - }, - { - "name": "synthetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3iDyD" - }, - { - "name": "headquarters", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mMZ9XK" - }, - { - "name": "expand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfLlsF" - }, - { - "name": "gaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OIwAXu" - }, - { - "name": "essay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eAg04C" - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kt2c5R" - }, - { - "name": "plug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S81uT_" - }, - { - "name": "bunch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l-wXyQ" - }, - { - "name": "thermometer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-Yq6Z" - }, - { - "name": "tense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nBwUud" - }, - { - "name": "postpone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7STXNg" - }, - { - "name": "bride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tclMmO" - }, - { - "name": "favourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dgb6T1" - }, - { - "name": "hammer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "autAtz" - }, - { - "name": "candy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FpISJY" - }, - { - "name": "seal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zd6xB1" - }, - { - "name": "mental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ja_CY7" - }, - { - "name": "decent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7x6p9" - }, - { - "name": "storage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oousku" - }, - { - "name": "investigate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEXkQg" - }, - { - "name": "racial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr9cYx" - }, - { - "name": "switch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_znlv" - }, - { - "name": "niece", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj62rf" - }, - { - "name": "considerable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q7iqaC" - }, - { - "name": "auxiliary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDX5Df" - }, - { - "name": "heal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyfG8c" - }, - { - "name": "reserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahBwZ9" - }, - { - "name": "somehow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INgtuw" - }, - { - "name": "dive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8OPpdK" - }, - { - "name": "brick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h7-uv1" - }, - { - "name": "sympathy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zmBtVs" - }, - { - "name": "heap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzSkrE" - }, - { - "name": "consumer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dFxs-O" - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-KavK" - }, - { - "name": "cripple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wOlXD_" - }, - { - "name": "highly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8c5DDe" - }, - { - "name": "brief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtSxgh" - }, - { - "name": "keyboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d-oqU8" - }, - { - "name": "initiative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FHISJR" - }, - { - "name": "recover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0b9zR1" - }, - { - "name": "determine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_8MJO" - }, - { - "name": "nature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhhuz3" - }, - { - "name": "social", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OloU4E" - }, - { - "name": "medication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5mvBYP" - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxU2ku" - }, - { - "name": "intelligent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1HOSrJ" - }, - { - "name": "whilst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KaH6EA" - }, - { - "name": "clerk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IffvVC" - }, - { - "name": "lobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LbAIRi" - }, - { - "name": "acknowledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn7v97" - }, - { - "name": "equip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gxfg2" - }, - { - "name": "radiation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_3H0Nr" - }, - { - "name": "Christian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WX0BYT" - }, - { - "name": "pulse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwniyK" - }, - { - "name": "luxury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJuXtD" - }, - { - "name": "spiritual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qqDtw" - }, - { - "name": "worthwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjnuMy" - }, - { - "name": "mould", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xAJrJW" - }, - { - "name": "increasingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxecnN" - }, - { - "name": "elbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qJPGrI" - }, - { - "name": "salad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z958rU" - }, - { - "name": "strategic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlgmyJ" - }, - { - "name": "vary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OczJ8g" - }, - { - "name": "readily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS9KPn" - }, - { - "name": "stoop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlLcM9" - }, - { - "name": "upper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Arg50s" - }, - { - "name": "rocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c4S1TR" - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qI-Ocs" - }, - { - "name": "county", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o_Xm85" - }, - { - "name": "respondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ugBdk" - }, - { - "name": "episode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hlWWvy" - }, - { - "name": "convenience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1s4ATH" - }, - { - "name": "determination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wGBufb" - }, - { - "name": "discipline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1j5ISW" - }, - { - "name": "behalf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryAu4Z" - }, - { - "name": "evidently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ZInEv" - }, - { - "name": "objective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fx_FUN" - }, - { - "name": "injure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqBafC" - }, - { - "name": "victimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M1jEaV" - }, - { - "name": "exert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqAjbF" - }, - { - "name": "province", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DGQ5Cj" - }, - { - "name": "scandal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pFaZnq" - }, - { - "name": "horrible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "79qYuX" - }, - { - "name": "estimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vf-7v0" - }, - { - "name": "strengthen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LyDUAg" - }, - { - "name": "drip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tyNC7d" - }, - { - "name": "injury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3sS00g" - }, - { - "name": "exhibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1IMxUL" - }, - { - "name": "brand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BZocTh" - }, - { - "name": "mushroom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mkZJc" - }, - { - "name": "alcohol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8d6Xoy" - }, - { - "name": "choke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFqEwI" - }, - { - "name": "proposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NNkQc7" - }, - { - "name": "inevitable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YyRjbj" - }, - { - "name": "deny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-fZtk" - }, - { - "name": "miserable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crVZxz" - }, - { - "name": "recreation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfDVqZ" - }, - { - "name": "subtract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENV6yl" - }, - { - "name": "allowance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XUYbnI" - }, - { - "name": "portable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZjCuyq" - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gzxgHs" - }, - { - "name": "glory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5UMuO" - }, - { - "name": "secondary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HSiLU2" - }, - { - "name": "mission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zaslRv" - }, - { - "name": "attorney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gph_4J" - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDjN2L" - }, - { - "name": "adopt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JPejuF" - }, - { - "name": "oppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBGt9" - }, - { - "name": "singular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TJEImm" - }, - { - "name": "device", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82e65a" - }, - { - "name": "mainframe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f5pJF1" - }, - { - "name": "motor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uUnH5y" - }, - { - "name": "minus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WempL-" - }, - { - "name": "conservative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YlasGt" - }, - { - "name": "access", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fsDK4n" - }, - { - "name": "conference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cqFL_t" - }, - { - "name": "activity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGROIa" - }, - { - "name": "primitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcoDls" - }, - { - "name": "advisable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvYX8b" - }, - { - "name": "dormitory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebdHBH" - }, - { - "name": "overcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XS9-K8" - }, - { - "name": "cooperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IRInU" - }, - { - "name": "cabin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "87bDU0" - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z9eH08" - }, - { - "name": "current", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QhB4pA" - }, - { - "name": "heel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNGSmB" - }, - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KP9uzb" - }, - { - "name": "disturb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xpENq3" - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUwtYV" - }, - { - "name": "persist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfYSXA" - }, - { - "name": "audio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPoPtd" - }, - { - "name": "civilian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "22PyWw" - }, - { - "name": "pump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-n_SJ" - }, - { - "name": "pierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sq37pi" - }, - { - "name": "teenager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EiAdwj" - }, - { - "name": "apart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xeEw09" - }, - { - "name": "calendar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g01aS" - }, - { - "name": "offensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s9aWYl" - }, - { - "name": "cartoon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3stBma" - }, - { - "name": "speculate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5imc2i" - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ki0ddi" - }, - { - "name": "amid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3b55Lx" - }, - { - "name": "beloved", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUg6Bd" - }, - { - "name": "single", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aEmZX2" - }, - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1fjut" - }, - { - "name": "cement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6rR-6J" - }, - { - "name": "subway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ctYP5r" - }, - { - "name": "gallon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cwa8h5" - }, - { - "name": "acquaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kji9bl" - }, - { - "name": "appoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSNvvV" - }, - { - "name": "elastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BtfkIH" - }, - { - "name": "assist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xa8WFA" - }, - { - "name": "vast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udOX1S" - }, - { - "name": "intervene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCaeq1" - }, - { - "name": "undergraduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRCsXM" - }, - { - "name": "symbol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WaUbu0" - }, - { - "name": "commercial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jqVsZo" - }, - { - "name": "joint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KliqB" - }, - { - "name": "reasonable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XG20Cr" - }, - { - "name": "available", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1SQ5DT" - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MwP-2" - }, - { - "name": "advocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AVqItf" - }, - { - "name": "frequency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "alR39P" - }, - { - "name": "horizontal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcEX0u" - }, - { - "name": "luggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Ftcz0" - }, - { - "name": "lick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKLkpk" - }, - { - "name": "missile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TiHSym" - }, - { - "name": "dynamic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39q-Jv" - }, - { - "name": "satisfactory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bw-on_" - }, - { - "name": "military", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pd5aQp" - }, - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCS3rI" - }, - { - "name": "generate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VfXQRH" - }, - { - "name": "unusual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BO4tUH" - }, - { - "name": "sector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_p0ull" - }, - { - "name": "passion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T5C8vv" - }, - { - "name": "extreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KzS2TI" - }, - { - "name": "coil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H5TRT" - }, - { - "name": "ensure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0X2WJP" - }, - { - "name": "coordinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQ6jX_" - }, - { - "name": "organism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iQSh9i" - }, - { - "name": "athlete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQk2xZ" - }, - { - "name": "epidemic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKyK0y" - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0K4X" - }, - { - "name": "upright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YUXvz" - }, - { - "name": "remarkable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SHj0oJ" - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeenxP" - }, - { - "name": "tube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LsiJVS" - }, - { - "name": "naval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4k4sH" - }, - { - "name": "failure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pBBTvH" - }, - { - "name": "accountancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXMek5" - }, - { - "name": "forge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XXIvL0" - }, - { - "name": "carpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WSxFB2" - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nsp706" - }, - { - "name": "hint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJ98-r" - }, - { - "name": "knot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nhChWN" - }, - { - "name": "demonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdjnmU" - }, - { - "name": "region", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UHhA3n" - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08-wmj" - }, - { - "name": "yearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60AZqh" - }, - { - "name": "deceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDcBKq" - }, - { - "name": "saucer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aOAwWN" - }, - { - "name": "hire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P3cBh0" - }, - { - "name": "kid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Fw-VG" - }, - { - "name": "donkey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bfHXu_" - }, - { - "name": "destination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kR27Gh" - }, - { - "name": "vertical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_i7hH9" - }, - { - "name": "learning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfHoN8" - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tgld2z" - }, - { - "name": "misconception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgqNIE" - }, - { - "name": "damp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i7CRjl" - }, - { - "name": "vivid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gx_Ji0" - }, - { - "name": "honey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uKfeEi" - }, - { - "name": "screw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_GakGW" - }, - { - "name": "gap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dD36R2" - }, - { - "name": "missing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3L_BOL" - }, - { - "name": "emphasize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kid8Xt" - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zsm0WY" - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ogew0s" - }, - { - "name": "socialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhC7Hu" - }, - { - "name": "gradual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzN0r-" - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLB38L" - }, - { - "name": "ore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tDFG81" - }, - { - "name": "slight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-cs9p" - }, - { - "name": "previous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-Btgz" - }, - { - "name": "transmit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FewDeh" - }, - { - "name": "socialism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kp08Yi" - }, - { - "name": "consumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0eeixs" - }, - { - "name": "argue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YeT4w" - }, - { - "name": "technology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yj-yW6" - }, - { - "name": "weaken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vD5jFb" - }, - { - "name": "voltage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WUpCJB" - }, - { - "name": "damn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUqHbl" - }, - { - "name": "superior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riIP6Q" - }, - { - "name": "location", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3rPa8" - }, - { - "name": "compensation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT2NNJ" - }, - { - "name": "bankrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Rp1HG" - }, - { - "name": "punctual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYp-wd" - }, - { - "name": "advertise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kGYV8" - }, - { - "name": "compromise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFkPD_" - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2--vve" - }, - { - "name": "software", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIdkTZ" - }, - { - "name": "seminar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS83lL" - }, - { - "name": "comparative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7U9at" - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "61ft3u" - }, - { - "name": "fruitful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mPVmQ" - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1PdC5" - }, - { - "name": "dragon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EoBpiI" - }, - { - "name": "hesitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcC5yD" - }, - { - "name": "beyond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cqKhX" - }, - { - "name": "hell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YN5Gzg" - }, - { - "name": "feedback", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0fTSy" - }, - { - "name": "hazard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SYg7dU" - }, - { - "name": "justify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6klxrE" - }, - { - "name": "voluntary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kjf-z1" - }, - { - "name": "connection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "suRBJY" - }, - { - "name": "proof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0W-9QJ" - }, - { - "name": "timber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RTz5UR" - }, - { - "name": "roar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ix3LW" - }, - { - "name": "presence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DE7CQT" - }, - { - "name": "phase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jIb4O9" - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izGJFG" - }, - { - "name": "efficiency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RV8wrd" - }, - { - "name": "overhead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWaZIM" - }, - { - "name": "contract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k19sTo" - }, - { - "name": "conclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3vr50e" - }, - { - "name": "comprehension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iYlbwQ" - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iPDcrU" - }, - { - "name": "leather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z-IJXL" - }, - { - "name": "comb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lAD3Hg" - }, - { - "name": "innovative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qAfpwT" - }, - { - "name": "insight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL5AyY" - }, - { - "name": "fabric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0oCnTl" - }, - { - "name": "revolutionary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDuygX" - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXHlUK" - }, - { - "name": "exact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWfXh_" - }, - { - "name": "indoor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myj0Cb" - }, - { - "name": "force", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0Y127" - }, - { - "name": "centigrade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j2jk5w" - }, - { - "name": "sexual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4b-rHw" - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lnUXA" - }, - { - "name": "freight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YIdS9D" - }, - { - "name": "range", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h9CIcl" - }, - { - "name": "distribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NW5P1P" - }, - { - "name": "tyre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n9O6bo" - }, - { - "name": "derive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IpHbRi" - }, - { - "name": "capacity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiDbaP" - }, - { - "name": "cope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2375N-" - }, - { - "name": "overseas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n4cVoh" - }, - { - "name": "impress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fA-Ejr" - }, - { - "name": "confess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0HeCD" - }, - { - "name": "leak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvkeJJ" - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "si-Pd-" - }, - { - "name": "feature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIblvL" - }, - { - "name": "lean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-s7YuV" - }, - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vk2iZS" - }, - { - "name": "recall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LFSA3T" - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PxP4xX" - }, - { - "name": "waterproof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyT8eN" - }, - { - "name": "barber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "malSI1" - }, - { - "name": "precise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDPErR" - }, - { - "name": "sensible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "doi_pm" - }, - { - "name": "objection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSLBTc" - }, - { - "name": "dispute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yeqYSc" - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EX8QGW" - }, - { - "name": "observation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBqq1A" - }, - { - "name": "tremble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5666az" - }, - { - "name": "suspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-OdWex" - }, - { - "name": "apologize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C6M4lI" - }, - { - "name": "inhabitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1At73J" - }, - { - "name": "fraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-5LDd" - }, - { - "name": "filter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YxkPl" - }, - { - "name": "sunlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5d0oU" - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKgBLQ" - }, - { - "name": "emotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SU72Du" - }, - { - "name": "massive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4SE0y" - }, - { - "name": "cease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NgpNmM" - }, - { - "name": "assess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dwLW29" - }, - { - "name": "asset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nXq_5m" - }, - { - "name": "owe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRSpNB" - }, - { - "name": "scarce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0jNat" - }, - { - "name": "minimum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqGa2Y" - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OCvvly" - }, - { - "name": "mathematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HEER5B" - }, - { - "name": "apology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xKy_u_" - }, - { - "name": "magic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fmSF-G" - }, - { - "name": "argument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JsRQxo" - }, - { - "name": "reveal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hZj9Ly" - }, - { - "name": "data", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S9I8lA" - }, - { - "name": "theoretical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IX9v65" - }, - { - "name": "adequate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikgTO9" - }, - { - "name": "utter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8I0AB3" - }, - { - "name": "onion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1exHP" - }, - { - "name": "vibrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hbp-4q" - }, - { - "name": "drum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHyePL" - }, - { - "name": "sausage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3AeuP8" - }, - { - "name": "hopeful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2Q5rT" - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUEqxR" - }, - { - "name": "condense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U4dmbw" - }, - { - "name": "barrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VFVzww" - }, - { - "name": "realistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s_ahWd" - }, - { - "name": "justice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coW09d" - }, - { - "name": "create", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PWR2MF" - }, - { - "name": "criminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVt9dR" - }, - { - "name": "tag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaBxqw" - }, - { - "name": "notebook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJHX1W" - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHsSHj" - }, - { - "name": "indirect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZNAsJ" - }, - { - "name": "individual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KgyxZB" - }, - { - "name": "resource", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oyf9hq" - }, - { - "name": "ugly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJn4Vi" - }, - { - "name": "nuisance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oHH92x" - }, - { - "name": "tax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNz0El" - }, - { - "name": "earthquake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FZDPVF" - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIR_3H" - }, - { - "name": "nightmare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rSpiKW" - }, - { - "name": "cord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqppkL" - }, - { - "name": "ending", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-ZsVCq" - }, - { - "name": "core", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rshEBM" - }, - { - "name": "council", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZysJ1T" - }, - { - "name": "enforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Z7lu3" - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wbEgg9" - }, - { - "name": "departure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co5sB6" - }, - { - "name": "dash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6vH-m7" - }, - { - "name": "concrete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oTnU-U" - }, - { - "name": "penalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4QwkN" - }, - { - "name": "sociology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILingN" - }, - { - "name": "link", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AsKjkd" - }, - { - "name": "flee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2viDL6" - }, - { - "name": "distinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qZz3kO" - }, - { - "name": "scale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wqssfH" - }, - { - "name": "recovery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kITotX" - }, - { - "name": "hedge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N9qiug" - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQf_IZ" - }, - { - "name": "weep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3zeTH" - }, - { - "name": "aware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGFX5Q" - }, - { - "name": "drama", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LV-QNW" - }, - { - "name": "security", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jF3qYv" - }, - { - "name": "limp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqLk7G" - }, - { - "name": "award", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIknp5" - }, - { - "name": "organize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "obSJMY" - }, - { - "name": "marriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCM38-" - }, - { - "name": "stove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7WQjC" - }, - { - "name": "alarm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9P5mQb" - }, - { - "name": "weed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8IGyq" - }, - { - "name": "continual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znZOF2" - }, - { - "name": "herd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9m2Uo" - }, - { - "name": "limb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hrUlcy" - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MU1eSm" - }, - { - "name": "motion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUiRsM" - }, - { - "name": "limited", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k63feg" - }, - { - "name": "idle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ACiFQ3" - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U-kfAq" - }, - { - "name": "arbitrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rj829H" - }, - { - "name": "fearful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOKJW7" - }, - { - "name": "accent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YGGtXG" - }, - { - "name": "passive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rHLy1H" - }, - { - "name": "fertilizer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VG_7I7" - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XlBReN" - }, - { - "name": "carrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAQEIO" - }, - { - "name": "fragment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CUrLuN" - }, - { - "name": "corresponding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "na_fA_" - }, - { - "name": "response", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sHthC" - }, - { - "name": "treaty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eUjkAh" - }, - { - "name": "responsive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUnhme" - }, - { - "name": "ounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "peFTgc" - }, - { - "name": "challenge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g989m" - }, - { - "name": "emit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qv4NQp" - }, - { - "name": "category", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikfcNV" - }, - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N4oy8R" - }, - { - "name": "intend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IEElpS" - }, - { - "name": "snap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T7r4zy" - } - ], - "words": [ - { - "name": "cancel", - "trans": [ - "vt.取消,注销,抵消,偿还,〈数〉约去", - "vi.抵消,中和", - "n.撤销,注销,〈数〉(相)约" - ], - "usphone": "ˈkænsəl", - "ukphone": "ˈkænsl", - "id": "qHl8vi", - "checked": true - }, - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - }, - { - "name": "numerous", - "trans": [ - "adj.很多的,许多的,数量庞大的数量庞大的,数不清的" - ], - "usphone": "ˈnu:mərəs", - "ukphone": "ˈnju:mərəs", - "id": "pWy2vu", - "checked": true - }, - { - "name": "govern", - "trans": [ - "vt.统治,管理,治理,支配(词或短语的形式或用法)", - "vi.控制,支配,操纵" - ], - "usphone": "ˈgʌvərn", - "ukphone": "ˈgʌvn", - "id": "WKgenr", - "checked": false - }, - { - "name": "analyse", - "trans": [ - "vt.分析,分解,细察na.“analyze”的变体" - ], - "usphone": "ˈænəˌlaɪz", - "ukphone": "ˈænəlaɪz", - "id": "XJKM6n", - "checked": false - }, - { - "name": "discourage", - "trans": [ - "vt.使气馁,使沮丧,阻碍,劝阻" - ], - "usphone": "dɪsˈkɜ:rɪdʒ", - "ukphone": "dɪsˈkʌrɪdʒ", - "id": "bZ8CsM", - "checked": false - }, - { - "name": "resemble", - "trans": [ - "vt.与…相像,类似于" - ], - "usphone": "rɪˈzɛmbəl", - "ukphone": "rɪˈzembl", - "id": "LUkzNc", - "checked": false - }, - { - "name": "remote", - "trans": [ - "adj.(时间上)遥远的,远离的,远程的,微小的", - "n.远程操作,遥控器", - "vt.使…向远方延伸,把…延展到远处" - ], - "usphone": "rɪˈmoʊt", - "ukphone": "rɪˈməʊt", - "id": "VSmPzX", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n.薪水,薪金,薪俸", - "vt.给…加薪,给…薪水,发…薪水,付…薪水" - ], - "usphone": "ˈsælri", - "ukphone": "ˈsæləri", - "id": "kBXagB", - "checked": false - }, - { - "name": "pollution", - "trans": [ - "n.污染(作用),腐败,堕落,沾污" - ], - "usphone": "pəˈluʃən", - "ukphone": "pəˈlu:ʃn", - "id": "I2blza", - "checked": false - }, - { - "name": "pretend", - "trans": [ - "vt.假装,伪装,假称,装扮", - "vi.扮演,自称,假装,矫作", - "adj.仿制的" - ], - "usphone": "prɪˈtɛnd", - "ukphone": "prɪˈtend", - "id": "SqZxqL", - "checked": false - }, - { - "name": "kettle", - "trans": [ - "n.(烧水用的)壶,小汽锅" - ], - "usphone": "ˈkɛtl", - "ukphone": "ˈketl", - "id": "BbeeNh", - "checked": false - }, - { - "name": "wreck", - "trans": [ - "vt.破坏,毁坏,拆除,使遇难", - "n.毁灭,失事,遇难船的残骸,(身体或精神上)受到严重损伤的人,状况非常糟糕的车辆(或建筑物等)", - "vi.使(船舶)失事,使遇难,使下沉" - ], - "usphone": "rɛk", - "ukphone": "rek", - "id": "MDPjhy", - "checked": false - }, - { - "name": "drunk", - "trans": [ - "adj.醉的,陶醉的,沉醉,飘飘然", - "n.醉汉,酒鬼,酗酒者", - "v.喝(酒)( drink的过去分词),饮,喝酒,(尤指)酗酒" - ], - "usphone": "drʌŋk", - "ukphone": "drʌŋk", - "id": "9HJ2Yz", - "checked": false - }, - { - "name": "calculate", - "trans": [ - "vt.& vi.计算,估计,打算,计划,旨在", - "vt.预测,推测" - ], - "usphone": "ˈkælkjəˌlet", - "ukphone": "ˈkælkjuleɪt", - "id": "xHUfio", - "checked": false - }, - { - "name": "persistent", - "trans": [ - "adj.持续的,坚持不懈的,持久的,坚持不渝" - ], - "usphone": "pərˈsɪstənt", - "ukphone": "pəˈsɪstənt", - "id": "LVpLkf", - "checked": false - }, - { - "name": "sake", - "trans": [ - "n.缘故,理由,日本米酒,目的" - ], - "usphone": "sek", - "ukphone": "seɪk", - "id": "qGW8-K", - "checked": false - }, - { - "name": "conceal", - "trans": [ - "vt.隐藏,隐瞒,遮住" - ], - "usphone": "kənˈsil", - "ukphone": "kənˈsi:l", - "id": "IFG1vx", - "checked": false - }, - { - "name": "audience", - "trans": [ - "n.观众,听众,读者,读者,接见,拥护者,爱好者" - ], - "usphone": "ˈɔdiəns", - "ukphone": "ˈɔ:diəns", - "id": "lrxee0", - "checked": false - }, - { - "name": "meanwhile", - "trans": [ - "adv.同时,其间", - "n.其时,其间" - ], - "usphone": "-ˌwaɪl", - "ukphone": "ˈmi:nwaɪl", - "id": "wG3NOe", - "checked": false - }, - { - "name": "possess", - "trans": [ - "vt.拥有,掌握,懂得,主宰,缠住,迷住" - ], - "usphone": "pəˈzɛs", - "ukphone": "pəˈzes", - "id": "GMu5Hx", - "checked": false - }, - { - "name": "competent", - "trans": [ - "adj.有能力的,能胜任的,能干的,称职的,足够的,充足的,有决定权的" - ], - "usphone": "ˈkɑ:mpɪtənt", - "ukphone": "ˈkɒmpɪtənt", - "id": "LqLca4", - "checked": false - }, - { - "name": "investment", - "trans": [ - "n.投资,投资额,封锁,(时间、精力的)投入,值得买的东西" - ], - "usphone": "ɪnˈvɛstmənt", - "ukphone": "ɪnˈvestmənt", - "id": "3Crbzh", - "checked": false - }, - { - "name": "neutral", - "trans": [ - "adj.中立的,(化学中)中性的,暗淡的,不带电的", - "n.(汽车或其他机器的)空挡位置,中立人士,中立国,素净色" - ], - "usphone": "ˈnu:trəl", - "ukphone": "ˈnju:trəl", - "id": "07xu1P", - "checked": false - }, - { - "name": "scratch", - "trans": [ - "vt.擦,刮,擦痛,擦伤,在…处搔痒,抓破", - "vi.发出刮擦声,擦红,擦伤,搔痒,抓,扒", - "n.擦,刮,刮擦声,搔痕,乱写乱画", - "adj.打草稿用的,随便写用的,碰巧的,侥幸的,东拼西凑的,平等比赛的" - ], - "usphone": "skrætʃ", - "ukphone": "skrætʃ", - "id": "JvKnv-", - "checked": false - }, - { - "name": "optional", - "trans": [ - "adj.可选择的,随意的,任意的,非强制的,选修科目" - ], - "usphone": "ˈɑ:pʃənl", - "ukphone": "ˈɒpʃənl", - "id": "FFUPPV", - "checked": false - }, - { - "name": "require", - "trans": [ - "vt.要求,需要,想要,命令", - "vi.要求,规定" - ], - "usphone": "rɪˈkwaɪr", - "ukphone": "rɪˈkwaɪə(r)", - "id": "HEQOsg", - "checked": false - }, - { - "name": "circular", - "trans": [ - "adj.圆形的,环行的,迂回的,绕行的,供传阅的,流通的", - "n.通知,通告,印制的广告,传单" - ], - "usphone": "ˈsɜ:rkjələ(r)", - "ukphone": "ˈsɜ:kjələ(r)", - "id": "7fm36U", - "checked": false - }, - { - "name": "analysis", - "trans": [ - "n.分析,分解,梗概,要略,数解析,验定" - ], - "usphone": "əˈnælɪsɪs", - "ukphone": "əˈnæləsɪs", - "id": "mJlQgS", - "checked": false - }, - { - "name": "click", - "trans": [ - "n.喀哒声,爪,掣子,计(鼠标)点击,语言学吸气音", - "vt.使发出喀哒声", - "vi.发出喀哒声,极成功,合得来,一见如,计鼠击" - ], - "usphone": "klɪk", - "ukphone": "klɪk", - "id": "kfNxuM", - "checked": false - }, - { - "name": "fashionable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "00c98I" - }, - { - "name": "devise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8D9O4u" - }, - { - "name": "apparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qNSvg" - }, - { - "name": "journalist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8evA7" - }, - { - "name": "exposure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k65n2B" - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5lHHi" - }, - { - "name": "protective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuJ0GM" - }, - { - "name": "sideways", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GrnvFU" - }, - { - "name": "multicultural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coLp3a" - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F36H_1" - }, - { - "name": "humble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q2cMw6" - }, - { - "name": "chapter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NwNXeP" - }, - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xkFFx" - }, - { - "name": "independent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWX3TS" - }, - { - "name": "carriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LmgPWb" - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nRzIoD" - }, - { - "name": "infinite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GvehsM" - }, - { - "name": "concede", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqRiR5" - }, - { - "name": "elect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dUzFh" - }, - { - "name": "weekly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c_vw1V" - }, - { - "name": "result", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "94BY5I" - }, - { - "name": "golf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUpPNk" - }, - { - "name": "selfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXUQmi" - }, - { - "name": "sexism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjRcHY" - }, - { - "name": "commission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdUyC8" - }, - { - "name": "headline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7DIH6" - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tKsfGK" - }, - { - "name": "rational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMInT3" - }, - { - "name": "policy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-Tgm-" - }, - { - "name": "editorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RalDwT" - }, - { - "name": "resume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QC1iCc" - }, - { - "name": "rebuild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8vOXc" - }, - { - "name": "committee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fu3qy9" - }, - { - "name": "namely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HRNu3k" - }, - { - "name": "artistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zgngr2" - }, - { - "name": "union", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DY0Fxm" - }, - { - "name": "plentiful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IvMbSj" - }, - { - "name": "halt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-aCF5t" - }, - { - "name": "component", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zFB-IZ" - }, - { - "name": "consultant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o65Kl5" - }, - { - "name": "sunset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3LKisP" - }, - { - "name": "obvious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JizB7_" - }, - { - "name": "illustration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INxD6N" - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_Ea1L" - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WGd3n4" - }, - { - "name": "surgery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmku_h" - }, - { - "name": "liberal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EHIYoO" - }, - { - "name": "violent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Aw9imZ" - }, - { - "name": "harmony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kiSgzO" - }, - { - "name": "resolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pCEin" - }, - { - "name": "chill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ti_E37" - }, - { - "name": "confront", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZffzRp" - }, - { - "name": "dominate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "On72E4" - }, - { - "name": "imitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjC4d1" - }, - { - "name": "faithful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gH_SBp" - }, - { - "name": "reproduce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Lp5Yt" - }, - { - "name": "institution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7afUKt" - }, - { - "name": "pad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j4Uv2Y" - }, - { - "name": "provocation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqJ2QW" - }, - { - "name": "ambition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJvrdI" - }, - { - "name": "scholarship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tu5dyz" - }, - { - "name": "exceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pjl9X6" - }, - { - "name": "besides", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NT88gc" - }, - { - "name": "preposition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfTg8Z" - }, - { - "name": "enlarge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-5wIyi" - }, - { - "name": "implement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71nb92" - }, - { - "name": "export", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djif4N" - }, - { - "name": "Christ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5pK4_" - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSuWIO" - }, - { - "name": "pat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezl6ou" - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMPKgt" - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JT8_kI" - }, - { - "name": "visibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aTP4tC" - }, - { - "name": "invitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OXuOlS" - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ah1X0" - }, - { - "name": "enormous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SVBveN" - }, - { - "name": "moisture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_AHf" - }, - { - "name": "toast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJ1Y11" - }, - { - "name": "frustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DdBbcs" - }, - { - "name": "external", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7a3tRl" - }, - { - "name": "aside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4L9zxK" - }, - { - "name": "circumstance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bCnV7C" - }, - { - "name": "revise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sf_DOD" - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ot3BWG" - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvbhym" - }, - { - "name": "harm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgD6po" - }, - { - "name": "semiconductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTLLIp" - }, - { - "name": "rope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rya_Vj" - }, - { - "name": "provided", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_jUkBO" - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Yh2iu" - }, - { - "name": "gasoline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcFssh" - }, - { - "name": "indispensable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8CSpX" - }, - { - "name": "medium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64E1Mk" - }, - { - "name": "lens", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6aHCS0" - }, - { - "name": "wisdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7aMwY5" - }, - { - "name": "fatal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6N4NkH" - }, - { - "name": "nowhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ws9YZI" - }, - { - "name": "motive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RYkx14" - }, - { - "name": "romantic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NXI80a" - }, - { - "name": "motivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRmlMS" - }, - { - "name": "spoil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYcTMS" - }, - { - "name": "airline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AnFRgG" - }, - { - "name": "multiply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3I1KSJ" - }, - { - "name": "ridge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8TbLx3" - }, - { - "name": "pilot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G1BKtx" - }, - { - "name": "umbrella", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzsC7F" - }, - { - "name": "approval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7v5yM" - }, - { - "name": "mobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0-ZZtV" - }, - { - "name": "perform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6AqES" - }, - { - "name": "multiple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2OzwDU" - }, - { - "name": "peak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8TZ4a" - }, - { - "name": "evolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHyQsR" - }, - { - "name": "portrait", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9zGgX" - }, - { - "name": "halfway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bb12vs" - }, - { - "name": "expose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRFsge" - }, - { - "name": "concentrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUIYlN" - }, - { - "name": "magnet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KI7OC1" - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qh9YGD" - }, - { - "name": "weld", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XTflrL" - }, - { - "name": "up-to-date", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pKgvh8" - }, - { - "name": "complaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEELnv" - }, - { - "name": "translation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a5F-jO" - }, - { - "name": "cancer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vueIG" - }, - { - "name": "personnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXMGng" - }, - { - "name": "hopeless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TFTsxR" - }, - { - "name": "outlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sSGA6" - }, - { - "name": "fountain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NSCjjb" - }, - { - "name": "offense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bxuGzE" - }, - { - "name": "breadth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJeMGX" - }, - { - "name": "catalog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJeoVp" - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2muX5" - }, - { - "name": "focus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GwwEa" - }, - { - "name": "invisible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kFmjRt" - }, - { - "name": "entire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LCiPtl" - }, - { - "name": "pea", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qECm7q" - }, - { - "name": "pill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yvRbQ" - }, - { - "name": "wrist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IC7fC7" - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I3wSCR" - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5r8YV1" - }, - { - "name": "flour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PKfeZ" - }, - { - "name": "implication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sh3P-t" - }, - { - "name": "camel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0vvtD" - }, - { - "name": "fierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bX23Xm" - }, - { - "name": "bump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9UX-py" - }, - { - "name": "reservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFpDEX" - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_itNk9" - }, - { - "name": "proceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GWRfRi" - }, - { - "name": "considering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQZIA9" - }, - { - "name": "corporation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vn37YF" - }, - { - "name": "loyalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQeOQ" - }, - { - "name": "bulb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VM63RV" - }, - { - "name": "dismiss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Znf-Tp" - }, - { - "name": "propose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mAP8W2" - }, - { - "name": "intelligence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2984Ah" - }, - { - "name": "reform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZJ623" - }, - { - "name": "draught", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OaeBKW" - }, - { - "name": "daylight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_QhP" - }, - { - "name": "install", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QEF38o" - }, - { - "name": "integration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mLxe0" - }, - { - "name": "indication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KbXLrJ" - }, - { - "name": "bulk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kolegg" - }, - { - "name": "coach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvrfTX" - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jyqY5e" - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sne_jD" - }, - { - "name": "gum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cAKfxA" - }, - { - "name": "circuit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h6RnSG" - }, - { - "name": "pine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZ8fX8" - }, - { - "name": "magnificent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0zRNxy" - }, - { - "name": "guy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb775D" - }, - { - "name": "respectively", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkoOYg" - }, - { - "name": "protection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bLafft" - }, - { - "name": "pint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWeqSf" - }, - { - "name": "restrict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EmOptv" - }, - { - "name": "instant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AP5A4u" - }, - { - "name": "conjunction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieNPnp" - }, - { - "name": "peer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HndoX" - }, - { - "name": "orderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7pjEWn" - }, - { - "name": "costly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cpHwGe" - }, - { - "name": "roast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L7C-Po" - }, - { - "name": "violence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hw_nU9" - }, - { - "name": "succession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHjfZn" - }, - { - "name": "accordingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Txzr7" - }, - { - "name": "consequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VSb3D" - }, - { - "name": "product", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9VQA86" - }, - { - "name": "particularly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wFz7GT" - }, - { - "name": "dominant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-Z04y" - }, - { - "name": "heading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aS6AYW" - }, - { - "name": "lover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IrKCqb" - }, - { - "name": "vinegar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQXnV1" - }, - { - "name": "intellectual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtBjfa" - }, - { - "name": "cheat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p4uwmH" - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hRjvB5" - }, - { - "name": "undoubtedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WC3hyx" - }, - { - "name": "infect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5UDugz" - }, - { - "name": "tide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W71Rog" - }, - { - "name": "prohibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYyYGR" - }, - { - "name": "bacteria", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXSUfK" - }, - { - "name": "minor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PyO8bI" - }, - { - "name": "arrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QSHIjH" - }, - { - "name": "cop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7dTNZr" - }, - { - "name": "fuel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVVHV9" - }, - { - "name": "hostile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfPI5i" - }, - { - "name": "aeroplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JboXZ" - }, - { - "name": "manner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sPtmr8" - }, - { - "name": "employee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73s6sI" - }, - { - "name": "associate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxDiuf" - }, - { - "name": "pray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B84s3j" - }, - { - "name": "lad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NItCP_" - }, - { - "name": "crawl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ehXerE" - }, - { - "name": "identical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hzp8ey" - }, - { - "name": "lag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RGrHBr" - }, - { - "name": "towel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nX8Eix" - }, - { - "name": "charity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sORBly" - }, - { - "name": "academic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lqIv9z" - }, - { - "name": "function", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dhBMNX" - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F-3vpk" - }, - { - "name": "pit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X-1Lmk" - }, - { - "name": "lap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0e4zu" - }, - { - "name": "mineral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KrgV4" - }, - { - "name": "stock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jk2ZKk" - }, - { - "name": "representative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OuMkPt" - }, - { - "name": "suspend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6_4Jss" - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jkmp1Y" - }, - { - "name": "well-known", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aiFzJF" - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wXvjEx" - }, - { - "name": "terror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKA6po" - }, - { - "name": "comparison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pPSUI" - }, - { - "name": "surge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZTaym" - }, - { - "name": "lest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VVY_i" - }, - { - "name": "heroic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LN-qhy" - }, - { - "name": "sway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_otQ8v" - }, - { - "name": "basis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zqJySr" - }, - { - "name": "tutor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NsqYxe" - }, - { - "name": "senator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvA9m" - }, - { - "name": "adventure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyOisJ" - }, - { - "name": "successive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nK-nBX" - }, - { - "name": "condition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Az4UUW" - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VQfNR" - }, - { - "name": "ceremony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wRUrM" - }, - { - "name": "obligation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hJvvD" - }, - { - "name": "improve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VtBF7n" - }, - { - "name": "gym", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aFvW9s" - }, - { - "name": "rarely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGfnxW" - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U6Fesn" - }, - { - "name": "governor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zyHQU" - }, - { - "name": "twist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CG0Uxs" - }, - { - "name": "locate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGQkLJ" - }, - { - "name": "unite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dp6Rru" - }, - { - "name": "lavatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pnvun8" - }, - { - "name": "exterior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4_Zly" - }, - { - "name": "technique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ns_IVJ" - }, - { - "name": "combat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZbX-W" - }, - { - "name": "troop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NEhCaY" - }, - { - "name": "scenery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txgkkf" - }, - { - "name": "unity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reclAG" - }, - { - "name": "effective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgUpme" - }, - { - "name": "pursue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7MF0q" - }, - { - "name": "similarly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c75Xyv" - }, - { - "name": "convey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLbqSh" - }, - { - "name": "muscle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JQJ4n" - }, - { - "name": "design", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H1pFvY" - }, - { - "name": "extra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u9F3-h" - }, - { - "name": "generous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0s1QZE" - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVG80I" - }, - { - "name": "possibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGpF7M" - }, - { - "name": "lane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFX832" - }, - { - "name": "garlic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVU7CE" - }, - { - "name": "chief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O2jqtZ" - }, - { - "name": "accord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGgyWF" - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q5YHPz" - }, - { - "name": "automatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuABX4" - }, - { - "name": "doubtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOWzeD" - }, - { - "name": "despite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "noVRY7" - }, - { - "name": "opening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhG9co" - }, - { - "name": "industrial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1inkQh" - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qg2LwF" - }, - { - "name": "conduct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALsE92" - }, - { - "name": "stable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MyOVZp" - }, - { - "name": "lamb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czq_Zl" - }, - { - "name": "pillow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JeGHES" - }, - { - "name": "harness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dkYUFv" - }, - { - "name": "fantastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSBA8m" - }, - { - "name": "sketch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGAt8m" - }, - { - "name": "tidy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NexyUq" - }, - { - "name": "respond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xz6RZR" - }, - { - "name": "incident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q71rNZ" - }, - { - "name": "maintenance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ai2je0" - }, - { - "name": "marry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brdLdm" - }, - { - "name": "decay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PTzXBG" - }, - { - "name": "absorb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7ss7XC" - }, - { - "name": "supply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvhs4X" - }, - { - "name": "concern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0aK_3m" - }, - { - "name": "circulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qirj1v" - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5uYR71" - }, - { - "name": "liable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uDXSwM" - }, - { - "name": "cargo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oin0bz" - }, - { - "name": "confidential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOYUrZ" - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBgi0G" - }, - { - "name": "element", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "InI2Xw" - }, - { - "name": "chaos", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2YMODo" - }, - { - "name": "mankind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ba4m-5" - }, - { - "name": "abundant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g4N0wy" - }, - { - "name": "pace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eGOQZ6" - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zs4kL5" - }, - { - "name": "probable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyTxGm" - }, - { - "name": "forecast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tjLoTY" - }, - { - "name": "uncover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9F9Mg" - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mRbXM8" - }, - { - "name": "pack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hXnE8_" - }, - { - "name": "restraint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7o3OQ" - }, - { - "name": "input", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2HmVly" - }, - { - "name": "cue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZSOTI" - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MIS_Sw" - }, - { - "name": "reality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8qUSTc" - }, - { - "name": "stereotype", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aISBit" - }, - { - "name": "enroll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QuX3zd" - }, - { - "name": "offend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7rbsWx" - }, - { - "name": "molecule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYul8J" - }, - { - "name": "resign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8l_rD1" - }, - { - "name": "bathe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBgqG6" - }, - { - "name": "workman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCx9B4" - }, - { - "name": "sophisticated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rvhxMO" - }, - { - "name": "sunrise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0R3z7" - }, - { - "name": "entertainment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfMunl" - }, - { - "name": "document", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCb-5d" - }, - { - "name": "starve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YQY5CB" - }, - { - "name": "battery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-S_mtE" - }, - { - "name": "chase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYvVXD" - }, - { - "name": "accident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h0MjRb" - }, - { - "name": "marine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N6omIx" - }, - { - "name": "clay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bcSclb" - }, - { - "name": "anyway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_RUeE" - }, - { - "name": "promote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TpMQc6" - }, - { - "name": "routine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "df9-rx" - }, - { - "name": "attack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "34UaXX" - }, - { - "name": "humour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lWNAoj" - }, - { - "name": "divorce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gEj8SV" - }, - { - "name": "currency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UijDye" - }, - { - "name": "canal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QY5jR_" - }, - { - "name": "attach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZkqmj" - }, - { - "name": "distribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-YW_E" - }, - { - "name": "ankle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aChngH" - }, - { - "name": "convict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXisSf" - }, - { - "name": "legislation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBs82k" - }, - { - "name": "clause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izhik3" - }, - { - "name": "quiz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gFyfsL" - }, - { - "name": "participate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ghdimg" - }, - { - "name": "ingredient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRUBPx" - }, - { - "name": "surplus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RJmav" - }, - { - "name": "correspondence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQdiLQ" - }, - { - "name": "refresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JFiweH" - }, - { - "name": "librarian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AQIHCf" - }, - { - "name": "intimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "78Rr0v" - }, - { - "name": "reporter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRv4qu" - }, - { - "name": "declaration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6KVUP" - }, - { - "name": "disclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L4erJo" - }, - { - "name": "religion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DtfrLU" - }, - { - "name": "diagram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ClZqrL" - }, - { - "name": "claw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjJFZY" - }, - { - "name": "torture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDA3GH" - }, - { - "name": "prayer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLlvdQ" - }, - { - "name": "tragedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib6R3K" - }, - { - "name": "charm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWYaO_" - }, - { - "name": "clap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8cfWIK" - }, - { - "name": "purple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jJhxke" - }, - { - "name": "quit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "skqZO7" - }, - { - "name": "economical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0dJ1t" - }, - { - "name": "prosperous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v9j_Sc" - }, - { - "name": "polish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l3uOl" - }, - { - "name": "cabinet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ds4yex" - }, - { - "name": "chart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OZNiF6" - }, - { - "name": "optical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhyXhD" - }, - { - "name": "fashion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lTmTRs" - }, - { - "name": "insurance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AB94xa" - }, - { - "name": "preface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIVhfy" - }, - { - "name": "principle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKFvB_" - }, - { - "name": "lid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZQihJ0" - }, - { - "name": "tedious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUCs3k" - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mfXMa" - }, - { - "name": "secure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4N9nd" - }, - { - "name": "domestic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJ4JPd" - }, - { - "name": "deception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6wewqw" - }, - { - "name": "basically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D_JpXq" - }, - { - "name": "donation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wk8jFn" - }, - { - "name": "avenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUfss9" - }, - { - "name": "immense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHkWoq" - }, - { - "name": "budget", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1c9fYS" - }, - { - "name": "given", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeYosb" - }, - { - "name": "hay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK7ngo" - }, - { - "name": "chest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9ylyYY" - }, - { - "name": "tension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kicqrf" - }, - { - "name": "definite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6cdTz6" - }, - { - "name": "reflection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_-sQm" - }, - { - "name": "ultimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dHTkN" - }, - { - "name": "campus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li3s3R" - }, - { - "name": "adapt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixrc-Q" - }, - { - "name": "solicitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "If5v_l" - }, - { - "name": "cheerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFXuXx" - }, - { - "name": "merit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9O89UN" - }, - { - "name": "misunderstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NTbmfn" - }, - { - "name": "guilty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "17HCsV" - }, - { - "name": "measure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "raU0MI" - }, - { - "name": "overall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yhffj3" - }, - { - "name": "receipt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yd6rU8" - }, - { - "name": "assume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ob0Gq" - }, - { - "name": "pepper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G3PgF6" - }, - { - "name": "plural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l03Mb" - }, - { - "name": "doctoral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "duezrj" - }, - { - "name": "concept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12ZxGJ" - }, - { - "name": "resistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6umRae" - }, - { - "name": "effort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-u5ms" - }, - { - "name": "video", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R3nNFY" - }, - { - "name": "disaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LBj6Kp" - }, - { - "name": "agriculture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVwoI8" - }, - { - "name": "weapon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QM_Q6" - }, - { - "name": "grocer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9IDqF" - }, - { - "name": "stare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-q4s9" - }, - { - "name": "painful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_49kcw" - }, - { - "name": "vote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DYQsC" - }, - { - "name": "steady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7v2QM" - }, - { - "name": "enhance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63RQKc" - }, - { - "name": "enclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opxegS" - }, - { - "name": "convention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VX8tEl" - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rtg5NR" - }, - { - "name": "center", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "irZy3z" - }, - { - "name": "suspicion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NCwueq" - }, - { - "name": "purchase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LNhcIc" - }, - { - "name": "refusal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iC4UAM" - }, - { - "name": "technician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMa-eq" - }, - { - "name": "generic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NqcjXb" - }, - { - "name": "genius", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CmOXbx" - }, - { - "name": "alike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJivn" - }, - { - "name": "fund", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IDH-xl" - }, - { - "name": "gravity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hWGpDg" - }, - { - "name": "typical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HDfR4" - }, - { - "name": "quotation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vekYS" - }, - { - "name": "finance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etcS9Y" - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTzC2p" - }, - { - "name": "tray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhUAXn" - }, - { - "name": "downward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50WJaR" - }, - { - "name": "cabbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gSC3RC" - }, - { - "name": "regulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Ue1ig" - }, - { - "name": "palm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U_mMrs" - }, - { - "name": "hydrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIrfQt" - }, - { - "name": "infant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "itrC_4" - }, - { - "name": "hen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZr55R" - }, - { - "name": "whoever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4FdJa" - }, - { - "name": "carbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ng2weJ" - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWRDxN" - }, - { - "name": "payment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1IdNN" - }, - { - "name": "specifically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KguhOt" - }, - { - "name": "controversial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PjnfLL" - }, - { - "name": "attain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3etmNW" - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8j0WKZ" - }, - { - "name": "gallery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riwgne" - }, - { - "name": "hardware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rR4I2R" - }, - { - "name": "deputy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRj_ec" - }, - { - "name": "warmth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-bGxAh" - }, - { - "name": "supreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c88MQF" - }, - { - "name": "ambulance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKc9gL" - }, - { - "name": "priority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INJ_Kw" - }, - { - "name": "slope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SbS-m" - }, - { - "name": "philosophy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH9TSK" - }, - { - "name": "preventive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4JJge" - }, - { - "name": "creative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyvL-Y" - }, - { - "name": "junior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eHGTt8" - }, - { - "name": "allocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pgRJXs" - }, - { - "name": "provide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u7pUCK" - }, - { - "name": "standpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oax8Lf" - }, - { - "name": "worship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WaWkq" - }, - { - "name": "lawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4PQ_u0" - }, - { - "name": "primary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MGSusa" - }, - { - "name": "log", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBLlnR" - }, - { - "name": "solar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-mhxho" - }, - { - "name": "consume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TzOq_t" - }, - { - "name": "formation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MFG5sR" - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_tr0p" - }, - { - "name": "triangle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bvduR-" - }, - { - "name": "accidental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QT-5mU" - }, - { - "name": "assure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "35l2uY" - }, - { - "name": "consult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4EYph" - }, - { - "name": "theme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISnR2W" - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KhJs_A" - }, - { - "name": "merely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opRowm" - }, - { - "name": "contradiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MLz9It" - }, - { - "name": "fuss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VpDvl" - }, - { - "name": "wealth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnW6V5" - }, - { - "name": "editor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HvoPAX" - }, - { - "name": "barrel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NPgQnh" - }, - { - "name": "means", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E9_guI" - }, - { - "name": "desire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qQPBF5" - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QqTlDR" - }, - { - "name": "efficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB-76I" - }, - { - "name": "initial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eWT-3" - }, - { - "name": "unfortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6f_FNt" - }, - { - "name": "consistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ggfo43" - }, - { - "name": "reverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYxWMb" - }, - { - "name": "heterogeneity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mywwyQ" - }, - { - "name": "sword", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mFE2z" - }, - { - "name": "permanent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpDwhR" - }, - { - "name": "barely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uNFjQ" - }, - { - "name": "summarize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3SsnWr" - }, - { - "name": "chap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wp73ba" - }, - { - "name": "facility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TK33ps" - }, - { - "name": "beam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZGzvmT" - }, - { - "name": "alliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKdXdm" - }, - { - "name": "civilization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLxMrI" - }, - { - "name": "fiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4haAIg" - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HiFLiw" - }, - { - "name": "replace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QedIs" - }, - { - "name": "appointment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3Amw1" - }, - { - "name": "hip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iBGpqa" - }, - { - "name": "merry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SQiipN" - }, - { - "name": "dam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cd6SOk" - }, - { - "name": "pessimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ER5VXK" - }, - { - "name": "commander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnfn_S" - }, - { - "name": "bloom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AIHq6j" - }, - { - "name": "major", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYzTiw" - }, - { - "name": "zone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WTIfiT" - }, - { - "name": "emphasis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aPrEsS" - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8kNmOj" - }, - { - "name": "feasible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XJzK3f" - }, - { - "name": "prescribe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m4pW1m" - }, - { - "name": "potential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j50ziZ" - }, - { - "name": "bean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88_4Y6" - }, - { - "name": "accustomed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2u9k-l" - }, - { - "name": "combination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VRQj2b" - }, - { - "name": "obtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcIm8N" - }, - { - "name": "turbine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMTW3s" - }, - { - "name": "repeatedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tE9-HY" - }, - { - "name": "curiosity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "btYUc1" - }, - { - "name": "gross", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N3Mn--" - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lpwU4r" - }, - { - "name": "resist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kn0AZ1" - }, - { - "name": "liter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Htz2M3" - }, - { - "name": "format", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxZO-P" - }, - { - "name": "sacrifice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5JxzWC" - }, - { - "name": "illegal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-cwnRl" - }, - { - "name": "stimulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tk88HR" - }, - { - "name": "formal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1Qb75" - }, - { - "name": "congratulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8zLFN" - }, - { - "name": "rainbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BjOiF2" - }, - { - "name": "soak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMNrRU" - }, - { - "name": "soar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5OcUm1" - }, - { - "name": "salesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qlQnY2" - }, - { - "name": "interference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DRPazJ" - }, - { - "name": "fibre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzbqQO" - }, - { - "name": "sustain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "istRYV" - }, - { - "name": "entertain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ggku3s" - }, - { - "name": "altitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvHbwR" - }, - { - "name": "classify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8Dn_P" - }, - { - "name": "ease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYmtRV" - }, - { - "name": "critical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZW3JM" - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqzLIK" - }, - { - "name": "mathematics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6r2CnZ" - }, - { - "name": "wagon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrJVHj" - }, - { - "name": "elsewhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cPVnn3" - }, - { - "name": "penetrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4Rwv8" - }, - { - "name": "principal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fUQVhE" - }, - { - "name": "tend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8dAWf" - }, - { - "name": "exceedingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gn9v" - }, - { - "name": "specimen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cACJjZ" - }, - { - "name": "relief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpFAMY" - }, - { - "name": "dimension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2A8Hq" - }, - { - "name": "introduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y_M8DU" - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7lHsta" - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBTgxU" - }, - { - "name": "philosopher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2Pcxb" - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rJ7mKA" - }, - { - "name": "therapy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IwY7Dj" - }, - { - "name": "alternative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CoTQTj" - }, - { - "name": "banner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8g2_2Y" - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zXaicC" - }, - { - "name": "encounter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNSPHp" - }, - { - "name": "soda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kuwklm" - }, - { - "name": "colleague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLJZjj" - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Jftcw" - }, - { - "name": "approve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6w6H6" - }, - { - "name": "interaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08_E2b" - }, - { - "name": "chew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pt9f8H" - }, - { - "name": "interfere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRS-Nq" - }, - { - "name": "apartment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eN4cjs" - }, - { - "name": "account", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-lV_dp" - }, - { - "name": "uneasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8a0fQX" - }, - { - "name": "tolerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zx36ve" - }, - { - "name": "developmental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ocpyAo" - }, - { - "name": "stack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EfrWg1" - }, - { - "name": "underline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "in7VxM" - }, - { - "name": "innocent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LddDN4" - }, - { - "name": "compassion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lgGhof" - }, - { - "name": "alphabet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nl6vAi" - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_h3Eq" - }, - { - "name": "evaluation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vCIleZ" - }, - { - "name": "crack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jXtkK6" - }, - { - "name": "bind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iURb7W" - }, - { - "name": "trim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZbE-QR" - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hU02mU" - }, - { - "name": "dental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YVaC0Q" - }, - { - "name": "predictable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iI2xTA" - }, - { - "name": "diverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOfNUg" - }, - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYzHbI" - }, - { - "name": "cube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgJc81" - }, - { - "name": "rally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-yEpiJ" - }, - { - "name": "prime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mBn4oV" - }, - { - "name": "happen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j8xfPq" - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OwluKm" - }, - { - "name": "mild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nx77cp" - }, - { - "name": "profile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7uzPM" - }, - { - "name": "loyal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k5xwAf" - }, - { - "name": "preference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtkyVX" - }, - { - "name": "impact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G65eUK" - }, - { - "name": "opportunity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVh0OL" - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GlPalK" - }, - { - "name": "dorm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDB6dC" - }, - { - "name": "whichever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gbzdfw" - }, - { - "name": "court", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ELBKWC" - }, - { - "name": "venture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezCtsg" - }, - { - "name": "mill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzm-V8" - }, - { - "name": "bucket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJkudF" - }, - { - "name": "senior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0LjAtp" - }, - { - "name": "dose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c3ZBUd" - }, - { - "name": "route", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB72IC" - }, - { - "name": "enthusiasm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ke7nl" - }, - { - "name": "flexible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3KVT6v" - }, - { - "name": "adult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gep-10" - }, - { - "name": "attitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WN3GDL" - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoCLEi" - }, - { - "name": "organ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIyypZ" - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5f_K3" - }, - { - "name": "treatment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4A7OPm" - }, - { - "name": "compare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iFG9YO" - }, - { - "name": "pluralism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F2eLc2" - }, - { - "name": "influential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RbPR1" - }, - { - "name": "shiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5f4zpS" - }, - { - "name": "Bible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIHUI_" - }, - { - "name": "liquor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oq3NTn" - }, - { - "name": "honourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xq8FeG" - }, - { - "name": "characteristic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48hn-W" - }, - { - "name": "transparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHmCyY" - }, - { - "name": "interior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Y6UQ2" - }, - { - "name": "rouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYGGrv" - }, - { - "name": "journal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AtVTt-" - }, - { - "name": "grasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nwa_an" - }, - { - "name": "involvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2UUIR" - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jnn0Pv" - }, - { - "name": "unlike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wLfF3y" - }, - { - "name": "assembly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIrUJI" - }, - { - "name": "hearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSzOki" - }, - { - "name": "acquisition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zbtzzo" - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GhdUOV" - }, - { - "name": "rigid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hKp4hV" - }, - { - "name": "deadline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lqdez4" - }, - { - "name": "so-called", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Z5qT9" - }, - { - "name": "grateful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hgfF7X" - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIw2Pu" - }, - { - "name": "chin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-O1eXS" - }, - { - "name": "emotional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cKBLBq" - }, - { - "name": "operational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53hnFH" - }, - { - "name": "staff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lz4z5h" - }, - { - "name": "involve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P-6iq9" - }, - { - "name": "noticeable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYTIDh" - }, - { - "name": "assemble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UNK76t" - }, - { - "name": "blast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EIrAEN" - }, - { - "name": "series", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mi-x5e" - }, - { - "name": "complicated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQX7Ao" - }, - { - "name": "cultivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RknEtF" - }, - { - "name": "maximum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aNGeki" - }, - { - "name": "thrive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FyFUo-" - }, - { - "name": "purse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_o92M" - }, - { - "name": "represent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DPIsaz" - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ML6Ej" - }, - { - "name": "dialect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6TdjSy" - }, - { - "name": "accountant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CzxUOZ" - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D6N0_Q" - }, - { - "name": "dim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nVnD_e" - }, - { - "name": "emergency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eqoSr3" - }, - { - "name": "dip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vKnBt" - }, - { - "name": "recreational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uM9alm" - }, - { - "name": "faculty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2zaTiB" - }, - { - "name": "trail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brTwgH" - }, - { - "name": "passport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Q00n" - }, - { - "name": "prior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aXI2ae" - }, - { - "name": "considerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hVieyn" - }, - { - "name": "clue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "leTAhM" - }, - { - "name": "legal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgJmFY" - }, - { - "name": "bracket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbGA_q" - }, - { - "name": "highway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V0lcQj" - }, - { - "name": "vanish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w4FwUI" - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0x82Bg" - }, - { - "name": "sightseeing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T_p6gU" - }, - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lCjaxw" - }, - { - "name": "static", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztkH_Q" - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zKgs3I" - }, - { - "name": "planet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gBSr4p" - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8uU9rh" - }, - { - "name": "exhaust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HebXIW" - }, - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g5bS0L" - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PCkseU" - }, - { - "name": "grape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDXZ6x" - }, - { - "name": "conviction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9Magb" - }, - { - "name": "scholar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zryCvg" - }, - { - "name": "straw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-KEOdY" - }, - { - "name": "regarding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4YRAc" - }, - { - "name": "graph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVzxJY" - }, - { - "name": "vision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FAZbRg" - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-TJ5k" - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRK3tG" - }, - { - "name": "acceptance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDLmHt" - }, - { - "name": "relativity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rZ88gU" - }, - { - "name": "beneficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e60oFI" - }, - { - "name": "tackle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D-SSQo" - }, - { - "name": "reckon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TU4YiC" - }, - { - "name": "confusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAOXLz" - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDt9oI" - }, - { - "name": "loan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ru0pj" - }, - { - "name": "virtual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWmKTk" - }, - { - "name": "squeeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6svsM" - }, - { - "name": "blank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aop2wT" - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_LkFcx" - }, - { - "name": "session", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gid1oa" - }, - { - "name": "additional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q1iyiV" - }, - { - "name": "worthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MsX0pv" - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcL7do" - }, - { - "name": "expectation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvBOi0" - }, - { - "name": "title", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rco3n7" - }, - { - "name": "mist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1jhiB" - }, - { - "name": "primarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpmRjT" - }, - { - "name": "duration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qU-QNW" - }, - { - "name": "plantation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m2uMQb" - }, - { - "name": "ignore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHU2Bl" - }, - { - "name": "loaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GjuLcx" - }, - { - "name": "nuclear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JMKEQn" - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b0D3q7" - }, - { - "name": "outward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B9gWaU" - }, - { - "name": "bloody", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53ex32" - }, - { - "name": "poetry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2simaT" - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGnb5B" - }, - { - "name": "vapour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5kOvDG" - }, - { - "name": "sole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUzdR9" - }, - { - "name": "jury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_T2IcL" - }, - { - "name": "holy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N-ODmy" - }, - { - "name": "spelling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WA4MuK" - }, - { - "name": "relax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--zIl7" - }, - { - "name": "priest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wzoLxC" - }, - { - "name": "monitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50AXZl" - }, - { - "name": "permission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3R4WZ" - }, - { - "name": "grand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3FNbEw" - }, - { - "name": "schedule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyNNHE" - }, - { - "name": "postage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--_r9q" - }, - { - "name": "tame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgD2BV" - }, - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b13SKF" - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp51Y2" - }, - { - "name": "interpret", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrkhxL" - }, - { - "name": "spectacular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-wpJP" - }, - { - "name": "inherit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t2A89i" - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J1FT--" - }, - { - "name": "blanket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ch95rg" - }, - { - "name": "grant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ec5kTL" - }, - { - "name": "injection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bgs2xV" - }, - { - "name": "envy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BsTY-f" - }, - { - "name": "hut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OKyu_r" - }, - { - "name": "invincible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iIo8-0" - }, - { - "name": "discount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObsOaF" - }, - { - "name": "convert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57h1Dt" - }, - { - "name": "construct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dUtg_0" - }, - { - "name": "attempt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "knshPS" - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sE8D3b" - }, - { - "name": "superficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NMCMx" - }, - { - "name": "division", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nB23dR" - }, - { - "name": "executive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yF_jv6" - }, - { - "name": "navigation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wCVBrt" - }, - { - "name": "melt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4cnOD" - }, - { - "name": "hook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk38z" - }, - { - "name": "stale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cJcSEN" - }, - { - "name": "balance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c55biq" - }, - { - "name": "cigar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r7wkFv" - }, - { - "name": "action", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZbobz" - }, - { - "name": "stadium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wJWCP" - }, - { - "name": "whereas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u-HjoL" - }, - { - "name": "pitch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ro89YO" - }, - { - "name": "kindness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dtrkkV" - }, - { - "name": "adoptive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H4utCH" - }, - { - "name": "chop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuNbV4" - }, - { - "name": "electrical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2h1umk" - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KNbB20" - }, - { - "name": "being", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHUsJJ" - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dcC3Jg" - }, - { - "name": "protest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gbq-Nw" - }, - { - "name": "classification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5UAGo" - }, - { - "name": "vacant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EO1z1N" - }, - { - "name": "physicist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WY0OUS" - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "77TrBF" - }, - { - "name": "underground", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zcij9D" - }, - { - "name": "curse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sg7Kf5" - }, - { - "name": "impression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gO_lbA" - }, - { - "name": "baseball", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Gldsd" - }, - { - "name": "interval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEKVOx" - }, - { - "name": "evaluate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDlerz" - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZLCDLd" - }, - { - "name": "status", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HY1JNt" - }, - { - "name": "shield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usKYJD" - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4mvR7G" - }, - { - "name": "inference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUgPmH" - }, - { - "name": "curve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BMUNwo" - }, - { - "name": "dot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XmeWL-" - }, - { - "name": "skim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ecLn7" - }, - { - "name": "phenomenon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRFCca" - }, - { - "name": "notify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-DYo6" - }, - { - "name": "mention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2sVwbI" - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VD3bD" - }, - { - "name": "laundry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "72hYwf" - }, - { - "name": "accumulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HS5soM" - }, - { - "name": "crime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e7oP0y" - }, - { - "name": "heave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r72nM8" - }, - { - "name": "leisure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zJWKfc" - }, - { - "name": "nourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_aOQnw" - }, - { - "name": "surround", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SwB_cd" - }, - { - "name": "mat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rbSBSI" - }, - { - "name": "cigarette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8PJxol" - }, - { - "name": "torch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YOxnl" - }, - { - "name": "positive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYi2tA" - }, - { - "name": "favourite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFE1uA" - }, - { - "name": "menu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rQuBzR" - }, - { - "name": "prospect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dVwS5Y" - }, - { - "name": "radar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y72rsP" - }, - { - "name": "refugee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ntKpmk" - }, - { - "name": "aluminium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ugqXag" - }, - { - "name": "comparable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEsYg2" - }, - { - "name": "specialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1pbpat" - }, - { - "name": "rotate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w39H_g" - }, - { - "name": "instance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxGkkg" - }, - { - "name": "opera", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j665OJ" - }, - { - "name": "presumably", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6NNMBt" - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s1uaNb" - }, - { - "name": "subject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD6lao" - }, - { - "name": "practically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-uCjA5" - }, - { - "name": "recognition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-kb_c" - }, - { - "name": "cassette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v0mp8i" - }, - { - "name": "blade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nf3HvZ" - }, - { - "name": "arrangement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SgN0I" - }, - { - "name": "revenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4GQ6jZ" - }, - { - "name": "strip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyFxnF" - }, - { - "name": "solution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJiZ8a" - }, - { - "name": "continuous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6sSNFs" - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txUS6Q" - }, - { - "name": "accelerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mwCSfG" - }, - { - "name": "backward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9LB7D" - }, - { - "name": "grain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wakCS" - }, - { - "name": "maid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBF3F7" - }, - { - "name": "residence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTLA6k" - }, - { - "name": "credit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eM5VLW" - }, - { - "name": "regardless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_7chzq" - }, - { - "name": "oxygen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-C2r6M" - }, - { - "name": "intensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bJUCMo" - }, - { - "name": "alter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-h3DCv" - }, - { - "name": "combine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bOUrCs" - }, - { - "name": "ideal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UI32F" - }, - { - "name": "bearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_PRCk" - }, - { - "name": "illustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S4QjL5" - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oQUrRk" - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Eln7P8" - }, - { - "name": "broom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UIlTo" - }, - { - "name": "establishment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVIOkX" - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tZKBnh" - }, - { - "name": "breeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zff7Ah" - }, - { - "name": "trash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nYPJqQ" - }, - { - "name": "painter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FlVHcV" - }, - { - "name": "millimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqHR-3" - }, - { - "name": "horn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JIMCSz" - }, - { - "name": "specialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-BpRdp" - }, - { - "name": "infer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9ZpQb" - }, - { - "name": "compass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lhdISz" - }, - { - "name": "background", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iO83O4" - }, - { - "name": "sore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebLWDb" - }, - { - "name": "dispose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wJYJKg" - }, - { - "name": "glow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yji4xw" - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "735ptK" - }, - { - "name": "laughter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xqQgwI" - }, - { - "name": "constitution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CiCqHO" - }, - { - "name": "blend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXvrtN" - }, - { - "name": "certificate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dAeGKe" - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wYiLu1" - }, - { - "name": "sour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6yZOUx" - }, - { - "name": "delete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNLozw" - }, - { - "name": "nonsense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mw3dx_" - }, - { - "name": "stain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pVnKML" - }, - { - "name": "transform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ORxp-0" - }, - { - "name": "leadership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBgTW_" - }, - { - "name": "genuine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3oRKTy" - }, - { - "name": "X-ray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DypmR6" - }, - { - "name": "physical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XQ1Jx" - }, - { - "name": "fulfil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E5eukS" - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2jeQS" - }, - { - "name": "spokesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w2Ls4S" - }, - { - "name": "equation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xz22J-" - }, - { - "name": "impressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88Ar9u" - }, - { - "name": "compound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1WGMd7" - }, - { - "name": "structure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kInsRn" - }, - { - "name": "intensity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-Qyrn" - }, - { - "name": "waken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4DHcG" - }, - { - "name": "stake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KOuGzW" - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JqthVU" - }, - { - "name": "witness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2RObw" - }, - { - "name": "concerning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f2ajeF" - }, - { - "name": "attraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qu_Nqs" - }, - { - "name": "conventional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JSFYf-" - }, - { - "name": "regulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CrJAZi" - }, - { - "name": "puzzle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HdkXtq" - }, - { - "name": "circulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qn-Ew8" - }, - { - "name": "bake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UVZwfO" - }, - { - "name": "mere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aJhyxR" - }, - { - "name": "accommodation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y2pcPG" - }, - { - "name": "evident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dk45X2" - }, - { - "name": "suburb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TCei6X" - }, - { - "name": "lodge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDtVVJ" - }, - { - "name": "threat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uuWf4W" - }, - { - "name": "writer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAoOCd" - }, - { - "name": "simplify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kvEove" - }, - { - "name": "breast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqHEGK" - }, - { - "name": "invention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CnDUdS" - }, - { - "name": "mercy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6CvKlt" - }, - { - "name": "annoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QW4LE7" - }, - { - "name": "curl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2hQtKR" - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zk-q9n" - }, - { - "name": "psychological", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcu9fi" - }, - { - "name": "glue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rndzHy" - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0Drys" - }, - { - "name": "scream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e4scp2" - }, - { - "name": "sorrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oo-YVY" - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2_Ylb" - }, - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RQO7nV" - }, - { - "name": "observer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sw0Kbc" - }, - { - "name": "character", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIkgTx" - }, - { - "name": "reflect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ILOu5" - }, - { - "name": "procession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JQxoKd" - }, - { - "name": "contribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MD2GGh" - }, - { - "name": "Marxist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9pv6Y2" - }, - { - "name": "bang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lmfhbu" - }, - { - "name": "brow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfU2Xs" - }, - { - "name": "meaning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JE1gT" - }, - { - "name": "ignorant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XQSIv" - }, - { - "name": "magnetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SnffRN" - }, - { - "name": "band", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LkMibN" - }, - { - "name": "orbit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV8krw" - }, - { - "name": "comprise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mGJzn9" - }, - { - "name": "moderate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w3aIcS" - }, - { - "name": "resident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ym0UVv" - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iV_1S-" - }, - { - "name": "distinguish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ckO0Q" - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HA87TK" - }, - { - "name": "outer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQ5MKO" - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hBt4N4" - }, - { - "name": "fluent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vRUz71" - }, - { - "name": "shortcoming", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "09E1Nt" - }, - { - "name": "substantial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63pmET" - }, - { - "name": "execute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZanQ1" - }, - { - "name": "benefit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8jeQo" - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrYu37" - }, - { - "name": "vitamin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6FQs4o" - }, - { - "name": "intention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIQqZf" - }, - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KieWN4" - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uCPvz1" - }, - { - "name": "pillar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vgcW3u" - }, - { - "name": "thereby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CSo-cp" - }, - { - "name": "unique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xwc4up" - }, - { - "name": "funeral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgS9mq" - }, - { - "name": "boost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EP4Jcx" - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3ca4W" - }, - { - "name": "sincere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISmP4z" - }, - { - "name": "male", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2Toyp" - }, - { - "name": "ministry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqZmnY" - }, - { - "name": "religious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOkHkl" - }, - { - "name": "nevertheless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSSuBv" - }, - { - "name": "prominent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mN2sDP" - }, - { - "name": "shelter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6vrg7" - }, - { - "name": "outset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8KUtt" - }, - { - "name": "jewel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nbpwZg" - }, - { - "name": "scan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c90tNi" - }, - { - "name": "association", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N07ysN" - }, - { - "name": "fundamental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "05faIu" - }, - { - "name": "eliminate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5B2xU" - }, - { - "name": "global", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v23z3S" - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRlGoK" - }, - { - "name": "outline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "euIA6l" - }, - { - "name": "fade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejLx7e" - }, - { - "name": "unless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoImd-" - }, - { - "name": "butterfly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0HyVq" - }, - { - "name": "excess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IKS1DS" - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "avSM_z" - }, - { - "name": "perspective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M9OogC" - }, - { - "name": "relationship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sjRS1N" - }, - { - "name": "equality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3U7Kd" - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ua_FK" - }, - { - "name": "dictation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aaPjvr" - }, - { - "name": "stiff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCuams" - }, - { - "name": "expression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c9okSz" - }, - { - "name": "invade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K6J3KH" - }, - { - "name": "reaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Gmvmj" - }, - { - "name": "childhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIfqtz" - }, - { - "name": "wolf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yHhY5K" - }, - { - "name": "accordance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rqx0an" - }, - { - "name": "thorough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrmme6" - }, - { - "name": "appeal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u2NGJr" - }, - { - "name": "democracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OdgBfU" - }, - { - "name": "transportation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v3QntD" - }, - { - "name": "dye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FUvF51" - }, - { - "name": "evolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dk4ff4" - }, - { - "name": "extensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEVG56" - }, - { - "name": "congratulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkTJ2y" - }, - { - "name": "abandon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYCWNZ" - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kwm0LR" - }, - { - "name": "inspire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ou0O0" - }, - { - "name": "marvelous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJRosF" - }, - { - "name": "household", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SLDpVV" - }, - { - "name": "geometry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0bHxL" - }, - { - "name": "ratio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ji5ogh" - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3z5-dc" - }, - { - "name": "agent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CyPnCj" - }, - { - "name": "wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zr4S2C" - }, - { - "name": "wholly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjcV0d" - }, - { - "name": "instinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "74JBJp" - }, - { - "name": "approximate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uz7V8D" - }, - { - "name": "invest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UnYF6p" - }, - { - "name": "afterward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMse_k" - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vinesw" - }, - { - "name": "project", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOPjBt" - }, - { - "name": "shrug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sm3mnl" - }, - { - "name": "independence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDr_Gi" - }, - { - "name": "coordination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz-A39" - }, - { - "name": "presentation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMZwDh" - }, - { - "name": "diameter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gx71" - }, - { - "name": "barn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGYFr2" - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Qw0a3" - }, - { - "name": "loop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p78tO7" - }, - { - "name": "restrain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tyfNS" - }, - { - "name": "greedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N68BwQ" - }, - { - "name": "awkward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSm262" - }, - { - "name": "bare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Irxx4r" - }, - { - "name": "ruin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhbJdh" - }, - { - "name": "crane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3BpuZ7" - }, - { - "name": "beard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ICnCK" - }, - { - "name": "impatient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "swOPZv" - }, - { - "name": "spill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2fIDFt" - }, - { - "name": "owing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tLbMOC" - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u1dZal" - }, - { - "name": "gardener", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w83RNo" - }, - { - "name": "conquest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VP-DXW" - }, - { - "name": "finding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dmrg4e" - }, - { - "name": "dense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_tZGi" - }, - { - "name": "fortnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWhlLj" - }, - { - "name": "laboratory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "emrAAi" - }, - { - "name": "inspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7aY-z" - }, - { - "name": "campaign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uIn02b" - }, - { - "name": "systematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XA9T2y" - }, - { - "name": "vital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IFeHHG" - }, - { - "name": "conflict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reTgav" - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLsN4q" - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wn7_t9" - }, - { - "name": "appliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNiupo" - }, - { - "name": "mass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SD0Iax" - }, - { - "name": "lord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjw1mm" - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PPzufL" - }, - { - "name": "amateur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3o2EzO" - }, - { - "name": "poisonous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s8GGTC" - }, - { - "name": "condemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IQpIch" - }, - { - "name": "beast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "evRKJ5" - }, - { - "name": "assistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-t-Uhq" - }, - { - "name": "commerce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2xbZCp" - }, - { - "name": "gesture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AYQPpQ" - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cYYa5" - }, - { - "name": "poem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GzpdqB" - }, - { - "name": "interest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73_AnV" - }, - { - "name": "gulf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xhKtcv" - }, - { - "name": "poet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OyFtLV" - }, - { - "name": "definition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X8nEyC" - }, - { - "name": "shave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWFgB_" - }, - { - "name": "organic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_K5_Gw" - }, - { - "name": "mask", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yyRp7L" - }, - { - "name": "summary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRN5Cm" - }, - { - "name": "apply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KwoJUt" - }, - { - "name": "inferior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y5CGx5" - }, - { - "name": "steamer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qFxuHl" - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGs-7f" - }, - { - "name": "overlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m5QJZ_" - }, - { - "name": "politician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PYLNwW" - }, - { - "name": "incredible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "by1Omw" - }, - { - "name": "dramatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkZyD7" - }, - { - "name": "mosquito", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yG4Xj" - }, - { - "name": "guitar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4JQNL8" - }, - { - "name": "layout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zSuTmh" - }, - { - "name": "artificial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pjh2QS" - }, - { - "name": "imaginary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K65kj1" - }, - { - "name": "removal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e6P1ni" - }, - { - "name": "formula", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vFHKDg" - }, - { - "name": "comment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrcfvr" - }, - { - "name": "revolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hG3LXw" - }, - { - "name": "disgust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jptN0" - }, - { - "name": "stem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INDK2-" - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dEfmD" - }, - { - "name": "trend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vDtask" - }, - { - "name": "achievement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O4toW0" - }, - { - "name": "mechanic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9F5eQ4" - }, - { - "name": "desirable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vnxuv" - }, - { - "name": "balcony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJhgmX" - }, - { - "name": "consist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wgy8BL" - }, - { - "name": "preparation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uRq6-7" - }, - { - "name": "reliable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "idpkS4" - }, - { - "name": "relate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1Eqr" - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3jIYav" - }, - { - "name": "elevator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lO2-Fe" - }, - { - "name": "grammar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Y26ob" - }, - { - "name": "enable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJNjEA" - }, - { - "name": "preliminary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S2I8J2" - }, - { - "name": "dependent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cg2_VW" - }, - { - "name": "obstacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_D4rh1" - }, - { - "name": "profession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4Wqfn" - }, - { - "name": "calculator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZSzS7" - }, - { - "name": "van", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ydG1l" - }, - { - "name": "biology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9lolg" - }, - { - "name": "worm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LDg8mw" - }, - { - "name": "compress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UF4Ws2" - }, - { - "name": "arise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DJVIJS" - }, - { - "name": "collaborative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIYjAJ" - }, - { - "name": "cherish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "62fcwz" - }, - { - "name": "constitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32yLrE" - }, - { - "name": "cattle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B6kSTs" - }, - { - "name": "imagination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYI11I" - }, - { - "name": "resistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XSt2zQ" - }, - { - "name": "underneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JTna5t" - }, - { - "name": "nursery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "boR5Y9" - }, - { - "name": "mate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cuKy7H" - }, - { - "name": "convince", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_neEgV" - }, - { - "name": "emperor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHJqr4" - }, - { - "name": "prolong", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nj2bwp" - }, - { - "name": "theory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joz99V" - }, - { - "name": "distress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYRtWW" - }, - { - "name": "flock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uEsTO" - }, - { - "name": "internal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zEyEMj" - }, - { - "name": "extension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb_m1x" - }, - { - "name": "signature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1x1I" - }, - { - "name": "steep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muU2iF" - }, - { - "name": "thumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z87bBc" - }, - { - "name": "republican", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6J_wXH" - }, - { - "name": "literary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbjT3Z" - }, - { - "name": "architect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qugxw4" - }, - { - "name": "forehead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QatsWU" - }, - { - "name": "classical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ItTHv" - }, - { - "name": "privilege", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOEGJE" - }, - { - "name": "foundation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S5ynoi" - }, - { - "name": "substitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BaNEcl" - }, - { - "name": "punch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6Cduf" - }, - { - "name": "naturally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_0Yk-5" - }, - { - "name": "flexibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pz6tNF" - }, - { - "name": "mysterious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3r2bXb" - }, - { - "name": "moreover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GK0-uT" - }, - { - "name": "identity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opHpWR" - }, - { - "name": "scatter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PAz4oN" - }, - { - "name": "installation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7jKw5q" - }, - { - "name": "writing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2tgmKV" - }, - { - "name": "federal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ElOnIN" - }, - { - "name": "violate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS44j8" - }, - { - "name": "verify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij7IWU" - }, - { - "name": "collective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YWXOsb" - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PK-893" - }, - { - "name": "steer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJfGAp" - }, - { - "name": "event", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIN81X" - }, - { - "name": "academy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9M5y2c" - }, - { - "name": "undergo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2LWT3" - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bI6ufp" - }, - { - "name": "include", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWRobZ" - }, - { - "name": "sympathize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZyosAm" - }, - { - "name": "alongside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoeTUV" - }, - { - "name": "swallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "02Rn-W" - }, - { - "name": "agency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u6wFA4" - }, - { - "name": "coupon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_lwLh" - }, - { - "name": "railroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QFZSEj" - }, - { - "name": "nucleus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLe5Or" - }, - { - "name": "fascinating", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EpggG" - }, - { - "name": "abstract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SeqN3G" - }, - { - "name": "sting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MHVm72" - }, - { - "name": "haste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nkQKIE" - }, - { - "name": "agenda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EdM8NK" - }, - { - "name": "appearance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2aNm5" - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPAA6T" - }, - { - "name": "culture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30bzUC" - }, - { - "name": "sleeve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGbvth" - }, - { - "name": "devotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDEYVv" - }, - { - "name": "anonymous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIrRvz" - }, - { - "name": "stir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IndalO" - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DYv-4A" - }, - { - "name": "span", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MQ74w" - }, - { - "name": "insult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eaVneS" - }, - { - "name": "existence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5DkcL" - }, - { - "name": "craft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gG2OX4" - }, - { - "name": "butcher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k_k3KT" - }, - { - "name": "poll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ia8ISq" - }, - { - "name": "minority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zRk2S5" - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7DAPJ" - }, - { - "name": "float", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzVTPj" - }, - { - "name": "graceful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjGqZj" - }, - { - "name": "fourfold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fcf4Cx" - }, - { - "name": "preferable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7xMy98" - }, - { - "name": "reference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EGrSjv" - }, - { - "name": "frog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VetPFX" - }, - { - "name": "spite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zLjUJS" - }, - { - "name": "chamber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T0EvMq" - }, - { - "name": "arrange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IqkbnT" - }, - { - "name": "coarse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Wne5E" - }, - { - "name": "nephew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KfJQwy" - }, - { - "name": "publicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJdAkP" - }, - { - "name": "depart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Se8ff1" - }, - { - "name": "exaggerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2qG-Uu" - }, - { - "name": "imply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eC_f6k" - }, - { - "name": "capture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9HIou" - }, - { - "name": "commitment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUdTRe" - }, - { - "name": "spade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x7liRT" - }, - { - "name": "manufacture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpUA93" - }, - { - "name": "sequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmVrtl" - }, - { - "name": "collision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82KfYv" - }, - { - "name": "qualification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nO7JYU" - }, - { - "name": "provision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km4qK6" - }, - { - "name": "recruit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rBO1-Z" - }, - { - "name": "thrust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3YogR" - }, - { - "name": "fame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9WR4b2" - }, - { - "name": "replacement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HE_bQ4" - }, - { - "name": "mud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UCaTgi" - }, - { - "name": "mug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12Cclf" - }, - { - "name": "pond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sGy68J" - }, - { - "name": "arrival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LaFulC" - }, - { - "name": "scientific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hJ1Ccv" - }, - { - "name": "frequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Px0X18" - }, - { - "name": "according", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AfgvcI" - }, - { - "name": "insure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqcUsT" - }, - { - "name": "powder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEn8_" - }, - { - "name": "membership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jtXn3" - }, - { - "name": "error", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zVRAp" - }, - { - "name": "platform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tHOkz4" - }, - { - "name": "network", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9jGQbi" - }, - { - "name": "jealous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fRMks" - }, - { - "name": "rust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmK89l" - }, - { - "name": "trace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zrb0Ma" - }, - { - "name": "Negro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xlvK6d" - }, - { - "name": "modernization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmXZuv" - }, - { - "name": "grave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rFJ0G-" - }, - { - "name": "criminology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dn3-Oa" - }, - { - "name": "advantage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2l7Fz" - }, - { - "name": "assistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lriJaC" - }, - { - "name": "inn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tnbbny" - }, - { - "name": "instead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bbYrjb" - }, - { - "name": "controversy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qV1FE" - }, - { - "name": "command", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iR8vF1" - }, - { - "name": "newsstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzUI8q" - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gVhrxL" - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxbztB" - }, - { - "name": "dessert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QXQhTI" - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "At_p4B" - }, - { - "name": "anticipate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rWByC6" - }, - { - "name": "variable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nGdwSC" - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2eIha" - }, - { - "name": "growth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qp3OE_" - }, - { - "name": "landscape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Qj63Z" - }, - { - "name": "weave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChLdjH" - }, - { - "name": "carrot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fokXCd" - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6IJ9Q8" - }, - { - "name": "exception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahMgZ8" - }, - { - "name": "vague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKPsGf" - }, - { - "name": "temporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czQprn" - }, - { - "name": "fare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iVCvf3" - }, - { - "name": "desperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikzb86" - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qgYDFH" - }, - { - "name": "awful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0bWmCp" - }, - { - "name": "accuracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_R1LB" - }, - { - "name": "handy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wjyM1z" - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAiNVA" - }, - { - "name": "resolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y4ha5C" - }, - { - "name": "via", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Euil74" - }, - { - "name": "setting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2BL09H" - }, - { - "name": "score", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3-nJaB" - }, - { - "name": "quote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HXHLDl" - }, - { - "name": "graduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uTWYVN" - }, - { - "name": "famine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALNjND" - }, - { - "name": "gramme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wnjCBG" - }, - { - "name": "absent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhod7R" - }, - { - "name": "rag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snXb8Q" - }, - { - "name": "visual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N70vVV" - }, - { - "name": "understanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SInRQq" - }, - { - "name": "empire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VrJuyu" - }, - { - "name": "educate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIlfcd" - }, - { - "name": "fairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_daan_" - }, - { - "name": "ashamed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9FOjrK" - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhucHW" - }, - { - "name": "rat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix5xKW" - }, - { - "name": "mayor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s5koJN" - }, - { - "name": "virtually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P9UhaT" - }, - { - "name": "fairly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZoTbue" - }, - { - "name": "handwriting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8npK2L" - }, - { - "name": "merchant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DpuOMj" - }, - { - "name": "raw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bpRxJN" - }, - { - "name": "proportional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UkVJeG" - }, - { - "name": "economy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vELI40" - }, - { - "name": "community", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jfCf8l" - }, - { - "name": "packet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gLd52U" - }, - { - "name": "version", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y6Wh4N" - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WzREWT" - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xrYC3D" - }, - { - "name": "nationality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g7IYpD" - }, - { - "name": "selection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yw1tE" - }, - { - "name": "institute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "io2ZIk" - }, - { - "name": "aboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7gBj6V" - }, - { - "name": "endure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6EZSzH" - }, - { - "name": "detail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqvNr7" - }, - { - "name": "shortly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UhiwAi" - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gMwrbt" - }, - { - "name": "appropriate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ml8XQ4" - }, - { - "name": "providing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cBe8k5" - }, - { - "name": "fate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBdduK" - }, - { - "name": "throat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqrxqT" - }, - { - "name": "utility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbwy29" - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dx_4eo" - }, - { - "name": "manual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djTNDa" - }, - { - "name": "measurement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WDe0UG" - }, - { - "name": "optimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EyGXw8" - }, - { - "name": "vocabulary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qoEhbB" - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bwz7ZN" - }, - { - "name": "aspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dWQwYb" - }, - { - "name": "particle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ToPj9S" - }, - { - "name": "aggressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QIs-Z" - }, - { - "name": "behavior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhtKuk" - }, - { - "name": "musician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "58hHri" - }, - { - "name": "minimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bgIU3Z" - }, - { - "name": "descend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Xrvyt" - }, - { - "name": "saint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOMzQc" - }, - { - "name": "density", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vxYHG" - }, - { - "name": "logical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJgU_e" - }, - { - "name": "oblige", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRrR1O" - }, - { - "name": "slam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PFGb4z" - }, - { - "name": "characterize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ODmHWO" - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2GiSk" - }, - { - "name": "ridiculous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dLbhGX" - }, - { - "name": "handbag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dwi7ce" - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Po5VEX" - }, - { - "name": "spin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ovhcxA" - }, - { - "name": "severe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mWk5kb" - }, - { - "name": "emerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aQ8uex" - }, - { - "name": "shallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYtoP8" - }, - { - "name": "lease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oVlYxd" - }, - { - "name": "exploit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMJMzt" - }, - { - "name": "slap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LS0shJ" - }, - { - "name": "spit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcPmT-" - }, - { - "name": "scout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ty9U9l" - }, - { - "name": "anniversary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lBRGb8" - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhnBv5" - }, - { - "name": "restless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vhwLG" - }, - { - "name": "persuasive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1M6kK5" - }, - { - "name": "fleet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kl14HQ" - }, - { - "name": "communicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZWqPV6" - }, - { - "name": "evidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_2kzJ" - }, - { - "name": "saddle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xcqRV9" - }, - { - "name": "rural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y92rmE" - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-QxHu" - }, - { - "name": "historical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHn2XX" - }, - { - "name": "repetition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_sX7l" - }, - { - "name": "fortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KJdd6e" - }, - { - "name": "acid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OkpPyJ" - }, - { - "name": "transmission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bd1JCK" - }, - { - "name": "shortage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7NQ_7" - }, - { - "name": "discrimination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRzEhp" - }, - { - "name": "female", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZuKMfj" - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeGURw" - }, - { - "name": "swift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ypLJrF" - }, - { - "name": "surrender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "flMcq-" - }, - { - "name": "faint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5boff" - }, - { - "name": "world-wide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kio_tL" - }, - { - "name": "minister", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIszTL" - }, - { - "name": "pose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vmBXF-" - }, - { - "name": "remedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6itWt" - }, - { - "name": "jail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qqydYi" - }, - { - "name": "consent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9uC0z" - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rtJow6" - }, - { - "name": "typewriter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejwP5_" - }, - { - "name": "helpless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ms9BWx" - }, - { - "name": "respect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_oWO5J" - }, - { - "name": "volume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YeAF05" - }, - { - "name": "retreat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zO2K1T" - }, - { - "name": "ache", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjfOk7" - }, - { - "name": "mutual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5zcjt" - }, - { - "name": "shell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7f9Iz" - }, - { - "name": "guideline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mr9i_b" - }, - { - "name": "loose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "igEoTb" - }, - { - "name": "therefore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fuzTSO" - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gc9ibl" - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gyyrFx" - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBvOEs" - }, - { - "name": "private", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mnPNxL" - }, - { - "name": "baggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbKyK_" - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4gH1j" - }, - { - "name": "breakdown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXjA61" - }, - { - "name": "paste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0tYx" - }, - { - "name": "overtake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60E6Kp" - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS4hes" - }, - { - "name": "overnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeTiG7" - }, - { - "name": "behave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b3IybY" - }, - { - "name": "stretch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SEeYy7" - }, - { - "name": "undo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uFPgbH" - }, - { - "name": "accomplish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMy593" - }, - { - "name": "laser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMy2zQ" - }, - { - "name": "mixture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqNHlK" - }, - { - "name": "engine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxYYpP" - }, - { - "name": "responsible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fY39B" - }, - { - "name": "scope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-HVY0O" - }, - { - "name": "democratic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30xzEM" - }, - { - "name": "medal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYaw-O" - }, - { - "name": "satellite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wkRCFT" - }, - { - "name": "bullet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLFpms" - }, - { - "name": "recorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQwSOc" - }, - { - "name": "identify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjHkkz" - }, - { - "name": "embrace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdYQG0" - }, - { - "name": "nitrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1LK6" - }, - { - "name": "pour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Ul-9M" - }, - { - "name": "label", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wncfdT" - }, - { - "name": "improvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JzkQxi" - }, - { - "name": "slippery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZdJYBv" - }, - { - "name": "scissors", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxbvDd" - }, - { - "name": "significance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0PsSO" - }, - { - "name": "modify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYQf8c" - }, - { - "name": "horizon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E31K3t" - }, - { - "name": "environment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AU54KG" - }, - { - "name": "airplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mH6vSK" - }, - { - "name": "pledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d77a5w" - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mw0eo6" - }, - { - "name": "reservoir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Su1Lwn" - }, - { - "name": "deliberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hPDtA5" - }, - { - "name": "swear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bugduQ" - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmTUB" - }, - { - "name": "decorate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d_deRA" - }, - { - "name": "copyright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_BIIT" - }, - { - "name": "biotechnology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vHE_pI" - }, - { - "name": "career", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dos5Ja" - }, - { - "name": "occupation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeiMXd" - }, - { - "name": "tendency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3jAt6" - }, - { - "name": "release", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYBw7_" - }, - { - "name": "charter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ij4RA4" - }, - { - "name": "slim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DMwjRM" - }, - { - "name": "arithmetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fd6mCj" - }, - { - "name": "rib", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yG8SI4" - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PsmG53" - }, - { - "name": "liberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecjGlg" - }, - { - "name": "rid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dE8Jnw" - }, - { - "name": "variation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbgo40" - }, - { - "name": "moral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ey_-l5" - }, - { - "name": "defect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zwiBk" - }, - { - "name": "reinforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBcLWH" - }, - { - "name": "explode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83VWnS" - }, - { - "name": "casual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7tra5" - }, - { - "name": "decline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3URsd6" - }, - { - "name": "property", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ki-ZZk" - }, - { - "name": "succeeding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joISXq" - }, - { - "name": "brave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThMrdB" - }, - { - "name": "similar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fF3W_j" - }, - { - "name": "viewpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pdbiJ" - }, - { - "name": "anyhow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4y9Pi8" - }, - { - "name": "specify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnXTLs" - }, - { - "name": "whistle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWRDHE" - }, - { - "name": "handle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sWcATe" - }, - { - "name": "forth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oXrzZt" - }, - { - "name": "tough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5_MwXl" - }, - { - "name": "crossing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yrh8nY" - }, - { - "name": "script", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W-NQYT" - }, - { - "name": "submerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZq6xW" - }, - { - "name": "system", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "twQhIE" - }, - { - "name": "compose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OJd83T" - }, - { - "name": "spot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Foeej" - }, - { - "name": "roller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t0XRZg" - }, - { - "name": "partial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2dr7i0" - }, - { - "name": "aid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFw7K2" - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMBuD3" - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xi56UL" - }, - { - "name": "retain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftU2o-" - }, - { - "name": "swell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8v-WS" - }, - { - "name": "skilled", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28lYws" - }, - { - "name": "local", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g1yK6C" - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rqseHL" - }, - { - "name": "crude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mZLVAH" - }, - { - "name": "manufacturer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-XCImk" - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIxs0Y" - }, - { - "name": "valid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5qdcg" - }, - { - "name": "withstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cLZ5Qz" - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a57ieF" - }, - { - "name": "vacuum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyFi0B" - }, - { - "name": "encourage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzneP4" - }, - { - "name": "bubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDumq9" - }, - { - "name": "era", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3MO2Q7" - }, - { - "name": "yield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WdKU6" - }, - { - "name": "electronic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmmbrw" - }, - { - "name": "vacation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gT3r6A" - }, - { - "name": "outcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HVp44C" - }, - { - "name": "elegant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9crgY0" - }, - { - "name": "tender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yk5ktx" - }, - { - "name": "curriculum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QZV6pi" - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6o0aPn" - }, - { - "name": "powerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgGmnZ" - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_8bKbF" - }, - { - "name": "species", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0Tzzh" - }, - { - "name": "anchor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_gF6V" - }, - { - "name": "preceding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HMyde1" - }, - { - "name": "cite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2E7xx" - }, - { - "name": "logic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "40iIh-" - }, - { - "name": "acquaintance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YLRwO9" - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mysw2" - }, - { - "name": "internship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-fqwq" - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wiJaxE" - }, - { - "name": "eyesight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmZIUS" - }, - { - "name": "precision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVqpt5" - }, - { - "name": "glove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y38_Ae" - }, - { - "name": "screen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FLBW6v" - }, - { - "name": "naked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tkdwjp" - }, - { - "name": "trial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4vOOQd" - }, - { - "name": "correspond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KR4D4B" - }, - { - "name": "spur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r6bFaq" - }, - { - "name": "perception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNRi_A" - }, - { - "name": "rear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-37SY" - }, - { - "name": "amongst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsqB17" - }, - { - "name": "undertake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M7dJI-" - }, - { - "name": "insect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I7RDZr" - }, - { - "name": "bureau", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikaJMA" - }, - { - "name": "moist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4MyVU" - }, - { - "name": "cable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e3v1ps" - }, - { - "name": "qualify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKSf-r" - }, - { - "name": "intense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mANDv0" - }, - { - "name": "pregnant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-K27q" - }, - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pdFDpj" - }, - { - "name": "estate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxG-XY" - }, - { - "name": "applicable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yQAd4j" - }, - { - "name": "admission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IR0eF5" - }, - { - "name": "brass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KudbqD" - }, - { - "name": "expense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP2NSi" - }, - { - "name": "rumour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzV2MC" - }, - { - "name": "contemporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPZs-U" - }, - { - "name": "gear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Usokgs" - }, - { - "name": "boundary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z64Hqa" - }, - { - "name": "rob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V12SY_" - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "colPHm" - }, - { - "name": "financial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-bGU0" - }, - { - "name": "rod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSiESv" - }, - { - "name": "dumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMEvMu" - }, - { - "name": "respective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDDxIf" - }, - { - "name": "media", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pfnmyu" - }, - { - "name": "favour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6QQYW" - }, - { - "name": "pollute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0NuhPJ" - }, - { - "name": "harden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HtnY97" - }, - { - "name": "eve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wfxPx" - }, - { - "name": "pronoun", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRj69d" - }, - { - "name": "define", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "16nTW2" - }, - { - "name": "dictate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EgNH1B" - }, - { - "name": "construction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brw8XO" - }, - { - "name": "predict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "26vnUX" - }, - { - "name": "dump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zcmcxc" - }, - { - "name": "render", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0rS9B" - }, - { - "name": "universal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P1ZOsC" - }, - { - "name": "chemist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XRObbG" - }, - { - "name": "frontier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-nlAi" - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUjLtg" - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ue3Mny" - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JI42yg" - }, - { - "name": "drawer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vc0F15" - }, - { - "name": "requirement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IW0OGv" - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UaGTsd" - }, - { - "name": "employment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W7gnEg" - }, - { - "name": "specific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lztMe" - }, - { - "name": "application", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h8_fpl" - }, - { - "name": "engage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dkg_Dt" - }, - { - "name": "acre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C4KWpC" - }, - { - "name": "whisper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRCvdG" - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwZBn3" - }, - { - "name": "semester", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pRJ3Oy" - }, - { - "name": "strategy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmfAu0" - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ow8Xom" - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "exIU4b" - }, - { - "name": "clumsy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VuKskd" - }, - { - "name": "territory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbV1pX" - }, - { - "name": "concession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yxwImt" - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "11JuTS" - }, - { - "name": "maintain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lKF1LA" - }, - { - "name": "shift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfiXIl" - }, - { - "name": "echo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr3yzr" - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Olk8bc" - }, - { - "name": "bargain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gYV545" - }, - { - "name": "professional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zxR-EJ" - }, - { - "name": "elective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z2vX34" - }, - { - "name": "accusation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oxZwBS" - }, - { - "name": "protein", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XOf8HE" - }, - { - "name": "annual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xU04OX" - }, - { - "name": "exclusive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsQ-yJ" - }, - { - "name": "jar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdQXri" - }, - { - "name": "poverty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQHdgx" - }, - { - "name": "resort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l_YyU2" - }, - { - "name": "goodness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_q0xf-" - }, - { - "name": "lightning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yTqjUg" - }, - { - "name": "jaw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2drNy" - }, - { - "name": "margin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD3pgj" - }, - { - "name": "remain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KSU7zW" - }, - { - "name": "amaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL3-At" - }, - { - "name": "refine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9Hshm" - }, - { - "name": "mount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bauq8X" - }, - { - "name": "demand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixGHaE" - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G9b9v-" - }, - { - "name": "atomic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcZPEl" - }, - { - "name": "deposit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6qRuv9" - }, - { - "name": "centimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QfQE2O" - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cTKxHc" - }, - { - "name": "rotten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gi_PiJ" - }, - { - "name": "skillful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPHKr_" - }, - { - "name": "flash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwSh3w" - }, - { - "name": "accuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69b4xX" - }, - { - "name": "housing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "th60Vq" - }, - { - "name": "devil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B_8z8L" - }, - { - "name": "guarantee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0UmQm" - }, - { - "name": "recommend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F8PrEi" - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ig0fT0" - }, - { - "name": "fertile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXMvV7" - }, - { - "name": "automobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsFZJM" - }, - { - "name": "notion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qtBycP" - }, - { - "name": "diversity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ep0EEl" - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6d0oy" - }, - { - "name": "tractor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VkL7z" - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BgMp6r" - }, - { - "name": "grace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jxwh5u" - }, - { - "name": "advertisement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F_QQV8" - }, - { - "name": "ripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z5FI3r" - }, - { - "name": "attribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "psxC5G" - }, - { - "name": "mechanism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vIGSl" - }, - { - "name": "detection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NOKn0" - }, - { - "name": "triumph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZKC_8" - }, - { - "name": "vice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fwt8kH" - }, - { - "name": "horror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BcuPn" - }, - { - "name": "poison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1OlU0" - }, - { - "name": "thoughtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1k5x00" - }, - { - "name": "gram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Stihh" - }, - { - "name": "empower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV3lza" - }, - { - "name": "riot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXCEOi" - }, - { - "name": "arouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJsarR" - }, - { - "name": "nest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCU9_s" - }, - { - "name": "tour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mitj_G" - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tt2L68" - }, - { - "name": "boring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeTMI2" - }, - { - "name": "classic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-AFTi" - }, - { - "name": "ownership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wqfh3T" - }, - { - "name": "metric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ceY9DR" - }, - { - "name": "absolute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_XdT9_" - }, - { - "name": "ash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d75lj2" - }, - { - "name": "describe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vQbCLp" - }, - { - "name": "suck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGhB95" - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F21gHE" - }, - { - "name": "rub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uvntqV" - }, - { - "name": "presently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ZAJhc" - }, - { - "name": "wealthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cE9Ucl" - }, - { - "name": "rug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6z8wnu" - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQDV8v" - }, - { - "name": "dusk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qLv_9o" - }, - { - "name": "administration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgXb-F" - }, - { - "name": "occasional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hxNM0k" - }, - { - "name": "boast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F7ZFHm" - }, - { - "name": "operator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6OqSy" - }, - { - "name": "debate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bz8qYt" - }, - { - "name": "spacecraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNFbyH" - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gipRxD" - }, - { - "name": "segment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiOaGz" - }, - { - "name": "stripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tww3rz" - }, - { - "name": "jet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxA-gx" - }, - { - "name": "helpful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RWArTB" - }, - { - "name": "statistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XtiMO6" - }, - { - "name": "attractive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QwDB6j" - }, - { - "name": "superb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sl4iu7" - }, - { - "name": "mold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r2qTmo" - }, - { - "name": "engineering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ubyK-" - }, - { - "name": "significant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crDQIN" - }, - { - "name": "bold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CEAbu6" - }, - { - "name": "bleed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThJIP7" - }, - { - "name": "delicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "up1AGj" - }, - { - "name": "catalogue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cfCCNS" - }, - { - "name": "whatever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDzWrm" - }, - { - "name": "decrease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8jIBQ" - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4ifpR" - }, - { - "name": "museum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yzQxTQ" - }, - { - "name": "ignorance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CpXA4" - }, - { - "name": "senate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hr0q0L" - }, - { - "name": "trumpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u8p6oG" - }, - { - "name": "bolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSq3rA" - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djlKwe" - }, - { - "name": "import", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Zte5_" - }, - { - "name": "occupy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmkZhW" - }, - { - "name": "submit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qftnM8" - }, - { - "name": "mood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1bTHkM" - }, - { - "name": "boom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hkOvKf" - }, - { - "name": "absence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f96lrs" - }, - { - "name": "attract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gnS9De" - }, - { - "name": "edition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tNNyS" - }, - { - "name": "simplicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wW8-8X" - }, - { - "name": "cautious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D7lqaZ" - }, - { - "name": "disappear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g6Uwax" - }, - { - "name": "summit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a0Eckx" - }, - { - "name": "recession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ee3K_6" - }, - { - "name": "conclusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yCpYZG" - }, - { - "name": "typist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EWd9Pn" - }, - { - "name": "durable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSBp-g" - }, - { - "name": "negative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QDfxVA" - }, - { - "name": "impose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1w0uVc" - }, - { - "name": "ally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joEFUR" - }, - { - "name": "statement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3dx8L" - }, - { - "name": "hence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39STLJ" - }, - { - "name": "memorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxDwFm" - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYqESH" - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4OdWQW" - }, - { - "name": "pinch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fAbTI-" - }, - { - "name": "delivery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QybJ5E" - }, - { - "name": "rack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfRC6W" - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hSFHuc" - }, - { - "name": "conquer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vur3kH" - }, - { - "name": "learned", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUaQfT" - }, - { - "name": "substance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AehFEK" - }, - { - "name": "frown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KTE0D5" - }, - { - "name": "bond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vARY0E" - }, - { - "name": "target", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tJDn_M" - }, - { - "name": "wax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ynKRTf" - }, - { - "name": "grind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLOTc6" - }, - { - "name": "urban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_yQK_i" - }, - { - "name": "furthermore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uzUQMk" - }, - { - "name": "guidance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZZtTmR" - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4Fwfi" - }, - { - "name": "flame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DhSSSB" - }, - { - "name": "container", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-kig-" - }, - { - "name": "leader", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ljlR-s" - }, - { - "name": "delicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7DcM-" - }, - { - "name": "discard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QK2i4" - }, - { - "name": "fancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K4JFxY" - }, - { - "name": "rebel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V6xkU1" - }, - { - "name": "bounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLz98M" - }, - { - "name": "usage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w5vKrW" - }, - { - "name": "tissue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UCIki" - }, - { - "name": "experimental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vTPAkA" - }, - { - "name": "loosen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "67y66h" - }, - { - "name": "rent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3A0GUA" - }, - { - "name": "nearby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DeIkus" - }, - { - "name": "carpenter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XASr0R" - }, - { - "name": "cart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0CoMl" - }, - { - "name": "modest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNq6QQ" - }, - { - "name": "cast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O-fXGu" - }, - { - "name": "anxious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nOSHb1" - }, - { - "name": "hatred", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cZZU9Z" - }, - { - "name": "crush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i5qwcW" - }, - { - "name": "largely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VzcnS7" - }, - { - "name": "slice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zOCXXS" - }, - { - "name": "frost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1mrm5" - }, - { - "name": "electron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAREaK" - }, - { - "name": "incline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tff-R" - }, - { - "name": "truly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12xC_l" - }, - { - "name": "cash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0tGFyK" - }, - { - "name": "counsel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5SVeW5" - }, - { - "name": "item", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82wA02" - }, - { - "name": "gene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uBDFWx" - }, - { - "name": "liver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usZrsm" - }, - { - "name": "suicide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vhQ_u" - }, - { - "name": "violet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aGqyTk" - }, - { - "name": "hollow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I0FKs-" - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dHThTM" - }, - { - "name": "saving", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A0cBHd" - }, - { - "name": "rely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tU3ac" - }, - { - "name": "hospitalize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIn_zS" - }, - { - "name": "slide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cINVvB" - }, - { - "name": "utilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TeOaOu" - }, - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Jxnbm" - }, - { - "name": "prevail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-D1ip9" - }, - { - "name": "waist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_QNWb" - }, - { - "name": "excessive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YZceEk" - }, - { - "name": "flesh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0g131w" - }, - { - "name": "jungle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zvIPta" - }, - { - "name": "portion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60SrwO" - }, - { - "name": "settle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqZll" - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux9Shi" - }, - { - "name": "harsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NuolZ" - }, - { - "name": "connexion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GNpxnm" - }, - { - "name": "vehicle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1Fpnm" - }, - { - "name": "scrape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yD7u3x" - }, - { - "name": "hardship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jrJfmI" - }, - { - "name": "confuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5lWlTX" - }, - { - "name": "cushion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JXTqP3" - }, - { - "name": "scold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G-jlaF" - }, - { - "name": "glorious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FNNT1D" - }, - { - "name": "civilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeQOo" - }, - { - "name": "physician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG8TmC" - }, - { - "name": "architecture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWD_IX" - }, - { - "name": "stress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "je7dx-" - }, - { - "name": "grip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQMrqh" - }, - { - "name": "explore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXXi1T" - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sj1fJs" - }, - { - "name": "electricity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfrIau" - }, - { - "name": "climate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VLmaP" - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8yF_HW" - }, - { - "name": "bore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5ddXl" - }, - { - "name": "crust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-iED6k" - }, - { - "name": "disorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "350IfC" - }, - { - "name": "criticize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "44Zw0_" - }, - { - "name": "organization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69VhLM" - }, - { - "name": "rage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uxj2-e" - }, - { - "name": "width", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wvrwUN" - }, - { - "name": "dairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cD1RdQ" - }, - { - "name": "board", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jaVrX-" - }, - { - "name": "economic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aD5mFc" - }, - { - "name": "stuff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0V_t1D" - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZrcyKI" - }, - { - "name": "widow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGXgHn" - }, - { - "name": "distinction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cVDYlc" - }, - { - "name": "mature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rthm-T" - }, - { - "name": "navy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s3XGOZ" - }, - { - "name": "fee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RMUyef" - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yhx_H" - }, - { - "name": "influence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix8qIs" - }, - { - "name": "whip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ll8VgG" - }, - { - "name": "protocol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Op0Hwk" - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oWPcCn" - }, - { - "name": "provoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZhn3" - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJiG6i" - }, - { - "name": "talent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXdDYb" - }, - { - "name": "percentage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6jHDy" - }, - { - "name": "negotiate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFaob-" - }, - { - "name": "strain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "56zraU" - }, - { - "name": "hunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jbpSgM" - }, - { - "name": "violin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ei73g0" - }, - { - "name": "remonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tlPDIp" - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NBSYM1" - }, - { - "name": "visible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHU6AU" - }, - { - "name": "crisis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0gRDc" - }, - { - "name": "rail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NaSndH" - }, - { - "name": "survival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW5XB1" - }, - { - "name": "germ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oUku7p" - }, - { - "name": "inner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YMihBc" - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fqFEZm" - }, - { - "name": "keen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "70RUTA" - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yWPn8F" - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGC36L" - }, - { - "name": "transfer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8tSltF" - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V9yCTq" - }, - { - "name": "veteran", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xBjCmG" - }, - { - "name": "indifferent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jSmVI6" - }, - { - "name": "outside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BwP0_Z" - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztu2yG" - }, - { - "name": "affection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MnnUiB" - }, - { - "name": "eagle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71B54D" - }, - { - "name": "cruise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXlmFk" - }, - { - "name": "elementary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1eBbqT" - }, - { - "name": "topic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kXx0po" - }, - { - "name": "solemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y24ijH" - }, - { - "name": "perceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ac8jNM" - }, - { - "name": "omit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Co1ofe" - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rdo0Kg" - }, - { - "name": "option", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZeBmYy" - }, - { - "name": "erroneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WYb9oE" - }, - { - "name": "raid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNCPGU" - }, - { - "name": "politics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vWxlRK" - }, - { - "name": "acute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4E_6vp" - }, - { - "name": "limitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HONnVh" - }, - { - "name": "sponsor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xJIrqI" - }, - { - "name": "kindergarten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kYmedV" - }, - { - "name": "unexpected", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k7_R-Z" - }, - { - "name": "crucial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muuJ1Y" - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnlAq_" - }, - { - "name": "faith", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUNmfH" - }, - { - "name": "generator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqpq33" - }, - { - "name": "insert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5ggTq" - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGHMhL" - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KLfmB" - }, - { - "name": "microscope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aHjl45" - }, - { - "name": "necessarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lklLZE" - }, - { - "name": "highlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YiU8MN" - }, - { - "name": "candidate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6E9EM0" - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5irZCG" - }, - { - "name": "parallel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzF4Hv" - }, - { - "name": "reject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PM7q3M" - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o94SCV" - }, - { - "name": "cashier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zUjKqU" - }, - { - "name": "sheer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ItSENB" - }, - { - "name": "miracle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BEuoCB" - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MrvGwX" - }, - { - "name": "original", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BLO8fp" - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fv98LB" - }, - { - "name": "handful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Gciaw" - }, - { - "name": "assignment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tr8sUd" - }, - { - "name": "nylon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ECJhee" - }, - { - "name": "yawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtMyMO" - }, - { - "name": "electric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdCCL5" - }, - { - "name": "terminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3TBfqO" - }, - { - "name": "kingdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a3lySR" - }, - { - "name": "differ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zTGTv" - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zWxoc6" - }, - { - "name": "latter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AMHfmw" - }, - { - "name": "depression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vZgAMw" - }, - { - "name": "reduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XBXSYB" - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYZBwu" - }, - { - "name": "equivalent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tKQyn" - }, - { - "name": "gaol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPGbkh" - }, - { - "name": "conversely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iZnyNI" - }, - { - "name": "sauce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1bFi" - }, - { - "name": "ban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oFzppW" - }, - { - "name": "fascinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_-TGJ" - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TlatkD" - }, - { - "name": "diplomatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ls7IEE" - }, - { - "name": "bat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CvjW9e" - }, - { - "name": "neighbourhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBVIXJ" - }, - { - "name": "draft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OI4gZX" - }, - { - "name": "complex", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwM-Ap" - }, - { - "name": "rank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z_NdMP" - }, - { - "name": "assumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "umk90n" - }, - { - "name": "pension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bhisMr" - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQY9FV" - }, - { - "name": "fluid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yfiCUL" - }, - { - "name": "bay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "heQUOP" - }, - { - "name": "outlet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1TUNIz" - }, - { - "name": "neglect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYTP9i" - }, - { - "name": "addition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NKVAPo" - }, - { - "name": "gang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66Bp-1" - }, - { - "name": "shrink", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFhn99" - }, - { - "name": "ancestor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKz2-X" - }, - { - "name": "textile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zb4zrB" - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WoSU8c" - }, - { - "name": "panic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZB7yG-" - }, - { - "name": "extend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4eBj56" - }, - { - "name": "fold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tVJjg_" - }, - { - "name": "plastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i_GXRX" - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHe8n0" - }, - { - "name": "chemical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DZ9EV" - }, - { - "name": "interpretation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wMzR3t" - }, - { - "name": "ax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AWuqLw" - }, - { - "name": "intermediate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KmeRq3" - }, - { - "name": "folk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUhLgO" - }, - { - "name": "consideration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PRxN4W" - }, - { - "name": "competitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AcwCB4" - }, - { - "name": "enquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dYQ3G" - }, - { - "name": "applause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQsihN" - }, - { - "name": "frank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W3ncEx" - }, - { - "name": "abuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZuTJ" - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKZQGy" - }, - { - "name": "scheme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEIskd" - }, - { - "name": "affect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RZlmm" - }, - { - "name": "deaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7IzliP" - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7JnG9" - }, - { - "name": "consequently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TAPC_9" - }, - { - "name": "virus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVQAzh" - }, - { - "name": "drain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X7rtLl" - }, - { - "name": "isolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fyTj3I" - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GEOUA2" - }, - { - "name": "amuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Np8XT" - }, - { - "name": "inward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IBGpC3" - }, - { - "name": "responsibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GiVTg1" - }, - { - "name": "enquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sRK7e0" - }, - { - "name": "civil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVmwy2" - }, - { - "name": "popularity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qmBnA-" - }, - { - "name": "subsequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q-oJ1l" - }, - { - "name": "indicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6iFi0" - }, - { - "name": "scarcely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGfMoz" - }, - { - "name": "panel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a-b6Hc" - }, - { - "name": "outstanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TmFRbM" - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HFThRX" - }, - { - "name": "sew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVbLDN" - }, - { - "name": "oval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yONOb9" - }, - { - "name": "column", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hjFn5-" - }, - { - "name": "procedure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BhzFw_" - }, - { - "name": "sample", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uOiIS" - }, - { - "name": "integrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zd4p9O" - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "REHzoj" - }, - { - "name": "applicant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dZYH-r" - }, - { - "name": "tropical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L6CfJA" - }, - { - "name": "partner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wlU5Aw" - }, - { - "name": "plunge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uS9qLf" - }, - { - "name": "diagnose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7firVS" - }, - { - "name": "somewhat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaAqwE" - }, - { - "name": "earnest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcxERQ" - }, - { - "name": "spider", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iOrsB-" - }, - { - "name": "interview", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGm40H" - }, - { - "name": "essential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNJHWd" - }, - { - "name": "clarify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JwIBcJ" - }, - { - "name": "furnace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXq2UD" - }, - { - "name": "ditch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZZFpb" - }, - { - "name": "deck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T3cZcN" - }, - { - "name": "scare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MYO6pg" - }, - { - "name": "thunder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i4fxau" - }, - { - "name": "observe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tvX1Ty" - }, - { - "name": "humorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOeKto" - }, - { - "name": "furnish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jL0kUa" - }, - { - "name": "bet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9z4aph" - }, - { - "name": "contact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IF77R1" - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zZKOvJ" - }, - { - "name": "discharge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O7wHka" - }, - { - "name": "exclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbToQf" - }, - { - "name": "scary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9QWEP" - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7e4Cue" - }, - { - "name": "utmost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8wwJhV" - }, - { - "name": "image", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nmy1PC" - }, - { - "name": "consultancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qf10G-" - }, - { - "name": "ribbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KX6g5Y" - }, - { - "name": "garbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MRq9fX" - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XwoCwk" - }, - { - "name": "mainland", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGvQc6" - }, - { - "name": "homogeneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOa56E" - }, - { - "name": "anxiety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqWP_P" - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRohc4" - }, - { - "name": "adjust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OBI2EI" - }, - { - "name": "popularize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mF5Rox" - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BkTmWc" - }, - { - "name": "vigorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km5JUL" - }, - { - "name": "debt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u0MKfE" - }, - { - "name": "refrigerator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hteJcm" - }, - { - "name": "necessity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oos5TT" - }, - { - "name": "fog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wxgKjL" - }, - { - "name": "frame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qyCq3a" - }, - { - "name": "lucky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUmz95" - }, - { - "name": "origin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_Cq7c" - }, - { - "name": "industrialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D2mIkx" - }, - { - "name": "clash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6v5Izm" - }, - { - "name": "compel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hn1fl8" - }, - { - "name": "capable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ehr1us" - }, - { - "name": "depress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zNPaRQ" - }, - { - "name": "parade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uqg8SD" - }, - { - "name": "burden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxpYkw" - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKOJhE" - }, - { - "name": "lemon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PgWFXj" - }, - { - "name": "personality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZYiEf" - }, - { - "name": "plot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Axg4Nt" - }, - { - "name": "sanction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M8i4Qp" - }, - { - "name": "rate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYoEZ9" - }, - { - "name": "alert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ele-tr" - }, - { - "name": "await", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xbROux" - }, - { - "name": "sin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChMF4n" - }, - { - "name": "client", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5cLY3n" - }, - { - "name": "prosperity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgQL8q" - }, - { - "name": "divide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnzMGL" - }, - { - "name": "contrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AyECUO" - }, - { - "name": "lump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCFq4r" - }, - { - "name": "digital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nI4cx3" - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "buuBq0" - }, - { - "name": "historic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4YOoAX" - }, - { - "name": "oven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TaCwN1" - }, - { - "name": "bound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4YMIc" - }, - { - "name": "counter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5n6LR" - }, - { - "name": "rhythm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQG0OM" - }, - { - "name": "stroke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z_OfST" - }, - { - "name": "breed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6eaS6g" - }, - { - "name": "management", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2lVQrc" - }, - { - "name": "publish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KjiKs" - }, - { - "name": "realm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlwP3h" - }, - { - "name": "correspondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lL9Eh2" - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jxSYDH" - }, - { - "name": "renew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wt1TVw" - }, - { - "name": "bid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sv_KB3" - }, - { - "name": "prompt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2YOnW" - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTrKZx" - }, - { - "name": "comprehensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PwAGm2" - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_7uHK" - }, - { - "name": "withdraw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_26NqJ" - }, - { - "name": "assign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VNHr04" - }, - { - "name": "elaborate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQIq8" - }, - { - "name": "feather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNn_e6" - }, - { - "name": "corridor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wdayik" - }, - { - "name": "decade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXZAso" - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uFdVZ" - }, - { - "name": "select", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FsVtJL" - }, - { - "name": "fulfill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGt08O" - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X9Dhge" - }, - { - "name": "congress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wL6f_" - }, - { - "name": "advanced", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNYyyY" - }, - { - "name": "mechanical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TodES6" - }, - { - "name": "recommendation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9YXqo" - }, - { - "name": "welfare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JqOwj" - }, - { - "name": "flourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j9KIn3" - }, - { - "name": "output", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14XFN-" - }, - { - "name": "fatigue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "65asKW" - }, - { - "name": "striking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ZdRVU" - }, - { - "name": "vessel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRcNAQ" - }, - { - "name": "majority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Tsx59" - }, - { - "name": "drag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_rqROE" - }, - { - "name": "crown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rP7AGq" - }, - { - "name": "likely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WU7loH" - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOt0rJ" - }, - { - "name": "gymnasium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARiljk" - }, - { - "name": "issue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftWJZ9" - }, - { - "name": "vain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N8ISND" - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XxuxJ" - }, - { - "name": "index", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMj6pn" - }, - { - "name": "fry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fXRB8z" - }, - { - "name": "youngster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_ql-4" - }, - { - "name": "odd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udQbY5" - }, - { - "name": "lung", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1OUss9" - }, - { - "name": "conservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4CzqvV" - }, - { - "name": "distraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gJZYKA" - }, - { - "name": "supplement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3f1Fqh" - }, - { - "name": "contrast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MCQP1v" - }, - { - "name": "paragraph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f39EK3" - }, - { - "name": "judgement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KHerql" - }, - { - "name": "proportion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2yq0P0" - }, - { - "name": "widen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvbP3L" - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5oKFPz" - }, - { - "name": "occurrence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qhFyq" - }, - { - "name": "inflation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r8Fbs2" - }, - { - "name": "thinking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efCt_9" - }, - { - "name": "cycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yJyiP6" - }, - { - "name": "disposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fNgbSx" - }, - { - "name": "settlement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71y2l4" - }, - { - "name": "delegate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObNFvq" - }, - { - "name": "literature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ET_-4" - }, - { - "name": "sphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mbd5ZT" - }, - { - "name": "inquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4GXwg" - }, - { - "name": "prejudice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXL3y1" - }, - { - "name": "dissolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sOGg-k" - }, - { - "name": "digest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSWybW" - }, - { - "name": "angle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A48cEi" - }, - { - "name": "immigrant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DTFs9s" - }, - { - "name": "tradition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TVVdpn" - }, - { - "name": "ability", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0vKfb" - }, - { - "name": "urgent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvGEKm" - }, - { - "name": "belief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mOJfZ6" - }, - { - "name": "bundle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_m9l9_" - }, - { - "name": "suggestion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7KBUU" - }, - { - "name": "systematic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b38JA6" - }, - { - "name": "cupboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XhE35N" - }, - { - "name": "generally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "555HJC" - }, - { - "name": "bacon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Jq_7Q" - }, - { - "name": "likewise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAESMW" - }, - { - "name": "slender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dxNHX" - }, - { - "name": "troublesome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0y1U3" - }, - { - "name": "instruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xgGXZ" - }, - { - "name": "oral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ekT0-x" - }, - { - "name": "married", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJFLC5" - }, - { - "name": "transaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fttlkW" - }, - { - "name": "conscious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SlN8bu" - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8bH-Ls" - }, - { - "name": "auto", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUlGS2" - }, - { - "name": "sigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nfe5Xa" - }, - { - "name": "constant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zOs2V" - }, - { - "name": "pants", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-89hR" - }, - { - "name": "mislead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EXITz" - }, - { - "name": "split", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SmPZBI" - }, - { - "name": "orchestra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uwrQ1x" - }, - { - "name": "publication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6WrY6I" - }, - { - "name": "sufficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lGyqZW" - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-xNxta" - }, - { - "name": "antique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u367wE" - }, - { - "name": "sow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9TtJ8T" - }, - { - "name": "widespread", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MpYHhj" - }, - { - "name": "petroleum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKMKDZ" - }, - { - "name": "communication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNOXh2" - }, - { - "name": "directly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRA0OG" - }, - { - "name": "tolerance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-sRH8-" - }, - { - "name": "kneel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Id2Lk" - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nz0fa" - }, - { - "name": "fasten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztm_N2" - }, - { - "name": "contest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLbtog" - }, - { - "name": "author", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwtHHr" - }, - { - "name": "dirt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XN0WtY" - }, - { - "name": "astrophysics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6BB7U" - }, - { - "name": "greenhouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4F5NLv" - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENYZoD" - }, - { - "name": "plus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fprc2r" - }, - { - "name": "establish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPGkVo" - }, - { - "name": "expansion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tvtwfw" - }, - { - "name": "relevant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "apGhbR" - }, - { - "name": "entry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LR9Yfs" - }, - { - "name": "license", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Tex6y" - }, - { - "name": "synthetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3iDyD" - }, - { - "name": "headquarters", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mMZ9XK" - }, - { - "name": "expand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfLlsF" - }, - { - "name": "gaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OIwAXu" - }, - { - "name": "essay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eAg04C" - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kt2c5R" - }, - { - "name": "plug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S81uT_" - }, - { - "name": "bunch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l-wXyQ" - }, - { - "name": "thermometer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-Yq6Z" - }, - { - "name": "tense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nBwUud" - }, - { - "name": "postpone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7STXNg" - }, - { - "name": "bride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tclMmO" - }, - { - "name": "favourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dgb6T1" - }, - { - "name": "hammer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "autAtz" - }, - { - "name": "candy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FpISJY" - }, - { - "name": "seal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zd6xB1" - }, - { - "name": "mental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ja_CY7" - }, - { - "name": "decent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7x6p9" - }, - { - "name": "storage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oousku" - }, - { - "name": "investigate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEXkQg" - }, - { - "name": "racial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr9cYx" - }, - { - "name": "switch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_znlv" - }, - { - "name": "niece", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj62rf" - }, - { - "name": "considerable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q7iqaC" - }, - { - "name": "auxiliary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDX5Df" - }, - { - "name": "heal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyfG8c" - }, - { - "name": "reserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahBwZ9" - }, - { - "name": "somehow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INgtuw" - }, - { - "name": "dive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8OPpdK" - }, - { - "name": "brick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h7-uv1" - }, - { - "name": "sympathy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zmBtVs" - }, - { - "name": "heap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzSkrE" - }, - { - "name": "consumer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dFxs-O" - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-KavK" - }, - { - "name": "cripple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wOlXD_" - }, - { - "name": "highly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8c5DDe" - }, - { - "name": "brief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtSxgh" - }, - { - "name": "keyboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d-oqU8" - }, - { - "name": "initiative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FHISJR" - }, - { - "name": "recover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0b9zR1" - }, - { - "name": "determine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_8MJO" - }, - { - "name": "nature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhhuz3" - }, - { - "name": "social", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OloU4E" - }, - { - "name": "medication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5mvBYP" - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxU2ku" - }, - { - "name": "intelligent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1HOSrJ" - }, - { - "name": "whilst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KaH6EA" - }, - { - "name": "clerk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IffvVC" - }, - { - "name": "lobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LbAIRi" - }, - { - "name": "acknowledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn7v97" - }, - { - "name": "equip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gxfg2" - }, - { - "name": "radiation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_3H0Nr" - }, - { - "name": "Christian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WX0BYT" - }, - { - "name": "pulse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwniyK" - }, - { - "name": "luxury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJuXtD" - }, - { - "name": "spiritual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qqDtw" - }, - { - "name": "worthwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjnuMy" - }, - { - "name": "mould", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xAJrJW" - }, - { - "name": "increasingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxecnN" - }, - { - "name": "elbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qJPGrI" - }, - { - "name": "salad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z958rU" - }, - { - "name": "strategic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlgmyJ" - }, - { - "name": "vary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OczJ8g" - }, - { - "name": "readily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS9KPn" - }, - { - "name": "stoop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlLcM9" - }, - { - "name": "upper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Arg50s" - }, - { - "name": "rocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c4S1TR" - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qI-Ocs" - }, - { - "name": "county", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o_Xm85" - }, - { - "name": "respondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ugBdk" - }, - { - "name": "episode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hlWWvy" - }, - { - "name": "convenience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1s4ATH" - }, - { - "name": "determination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wGBufb" - }, - { - "name": "discipline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1j5ISW" - }, - { - "name": "behalf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryAu4Z" - }, - { - "name": "evidently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ZInEv" - }, - { - "name": "objective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fx_FUN" - }, - { - "name": "injure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqBafC" - }, - { - "name": "victimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M1jEaV" - }, - { - "name": "exert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqAjbF" - }, - { - "name": "province", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DGQ5Cj" - }, - { - "name": "scandal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pFaZnq" - }, - { - "name": "horrible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "79qYuX" - }, - { - "name": "estimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vf-7v0" - }, - { - "name": "strengthen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LyDUAg" - }, - { - "name": "drip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tyNC7d" - }, - { - "name": "injury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3sS00g" - }, - { - "name": "exhibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1IMxUL" - }, - { - "name": "brand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BZocTh" - }, - { - "name": "mushroom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mkZJc" - }, - { - "name": "alcohol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8d6Xoy" - }, - { - "name": "choke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFqEwI" - }, - { - "name": "proposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NNkQc7" - }, - { - "name": "inevitable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YyRjbj" - }, - { - "name": "deny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-fZtk" - }, - { - "name": "miserable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crVZxz" - }, - { - "name": "recreation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfDVqZ" - }, - { - "name": "subtract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENV6yl" - }, - { - "name": "allowance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XUYbnI" - }, - { - "name": "portable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZjCuyq" - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gzxgHs" - }, - { - "name": "glory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5UMuO" - }, - { - "name": "secondary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HSiLU2" - }, - { - "name": "mission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zaslRv" - }, - { - "name": "attorney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gph_4J" - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDjN2L" - }, - { - "name": "adopt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JPejuF" - }, - { - "name": "oppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBGt9" - }, - { - "name": "singular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TJEImm" - }, - { - "name": "device", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82e65a" - }, - { - "name": "mainframe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f5pJF1" - }, - { - "name": "motor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uUnH5y" - }, - { - "name": "minus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WempL-" - }, - { - "name": "conservative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YlasGt" - }, - { - "name": "access", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fsDK4n" - }, - { - "name": "conference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cqFL_t" - }, - { - "name": "activity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGROIa" - }, - { - "name": "primitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcoDls" - }, - { - "name": "advisable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvYX8b" - }, - { - "name": "dormitory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebdHBH" - }, - { - "name": "overcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XS9-K8" - }, - { - "name": "cooperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IRInU" - }, - { - "name": "cabin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "87bDU0" - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z9eH08" - }, - { - "name": "current", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QhB4pA" - }, - { - "name": "heel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNGSmB" - }, - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KP9uzb" - }, - { - "name": "disturb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xpENq3" - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUwtYV" - }, - { - "name": "persist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfYSXA" - }, - { - "name": "audio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPoPtd" - }, - { - "name": "civilian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "22PyWw" - }, - { - "name": "pump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-n_SJ" - }, - { - "name": "pierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sq37pi" - }, - { - "name": "teenager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EiAdwj" - }, - { - "name": "apart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xeEw09" - }, - { - "name": "calendar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g01aS" - }, - { - "name": "offensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s9aWYl" - }, - { - "name": "cartoon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3stBma" - }, - { - "name": "speculate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5imc2i" - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ki0ddi" - }, - { - "name": "amid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3b55Lx" - }, - { - "name": "beloved", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUg6Bd" - }, - { - "name": "single", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aEmZX2" - }, - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1fjut" - }, - { - "name": "cement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6rR-6J" - }, - { - "name": "subway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ctYP5r" - }, - { - "name": "gallon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cwa8h5" - }, - { - "name": "acquaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kji9bl" - }, - { - "name": "appoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSNvvV" - }, - { - "name": "elastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BtfkIH" - }, - { - "name": "assist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xa8WFA" - }, - { - "name": "vast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udOX1S" - }, - { - "name": "intervene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCaeq1" - }, - { - "name": "undergraduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRCsXM" - }, - { - "name": "symbol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WaUbu0" - }, - { - "name": "commercial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jqVsZo" - }, - { - "name": "joint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KliqB" - }, - { - "name": "reasonable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XG20Cr" - }, - { - "name": "available", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1SQ5DT" - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MwP-2" - }, - { - "name": "advocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AVqItf" - }, - { - "name": "frequency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "alR39P" - }, - { - "name": "horizontal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcEX0u" - }, - { - "name": "luggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Ftcz0" - }, - { - "name": "lick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKLkpk" - }, - { - "name": "missile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TiHSym" - }, - { - "name": "dynamic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39q-Jv" - }, - { - "name": "satisfactory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bw-on_" - }, - { - "name": "military", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pd5aQp" - }, - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCS3rI" - }, - { - "name": "generate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VfXQRH" - }, - { - "name": "unusual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BO4tUH" - }, - { - "name": "sector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_p0ull" - }, - { - "name": "passion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T5C8vv" - }, - { - "name": "extreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KzS2TI" - }, - { - "name": "coil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H5TRT" - }, - { - "name": "ensure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0X2WJP" - }, - { - "name": "coordinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQ6jX_" - }, - { - "name": "organism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iQSh9i" - }, - { - "name": "athlete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQk2xZ" - }, - { - "name": "epidemic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKyK0y" - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0K4X" - }, - { - "name": "upright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YUXvz" - }, - { - "name": "remarkable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SHj0oJ" - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeenxP" - }, - { - "name": "tube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LsiJVS" - }, - { - "name": "naval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4k4sH" - }, - { - "name": "failure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pBBTvH" - }, - { - "name": "accountancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXMek5" - }, - { - "name": "forge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XXIvL0" - }, - { - "name": "carpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WSxFB2" - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nsp706" - }, - { - "name": "hint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJ98-r" - }, - { - "name": "knot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nhChWN" - }, - { - "name": "demonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdjnmU" - }, - { - "name": "region", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UHhA3n" - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08-wmj" - }, - { - "name": "yearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60AZqh" - }, - { - "name": "deceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDcBKq" - }, - { - "name": "saucer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aOAwWN" - }, - { - "name": "hire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P3cBh0" - }, - { - "name": "kid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Fw-VG" - }, - { - "name": "donkey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bfHXu_" - }, - { - "name": "destination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kR27Gh" - }, - { - "name": "vertical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_i7hH9" - }, - { - "name": "learning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfHoN8" - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tgld2z" - }, - { - "name": "misconception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgqNIE" - }, - { - "name": "damp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i7CRjl" - }, - { - "name": "vivid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gx_Ji0" - }, - { - "name": "honey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uKfeEi" - }, - { - "name": "screw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_GakGW" - }, - { - "name": "gap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dD36R2" - }, - { - "name": "missing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3L_BOL" - }, - { - "name": "emphasize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kid8Xt" - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zsm0WY" - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ogew0s" - }, - { - "name": "socialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhC7Hu" - }, - { - "name": "gradual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzN0r-" - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLB38L" - }, - { - "name": "ore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tDFG81" - }, - { - "name": "slight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-cs9p" - }, - { - "name": "previous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-Btgz" - }, - { - "name": "transmit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FewDeh" - }, - { - "name": "socialism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kp08Yi" - }, - { - "name": "consumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0eeixs" - }, - { - "name": "argue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YeT4w" - }, - { - "name": "technology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yj-yW6" - }, - { - "name": "weaken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vD5jFb" - }, - { - "name": "voltage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WUpCJB" - }, - { - "name": "damn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUqHbl" - }, - { - "name": "superior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riIP6Q" - }, - { - "name": "location", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3rPa8" - }, - { - "name": "compensation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT2NNJ" - }, - { - "name": "bankrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Rp1HG" - }, - { - "name": "punctual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYp-wd" - }, - { - "name": "advertise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kGYV8" - }, - { - "name": "compromise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFkPD_" - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2--vve" - }, - { - "name": "software", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIdkTZ" - }, - { - "name": "seminar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS83lL" - }, - { - "name": "comparative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7U9at" - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "61ft3u" - }, - { - "name": "fruitful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mPVmQ" - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1PdC5" - }, - { - "name": "dragon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EoBpiI" - }, - { - "name": "hesitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcC5yD" - }, - { - "name": "beyond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cqKhX" - }, - { - "name": "hell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YN5Gzg" - }, - { - "name": "feedback", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0fTSy" - }, - { - "name": "hazard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SYg7dU" - }, - { - "name": "justify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6klxrE" - }, - { - "name": "voluntary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kjf-z1" - }, - { - "name": "connection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "suRBJY" - }, - { - "name": "proof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0W-9QJ" - }, - { - "name": "timber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RTz5UR" - }, - { - "name": "roar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ix3LW" - }, - { - "name": "presence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DE7CQT" - }, - { - "name": "phase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jIb4O9" - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izGJFG" - }, - { - "name": "efficiency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RV8wrd" - }, - { - "name": "overhead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWaZIM" - }, - { - "name": "contract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k19sTo" - }, - { - "name": "conclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3vr50e" - }, - { - "name": "comprehension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iYlbwQ" - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iPDcrU" - }, - { - "name": "leather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z-IJXL" - }, - { - "name": "comb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lAD3Hg" - }, - { - "name": "innovative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qAfpwT" - }, - { - "name": "insight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL5AyY" - }, - { - "name": "fabric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0oCnTl" - }, - { - "name": "revolutionary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDuygX" - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXHlUK" - }, - { - "name": "exact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWfXh_" - }, - { - "name": "indoor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myj0Cb" - }, - { - "name": "force", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0Y127" - }, - { - "name": "centigrade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j2jk5w" - }, - { - "name": "sexual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4b-rHw" - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lnUXA" - }, - { - "name": "freight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YIdS9D" - }, - { - "name": "range", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h9CIcl" - }, - { - "name": "distribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NW5P1P" - }, - { - "name": "tyre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n9O6bo" - }, - { - "name": "derive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IpHbRi" - }, - { - "name": "capacity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiDbaP" - }, - { - "name": "cope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2375N-" - }, - { - "name": "overseas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n4cVoh" - }, - { - "name": "impress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fA-Ejr" - }, - { - "name": "confess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0HeCD" - }, - { - "name": "leak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvkeJJ" - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "si-Pd-" - }, - { - "name": "feature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIblvL" - }, - { - "name": "lean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-s7YuV" - }, - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vk2iZS" - }, - { - "name": "recall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LFSA3T" - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PxP4xX" - }, - { - "name": "waterproof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyT8eN" - }, - { - "name": "barber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "malSI1" - }, - { - "name": "precise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDPErR" - }, - { - "name": "sensible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "doi_pm" - }, - { - "name": "objection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSLBTc" - }, - { - "name": "dispute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yeqYSc" - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EX8QGW" - }, - { - "name": "observation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBqq1A" - }, - { - "name": "tremble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5666az" - }, - { - "name": "suspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-OdWex" - }, - { - "name": "apologize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C6M4lI" - }, - { - "name": "inhabitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1At73J" - }, - { - "name": "fraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-5LDd" - }, - { - "name": "filter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YxkPl" - }, - { - "name": "sunlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5d0oU" - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKgBLQ" - }, - { - "name": "emotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SU72Du" - }, - { - "name": "massive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4SE0y" - }, - { - "name": "cease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NgpNmM" - }, - { - "name": "assess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dwLW29" - }, - { - "name": "asset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nXq_5m" - }, - { - "name": "owe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRSpNB" - }, - { - "name": "scarce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0jNat" - }, - { - "name": "minimum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqGa2Y" - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OCvvly" - }, - { - "name": "mathematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HEER5B" - }, - { - "name": "apology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xKy_u_" - }, - { - "name": "magic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fmSF-G" - }, - { - "name": "argument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JsRQxo" - }, - { - "name": "reveal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hZj9Ly" - }, - { - "name": "data", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S9I8lA" - }, - { - "name": "theoretical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IX9v65" - }, - { - "name": "adequate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikgTO9" - }, - { - "name": "utter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8I0AB3" - }, - { - "name": "onion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1exHP" - }, - { - "name": "vibrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hbp-4q" - }, - { - "name": "drum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHyePL" - }, - { - "name": "sausage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3AeuP8" - }, - { - "name": "hopeful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2Q5rT" - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUEqxR" - }, - { - "name": "condense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U4dmbw" - }, - { - "name": "barrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VFVzww" - }, - { - "name": "realistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s_ahWd" - }, - { - "name": "justice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coW09d" - }, - { - "name": "create", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PWR2MF" - }, - { - "name": "criminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVt9dR" - }, - { - "name": "tag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaBxqw" - }, - { - "name": "notebook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJHX1W" - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHsSHj" - }, - { - "name": "indirect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZNAsJ" - }, - { - "name": "individual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KgyxZB" - }, - { - "name": "resource", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oyf9hq" - }, - { - "name": "ugly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJn4Vi" - }, - { - "name": "nuisance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oHH92x" - }, - { - "name": "tax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNz0El" - }, - { - "name": "earthquake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FZDPVF" - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIR_3H" - }, - { - "name": "nightmare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rSpiKW" - }, - { - "name": "cord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqppkL" - }, - { - "name": "ending", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-ZsVCq" - }, - { - "name": "core", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rshEBM" - }, - { - "name": "council", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZysJ1T" - }, - { - "name": "enforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Z7lu3" - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wbEgg9" - }, - { - "name": "departure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co5sB6" - }, - { - "name": "dash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6vH-m7" - }, - { - "name": "concrete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oTnU-U" - }, - { - "name": "penalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4QwkN" - }, - { - "name": "sociology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILingN" - }, - { - "name": "link", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AsKjkd" - }, - { - "name": "flee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2viDL6" - }, - { - "name": "distinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qZz3kO" - }, - { - "name": "scale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wqssfH" - }, - { - "name": "recovery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kITotX" - }, - { - "name": "hedge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N9qiug" - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQf_IZ" - }, - { - "name": "weep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3zeTH" - }, - { - "name": "aware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGFX5Q" - }, - { - "name": "drama", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LV-QNW" - }, - { - "name": "security", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jF3qYv" - }, - { - "name": "limp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqLk7G" - }, - { - "name": "award", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIknp5" - }, - { - "name": "organize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "obSJMY" - }, - { - "name": "marriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCM38-" - }, - { - "name": "stove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7WQjC" - }, - { - "name": "alarm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9P5mQb" - }, - { - "name": "weed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8IGyq" - }, - { - "name": "continual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znZOF2" - }, - { - "name": "herd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9m2Uo" - }, - { - "name": "limb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hrUlcy" - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MU1eSm" - }, - { - "name": "motion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUiRsM" - }, - { - "name": "limited", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k63feg" - }, - { - "name": "idle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ACiFQ3" - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U-kfAq" - }, - { - "name": "arbitrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rj829H" - }, - { - "name": "fearful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOKJW7" - }, - { - "name": "accent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YGGtXG" - }, - { - "name": "passive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rHLy1H" - }, - { - "name": "fertilizer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VG_7I7" - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XlBReN" - }, - { - "name": "carrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAQEIO" - }, - { - "name": "fragment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CUrLuN" - }, - { - "name": "corresponding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "na_fA_" - }, - { - "name": "response", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sHthC" - }, - { - "name": "treaty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eUjkAh" - }, - { - "name": "responsive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUnhme" - }, - { - "name": "ounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "peFTgc" - }, - { - "name": "challenge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g989m" - }, - { - "name": "emit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qv4NQp" - }, - { - "name": "category", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikfcNV" - }, - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N4oy8R" - }, - { - "name": "intend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IEElpS" - }, - { - "name": "snap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T7r4zy" - } - ], - "chapterWordNumber": 30, - "chapterWords": [ - [ - { - "name": "explosive", - "trans": [ - "adj.爆炸的,易爆炸的,突增的,暴躁的", - "n.爆炸物,炸药,语言学 爆破音" - ], - "usphone": "ɪkˈsploʊsɪv", - "ukphone": "ɪkˈspləʊsɪv", - "id": "YplgI9", - "checked": false - }, - { - "name": "govern", - "trans": [ - "vt.统治,管理,治理,支配(词或短语的形式或用法)", - "vi.控制,支配,操纵" - ], - "usphone": "ˈgʌvərn", - "ukphone": "ˈgʌvn", - "id": "WKgenr", - "checked": false - }, - { - "name": "analyse", - "trans": [ - "vt.分析,分解,细察na.“analyze”的变体" - ], - "usphone": "ˈænəˌlaɪz", - "ukphone": "ˈænəlaɪz", - "id": "XJKM6n", - "checked": false - }, - { - "name": "discourage", - "trans": [ - "vt.使气馁,使沮丧,阻碍,劝阻" - ], - "usphone": "dɪsˈkɜ:rɪdʒ", - "ukphone": "dɪsˈkʌrɪdʒ", - "id": "bZ8CsM", - "checked": false - }, - { - "name": "resemble", - "trans": [ - "vt.与…相像,类似于" - ], - "usphone": "rɪˈzɛmbəl", - "ukphone": "rɪˈzembl", - "id": "LUkzNc", - "checked": false - }, - { - "name": "remote", - "trans": [ - "adj.(时间上)遥远的,远离的,远程的,微小的", - "n.远程操作,遥控器", - "vt.使…向远方延伸,把…延展到远处" - ], - "usphone": "rɪˈmoʊt", - "ukphone": "rɪˈməʊt", - "id": "VSmPzX", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n.薪水,薪金,薪俸", - "vt.给…加薪,给…薪水,发…薪水,付…薪水" - ], - "usphone": "ˈsælri", - "ukphone": "ˈsæləri", - "id": "kBXagB", - "checked": false - }, - { - "name": "pollution", - "trans": [ - "n.污染(作用),腐败,堕落,沾污" - ], - "usphone": "pəˈluʃən", - "ukphone": "pəˈlu:ʃn", - "id": "I2blza", - "checked": false - }, - { - "name": "pretend", - "trans": [ - "vt.假装,伪装,假称,装扮", - "vi.扮演,自称,假装,矫作", - "adj.仿制的" - ], - "usphone": "prɪˈtɛnd", - "ukphone": "prɪˈtend", - "id": "SqZxqL", - "checked": false - }, - { - "name": "kettle", - "trans": [ - "n.(烧水用的)壶,小汽锅" - ], - "usphone": "ˈkɛtl", - "ukphone": "ˈketl", - "id": "BbeeNh", - "checked": false - }, - { - "name": "wreck", - "trans": [ - "vt.破坏,毁坏,拆除,使遇难", - "n.毁灭,失事,遇难船的残骸,(身体或精神上)受到严重损伤的人,状况非常糟糕的车辆(或建筑物等)", - "vi.使(船舶)失事,使遇难,使下沉" - ], - "usphone": "rɛk", - "ukphone": "rek", - "id": "MDPjhy", - "checked": false - }, - { - "name": "drunk", - "trans": [ - "adj.醉的,陶醉的,沉醉,飘飘然", - "n.醉汉,酒鬼,酗酒者", - "v.喝(酒)( drink的过去分词),饮,喝酒,(尤指)酗酒" - ], - "usphone": "drʌŋk", - "ukphone": "drʌŋk", - "id": "9HJ2Yz", - "checked": false - }, - { - "name": "calculate", - "trans": [ - "vt.& vi.计算,估计,打算,计划,旨在", - "vt.预测,推测" - ], - "usphone": "ˈkælkjəˌlet", - "ukphone": "ˈkælkjuleɪt", - "id": "xHUfio", - "checked": false - }, - { - "name": "persistent", - "trans": [ - "adj.持续的,坚持不懈的,持久的,坚持不渝" - ], - "usphone": "pərˈsɪstənt", - "ukphone": "pəˈsɪstənt", - "id": "LVpLkf", - "checked": false - }, - { - "name": "sake", - "trans": [ - "n.缘故,理由,日本米酒,目的" - ], - "usphone": "sek", - "ukphone": "seɪk", - "id": "qGW8-K", - "checked": false - }, - { - "name": "conceal", - "trans": [ - "vt.隐藏,隐瞒,遮住" - ], - "usphone": "kənˈsil", - "ukphone": "kənˈsi:l", - "id": "IFG1vx", - "checked": false - }, - { - "name": "audience", - "trans": [ - "n.观众,听众,读者,读者,接见,拥护者,爱好者" - ], - "usphone": "ˈɔdiəns", - "ukphone": "ˈɔ:diəns", - "id": "lrxee0", - "checked": false - }, - { - "name": "meanwhile", - "trans": [ - "adv.同时,其间", - "n.其时,其间" - ], - "usphone": "-ˌwaɪl", - "ukphone": "ˈmi:nwaɪl", - "id": "wG3NOe", - "checked": false - }, - { - "name": "possess", - "trans": [ - "vt.拥有,掌握,懂得,主宰,缠住,迷住" - ], - "usphone": "pəˈzɛs", - "ukphone": "pəˈzes", - "id": "GMu5Hx", - "checked": false - }, - { - "name": "competent", - "trans": [ - "adj.有能力的,能胜任的,能干的,称职的,足够的,充足的,有决定权的" - ], - "usphone": "ˈkɑ:mpɪtənt", - "ukphone": "ˈkɒmpɪtənt", - "id": "LqLca4", - "checked": false - }, - { - "name": "investment", - "trans": [ - "n.投资,投资额,封锁,(时间、精力的)投入,值得买的东西" - ], - "usphone": "ɪnˈvɛstmənt", - "ukphone": "ɪnˈvestmənt", - "id": "3Crbzh", - "checked": false - }, - { - "name": "neutral", - "trans": [ - "adj.中立的,(化学中)中性的,暗淡的,不带电的", - "n.(汽车或其他机器的)空挡位置,中立人士,中立国,素净色" - ], - "usphone": "ˈnu:trəl", - "ukphone": "ˈnju:trəl", - "id": "07xu1P", - "checked": false - }, - { - "name": "scratch", - "trans": [ - "vt.擦,刮,擦痛,擦伤,在…处搔痒,抓破", - "vi.发出刮擦声,擦红,擦伤,搔痒,抓,扒", - "n.擦,刮,刮擦声,搔痕,乱写乱画", - "adj.打草稿用的,随便写用的,碰巧的,侥幸的,东拼西凑的,平等比赛的" - ], - "usphone": "skrætʃ", - "ukphone": "skrætʃ", - "id": "JvKnv-", - "checked": false - }, - { - "name": "optional", - "trans": [ - "adj.可选择的,随意的,任意的,非强制的,选修科目" - ], - "usphone": "ˈɑ:pʃənl", - "ukphone": "ˈɒpʃənl", - "id": "FFUPPV", - "checked": false - }, - { - "name": "require", - "trans": [ - "vt.要求,需要,想要,命令", - "vi.要求,规定" - ], - "usphone": "rɪˈkwaɪr", - "ukphone": "rɪˈkwaɪə(r)", - "id": "HEQOsg", - "checked": false - }, - { - "name": "circular", - "trans": [ - "adj.圆形的,环行的,迂回的,绕行的,供传阅的,流通的", - "n.通知,通告,印制的广告,传单" - ], - "usphone": "ˈsɜ:rkjələ(r)", - "ukphone": "ˈsɜ:kjələ(r)", - "id": "7fm36U", - "checked": false - }, - { - "name": "analysis", - "trans": [ - "n.分析,分解,梗概,要略,数解析,验定" - ], - "usphone": "əˈnælɪsɪs", - "ukphone": "əˈnæləsɪs", - "id": "mJlQgS", - "checked": false - }, - { - "name": "click", - "trans": [ - "n.喀哒声,爪,掣子,计(鼠标)点击,语言学吸气音", - "vt.使发出喀哒声", - "vi.发出喀哒声,极成功,合得来,一见如,计鼠击" - ], - "usphone": "klɪk", - "ukphone": "klɪk", - "id": "kfNxuM", - "checked": false - } - ], - [ - { - "name": "fashionable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "00c98I" - }, - { - "name": "devise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8D9O4u" - }, - { - "name": "apparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qNSvg" - }, - { - "name": "journalist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8evA7" - }, - { - "name": "exposure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k65n2B" - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5lHHi" - }, - { - "name": "protective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuJ0GM" - }, - { - "name": "sideways", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GrnvFU" - }, - { - "name": "multicultural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coLp3a" - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F36H_1" - }, - { - "name": "humble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q2cMw6" - }, - { - "name": "chapter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NwNXeP" - }, - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xkFFx" - }, - { - "name": "independent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWX3TS" - }, - { - "name": "carriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LmgPWb" - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nRzIoD" - }, - { - "name": "infinite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GvehsM" - }, - { - "name": "concede", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqRiR5" - }, - { - "name": "elect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dUzFh" - }, - { - "name": "weekly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c_vw1V" - }, - { - "name": "result", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "94BY5I" - }, - { - "name": "golf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUpPNk" - }, - { - "name": "selfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXUQmi" - }, - { - "name": "sexism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjRcHY" - }, - { - "name": "commission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdUyC8" - }, - { - "name": "headline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7DIH6" - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tKsfGK" - }, - { - "name": "rational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMInT3" - }, - { - "name": "policy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-Tgm-" - }, - { - "name": "editorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RalDwT" - } - ], - [ - { - "name": "resume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QC1iCc" - }, - { - "name": "rebuild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8vOXc" - }, - { - "name": "committee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fu3qy9" - }, - { - "name": "namely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HRNu3k" - }, - { - "name": "artistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zgngr2" - }, - { - "name": "union", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DY0Fxm" - }, - { - "name": "plentiful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IvMbSj" - }, - { - "name": "halt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-aCF5t" - }, - { - "name": "component", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zFB-IZ" - }, - { - "name": "consultant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o65Kl5" - }, - { - "name": "sunset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3LKisP" - }, - { - "name": "obvious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JizB7_" - }, - { - "name": "illustration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INxD6N" - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_Ea1L" - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WGd3n4" - }, - { - "name": "surgery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmku_h" - }, - { - "name": "liberal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EHIYoO" - }, - { - "name": "violent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Aw9imZ" - }, - { - "name": "harmony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kiSgzO" - }, - { - "name": "resolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pCEin" - }, - { - "name": "chill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ti_E37" - }, - { - "name": "confront", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZffzRp" - }, - { - "name": "dominate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "On72E4" - }, - { - "name": "imitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjC4d1" - }, - { - "name": "faithful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gH_SBp" - }, - { - "name": "reproduce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Lp5Yt" - }, - { - "name": "institution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7afUKt" - }, - { - "name": "pad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j4Uv2Y" - }, - { - "name": "provocation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqJ2QW" - }, - { - "name": "ambition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJvrdI" - } - ], - [ - { - "name": "scholarship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tu5dyz" - }, - { - "name": "exceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pjl9X6" - }, - { - "name": "besides", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NT88gc" - }, - { - "name": "preposition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfTg8Z" - }, - { - "name": "enlarge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-5wIyi" - }, - { - "name": "implement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71nb92" - }, - { - "name": "export", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djif4N" - }, - { - "name": "Christ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5pK4_" - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSuWIO" - }, - { - "name": "pat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezl6ou" - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMPKgt" - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JT8_kI" - }, - { - "name": "visibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aTP4tC" - }, - { - "name": "invitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OXuOlS" - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ah1X0" - }, - { - "name": "enormous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SVBveN" - }, - { - "name": "moisture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_AHf" - }, - { - "name": "toast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJ1Y11" - }, - { - "name": "frustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DdBbcs" - }, - { - "name": "external", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7a3tRl" - }, - { - "name": "aside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4L9zxK" - }, - { - "name": "circumstance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bCnV7C" - }, - { - "name": "revise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sf_DOD" - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ot3BWG" - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvbhym" - }, - { - "name": "harm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgD6po" - }, - { - "name": "semiconductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTLLIp" - }, - { - "name": "rope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rya_Vj" - }, - { - "name": "provided", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_jUkBO" - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Yh2iu" - } - ], - [ - { - "name": "gasoline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcFssh" - }, - { - "name": "indispensable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o8CSpX" - }, - { - "name": "medium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64E1Mk" - }, - { - "name": "lens", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6aHCS0" - }, - { - "name": "wisdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7aMwY5" - }, - { - "name": "fatal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6N4NkH" - }, - { - "name": "nowhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ws9YZI" - }, - { - "name": "motive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RYkx14" - }, - { - "name": "romantic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NXI80a" - }, - { - "name": "motivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRmlMS" - }, - { - "name": "spoil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYcTMS" - }, - { - "name": "airline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AnFRgG" - }, - { - "name": "multiply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3I1KSJ" - }, - { - "name": "ridge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8TbLx3" - }, - { - "name": "pilot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G1BKtx" - }, - { - "name": "umbrella", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzsC7F" - }, - { - "name": "approval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7v5yM" - }, - { - "name": "mobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0-ZZtV" - }, - { - "name": "perform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6AqES" - }, - { - "name": "multiple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2OzwDU" - }, - { - "name": "peak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8TZ4a" - }, - { - "name": "evolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHyQsR" - }, - { - "name": "portrait", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9zGgX" - }, - { - "name": "halfway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bb12vs" - }, - { - "name": "expose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRFsge" - }, - { - "name": "concentrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUIYlN" - }, - { - "name": "magnet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KI7OC1" - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qh9YGD" - }, - { - "name": "weld", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XTflrL" - }, - { - "name": "up-to-date", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pKgvh8" - } - ], - [ - { - "name": "complaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEELnv" - }, - { - "name": "translation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a5F-jO" - }, - { - "name": "cancer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vueIG" - }, - { - "name": "personnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXMGng" - }, - { - "name": "hopeless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TFTsxR" - }, - { - "name": "outlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sSGA6" - }, - { - "name": "fountain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NSCjjb" - }, - { - "name": "offense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bxuGzE" - }, - { - "name": "breadth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJeMGX" - }, - { - "name": "catalog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJeoVp" - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2muX5" - }, - { - "name": "focus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GwwEa" - }, - { - "name": "invisible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kFmjRt" - }, - { - "name": "entire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LCiPtl" - }, - { - "name": "pea", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qECm7q" - }, - { - "name": "pill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yvRbQ" - }, - { - "name": "wrist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IC7fC7" - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I3wSCR" - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5r8YV1" - }, - { - "name": "flour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PKfeZ" - }, - { - "name": "implication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sh3P-t" - }, - { - "name": "camel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0vvtD" - }, - { - "name": "fierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bX23Xm" - }, - { - "name": "bump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9UX-py" - }, - { - "name": "reservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFpDEX" - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_itNk9" - }, - { - "name": "proceed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GWRfRi" - }, - { - "name": "considering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQZIA9" - }, - { - "name": "corporation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vn37YF" - }, - { - "name": "loyalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQeOQ" - } - ], - [ - { - "name": "bulb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VM63RV" - }, - { - "name": "dismiss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Znf-Tp" - }, - { - "name": "propose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mAP8W2" - }, - { - "name": "intelligence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2984Ah" - }, - { - "name": "reform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZJ623" - }, - { - "name": "draught", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OaeBKW" - }, - { - "name": "daylight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn_QhP" - }, - { - "name": "install", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QEF38o" - }, - { - "name": "integration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mLxe0" - }, - { - "name": "indication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KbXLrJ" - }, - { - "name": "bulk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kolegg" - }, - { - "name": "coach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvrfTX" - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jyqY5e" - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sne_jD" - }, - { - "name": "gum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cAKfxA" - }, - { - "name": "circuit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h6RnSG" - }, - { - "name": "pine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZ8fX8" - }, - { - "name": "magnificent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0zRNxy" - }, - { - "name": "guy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb775D" - }, - { - "name": "respectively", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkoOYg" - }, - { - "name": "protection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bLafft" - }, - { - "name": "pint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWeqSf" - }, - { - "name": "restrict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EmOptv" - }, - { - "name": "instant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AP5A4u" - }, - { - "name": "conjunction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieNPnp" - }, - { - "name": "peer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HndoX" - }, - { - "name": "orderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7pjEWn" - }, - { - "name": "costly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cpHwGe" - }, - { - "name": "roast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L7C-Po" - }, - { - "name": "violence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hw_nU9" - } - ], - [ - { - "name": "succession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHjfZn" - }, - { - "name": "accordingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Txzr7" - }, - { - "name": "consequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VSb3D" - }, - { - "name": "product", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9VQA86" - }, - { - "name": "particularly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wFz7GT" - }, - { - "name": "dominant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-Z04y" - }, - { - "name": "heading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aS6AYW" - }, - { - "name": "lover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IrKCqb" - }, - { - "name": "vinegar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DQXnV1" - }, - { - "name": "intellectual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtBjfa" - }, - { - "name": "cheat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p4uwmH" - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hRjvB5" - }, - { - "name": "undoubtedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WC3hyx" - }, - { - "name": "infect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5UDugz" - }, - { - "name": "tide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W71Rog" - }, - { - "name": "prohibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYyYGR" - }, - { - "name": "bacteria", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dXSUfK" - }, - { - "name": "minor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PyO8bI" - }, - { - "name": "arrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QSHIjH" - }, - { - "name": "cop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7dTNZr" - }, - { - "name": "fuel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVVHV9" - }, - { - "name": "hostile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfPI5i" - }, - { - "name": "aeroplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JboXZ" - }, - { - "name": "manner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sPtmr8" - }, - { - "name": "employee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73s6sI" - }, - { - "name": "associate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxDiuf" - }, - { - "name": "pray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B84s3j" - }, - { - "name": "lad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NItCP_" - }, - { - "name": "crawl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ehXerE" - }, - { - "name": "identical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hzp8ey" - } - ], - [ - { - "name": "lag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RGrHBr" - }, - { - "name": "towel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nX8Eix" - }, - { - "name": "charity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sORBly" - }, - { - "name": "academic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lqIv9z" - }, - { - "name": "function", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dhBMNX" - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F-3vpk" - }, - { - "name": "pit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X-1Lmk" - }, - { - "name": "lap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0e4zu" - }, - { - "name": "mineral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KrgV4" - }, - { - "name": "stock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jk2ZKk" - }, - { - "name": "representative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OuMkPt" - }, - { - "name": "suspend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6_4Jss" - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jkmp1Y" - }, - { - "name": "well-known", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aiFzJF" - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wXvjEx" - }, - { - "name": "terror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKA6po" - }, - { - "name": "comparison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pPSUI" - }, - { - "name": "surge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZTaym" - }, - { - "name": "lest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VVY_i" - }, - { - "name": "heroic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LN-qhy" - }, - { - "name": "sway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_otQ8v" - }, - { - "name": "basis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zqJySr" - }, - { - "name": "tutor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NsqYxe" - }, - { - "name": "senator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvA9m" - }, - { - "name": "adventure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyOisJ" - }, - { - "name": "successive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nK-nBX" - }, - { - "name": "condition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Az4UUW" - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VQfNR" - }, - { - "name": "ceremony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wRUrM" - }, - { - "name": "obligation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hJvvD" - } - ], - [ - { - "name": "improve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VtBF7n" - }, - { - "name": "gym", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aFvW9s" - }, - { - "name": "rarely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGfnxW" - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U6Fesn" - }, - { - "name": "governor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zyHQU" - }, - { - "name": "twist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CG0Uxs" - }, - { - "name": "locate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGQkLJ" - }, - { - "name": "unite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dp6Rru" - }, - { - "name": "lavatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pnvun8" - }, - { - "name": "exterior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4_Zly" - }, - { - "name": "technique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ns_IVJ" - }, - { - "name": "combat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZbX-W" - }, - { - "name": "troop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NEhCaY" - }, - { - "name": "scenery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txgkkf" - }, - { - "name": "unity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reclAG" - }, - { - "name": "effective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LgUpme" - }, - { - "name": "pursue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7MF0q" - }, - { - "name": "similarly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c75Xyv" - }, - { - "name": "convey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLbqSh" - }, - { - "name": "muscle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JQJ4n" - }, - { - "name": "design", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H1pFvY" - }, - { - "name": "extra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u9F3-h" - }, - { - "name": "generous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0s1QZE" - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVG80I" - }, - { - "name": "possibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fGpF7M" - }, - { - "name": "lane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFX832" - }, - { - "name": "garlic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVU7CE" - }, - { - "name": "chief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O2jqtZ" - }, - { - "name": "accord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGgyWF" - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q5YHPz" - } - ], - [ - { - "name": "automatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuABX4" - }, - { - "name": "doubtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOWzeD" - }, - { - "name": "despite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "noVRY7" - }, - { - "name": "opening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhG9co" - }, - { - "name": "industrial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1inkQh" - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qg2LwF" - }, - { - "name": "conduct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALsE92" - }, - { - "name": "stable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MyOVZp" - }, - { - "name": "lamb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czq_Zl" - }, - { - "name": "pillow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JeGHES" - }, - { - "name": "harness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dkYUFv" - }, - { - "name": "fantastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSBA8m" - }, - { - "name": "sketch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGAt8m" - }, - { - "name": "tidy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NexyUq" - }, - { - "name": "respond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xz6RZR" - }, - { - "name": "incident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q71rNZ" - }, - { - "name": "maintenance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ai2je0" - }, - { - "name": "marry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brdLdm" - }, - { - "name": "decay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PTzXBG" - }, - { - "name": "absorb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7ss7XC" - }, - { - "name": "supply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cvhs4X" - }, - { - "name": "concern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0aK_3m" - }, - { - "name": "circulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qirj1v" - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5uYR71" - }, - { - "name": "liable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uDXSwM" - }, - { - "name": "cargo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oin0bz" - }, - { - "name": "confidential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOYUrZ" - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBgi0G" - }, - { - "name": "element", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "InI2Xw" - }, - { - "name": "chaos", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2YMODo" - } - ], - [ - { - "name": "mankind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ba4m-5" - }, - { - "name": "abundant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g4N0wy" - }, - { - "name": "pace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eGOQZ6" - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zs4kL5" - }, - { - "name": "probable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyTxGm" - }, - { - "name": "forecast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tjLoTY" - }, - { - "name": "uncover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9F9Mg" - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mRbXM8" - }, - { - "name": "pack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hXnE8_" - }, - { - "name": "restraint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p7o3OQ" - }, - { - "name": "input", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2HmVly" - }, - { - "name": "cue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NZSOTI" - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MIS_Sw" - }, - { - "name": "reality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8qUSTc" - }, - { - "name": "stereotype", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aISBit" - }, - { - "name": "enroll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QuX3zd" - }, - { - "name": "offend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7rbsWx" - }, - { - "name": "molecule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYul8J" - }, - { - "name": "resign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8l_rD1" - }, - { - "name": "bathe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBgqG6" - }, - { - "name": "workman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCx9B4" - }, - { - "name": "sophisticated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rvhxMO" - }, - { - "name": "sunrise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s0R3z7" - }, - { - "name": "entertainment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfMunl" - }, - { - "name": "document", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCb-5d" - }, - { - "name": "starve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YQY5CB" - }, - { - "name": "battery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-S_mtE" - }, - { - "name": "chase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYvVXD" - }, - { - "name": "accident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h0MjRb" - }, - { - "name": "marine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N6omIx" - } - ], - [ - { - "name": "clay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bcSclb" - }, - { - "name": "anyway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_RUeE" - }, - { - "name": "promote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TpMQc6" - }, - { - "name": "routine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "df9-rx" - }, - { - "name": "attack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "34UaXX" - }, - { - "name": "humour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lWNAoj" - }, - { - "name": "divorce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gEj8SV" - }, - { - "name": "currency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UijDye" - }, - { - "name": "canal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QY5jR_" - }, - { - "name": "attach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZkqmj" - }, - { - "name": "distribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-YW_E" - }, - { - "name": "ankle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aChngH" - }, - { - "name": "convict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXisSf" - }, - { - "name": "legislation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBs82k" - }, - { - "name": "clause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izhik3" - }, - { - "name": "quiz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gFyfsL" - }, - { - "name": "participate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ghdimg" - }, - { - "name": "ingredient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRUBPx" - }, - { - "name": "surplus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RJmav" - }, - { - "name": "correspondence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQdiLQ" - }, - { - "name": "refresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JFiweH" - }, - { - "name": "librarian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AQIHCf" - }, - { - "name": "intimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "78Rr0v" - }, - { - "name": "reporter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yRv4qu" - }, - { - "name": "declaration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6KVUP" - }, - { - "name": "disclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L4erJo" - }, - { - "name": "religion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DtfrLU" - }, - { - "name": "diagram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ClZqrL" - }, - { - "name": "claw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjJFZY" - }, - { - "name": "torture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDA3GH" - } - ], - [ - { - "name": "prayer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLlvdQ" - }, - { - "name": "tragedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib6R3K" - }, - { - "name": "charm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWYaO_" - }, - { - "name": "clap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8cfWIK" - }, - { - "name": "purple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jJhxke" - }, - { - "name": "quit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "skqZO7" - }, - { - "name": "economical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0dJ1t" - }, - { - "name": "prosperous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v9j_Sc" - }, - { - "name": "polish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l3uOl" - }, - { - "name": "cabinet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ds4yex" - }, - { - "name": "chart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OZNiF6" - }, - { - "name": "optical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhyXhD" - }, - { - "name": "fashion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lTmTRs" - }, - { - "name": "insurance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AB94xa" - }, - { - "name": "preface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIVhfy" - }, - { - "name": "principle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKFvB_" - }, - { - "name": "lid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZQihJ0" - }, - { - "name": "tedious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUCs3k" - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mfXMa" - }, - { - "name": "secure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4N9nd" - }, - { - "name": "domestic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJ4JPd" - }, - { - "name": "deception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6wewqw" - }, - { - "name": "basically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D_JpXq" - }, - { - "name": "donation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wk8jFn" - }, - { - "name": "avenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUfss9" - }, - { - "name": "immense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHkWoq" - }, - { - "name": "budget", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1c9fYS" - }, - { - "name": "given", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeYosb" - }, - { - "name": "hay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK7ngo" - }, - { - "name": "chest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9ylyYY" - } - ], - [ - { - "name": "tension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kicqrf" - }, - { - "name": "definite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6cdTz6" - }, - { - "name": "reflection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_-sQm" - }, - { - "name": "ultimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dHTkN" - }, - { - "name": "campus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li3s3R" - }, - { - "name": "adapt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixrc-Q" - }, - { - "name": "solicitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "If5v_l" - }, - { - "name": "cheerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFXuXx" - }, - { - "name": "merit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9O89UN" - }, - { - "name": "misunderstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NTbmfn" - }, - { - "name": "guilty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "17HCsV" - }, - { - "name": "measure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "raU0MI" - }, - { - "name": "overall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yhffj3" - }, - { - "name": "receipt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yd6rU8" - }, - { - "name": "assume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ob0Gq" - }, - { - "name": "pepper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G3PgF6" - }, - { - "name": "plural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_l03Mb" - }, - { - "name": "doctoral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "duezrj" - }, - { - "name": "concept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12ZxGJ" - }, - { - "name": "resistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6umRae" - }, - { - "name": "effort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-u5ms" - }, - { - "name": "video", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R3nNFY" - }, - { - "name": "disaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LBj6Kp" - }, - { - "name": "agriculture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVwoI8" - }, - { - "name": "weapon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QM_Q6" - }, - { - "name": "grocer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9IDqF" - }, - { - "name": "stare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-q4s9" - }, - { - "name": "painful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_49kcw" - }, - { - "name": "vote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DYQsC" - }, - { - "name": "steady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-7v2QM" - } - ], - [ - { - "name": "enhance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63RQKc" - }, - { - "name": "enclose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opxegS" - }, - { - "name": "convention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VX8tEl" - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rtg5NR" - }, - { - "name": "center", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "irZy3z" - }, - { - "name": "suspicion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NCwueq" - }, - { - "name": "purchase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LNhcIc" - }, - { - "name": "refusal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iC4UAM" - }, - { - "name": "technician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMa-eq" - }, - { - "name": "generic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NqcjXb" - }, - { - "name": "genius", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CmOXbx" - }, - { - "name": "alike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJivn" - }, - { - "name": "fund", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IDH-xl" - }, - { - "name": "gravity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hWGpDg" - }, - { - "name": "typical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0HDfR4" - }, - { - "name": "quotation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vekYS" - }, - { - "name": "finance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etcS9Y" - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dTzC2p" - }, - { - "name": "tray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhUAXn" - }, - { - "name": "downward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50WJaR" - }, - { - "name": "cabbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gSC3RC" - }, - { - "name": "regulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Ue1ig" - }, - { - "name": "palm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U_mMrs" - }, - { - "name": "hydrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIrfQt" - }, - { - "name": "infant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "itrC_4" - }, - { - "name": "hen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZr55R" - }, - { - "name": "whoever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4FdJa" - }, - { - "name": "carbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ng2weJ" - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWRDxN" - }, - { - "name": "payment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1IdNN" - } - ], - [ - { - "name": "specifically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KguhOt" - }, - { - "name": "controversial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PjnfLL" - }, - { - "name": "attain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3etmNW" - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8j0WKZ" - }, - { - "name": "gallery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riwgne" - }, - { - "name": "hardware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rR4I2R" - }, - { - "name": "deputy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRj_ec" - }, - { - "name": "warmth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-bGxAh" - }, - { - "name": "supreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c88MQF" - }, - { - "name": "ambulance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKc9gL" - }, - { - "name": "priority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INJ_Kw" - }, - { - "name": "slope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SbS-m" - }, - { - "name": "philosophy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH9TSK" - }, - { - "name": "preventive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4JJge" - }, - { - "name": "creative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyvL-Y" - }, - { - "name": "junior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eHGTt8" - }, - { - "name": "allocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pgRJXs" - }, - { - "name": "provide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u7pUCK" - }, - { - "name": "standpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oax8Lf" - }, - { - "name": "worship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WaWkq" - }, - { - "name": "lawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4PQ_u0" - }, - { - "name": "primary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MGSusa" - }, - { - "name": "log", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBLlnR" - }, - { - "name": "solar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-mhxho" - }, - { - "name": "consume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TzOq_t" - }, - { - "name": "formation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MFG5sR" - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_tr0p" - }, - { - "name": "triangle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bvduR-" - }, - { - "name": "accidental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QT-5mU" - }, - { - "name": "assure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "35l2uY" - } - ], - [ - { - "name": "consult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I4EYph" - }, - { - "name": "theme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISnR2W" - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KhJs_A" - }, - { - "name": "merely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opRowm" - }, - { - "name": "contradiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MLz9It" - }, - { - "name": "fuss", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3VpDvl" - }, - { - "name": "wealth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnW6V5" - }, - { - "name": "editor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HvoPAX" - }, - { - "name": "barrel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NPgQnh" - }, - { - "name": "means", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E9_guI" - }, - { - "name": "desire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qQPBF5" - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QqTlDR" - }, - { - "name": "efficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB-76I" - }, - { - "name": "initial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eWT-3" - }, - { - "name": "unfortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6f_FNt" - }, - { - "name": "consistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ggfo43" - }, - { - "name": "reverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYxWMb" - }, - { - "name": "heterogeneity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mywwyQ" - }, - { - "name": "sword", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mFE2z" - }, - { - "name": "permanent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpDwhR" - }, - { - "name": "barely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uNFjQ" - }, - { - "name": "summarize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3SsnWr" - }, - { - "name": "chap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wp73ba" - }, - { - "name": "facility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TK33ps" - }, - { - "name": "beam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZGzvmT" - }, - { - "name": "alliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LKdXdm" - }, - { - "name": "civilization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLxMrI" - }, - { - "name": "fiction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4haAIg" - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HiFLiw" - }, - { - "name": "replace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QedIs" - } - ], - [ - { - "name": "appointment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3Amw1" - }, - { - "name": "hip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iBGpqa" - }, - { - "name": "merry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SQiipN" - }, - { - "name": "dam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cd6SOk" - }, - { - "name": "pessimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ER5VXK" - }, - { - "name": "commander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fnfn_S" - }, - { - "name": "bloom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AIHq6j" - }, - { - "name": "major", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYzTiw" - }, - { - "name": "zone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WTIfiT" - }, - { - "name": "emphasis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aPrEsS" - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8kNmOj" - }, - { - "name": "feasible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XJzK3f" - }, - { - "name": "prescribe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m4pW1m" - }, - { - "name": "potential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j50ziZ" - }, - { - "name": "bean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88_4Y6" - }, - { - "name": "accustomed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2u9k-l" - }, - { - "name": "combination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VRQj2b" - }, - { - "name": "obtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcIm8N" - }, - { - "name": "turbine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMTW3s" - }, - { - "name": "repeatedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tE9-HY" - }, - { - "name": "curiosity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "btYUc1" - }, - { - "name": "gross", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N3Mn--" - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lpwU4r" - }, - { - "name": "resist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kn0AZ1" - }, - { - "name": "liter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Htz2M3" - }, - { - "name": "format", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxZO-P" - }, - { - "name": "sacrifice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5JxzWC" - }, - { - "name": "illegal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-cwnRl" - }, - { - "name": "stimulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tk88HR" - }, - { - "name": "formal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1Qb75" - } - ], - [ - { - "name": "congratulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C8zLFN" - }, - { - "name": "rainbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BjOiF2" - }, - { - "name": "soak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMNrRU" - }, - { - "name": "soar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5OcUm1" - }, - { - "name": "salesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qlQnY2" - }, - { - "name": "interference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DRPazJ" - }, - { - "name": "fibre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzbqQO" - }, - { - "name": "sustain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "istRYV" - }, - { - "name": "entertain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ggku3s" - }, - { - "name": "altitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvHbwR" - }, - { - "name": "classify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b8Dn_P" - }, - { - "name": "ease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYmtRV" - }, - { - "name": "critical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DZW3JM" - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqzLIK" - }, - { - "name": "mathematics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6r2CnZ" - }, - { - "name": "wagon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrJVHj" - }, - { - "name": "elsewhere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cPVnn3" - }, - { - "name": "penetrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4Rwv8" - }, - { - "name": "principal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fUQVhE" - }, - { - "name": "tend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8dAWf" - }, - { - "name": "exceedingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gn9v" - }, - { - "name": "specimen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cACJjZ" - }, - { - "name": "relief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpFAMY" - }, - { - "name": "dimension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d2A8Hq" - }, - { - "name": "introduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y_M8DU" - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7lHsta" - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBTgxU" - }, - { - "name": "philosopher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2Pcxb" - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rJ7mKA" - }, - { - "name": "therapy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IwY7Dj" - } - ], - [ - { - "name": "alternative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CoTQTj" - }, - { - "name": "banner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8g2_2Y" - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zXaicC" - }, - { - "name": "encounter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNSPHp" - }, - { - "name": "soda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kuwklm" - }, - { - "name": "colleague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLJZjj" - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Jftcw" - }, - { - "name": "approve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6w6H6" - }, - { - "name": "interaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08_E2b" - }, - { - "name": "chew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pt9f8H" - }, - { - "name": "interfere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRS-Nq" - }, - { - "name": "apartment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eN4cjs" - }, - { - "name": "account", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-lV_dp" - }, - { - "name": "uneasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8a0fQX" - }, - { - "name": "tolerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zx36ve" - }, - { - "name": "developmental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ocpyAo" - }, - { - "name": "stack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EfrWg1" - }, - { - "name": "underline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "in7VxM" - }, - { - "name": "innocent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LddDN4" - }, - { - "name": "compassion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lgGhof" - }, - { - "name": "alphabet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nl6vAi" - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y_h3Eq" - }, - { - "name": "evaluation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vCIleZ" - }, - { - "name": "crack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jXtkK6" - }, - { - "name": "bind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iURb7W" - }, - { - "name": "trim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZbE-QR" - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hU02mU" - }, - { - "name": "dental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YVaC0Q" - }, - { - "name": "predictable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iI2xTA" - }, - { - "name": "diverse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOfNUg" - } - ], - [ - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vYzHbI" - }, - { - "name": "cube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgJc81" - }, - { - "name": "rally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-yEpiJ" - }, - { - "name": "prime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mBn4oV" - }, - { - "name": "happen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j8xfPq" - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OwluKm" - }, - { - "name": "mild", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nx77cp" - }, - { - "name": "profile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7uzPM" - }, - { - "name": "loyal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k5xwAf" - }, - { - "name": "preference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtkyVX" - }, - { - "name": "impact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G65eUK" - }, - { - "name": "opportunity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVh0OL" - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GlPalK" - }, - { - "name": "dorm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDB6dC" - }, - { - "name": "whichever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gbzdfw" - }, - { - "name": "court", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ELBKWC" - }, - { - "name": "venture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ezCtsg" - }, - { - "name": "mill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzm-V8" - }, - { - "name": "bucket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJkudF" - }, - { - "name": "senior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0LjAtp" - }, - { - "name": "dose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c3ZBUd" - }, - { - "name": "route", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jB72IC" - }, - { - "name": "enthusiasm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ke7nl" - }, - { - "name": "flexible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3KVT6v" - }, - { - "name": "adult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gep-10" - }, - { - "name": "attitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WN3GDL" - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoCLEi" - }, - { - "name": "organ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIyypZ" - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5f_K3" - }, - { - "name": "treatment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4A7OPm" - } - ], - [ - { - "name": "compare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iFG9YO" - }, - { - "name": "pluralism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F2eLc2" - }, - { - "name": "influential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RbPR1" - }, - { - "name": "shiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5f4zpS" - }, - { - "name": "Bible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIHUI_" - }, - { - "name": "liquor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oq3NTn" - }, - { - "name": "honourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xq8FeG" - }, - { - "name": "characteristic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48hn-W" - }, - { - "name": "transparent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sHmCyY" - }, - { - "name": "interior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Y6UQ2" - }, - { - "name": "rouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYGGrv" - }, - { - "name": "journal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AtVTt-" - }, - { - "name": "grasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nwa_an" - }, - { - "name": "involvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2UUIR" - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jnn0Pv" - }, - { - "name": "unlike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wLfF3y" - }, - { - "name": "assembly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIrUJI" - }, - { - "name": "hearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSzOki" - }, - { - "name": "acquisition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zbtzzo" - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GhdUOV" - }, - { - "name": "rigid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hKp4hV" - }, - { - "name": "deadline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lqdez4" - }, - { - "name": "so-called", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Z5qT9" - }, - { - "name": "grateful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hgfF7X" - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIw2Pu" - }, - { - "name": "chin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-O1eXS" - }, - { - "name": "emotional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cKBLBq" - }, - { - "name": "operational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53hnFH" - }, - { - "name": "staff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lz4z5h" - }, - { - "name": "involve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P-6iq9" - } - ], - [ - { - "name": "noticeable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYTIDh" - }, - { - "name": "assemble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UNK76t" - }, - { - "name": "blast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EIrAEN" - }, - { - "name": "series", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mi-x5e" - }, - { - "name": "complicated", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQX7Ao" - }, - { - "name": "cultivate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RknEtF" - }, - { - "name": "maximum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aNGeki" - }, - { - "name": "thrive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FyFUo-" - }, - { - "name": "purse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_o92M" - }, - { - "name": "represent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DPIsaz" - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ML6Ej" - }, - { - "name": "dialect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6TdjSy" - }, - { - "name": "accountant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CzxUOZ" - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D6N0_Q" - }, - { - "name": "dim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nVnD_e" - }, - { - "name": "emergency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eqoSr3" - }, - { - "name": "dip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7vKnBt" - }, - { - "name": "recreational", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uM9alm" - }, - { - "name": "faculty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2zaTiB" - }, - { - "name": "trail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brTwgH" - }, - { - "name": "passport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Q00n" - }, - { - "name": "prior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aXI2ae" - }, - { - "name": "considerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hVieyn" - }, - { - "name": "clue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "leTAhM" - }, - { - "name": "legal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgJmFY" - }, - { - "name": "bracket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbGA_q" - }, - { - "name": "highway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V0lcQj" - }, - { - "name": "vanish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w4FwUI" - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0x82Bg" - }, - { - "name": "sightseeing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T_p6gU" - } - ], - [ - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lCjaxw" - }, - { - "name": "static", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztkH_Q" - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zKgs3I" - }, - { - "name": "planet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gBSr4p" - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8uU9rh" - }, - { - "name": "exhaust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HebXIW" - }, - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g5bS0L" - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PCkseU" - }, - { - "name": "grape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDXZ6x" - }, - { - "name": "conviction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9Magb" - }, - { - "name": "scholar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zryCvg" - }, - { - "name": "straw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-KEOdY" - }, - { - "name": "regarding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4YRAc" - }, - { - "name": "graph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVzxJY" - }, - { - "name": "vision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FAZbRg" - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-TJ5k" - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRK3tG" - }, - { - "name": "acceptance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDLmHt" - }, - { - "name": "relativity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rZ88gU" - }, - { - "name": "beneficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e60oFI" - }, - { - "name": "tackle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D-SSQo" - }, - { - "name": "reckon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TU4YiC" - }, - { - "name": "confusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAOXLz" - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CDt9oI" - }, - { - "name": "loan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ru0pj" - }, - { - "name": "virtual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWmKTk" - }, - { - "name": "squeeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6svsM" - }, - { - "name": "blank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aop2wT" - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_LkFcx" - }, - { - "name": "session", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gid1oa" - } - ], - [ - { - "name": "additional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q1iyiV" - }, - { - "name": "worthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MsX0pv" - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcL7do" - }, - { - "name": "expectation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvBOi0" - }, - { - "name": "title", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rco3n7" - }, - { - "name": "mist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1jhiB" - }, - { - "name": "primarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpmRjT" - }, - { - "name": "duration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qU-QNW" - }, - { - "name": "plantation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m2uMQb" - }, - { - "name": "ignore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHU2Bl" - }, - { - "name": "loaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GjuLcx" - }, - { - "name": "nuclear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JMKEQn" - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b0D3q7" - }, - { - "name": "outward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B9gWaU" - }, - { - "name": "bloody", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "53ex32" - }, - { - "name": "poetry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2simaT" - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGnb5B" - }, - { - "name": "vapour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5kOvDG" - }, - { - "name": "sole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xUzdR9" - }, - { - "name": "jury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_T2IcL" - }, - { - "name": "holy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N-ODmy" - }, - { - "name": "spelling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WA4MuK" - }, - { - "name": "relax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--zIl7" - }, - { - "name": "priest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wzoLxC" - }, - { - "name": "monitor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "50AXZl" - }, - { - "name": "permission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3R4WZ" - }, - { - "name": "grand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3FNbEw" - }, - { - "name": "schedule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XyNNHE" - }, - { - "name": "postage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "--_r9q" - }, - { - "name": "tame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GgD2BV" - } - ], - [ - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b13SKF" - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp51Y2" - }, - { - "name": "interpret", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrkhxL" - }, - { - "name": "spectacular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-wpJP" - }, - { - "name": "inherit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t2A89i" - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J1FT--" - }, - { - "name": "blanket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ch95rg" - }, - { - "name": "grant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ec5kTL" - }, - { - "name": "injection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bgs2xV" - }, - { - "name": "envy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BsTY-f" - }, - { - "name": "hut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OKyu_r" - }, - { - "name": "invincible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iIo8-0" - }, - { - "name": "discount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObsOaF" - }, - { - "name": "convert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57h1Dt" - }, - { - "name": "construct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dUtg_0" - }, - { - "name": "attempt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "knshPS" - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sE8D3b" - }, - { - "name": "superficial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NMCMx" - }, - { - "name": "division", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nB23dR" - }, - { - "name": "executive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yF_jv6" - }, - { - "name": "navigation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wCVBrt" - }, - { - "name": "melt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4cnOD" - }, - { - "name": "hook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk38z" - }, - { - "name": "stale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cJcSEN" - }, - { - "name": "balance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c55biq" - }, - { - "name": "cigar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r7wkFv" - }, - { - "name": "action", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZbobz" - }, - { - "name": "stadium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wJWCP" - }, - { - "name": "whereas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u-HjoL" - }, - { - "name": "pitch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ro89YO" - } - ], - [ - { - "name": "kindness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dtrkkV" - }, - { - "name": "adoptive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H4utCH" - }, - { - "name": "chop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuNbV4" - }, - { - "name": "electrical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2h1umk" - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KNbB20" - }, - { - "name": "being", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHUsJJ" - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dcC3Jg" - }, - { - "name": "protest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gbq-Nw" - }, - { - "name": "classification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D5UAGo" - }, - { - "name": "vacant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EO1z1N" - }, - { - "name": "physicist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WY0OUS" - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "77TrBF" - }, - { - "name": "underground", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zcij9D" - }, - { - "name": "curse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sg7Kf5" - }, - { - "name": "impression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gO_lbA" - }, - { - "name": "baseball", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Gldsd" - }, - { - "name": "interval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEKVOx" - }, - { - "name": "evaluate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDlerz" - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZLCDLd" - }, - { - "name": "status", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HY1JNt" - }, - { - "name": "shield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usKYJD" - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4mvR7G" - }, - { - "name": "inference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUgPmH" - }, - { - "name": "curve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BMUNwo" - }, - { - "name": "dot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XmeWL-" - }, - { - "name": "skim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ecLn7" - }, - { - "name": "phenomenon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRFCca" - }, - { - "name": "notify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-DYo6" - }, - { - "name": "mention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2sVwbI" - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VD3bD" - } - ], - [ - { - "name": "laundry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "72hYwf" - }, - { - "name": "accumulate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HS5soM" - }, - { - "name": "crime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e7oP0y" - }, - { - "name": "heave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r72nM8" - }, - { - "name": "leisure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zJWKfc" - }, - { - "name": "nourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_aOQnw" - }, - { - "name": "surround", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SwB_cd" - }, - { - "name": "mat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rbSBSI" - }, - { - "name": "cigarette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8PJxol" - }, - { - "name": "torch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YOxnl" - }, - { - "name": "positive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYi2tA" - }, - { - "name": "favourite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFE1uA" - }, - { - "name": "menu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rQuBzR" - }, - { - "name": "prospect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dVwS5Y" - }, - { - "name": "radar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y72rsP" - }, - { - "name": "refugee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ntKpmk" - }, - { - "name": "aluminium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ugqXag" - }, - { - "name": "comparable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vEsYg2" - }, - { - "name": "specialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1pbpat" - }, - { - "name": "rotate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w39H_g" - }, - { - "name": "instance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxGkkg" - }, - { - "name": "opera", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j665OJ" - }, - { - "name": "presumably", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6NNMBt" - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s1uaNb" - }, - { - "name": "subject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD6lao" - }, - { - "name": "practically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-uCjA5" - }, - { - "name": "recognition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-kb_c" - }, - { - "name": "cassette", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v0mp8i" - }, - { - "name": "blade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nf3HvZ" - }, - { - "name": "arrangement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6SgN0I" - } - ], - [ - { - "name": "revenue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4GQ6jZ" - }, - { - "name": "strip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyFxnF" - }, - { - "name": "solution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJiZ8a" - }, - { - "name": "continuous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6sSNFs" - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "txUS6Q" - }, - { - "name": "accelerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mwCSfG" - }, - { - "name": "backward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-9LB7D" - }, - { - "name": "grain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wakCS" - }, - { - "name": "maid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBF3F7" - }, - { - "name": "residence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTLA6k" - }, - { - "name": "credit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eM5VLW" - }, - { - "name": "regardless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_7chzq" - }, - { - "name": "oxygen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-C2r6M" - }, - { - "name": "intensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bJUCMo" - }, - { - "name": "alter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-h3DCv" - }, - { - "name": "combine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bOUrCs" - }, - { - "name": "ideal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UI32F" - }, - { - "name": "bearing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_PRCk" - }, - { - "name": "illustrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S4QjL5" - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oQUrRk" - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Eln7P8" - }, - { - "name": "broom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UIlTo" - }, - { - "name": "establishment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVIOkX" - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tZKBnh" - }, - { - "name": "breeze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zff7Ah" - }, - { - "name": "trash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nYPJqQ" - }, - { - "name": "painter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FlVHcV" - }, - { - "name": "millimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqHR-3" - }, - { - "name": "horn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JIMCSz" - }, - { - "name": "specialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-BpRdp" - } - ], - [ - { - "name": "infer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T9ZpQb" - }, - { - "name": "compass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lhdISz" - }, - { - "name": "background", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iO83O4" - }, - { - "name": "sore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebLWDb" - }, - { - "name": "dispose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wJYJKg" - }, - { - "name": "glow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yji4xw" - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "735ptK" - }, - { - "name": "laughter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xqQgwI" - }, - { - "name": "constitution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CiCqHO" - }, - { - "name": "blend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXvrtN" - }, - { - "name": "certificate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dAeGKe" - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wYiLu1" - }, - { - "name": "sour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6yZOUx" - }, - { - "name": "delete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNLozw" - }, - { - "name": "nonsense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mw3dx_" - }, - { - "name": "stain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pVnKML" - }, - { - "name": "transform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ORxp-0" - }, - { - "name": "leadership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zBgTW_" - }, - { - "name": "genuine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3oRKTy" - }, - { - "name": "X-ray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DypmR6" - }, - { - "name": "physical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XQ1Jx" - }, - { - "name": "fulfil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E5eukS" - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2jeQS" - }, - { - "name": "spokesman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w2Ls4S" - }, - { - "name": "equation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xz22J-" - }, - { - "name": "impressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "88Ar9u" - }, - { - "name": "compound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1WGMd7" - }, - { - "name": "structure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kInsRn" - }, - { - "name": "intensity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t-Qyrn" - }, - { - "name": "waken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4DHcG" - } - ], - [ - { - "name": "stake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KOuGzW" - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JqthVU" - }, - { - "name": "witness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p2RObw" - }, - { - "name": "concerning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f2ajeF" - }, - { - "name": "attraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qu_Nqs" - }, - { - "name": "conventional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JSFYf-" - }, - { - "name": "regulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CrJAZi" - }, - { - "name": "puzzle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HdkXtq" - }, - { - "name": "circulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qn-Ew8" - }, - { - "name": "bake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UVZwfO" - }, - { - "name": "mere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aJhyxR" - }, - { - "name": "accommodation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y2pcPG" - }, - { - "name": "evident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dk45X2" - }, - { - "name": "suburb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TCei6X" - }, - { - "name": "lodge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDtVVJ" - }, - { - "name": "threat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uuWf4W" - }, - { - "name": "writer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAoOCd" - }, - { - "name": "simplify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kvEove" - }, - { - "name": "breast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqHEGK" - }, - { - "name": "invention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CnDUdS" - }, - { - "name": "mercy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6CvKlt" - }, - { - "name": "annoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QW4LE7" - }, - { - "name": "curl", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2hQtKR" - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zk-q9n" - }, - { - "name": "psychological", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcu9fi" - }, - { - "name": "glue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rndzHy" - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0Drys" - }, - { - "name": "scream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e4scp2" - }, - { - "name": "sorrow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oo-YVY" - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2_Ylb" - } - ], - [ - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RQO7nV" - }, - { - "name": "observer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sw0Kbc" - }, - { - "name": "character", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIkgTx" - }, - { - "name": "reflect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ILOu5" - }, - { - "name": "procession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JQxoKd" - }, - { - "name": "contribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MD2GGh" - }, - { - "name": "Marxist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9pv6Y2" - }, - { - "name": "bang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lmfhbu" - }, - { - "name": "brow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfU2Xs" - }, - { - "name": "meaning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JE1gT" - }, - { - "name": "ignorant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XQSIv" - }, - { - "name": "magnetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SnffRN" - }, - { - "name": "band", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LkMibN" - }, - { - "name": "orbit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV8krw" - }, - { - "name": "comprise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mGJzn9" - }, - { - "name": "moderate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w3aIcS" - }, - { - "name": "resident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ym0UVv" - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iV_1S-" - }, - { - "name": "distinguish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ckO0Q" - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HA87TK" - }, - { - "name": "outer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQ5MKO" - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hBt4N4" - }, - { - "name": "fluent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vRUz71" - }, - { - "name": "shortcoming", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "09E1Nt" - }, - { - "name": "substantial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "63pmET" - }, - { - "name": "execute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZanQ1" - }, - { - "name": "benefit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8jeQo" - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DrYu37" - }, - { - "name": "vitamin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6FQs4o" - }, - { - "name": "intention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIQqZf" - } - ], - [ - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KieWN4" - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uCPvz1" - }, - { - "name": "pillar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vgcW3u" - }, - { - "name": "thereby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CSo-cp" - }, - { - "name": "unique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xwc4up" - }, - { - "name": "funeral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgS9mq" - }, - { - "name": "boost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EP4Jcx" - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3ca4W" - }, - { - "name": "sincere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ISmP4z" - }, - { - "name": "male", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2Toyp" - }, - { - "name": "ministry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqZmnY" - }, - { - "name": "religious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOkHkl" - }, - { - "name": "nevertheless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSSuBv" - }, - { - "name": "prominent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mN2sDP" - }, - { - "name": "shelter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6vrg7" - }, - { - "name": "outset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J8KUtt" - }, - { - "name": "jewel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nbpwZg" - }, - { - "name": "scan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c90tNi" - }, - { - "name": "association", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N07ysN" - }, - { - "name": "fundamental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "05faIu" - }, - { - "name": "eliminate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5B2xU" - }, - { - "name": "global", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v23z3S" - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRlGoK" - }, - { - "name": "outline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "euIA6l" - }, - { - "name": "fade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejLx7e" - }, - { - "name": "unless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FoImd-" - }, - { - "name": "butterfly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0HyVq" - }, - { - "name": "excess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IKS1DS" - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "avSM_z" - }, - { - "name": "perspective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M9OogC" - } - ], - [ - { - "name": "relationship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sjRS1N" - }, - { - "name": "equality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3U7Kd" - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ua_FK" - }, - { - "name": "dictation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aaPjvr" - }, - { - "name": "stiff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCuams" - }, - { - "name": "expression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c9okSz" - }, - { - "name": "invade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K6J3KH" - }, - { - "name": "reaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Gmvmj" - }, - { - "name": "childhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIfqtz" - }, - { - "name": "wolf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yHhY5K" - }, - { - "name": "accordance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rqx0an" - }, - { - "name": "thorough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrmme6" - }, - { - "name": "appeal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u2NGJr" - }, - { - "name": "democracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OdgBfU" - }, - { - "name": "transportation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v3QntD" - }, - { - "name": "dye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FUvF51" - }, - { - "name": "evolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dk4ff4" - }, - { - "name": "extensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEVG56" - }, - { - "name": "congratulation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkTJ2y" - }, - { - "name": "abandon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYCWNZ" - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kwm0LR" - }, - { - "name": "inspire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ou0O0" - }, - { - "name": "marvelous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJRosF" - }, - { - "name": "household", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SLDpVV" - }, - { - "name": "geometry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0bHxL" - }, - { - "name": "ratio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ji5ogh" - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3z5-dc" - }, - { - "name": "agent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CyPnCj" - }, - { - "name": "wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zr4S2C" - }, - { - "name": "wholly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WjcV0d" - } - ], - [ - { - "name": "instinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "74JBJp" - }, - { - "name": "approximate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uz7V8D" - }, - { - "name": "invest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UnYF6p" - }, - { - "name": "afterward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMse_k" - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vinesw" - }, - { - "name": "project", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOPjBt" - }, - { - "name": "shrug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sm3mnl" - }, - { - "name": "independence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDr_Gi" - }, - { - "name": "coordination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz-A39" - }, - { - "name": "presentation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMZwDh" - }, - { - "name": "diameter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "64gx71" - }, - { - "name": "barn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGYFr2" - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Qw0a3" - }, - { - "name": "loop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "p78tO7" - }, - { - "name": "restrain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tyfNS" - }, - { - "name": "greedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N68BwQ" - }, - { - "name": "awkward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSm262" - }, - { - "name": "bare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Irxx4r" - }, - { - "name": "ruin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fhbJdh" - }, - { - "name": "crane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3BpuZ7" - }, - { - "name": "beard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ICnCK" - }, - { - "name": "impatient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "swOPZv" - }, - { - "name": "spill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2fIDFt" - }, - { - "name": "owing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tLbMOC" - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u1dZal" - }, - { - "name": "gardener", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w83RNo" - }, - { - "name": "conquest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VP-DXW" - }, - { - "name": "finding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dmrg4e" - }, - { - "name": "dense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_tZGi" - }, - { - "name": "fortnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qWhlLj" - } - ], - [ - { - "name": "laboratory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "emrAAi" - }, - { - "name": "inspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7aY-z" - }, - { - "name": "campaign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uIn02b" - }, - { - "name": "systematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XA9T2y" - }, - { - "name": "vital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IFeHHG" - }, - { - "name": "conflict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "reTgav" - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLsN4q" - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wn7_t9" - }, - { - "name": "appliance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNiupo" - }, - { - "name": "mass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SD0Iax" - }, - { - "name": "lord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjw1mm" - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PPzufL" - }, - { - "name": "amateur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3o2EzO" - }, - { - "name": "poisonous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s8GGTC" - }, - { - "name": "condemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IQpIch" - }, - { - "name": "beast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "evRKJ5" - }, - { - "name": "assistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-t-Uhq" - }, - { - "name": "commerce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2xbZCp" - }, - { - "name": "gesture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AYQPpQ" - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cYYa5" - }, - { - "name": "poem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GzpdqB" - }, - { - "name": "interest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "73_AnV" - }, - { - "name": "gulf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xhKtcv" - }, - { - "name": "poet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OyFtLV" - }, - { - "name": "definition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X8nEyC" - }, - { - "name": "shave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWFgB_" - }, - { - "name": "organic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_K5_Gw" - }, - { - "name": "mask", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yyRp7L" - }, - { - "name": "summary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRN5Cm" - }, - { - "name": "apply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KwoJUt" - } - ], - [ - { - "name": "inferior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y5CGx5" - }, - { - "name": "steamer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qFxuHl" - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGs-7f" - }, - { - "name": "overlook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m5QJZ_" - }, - { - "name": "politician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PYLNwW" - }, - { - "name": "incredible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "by1Omw" - }, - { - "name": "dramatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NkZyD7" - }, - { - "name": "mosquito", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yG4Xj" - }, - { - "name": "guitar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4JQNL8" - }, - { - "name": "layout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zSuTmh" - }, - { - "name": "artificial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pjh2QS" - }, - { - "name": "imaginary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K65kj1" - }, - { - "name": "removal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e6P1ni" - }, - { - "name": "formula", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vFHKDg" - }, - { - "name": "comment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yrcfvr" - }, - { - "name": "revolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hG3LXw" - }, - { - "name": "disgust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jptN0" - }, - { - "name": "stem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INDK2-" - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dEfmD" - }, - { - "name": "trend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vDtask" - }, - { - "name": "achievement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O4toW0" - }, - { - "name": "mechanic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9F5eQ4" - }, - { - "name": "desirable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vnxuv" - }, - { - "name": "balcony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJhgmX" - }, - { - "name": "consist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wgy8BL" - }, - { - "name": "preparation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uRq6-7" - }, - { - "name": "reliable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "idpkS4" - }, - { - "name": "relate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1Eqr" - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3jIYav" - }, - { - "name": "elevator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lO2-Fe" - } - ], - [ - { - "name": "grammar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Y26ob" - }, - { - "name": "enable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJNjEA" - }, - { - "name": "preliminary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S2I8J2" - }, - { - "name": "dependent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cg2_VW" - }, - { - "name": "obstacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_D4rh1" - }, - { - "name": "profession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B4Wqfn" - }, - { - "name": "calculator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZSzS7" - }, - { - "name": "van", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ydG1l" - }, - { - "name": "biology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9lolg" - }, - { - "name": "worm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LDg8mw" - }, - { - "name": "compress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UF4Ws2" - }, - { - "name": "arise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DJVIJS" - }, - { - "name": "collaborative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RIYjAJ" - }, - { - "name": "cherish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "62fcwz" - }, - { - "name": "constitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32yLrE" - }, - { - "name": "cattle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B6kSTs" - }, - { - "name": "imagination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYI11I" - }, - { - "name": "resistance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XSt2zQ" - }, - { - "name": "underneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JTna5t" - }, - { - "name": "nursery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "boR5Y9" - }, - { - "name": "mate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cuKy7H" - }, - { - "name": "convince", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_neEgV" - }, - { - "name": "emperor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHJqr4" - }, - { - "name": "prolong", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nj2bwp" - }, - { - "name": "theory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joz99V" - }, - { - "name": "distress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TYRtWW" - }, - { - "name": "flock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uEsTO" - }, - { - "name": "internal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zEyEMj" - }, - { - "name": "extension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mb_m1x" - }, - { - "name": "signature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7j1x1I" - } - ], - [ - { - "name": "steep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muU2iF" - }, - { - "name": "thumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z87bBc" - }, - { - "name": "republican", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6J_wXH" - }, - { - "name": "literary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbjT3Z" - }, - { - "name": "architect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qugxw4" - }, - { - "name": "forehead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QatsWU" - }, - { - "name": "classical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ItTHv" - }, - { - "name": "privilege", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOEGJE" - }, - { - "name": "foundation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S5ynoi" - }, - { - "name": "substitute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BaNEcl" - }, - { - "name": "punch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6Cduf" - }, - { - "name": "naturally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_0Yk-5" - }, - { - "name": "flexibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pz6tNF" - }, - { - "name": "mysterious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3r2bXb" - }, - { - "name": "moreover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GK0-uT" - }, - { - "name": "identity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "opHpWR" - }, - { - "name": "scatter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PAz4oN" - }, - { - "name": "installation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7jKw5q" - }, - { - "name": "writing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2tgmKV" - }, - { - "name": "federal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ElOnIN" - }, - { - "name": "violate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS44j8" - }, - { - "name": "verify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij7IWU" - }, - { - "name": "collective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YWXOsb" - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PK-893" - }, - { - "name": "steer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJfGAp" - }, - { - "name": "event", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIN81X" - }, - { - "name": "academy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9M5y2c" - }, - { - "name": "undergo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2LWT3" - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bI6ufp" - }, - { - "name": "include", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWRobZ" - } - ], - [ - { - "name": "sympathize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZyosAm" - }, - { - "name": "alongside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoeTUV" - }, - { - "name": "swallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "02Rn-W" - }, - { - "name": "agency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u6wFA4" - }, - { - "name": "coupon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_lwLh" - }, - { - "name": "railroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QFZSEj" - }, - { - "name": "nucleus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLe5Or" - }, - { - "name": "fascinating", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EpggG" - }, - { - "name": "abstract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SeqN3G" - }, - { - "name": "sting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MHVm72" - }, - { - "name": "haste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nkQKIE" - }, - { - "name": "agenda", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EdM8NK" - }, - { - "name": "appearance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2aNm5" - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPAA6T" - }, - { - "name": "culture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30bzUC" - }, - { - "name": "sleeve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGbvth" - }, - { - "name": "devotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDEYVv" - }, - { - "name": "anonymous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIrRvz" - }, - { - "name": "stir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IndalO" - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DYv-4A" - }, - { - "name": "span", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MQ74w" - }, - { - "name": "insult", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eaVneS" - }, - { - "name": "existence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5DkcL" - }, - { - "name": "craft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gG2OX4" - }, - { - "name": "butcher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k_k3KT" - }, - { - "name": "poll", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ia8ISq" - }, - { - "name": "minority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zRk2S5" - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7DAPJ" - }, - { - "name": "float", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vzVTPj" - }, - { - "name": "graceful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjGqZj" - } - ], - [ - { - "name": "fourfold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fcf4Cx" - }, - { - "name": "preferable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7xMy98" - }, - { - "name": "reference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EGrSjv" - }, - { - "name": "frog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VetPFX" - }, - { - "name": "spite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zLjUJS" - }, - { - "name": "chamber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T0EvMq" - }, - { - "name": "arrange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IqkbnT" - }, - { - "name": "coarse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Wne5E" - }, - { - "name": "nephew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KfJQwy" - }, - { - "name": "publicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJdAkP" - }, - { - "name": "depart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Se8ff1" - }, - { - "name": "exaggerate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2qG-Uu" - }, - { - "name": "imply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eC_f6k" - }, - { - "name": "capture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m9HIou" - }, - { - "name": "commitment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUdTRe" - }, - { - "name": "spade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x7liRT" - }, - { - "name": "manufacture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpUA93" - }, - { - "name": "sequence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmVrtl" - }, - { - "name": "collision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82KfYv" - }, - { - "name": "qualification", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nO7JYU" - }, - { - "name": "provision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km4qK6" - }, - { - "name": "recruit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rBO1-Z" - }, - { - "name": "thrust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3YogR" - }, - { - "name": "fame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9WR4b2" - }, - { - "name": "replacement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HE_bQ4" - }, - { - "name": "mud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UCaTgi" - }, - { - "name": "mug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12Cclf" - }, - { - "name": "pond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sGy68J" - }, - { - "name": "arrival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LaFulC" - }, - { - "name": "scientific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hJ1Ccv" - } - ], - [ - { - "name": "frequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Px0X18" - }, - { - "name": "according", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AfgvcI" - }, - { - "name": "insure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqcUsT" - }, - { - "name": "powder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEn8_" - }, - { - "name": "membership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5jtXn3" - }, - { - "name": "error", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zVRAp" - }, - { - "name": "platform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tHOkz4" - }, - { - "name": "network", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9jGQbi" - }, - { - "name": "jealous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fRMks" - }, - { - "name": "rust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmK89l" - }, - { - "name": "trace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zrb0Ma" - }, - { - "name": "Negro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xlvK6d" - }, - { - "name": "modernization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmXZuv" - }, - { - "name": "grave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rFJ0G-" - }, - { - "name": "criminology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dn3-Oa" - }, - { - "name": "advantage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2l7Fz" - }, - { - "name": "assistant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lriJaC" - }, - { - "name": "inn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tnbbny" - }, - { - "name": "instead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bbYrjb" - }, - { - "name": "controversy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qV1FE" - }, - { - "name": "command", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iR8vF1" - }, - { - "name": "newsstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzUI8q" - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gVhrxL" - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxbztB" - }, - { - "name": "dessert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QXQhTI" - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "At_p4B" - }, - { - "name": "anticipate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rWByC6" - }, - { - "name": "variable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nGdwSC" - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H2eIha" - }, - { - "name": "growth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qp3OE_" - } - ], - [ - { - "name": "landscape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Qj63Z" - }, - { - "name": "weave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChLdjH" - }, - { - "name": "carrot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fokXCd" - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6IJ9Q8" - }, - { - "name": "exception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahMgZ8" - }, - { - "name": "vague", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BKPsGf" - }, - { - "name": "temporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "czQprn" - }, - { - "name": "fare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iVCvf3" - }, - { - "name": "desperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikzb86" - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qgYDFH" - }, - { - "name": "awful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0bWmCp" - }, - { - "name": "accuracy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_R1LB" - }, - { - "name": "handy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wjyM1z" - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAiNVA" - }, - { - "name": "resolution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y4ha5C" - }, - { - "name": "via", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Euil74" - }, - { - "name": "setting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2BL09H" - }, - { - "name": "score", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3-nJaB" - }, - { - "name": "quote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HXHLDl" - }, - { - "name": "graduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uTWYVN" - }, - { - "name": "famine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ALNjND" - }, - { - "name": "gramme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wnjCBG" - }, - { - "name": "absent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhod7R" - }, - { - "name": "rag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snXb8Q" - }, - { - "name": "visual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N70vVV" - }, - { - "name": "understanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SInRQq" - }, - { - "name": "empire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VrJuyu" - }, - { - "name": "educate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xIlfcd" - }, - { - "name": "fairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_daan_" - }, - { - "name": "ashamed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9FOjrK" - } - ], - [ - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhucHW" - }, - { - "name": "rat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix5xKW" - }, - { - "name": "mayor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s5koJN" - }, - { - "name": "virtually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P9UhaT" - }, - { - "name": "fairly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZoTbue" - }, - { - "name": "handwriting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8npK2L" - }, - { - "name": "merchant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DpuOMj" - }, - { - "name": "raw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bpRxJN" - }, - { - "name": "proportional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UkVJeG" - }, - { - "name": "economy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vELI40" - }, - { - "name": "community", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jfCf8l" - }, - { - "name": "packet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gLd52U" - }, - { - "name": "version", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y6Wh4N" - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WzREWT" - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xrYC3D" - }, - { - "name": "nationality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g7IYpD" - }, - { - "name": "selection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9yw1tE" - }, - { - "name": "institute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "io2ZIk" - }, - { - "name": "aboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7gBj6V" - }, - { - "name": "endure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6EZSzH" - }, - { - "name": "detail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kqvNr7" - }, - { - "name": "shortly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UhiwAi" - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gMwrbt" - }, - { - "name": "appropriate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ml8XQ4" - }, - { - "name": "providing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cBe8k5" - }, - { - "name": "fate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBdduK" - }, - { - "name": "throat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqrxqT" - }, - { - "name": "utility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbwy29" - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dx_4eo" - }, - { - "name": "manual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djTNDa" - } - ], - [ - { - "name": "measurement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WDe0UG" - }, - { - "name": "optimistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EyGXw8" - }, - { - "name": "vocabulary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qoEhbB" - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bwz7ZN" - }, - { - "name": "aspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dWQwYb" - }, - { - "name": "particle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ToPj9S" - }, - { - "name": "aggressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0QIs-Z" - }, - { - "name": "behavior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhtKuk" - }, - { - "name": "musician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "58hHri" - }, - { - "name": "minimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bgIU3Z" - }, - { - "name": "descend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Xrvyt" - }, - { - "name": "saint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOMzQc" - }, - { - "name": "density", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9vxYHG" - }, - { - "name": "logical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJgU_e" - }, - { - "name": "oblige", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRrR1O" - }, - { - "name": "slam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PFGb4z" - }, - { - "name": "characterize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ODmHWO" - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N2GiSk" - }, - { - "name": "ridiculous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dLbhGX" - }, - { - "name": "handbag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dwi7ce" - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Po5VEX" - }, - { - "name": "spin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ovhcxA" - }, - { - "name": "severe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mWk5kb" - }, - { - "name": "emerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aQ8uex" - }, - { - "name": "shallow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dYtoP8" - }, - { - "name": "lease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oVlYxd" - }, - { - "name": "exploit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMJMzt" - }, - { - "name": "slap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LS0shJ" - }, - { - "name": "spit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcPmT-" - }, - { - "name": "scout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ty9U9l" - } - ], - [ - { - "name": "anniversary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lBRGb8" - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhnBv5" - }, - { - "name": "restless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1vhwLG" - }, - { - "name": "persuasive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1M6kK5" - }, - { - "name": "fleet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kl14HQ" - }, - { - "name": "communicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZWqPV6" - }, - { - "name": "evidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_2kzJ" - }, - { - "name": "saddle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xcqRV9" - }, - { - "name": "rural", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y92rmE" - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-QxHu" - }, - { - "name": "historical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHn2XX" - }, - { - "name": "repetition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P_sX7l" - }, - { - "name": "fortunately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KJdd6e" - }, - { - "name": "acid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OkpPyJ" - }, - { - "name": "transmission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bd1JCK" - }, - { - "name": "shortage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7NQ_7" - }, - { - "name": "discrimination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TRzEhp" - }, - { - "name": "female", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZuKMfj" - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeGURw" - }, - { - "name": "swift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ypLJrF" - }, - { - "name": "surrender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "flMcq-" - }, - { - "name": "faint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5boff" - }, - { - "name": "world-wide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kio_tL" - }, - { - "name": "minister", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIszTL" - }, - { - "name": "pose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vmBXF-" - }, - { - "name": "remedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6itWt" - }, - { - "name": "jail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qqydYi" - }, - { - "name": "consent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t9uC0z" - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rtJow6" - }, - { - "name": "typewriter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ejwP5_" - } - ], - [ - { - "name": "helpless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ms9BWx" - }, - { - "name": "respect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_oWO5J" - }, - { - "name": "volume", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YeAF05" - }, - { - "name": "retreat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zO2K1T" - }, - { - "name": "ache", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjfOk7" - }, - { - "name": "mutual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5zcjt" - }, - { - "name": "shell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7f9Iz" - }, - { - "name": "guideline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mr9i_b" - }, - { - "name": "loose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "igEoTb" - }, - { - "name": "therefore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fuzTSO" - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gc9ibl" - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gyyrFx" - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vBvOEs" - }, - { - "name": "private", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mnPNxL" - }, - { - "name": "baggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbKyK_" - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4gH1j" - }, - { - "name": "breakdown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXjA61" - }, - { - "name": "paste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0tYx" - }, - { - "name": "overtake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60E6Kp" - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS4hes" - }, - { - "name": "overnight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AeTiG7" - }, - { - "name": "behave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b3IybY" - }, - { - "name": "stretch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SEeYy7" - }, - { - "name": "undo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uFPgbH" - }, - { - "name": "accomplish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMy593" - }, - { - "name": "laser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qMy2zQ" - }, - { - "name": "mixture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bqNHlK" - }, - { - "name": "engine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxYYpP" - }, - { - "name": "responsible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4fY39B" - }, - { - "name": "scope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-HVY0O" - } - ], - [ - { - "name": "democratic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "30xzEM" - }, - { - "name": "medal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mYaw-O" - }, - { - "name": "satellite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wkRCFT" - }, - { - "name": "bullet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLFpms" - }, - { - "name": "recorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQwSOc" - }, - { - "name": "identify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjHkkz" - }, - { - "name": "embrace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdYQG0" - }, - { - "name": "nitrogen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1LK6" - }, - { - "name": "pour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Ul-9M" - }, - { - "name": "label", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wncfdT" - }, - { - "name": "improvement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JzkQxi" - }, - { - "name": "slippery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZdJYBv" - }, - { - "name": "scissors", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxbvDd" - }, - { - "name": "significance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0PsSO" - }, - { - "name": "modify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYQf8c" - }, - { - "name": "horizon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E31K3t" - }, - { - "name": "environment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AU54KG" - }, - { - "name": "airplane", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mH6vSK" - }, - { - "name": "pledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d77a5w" - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mw0eo6" - }, - { - "name": "reservoir", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Su1Lwn" - }, - { - "name": "deliberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hPDtA5" - }, - { - "name": "swear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bugduQ" - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmTUB" - }, - { - "name": "decorate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d_deRA" - }, - { - "name": "copyright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_BIIT" - }, - { - "name": "biotechnology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vHE_pI" - }, - { - "name": "career", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dos5Ja" - }, - { - "name": "occupation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeiMXd" - }, - { - "name": "tendency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3jAt6" - } - ], - [ - { - "name": "release", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qYBw7_" - }, - { - "name": "charter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ij4RA4" - }, - { - "name": "slim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DMwjRM" - }, - { - "name": "arithmetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fd6mCj" - }, - { - "name": "rib", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yG8SI4" - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PsmG53" - }, - { - "name": "liberate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecjGlg" - }, - { - "name": "rid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dE8Jnw" - }, - { - "name": "variation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbgo40" - }, - { - "name": "moral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ey_-l5" - }, - { - "name": "defect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zwiBk" - }, - { - "name": "reinforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBcLWH" - }, - { - "name": "explode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83VWnS" - }, - { - "name": "casual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7tra5" - }, - { - "name": "decline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3URsd6" - }, - { - "name": "property", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ki-ZZk" - }, - { - "name": "succeeding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joISXq" - }, - { - "name": "brave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThMrdB" - }, - { - "name": "similar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fF3W_j" - }, - { - "name": "viewpoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pdbiJ" - }, - { - "name": "anyhow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4y9Pi8" - }, - { - "name": "specify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnXTLs" - }, - { - "name": "whistle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SWRDHE" - }, - { - "name": "handle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sWcATe" - }, - { - "name": "forth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oXrzZt" - }, - { - "name": "tough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5_MwXl" - }, - { - "name": "crossing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yrh8nY" - }, - { - "name": "script", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W-NQYT" - }, - { - "name": "submerge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZq6xW" - }, - { - "name": "system", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "twQhIE" - } - ], - [ - { - "name": "compose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OJd83T" - }, - { - "name": "spot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Foeej" - }, - { - "name": "roller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t0XRZg" - }, - { - "name": "partial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2dr7i0" - }, - { - "name": "aid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SFw7K2" - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZMBuD3" - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xi56UL" - }, - { - "name": "retain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftU2o-" - }, - { - "name": "swell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8v-WS" - }, - { - "name": "skilled", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28lYws" - }, - { - "name": "local", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g1yK6C" - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rqseHL" - }, - { - "name": "crude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mZLVAH" - }, - { - "name": "manufacturer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-XCImk" - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VIxs0Y" - }, - { - "name": "valid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5qdcg" - }, - { - "name": "withstand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cLZ5Qz" - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a57ieF" - }, - { - "name": "vacuum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VyFi0B" - }, - { - "name": "encourage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzneP4" - }, - { - "name": "bubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pDumq9" - }, - { - "name": "era", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3MO2Q7" - }, - { - "name": "yield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4WdKU6" - }, - { - "name": "electronic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmmbrw" - }, - { - "name": "vacation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gT3r6A" - }, - { - "name": "outcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HVp44C" - }, - { - "name": "elegant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9crgY0" - }, - { - "name": "tender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yk5ktx" - }, - { - "name": "curriculum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QZV6pi" - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6o0aPn" - } - ], - [ - { - "name": "powerful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HgGmnZ" - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_8bKbF" - }, - { - "name": "species", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q0Tzzh" - }, - { - "name": "anchor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A_gF6V" - }, - { - "name": "preceding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HMyde1" - }, - { - "name": "cite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2E7xx" - }, - { - "name": "logic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "40iIh-" - }, - { - "name": "acquaintance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YLRwO9" - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mysw2" - }, - { - "name": "internship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-fqwq" - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wiJaxE" - }, - { - "name": "eyesight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cmZIUS" - }, - { - "name": "precision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IVqpt5" - }, - { - "name": "glove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y38_Ae" - }, - { - "name": "screen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FLBW6v" - }, - { - "name": "naked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tkdwjp" - }, - { - "name": "trial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4vOOQd" - }, - { - "name": "correspond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KR4D4B" - }, - { - "name": "spur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r6bFaq" - }, - { - "name": "perception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNRi_A" - }, - { - "name": "rear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S-37SY" - }, - { - "name": "amongst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsqB17" - }, - { - "name": "undertake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M7dJI-" - }, - { - "name": "insect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I7RDZr" - }, - { - "name": "bureau", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikaJMA" - }, - { - "name": "moist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u4MyVU" - }, - { - "name": "cable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e3v1ps" - }, - { - "name": "qualify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKSf-r" - }, - { - "name": "intense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mANDv0" - }, - { - "name": "pregnant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-K27q" - } - ], - [ - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pdFDpj" - }, - { - "name": "estate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cxG-XY" - }, - { - "name": "applicable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yQAd4j" - }, - { - "name": "admission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IR0eF5" - }, - { - "name": "brass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KudbqD" - }, - { - "name": "expense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP2NSi" - }, - { - "name": "rumour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzV2MC" - }, - { - "name": "contemporary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPZs-U" - }, - { - "name": "gear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Usokgs" - }, - { - "name": "boundary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z64Hqa" - }, - { - "name": "rob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V12SY_" - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "colPHm" - }, - { - "name": "financial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-bGU0" - }, - { - "name": "rod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YSiESv" - }, - { - "name": "dumb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TMEvMu" - }, - { - "name": "respective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDDxIf" - }, - { - "name": "media", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pfnmyu" - }, - { - "name": "favour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I6QQYW" - }, - { - "name": "pollute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0NuhPJ" - }, - { - "name": "harden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HtnY97" - }, - { - "name": "eve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7wfxPx" - }, - { - "name": "pronoun", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eRj69d" - }, - { - "name": "define", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "16nTW2" - }, - { - "name": "dictate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EgNH1B" - }, - { - "name": "construction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "brw8XO" - }, - { - "name": "predict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "26vnUX" - }, - { - "name": "dump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zcmcxc" - }, - { - "name": "render", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0rS9B" - }, - { - "name": "universal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P1ZOsC" - }, - { - "name": "chemist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XRObbG" - } - ], - [ - { - "name": "frontier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-nlAi" - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kUjLtg" - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ue3Mny" - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JI42yg" - }, - { - "name": "drawer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vc0F15" - }, - { - "name": "requirement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IW0OGv" - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UaGTsd" - }, - { - "name": "employment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W7gnEg" - }, - { - "name": "specific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lztMe" - }, - { - "name": "application", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h8_fpl" - }, - { - "name": "engage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dkg_Dt" - }, - { - "name": "acre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C4KWpC" - }, - { - "name": "whisper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wRCvdG" - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwZBn3" - }, - { - "name": "semester", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pRJ3Oy" - }, - { - "name": "strategy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AmfAu0" - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ow8Xom" - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "exIU4b" - }, - { - "name": "clumsy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VuKskd" - }, - { - "name": "territory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbV1pX" - }, - { - "name": "concession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yxwImt" - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "11JuTS" - }, - { - "name": "maintain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lKF1LA" - }, - { - "name": "shift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NfiXIl" - }, - { - "name": "echo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr3yzr" - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Olk8bc" - }, - { - "name": "bargain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gYV545" - }, - { - "name": "professional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zxR-EJ" - }, - { - "name": "elective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z2vX34" - }, - { - "name": "accusation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oxZwBS" - } - ], - [ - { - "name": "protein", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XOf8HE" - }, - { - "name": "annual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xU04OX" - }, - { - "name": "exclusive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xsQ-yJ" - }, - { - "name": "jar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdQXri" - }, - { - "name": "poverty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQHdgx" - }, - { - "name": "resort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l_YyU2" - }, - { - "name": "goodness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_q0xf-" - }, - { - "name": "lightning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yTqjUg" - }, - { - "name": "jaw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C2drNy" - }, - { - "name": "margin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD3pgj" - }, - { - "name": "remain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KSU7zW" - }, - { - "name": "amaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL3-At" - }, - { - "name": "refine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9Hshm" - }, - { - "name": "mount", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bauq8X" - }, - { - "name": "demand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ixGHaE" - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G9b9v-" - }, - { - "name": "atomic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcZPEl" - }, - { - "name": "deposit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6qRuv9" - }, - { - "name": "centimetre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QfQE2O" - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cTKxHc" - }, - { - "name": "rotten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gi_PiJ" - }, - { - "name": "skillful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPHKr_" - }, - { - "name": "flash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwSh3w" - }, - { - "name": "accuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69b4xX" - }, - { - "name": "housing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "th60Vq" - }, - { - "name": "devil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B_8z8L" - }, - { - "name": "guarantee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K0UmQm" - }, - { - "name": "recommend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F8PrEi" - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ig0fT0" - }, - { - "name": "fertile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXMvV7" - } - ], - [ - { - "name": "automobile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsFZJM" - }, - { - "name": "notion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qtBycP" - }, - { - "name": "diversity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ep0EEl" - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6d0oy" - }, - { - "name": "tractor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4VkL7z" - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BgMp6r" - }, - { - "name": "grace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Jxwh5u" - }, - { - "name": "advertisement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F_QQV8" - }, - { - "name": "ripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z5FI3r" - }, - { - "name": "attribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "psxC5G" - }, - { - "name": "mechanism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vIGSl" - }, - { - "name": "detection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1NOKn0" - }, - { - "name": "triumph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZKC_8" - }, - { - "name": "vice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fwt8kH" - }, - { - "name": "horror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BcuPn" - }, - { - "name": "poison", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1OlU0" - }, - { - "name": "thoughtful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1k5x00" - }, - { - "name": "gram", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Stihh" - }, - { - "name": "empower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vV3lza" - }, - { - "name": "riot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xXCEOi" - }, - { - "name": "arouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZJsarR" - }, - { - "name": "nest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCU9_s" - }, - { - "name": "tour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mitj_G" - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tt2L68" - }, - { - "name": "boring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XeTMI2" - }, - { - "name": "classic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-AFTi" - }, - { - "name": "ownership", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wqfh3T" - }, - { - "name": "metric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ceY9DR" - }, - { - "name": "absolute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_XdT9_" - }, - { - "name": "ash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d75lj2" - } - ], - [ - { - "name": "describe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vQbCLp" - }, - { - "name": "suck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGhB95" - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F21gHE" - }, - { - "name": "rub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uvntqV" - }, - { - "name": "presently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6ZAJhc" - }, - { - "name": "wealthy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cE9Ucl" - }, - { - "name": "rug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6z8wnu" - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kQDV8v" - }, - { - "name": "dusk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qLv_9o" - }, - { - "name": "administration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgXb-F" - }, - { - "name": "occasional", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hxNM0k" - }, - { - "name": "boast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F7ZFHm" - }, - { - "name": "operator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o6OqSy" - }, - { - "name": "debate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bz8qYt" - }, - { - "name": "spacecraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNFbyH" - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gipRxD" - }, - { - "name": "segment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiOaGz" - }, - { - "name": "stripe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tww3rz" - }, - { - "name": "jet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QxA-gx" - }, - { - "name": "helpful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RWArTB" - }, - { - "name": "statistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XtiMO6" - }, - { - "name": "attractive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QwDB6j" - }, - { - "name": "superb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sl4iu7" - }, - { - "name": "mold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r2qTmo" - }, - { - "name": "engineering", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ubyK-" - }, - { - "name": "significant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crDQIN" - }, - { - "name": "bold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CEAbu6" - }, - { - "name": "bleed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ThJIP7" - }, - { - "name": "delicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "up1AGj" - }, - { - "name": "catalogue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cfCCNS" - } - ], - [ - { - "name": "whatever", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDzWrm" - }, - { - "name": "decrease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8jIBQ" - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z4ifpR" - }, - { - "name": "museum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yzQxTQ" - }, - { - "name": "ignorance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CpXA4" - }, - { - "name": "senate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hr0q0L" - }, - { - "name": "trumpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u8p6oG" - }, - { - "name": "bolt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSq3rA" - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djlKwe" - }, - { - "name": "import", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Zte5_" - }, - { - "name": "occupy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmkZhW" - }, - { - "name": "submit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qftnM8" - }, - { - "name": "mood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1bTHkM" - }, - { - "name": "boom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hkOvKf" - }, - { - "name": "absence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f96lrs" - }, - { - "name": "attract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gnS9De" - }, - { - "name": "edition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tNNyS" - }, - { - "name": "simplicity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wW8-8X" - }, - { - "name": "cautious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D7lqaZ" - }, - { - "name": "disappear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g6Uwax" - }, - { - "name": "summit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a0Eckx" - }, - { - "name": "recession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ee3K_6" - }, - { - "name": "conclusion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yCpYZG" - }, - { - "name": "typist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EWd9Pn" - }, - { - "name": "durable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dSBp-g" - }, - { - "name": "negative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QDfxVA" - }, - { - "name": "impose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1w0uVc" - }, - { - "name": "ally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "joEFUR" - }, - { - "name": "statement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3dx8L" - }, - { - "name": "hence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39STLJ" - } - ], - [ - { - "name": "memorial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxDwFm" - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rYqESH" - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4OdWQW" - }, - { - "name": "pinch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fAbTI-" - }, - { - "name": "delivery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QybJ5E" - }, - { - "name": "rack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfRC6W" - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hSFHuc" - }, - { - "name": "conquer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vur3kH" - }, - { - "name": "learned", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUaQfT" - }, - { - "name": "substance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AehFEK" - }, - { - "name": "frown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KTE0D5" - }, - { - "name": "bond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vARY0E" - }, - { - "name": "target", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tJDn_M" - }, - { - "name": "wax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ynKRTf" - }, - { - "name": "grind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hLOTc6" - }, - { - "name": "urban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_yQK_i" - }, - { - "name": "furthermore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uzUQMk" - }, - { - "name": "guidance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZZtTmR" - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4Fwfi" - }, - { - "name": "flame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DhSSSB" - }, - { - "name": "container", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-kig-" - }, - { - "name": "leader", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ljlR-s" - }, - { - "name": "delicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y7DcM-" - }, - { - "name": "discard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2QK2i4" - }, - { - "name": "fancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K4JFxY" - }, - { - "name": "rebel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V6xkU1" - }, - { - "name": "bounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sLz98M" - }, - { - "name": "usage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w5vKrW" - }, - { - "name": "tissue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8UCIki" - }, - { - "name": "experimental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vTPAkA" - } - ], - [ - { - "name": "loosen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "67y66h" - }, - { - "name": "rent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3A0GUA" - }, - { - "name": "nearby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DeIkus" - }, - { - "name": "carpenter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XASr0R" - }, - { - "name": "cart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0CoMl" - }, - { - "name": "modest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jNq6QQ" - }, - { - "name": "cast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O-fXGu" - }, - { - "name": "anxious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nOSHb1" - }, - { - "name": "hatred", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cZZU9Z" - }, - { - "name": "crush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i5qwcW" - }, - { - "name": "largely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VzcnS7" - }, - { - "name": "slice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zOCXXS" - }, - { - "name": "frost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L1mrm5" - }, - { - "name": "electron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tAREaK" - }, - { - "name": "incline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tff-R" - }, - { - "name": "truly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "12xC_l" - }, - { - "name": "cash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0tGFyK" - }, - { - "name": "counsel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5SVeW5" - }, - { - "name": "item", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82wA02" - }, - { - "name": "gene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uBDFWx" - }, - { - "name": "liver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "usZrsm" - }, - { - "name": "suicide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5vhQ_u" - }, - { - "name": "violet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aGqyTk" - }, - { - "name": "hollow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I0FKs-" - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dHThTM" - }, - { - "name": "saving", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A0cBHd" - }, - { - "name": "rely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4tU3ac" - }, - { - "name": "hospitalize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIn_zS" - }, - { - "name": "slide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cINVvB" - }, - { - "name": "utilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TeOaOu" - } - ], - [ - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Jxnbm" - }, - { - "name": "prevail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-D1ip9" - }, - { - "name": "waist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_QNWb" - }, - { - "name": "excessive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YZceEk" - }, - { - "name": "flesh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0g131w" - }, - { - "name": "jungle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zvIPta" - }, - { - "name": "portion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60SrwO" - }, - { - "name": "settle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqZll" - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux9Shi" - }, - { - "name": "harsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NuolZ" - }, - { - "name": "connexion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GNpxnm" - }, - { - "name": "vehicle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A1Fpnm" - }, - { - "name": "scrape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yD7u3x" - }, - { - "name": "hardship", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jrJfmI" - }, - { - "name": "confuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5lWlTX" - }, - { - "name": "cushion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JXTqP3" - }, - { - "name": "scold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G-jlaF" - }, - { - "name": "glorious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FNNT1D" - }, - { - "name": "civilize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeQOo" - }, - { - "name": "physician", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG8TmC" - }, - { - "name": "architecture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HWD_IX" - }, - { - "name": "stress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "je7dx-" - }, - { - "name": "grip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQMrqh" - }, - { - "name": "explore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yXXi1T" - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sj1fJs" - }, - { - "name": "electricity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pfrIau" - }, - { - "name": "climate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6VLmaP" - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8yF_HW" - }, - { - "name": "bore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b5ddXl" - }, - { - "name": "crust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-iED6k" - } - ], - [ - { - "name": "disorder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "350IfC" - }, - { - "name": "criticize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "44Zw0_" - }, - { - "name": "organization", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "69VhLM" - }, - { - "name": "rage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uxj2-e" - }, - { - "name": "width", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wvrwUN" - }, - { - "name": "dairy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cD1RdQ" - }, - { - "name": "board", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jaVrX-" - }, - { - "name": "economic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aD5mFc" - }, - { - "name": "stuff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0V_t1D" - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZrcyKI" - }, - { - "name": "widow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dGXgHn" - }, - { - "name": "distinction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cVDYlc" - }, - { - "name": "mature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rthm-T" - }, - { - "name": "navy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s3XGOZ" - }, - { - "name": "fee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RMUyef" - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0yhx_H" - }, - { - "name": "influence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ix8qIs" - }, - { - "name": "whip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ll8VgG" - }, - { - "name": "protocol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Op0Hwk" - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oWPcCn" - }, - { - "name": "provoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZhn3" - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJiG6i" - }, - { - "name": "talent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXdDYb" - }, - { - "name": "percentage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l6jHDy" - }, - { - "name": "negotiate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFaob-" - }, - { - "name": "strain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "56zraU" - }, - { - "name": "hunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jbpSgM" - }, - { - "name": "violin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ei73g0" - }, - { - "name": "remonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tlPDIp" - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NBSYM1" - } - ], - [ - { - "name": "visible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHU6AU" - }, - { - "name": "crisis", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E0gRDc" - }, - { - "name": "rail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NaSndH" - }, - { - "name": "survival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW5XB1" - }, - { - "name": "germ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oUku7p" - }, - { - "name": "inner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YMihBc" - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fqFEZm" - }, - { - "name": "keen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "70RUTA" - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yWPn8F" - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGC36L" - }, - { - "name": "transfer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8tSltF" - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V9yCTq" - }, - { - "name": "veteran", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xBjCmG" - }, - { - "name": "indifferent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jSmVI6" - }, - { - "name": "outside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BwP0_Z" - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztu2yG" - }, - { - "name": "affection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MnnUiB" - }, - { - "name": "eagle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71B54D" - }, - { - "name": "cruise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXlmFk" - }, - { - "name": "elementary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1eBbqT" - }, - { - "name": "topic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kXx0po" - }, - { - "name": "solemn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y24ijH" - }, - { - "name": "perceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ac8jNM" - }, - { - "name": "omit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Co1ofe" - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rdo0Kg" - }, - { - "name": "option", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZeBmYy" - }, - { - "name": "erroneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WYb9oE" - }, - { - "name": "raid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNCPGU" - }, - { - "name": "politics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vWxlRK" - }, - { - "name": "acute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4E_6vp" - } - ], - [ - { - "name": "limitation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HONnVh" - }, - { - "name": "sponsor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xJIrqI" - }, - { - "name": "kindergarten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kYmedV" - }, - { - "name": "unexpected", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k7_R-Z" - }, - { - "name": "crucial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muuJ1Y" - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnlAq_" - }, - { - "name": "faith", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUNmfH" - }, - { - "name": "generator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqpq33" - }, - { - "name": "insert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L5ggTq" - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGHMhL" - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KLfmB" - }, - { - "name": "microscope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aHjl45" - }, - { - "name": "necessarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lklLZE" - }, - { - "name": "highlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YiU8MN" - }, - { - "name": "candidate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6E9EM0" - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5irZCG" - }, - { - "name": "parallel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzF4Hv" - }, - { - "name": "reject", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PM7q3M" - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o94SCV" - }, - { - "name": "cashier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zUjKqU" - }, - { - "name": "sheer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ItSENB" - }, - { - "name": "miracle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BEuoCB" - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MrvGwX" - }, - { - "name": "original", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BLO8fp" - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fv98LB" - }, - { - "name": "handful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Gciaw" - }, - { - "name": "assignment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tr8sUd" - }, - { - "name": "nylon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ECJhee" - }, - { - "name": "yawn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WtMyMO" - }, - { - "name": "electric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IdCCL5" - } - ], - [ - { - "name": "terminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3TBfqO" - }, - { - "name": "kingdom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a3lySR" - }, - { - "name": "differ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3zTGTv" - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zWxoc6" - }, - { - "name": "latter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AMHfmw" - }, - { - "name": "depression", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vZgAMw" - }, - { - "name": "reduction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XBXSYB" - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYZBwu" - }, - { - "name": "equivalent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-tKQyn" - }, - { - "name": "gaol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xPGbkh" - }, - { - "name": "conversely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iZnyNI" - }, - { - "name": "sauce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7W1bFi" - }, - { - "name": "ban", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oFzppW" - }, - { - "name": "fascinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_-TGJ" - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TlatkD" - }, - { - "name": "diplomatic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ls7IEE" - }, - { - "name": "bat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CvjW9e" - }, - { - "name": "neighbourhood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBVIXJ" - }, - { - "name": "draft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OI4gZX" - }, - { - "name": "complex", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwM-Ap" - }, - { - "name": "rank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z_NdMP" - }, - { - "name": "assumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "umk90n" - }, - { - "name": "pension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bhisMr" - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BQY9FV" - }, - { - "name": "fluid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yfiCUL" - }, - { - "name": "bay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "heQUOP" - }, - { - "name": "outlet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1TUNIz" - }, - { - "name": "neglect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYTP9i" - }, - { - "name": "addition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NKVAPo" - }, - { - "name": "gang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66Bp-1" - } - ], - [ - { - "name": "shrink", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mFhn99" - }, - { - "name": "ancestor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKz2-X" - }, - { - "name": "textile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zb4zrB" - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WoSU8c" - }, - { - "name": "panic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZB7yG-" - }, - { - "name": "extend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4eBj56" - }, - { - "name": "fold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tVJjg_" - }, - { - "name": "plastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i_GXRX" - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHe8n0" - }, - { - "name": "chemical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DZ9EV" - }, - { - "name": "interpretation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wMzR3t" - }, - { - "name": "ax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AWuqLw" - }, - { - "name": "intermediate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KmeRq3" - }, - { - "name": "folk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUhLgO" - }, - { - "name": "consideration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PRxN4W" - }, - { - "name": "competitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AcwCB4" - }, - { - "name": "enquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0dYQ3G" - }, - { - "name": "applause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQsihN" - }, - { - "name": "frank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W3ncEx" - }, - { - "name": "abuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IZuTJ" - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKZQGy" - }, - { - "name": "scheme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MEIskd" - }, - { - "name": "affect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3RZlmm" - }, - { - "name": "deaf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7IzliP" - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j7JnG9" - }, - { - "name": "consequently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TAPC_9" - }, - { - "name": "virus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVQAzh" - }, - { - "name": "drain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X7rtLl" - }, - { - "name": "isolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fyTj3I" - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GEOUA2" - } - ], - [ - { - "name": "amuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0Np8XT" - }, - { - "name": "inward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IBGpC3" - }, - { - "name": "responsibility", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GiVTg1" - }, - { - "name": "enquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sRK7e0" - }, - { - "name": "civil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VVmwy2" - }, - { - "name": "popularity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qmBnA-" - }, - { - "name": "subsequent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q-oJ1l" - }, - { - "name": "indicate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6iFi0" - }, - { - "name": "scarcely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGfMoz" - }, - { - "name": "panel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a-b6Hc" - }, - { - "name": "outstanding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TmFRbM" - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HFThRX" - }, - { - "name": "sew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EVbLDN" - }, - { - "name": "oval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yONOb9" - }, - { - "name": "column", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hjFn5-" - }, - { - "name": "procedure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BhzFw_" - }, - { - "name": "sample", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6uOiIS" - }, - { - "name": "integrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zd4p9O" - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "REHzoj" - }, - { - "name": "applicant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dZYH-r" - }, - { - "name": "tropical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L6CfJA" - }, - { - "name": "partner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wlU5Aw" - }, - { - "name": "plunge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uS9qLf" - }, - { - "name": "diagnose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7firVS" - }, - { - "name": "somewhat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaAqwE" - }, - { - "name": "earnest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QcxERQ" - }, - { - "name": "spider", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iOrsB-" - }, - { - "name": "interview", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AGm40H" - }, - { - "name": "essential", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vNJHWd" - }, - { - "name": "clarify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JwIBcJ" - } - ], - [ - { - "name": "furnace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXq2UD" - }, - { - "name": "ditch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RZZFpb" - }, - { - "name": "deck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T3cZcN" - }, - { - "name": "scare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MYO6pg" - }, - { - "name": "thunder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i4fxau" - }, - { - "name": "observe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tvX1Ty" - }, - { - "name": "humorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IOeKto" - }, - { - "name": "furnish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jL0kUa" - }, - { - "name": "bet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9z4aph" - }, - { - "name": "contact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IF77R1" - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zZKOvJ" - }, - { - "name": "discharge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O7wHka" - }, - { - "name": "exclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cbToQf" - }, - { - "name": "scary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9QWEP" - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7e4Cue" - }, - { - "name": "utmost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8wwJhV" - }, - { - "name": "image", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nmy1PC" - }, - { - "name": "consultancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qf10G-" - }, - { - "name": "ribbon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KX6g5Y" - }, - { - "name": "garbage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MRq9fX" - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XwoCwk" - }, - { - "name": "mainland", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGvQc6" - }, - { - "name": "homogeneous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOa56E" - }, - { - "name": "anxiety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oqWP_P" - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRohc4" - }, - { - "name": "adjust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OBI2EI" - }, - { - "name": "popularize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mF5Rox" - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BkTmWc" - }, - { - "name": "vigorous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Km5JUL" - }, - { - "name": "debt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u0MKfE" - } - ], - [ - { - "name": "refrigerator", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hteJcm" - }, - { - "name": "necessity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oos5TT" - }, - { - "name": "fog", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wxgKjL" - }, - { - "name": "frame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qyCq3a" - }, - { - "name": "lucky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUmz95" - }, - { - "name": "origin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S_Cq7c" - }, - { - "name": "industrialize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D2mIkx" - }, - { - "name": "clash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6v5Izm" - }, - { - "name": "compel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hn1fl8" - }, - { - "name": "capable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ehr1us" - }, - { - "name": "depress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zNPaRQ" - }, - { - "name": "parade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Uqg8SD" - }, - { - "name": "burden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxpYkw" - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKOJhE" - }, - { - "name": "lemon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PgWFXj" - }, - { - "name": "personality", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WZYiEf" - }, - { - "name": "plot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Axg4Nt" - }, - { - "name": "sanction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M8i4Qp" - }, - { - "name": "rate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYoEZ9" - }, - { - "name": "alert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ele-tr" - }, - { - "name": "await", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xbROux" - }, - { - "name": "sin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ChMF4n" - }, - { - "name": "client", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5cLY3n" - }, - { - "name": "prosperity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XgQL8q" - }, - { - "name": "divide", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WnzMGL" - }, - { - "name": "contrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AyECUO" - }, - { - "name": "lump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCFq4r" - }, - { - "name": "digital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nI4cx3" - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "buuBq0" - }, - { - "name": "historic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4YOoAX" - } - ], - [ - { - "name": "oven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TaCwN1" - }, - { - "name": "bound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a4YMIc" - }, - { - "name": "counter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z5n6LR" - }, - { - "name": "rhythm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HQG0OM" - }, - { - "name": "stroke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z_OfST" - }, - { - "name": "breed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6eaS6g" - }, - { - "name": "management", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2lVQrc" - }, - { - "name": "publish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7KjiKs" - }, - { - "name": "realm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlwP3h" - }, - { - "name": "correspondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lL9Eh2" - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jxSYDH" - }, - { - "name": "renew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wt1TVw" - }, - { - "name": "bid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Sv_KB3" - }, - { - "name": "prompt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2YOnW" - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZTrKZx" - }, - { - "name": "comprehensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PwAGm2" - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_7uHK" - }, - { - "name": "withdraw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_26NqJ" - }, - { - "name": "assign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VNHr04" - }, - { - "name": "elaborate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0DQIq8" - }, - { - "name": "feather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nNn_e6" - }, - { - "name": "corridor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wdayik" - }, - { - "name": "decade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BXZAso" - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2uFdVZ" - }, - { - "name": "select", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FsVtJL" - }, - { - "name": "fulfill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGt08O" - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X9Dhge" - }, - { - "name": "congress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wL6f_" - }, - { - "name": "advanced", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNYyyY" - }, - { - "name": "mechanical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TodES6" - } - ], - [ - { - "name": "recommendation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9YXqo" - }, - { - "name": "welfare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JqOwj" - }, - { - "name": "flourish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j9KIn3" - }, - { - "name": "output", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14XFN-" - }, - { - "name": "fatigue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "65asKW" - }, - { - "name": "striking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_ZdRVU" - }, - { - "name": "vessel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRcNAQ" - }, - { - "name": "majority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Tsx59" - }, - { - "name": "drag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_rqROE" - }, - { - "name": "crown", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rP7AGq" - }, - { - "name": "likely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WU7loH" - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZOt0rJ" - }, - { - "name": "gymnasium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARiljk" - }, - { - "name": "issue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ftWJZ9" - }, - { - "name": "vain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N8ISND" - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2XxuxJ" - }, - { - "name": "index", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bMj6pn" - }, - { - "name": "fry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fXRB8z" - }, - { - "name": "youngster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0_ql-4" - }, - { - "name": "odd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udQbY5" - }, - { - "name": "lung", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1OUss9" - }, - { - "name": "conservation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4CzqvV" - }, - { - "name": "distraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gJZYKA" - }, - { - "name": "supplement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3f1Fqh" - }, - { - "name": "contrast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MCQP1v" - }, - { - "name": "paragraph", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f39EK3" - }, - { - "name": "judgement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KHerql" - }, - { - "name": "proportion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2yq0P0" - }, - { - "name": "widen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvbP3L" - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5oKFPz" - } - ], - [ - { - "name": "occurrence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_qhFyq" - }, - { - "name": "inflation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r8Fbs2" - }, - { - "name": "thinking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efCt_9" - }, - { - "name": "cycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yJyiP6" - }, - { - "name": "disposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fNgbSx" - }, - { - "name": "settlement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "71y2l4" - }, - { - "name": "delegate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ObNFvq" - }, - { - "name": "literature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ET_-4" - }, - { - "name": "sphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mbd5ZT" - }, - { - "name": "inquiry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4GXwg" - }, - { - "name": "prejudice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXL3y1" - }, - { - "name": "dissolve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sOGg-k" - }, - { - "name": "digest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSWybW" - }, - { - "name": "angle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A48cEi" - }, - { - "name": "immigrant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DTFs9s" - }, - { - "name": "tradition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TVVdpn" - }, - { - "name": "ability", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0vKfb" - }, - { - "name": "urgent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvGEKm" - }, - { - "name": "belief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mOJfZ6" - }, - { - "name": "bundle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_m9l9_" - }, - { - "name": "suggestion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v7KBUU" - }, - { - "name": "systematic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b38JA6" - }, - { - "name": "cupboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XhE35N" - }, - { - "name": "generally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "555HJC" - }, - { - "name": "bacon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3Jq_7Q" - }, - { - "name": "likewise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAESMW" - }, - { - "name": "slender", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_dxNHX" - }, - { - "name": "troublesome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0y1U3" - }, - { - "name": "instruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8xgGXZ" - }, - { - "name": "oral", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ekT0-x" - } - ], - [ - { - "name": "married", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJFLC5" - }, - { - "name": "transaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fttlkW" - }, - { - "name": "conscious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SlN8bu" - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8bH-Ls" - }, - { - "name": "auto", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KUlGS2" - }, - { - "name": "sigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nfe5Xa" - }, - { - "name": "constant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_zOs2V" - }, - { - "name": "pants", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-89hR" - }, - { - "name": "mislead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EXITz" - }, - { - "name": "split", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SmPZBI" - }, - { - "name": "orchestra", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uwrQ1x" - }, - { - "name": "publication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6WrY6I" - }, - { - "name": "sufficient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lGyqZW" - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-xNxta" - }, - { - "name": "antique", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u367wE" - }, - { - "name": "sow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9TtJ8T" - }, - { - "name": "widespread", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MpYHhj" - }, - { - "name": "petroleum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKMKDZ" - }, - { - "name": "communication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TNOXh2" - }, - { - "name": "directly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NRA0OG" - }, - { - "name": "tolerance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-sRH8-" - }, - { - "name": "kneel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Id2Lk" - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nz0fa" - }, - { - "name": "fasten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ztm_N2" - }, - { - "name": "contest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RLbtog" - }, - { - "name": "author", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwtHHr" - }, - { - "name": "dirt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XN0WtY" - }, - { - "name": "astrophysics", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_6BB7U" - }, - { - "name": "greenhouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4F5NLv" - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENYZoD" - } - ], - [ - { - "name": "plus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fprc2r" - }, - { - "name": "establish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPGkVo" - }, - { - "name": "expansion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tvtwfw" - }, - { - "name": "relevant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "apGhbR" - }, - { - "name": "entry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LR9Yfs" - }, - { - "name": "license", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Tex6y" - }, - { - "name": "synthetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3iDyD" - }, - { - "name": "headquarters", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mMZ9XK" - }, - { - "name": "expand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfLlsF" - }, - { - "name": "gaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OIwAXu" - }, - { - "name": "essay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eAg04C" - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kt2c5R" - }, - { - "name": "plug", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S81uT_" - }, - { - "name": "bunch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l-wXyQ" - }, - { - "name": "thermometer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-Yq6Z" - }, - { - "name": "tense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nBwUud" - }, - { - "name": "postpone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7STXNg" - }, - { - "name": "bride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tclMmO" - }, - { - "name": "favourable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Dgb6T1" - }, - { - "name": "hammer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "autAtz" - }, - { - "name": "candy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FpISJY" - }, - { - "name": "seal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zd6xB1" - }, - { - "name": "mental", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ja_CY7" - }, - { - "name": "decent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7x6p9" - }, - { - "name": "storage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oousku" - }, - { - "name": "investigate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEXkQg" - }, - { - "name": "racial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rr9cYx" - }, - { - "name": "switch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C_znlv" - }, - { - "name": "niece", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj62rf" - }, - { - "name": "considerable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q7iqaC" - } - ], - [ - { - "name": "auxiliary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zDX5Df" - }, - { - "name": "heal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyfG8c" - }, - { - "name": "reserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ahBwZ9" - }, - { - "name": "somehow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "INgtuw" - }, - { - "name": "dive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8OPpdK" - }, - { - "name": "brick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h7-uv1" - }, - { - "name": "sympathy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zmBtVs" - }, - { - "name": "heap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EzSkrE" - }, - { - "name": "consumer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dFxs-O" - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e-KavK" - }, - { - "name": "cripple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wOlXD_" - }, - { - "name": "highly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8c5DDe" - }, - { - "name": "brief", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GtSxgh" - }, - { - "name": "keyboard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d-oqU8" - }, - { - "name": "initiative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FHISJR" - }, - { - "name": "recover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0b9zR1" - }, - { - "name": "determine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t_8MJO" - }, - { - "name": "nature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zhhuz3" - }, - { - "name": "social", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OloU4E" - }, - { - "name": "medication", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5mvBYP" - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxU2ku" - }, - { - "name": "intelligent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1HOSrJ" - }, - { - "name": "whilst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KaH6EA" - }, - { - "name": "clerk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IffvVC" - }, - { - "name": "lobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LbAIRi" - }, - { - "name": "acknowledge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mn7v97" - }, - { - "name": "equip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gxfg2" - }, - { - "name": "radiation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_3H0Nr" - }, - { - "name": "Christian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WX0BYT" - }, - { - "name": "pulse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GwniyK" - } - ], - [ - { - "name": "luxury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IJuXtD" - }, - { - "name": "spiritual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7qqDtw" - }, - { - "name": "worthwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjnuMy" - }, - { - "name": "mould", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xAJrJW" - }, - { - "name": "increasingly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NxecnN" - }, - { - "name": "elbow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qJPGrI" - }, - { - "name": "salad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z958rU" - }, - { - "name": "strategic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlgmyJ" - }, - { - "name": "vary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OczJ8g" - }, - { - "name": "readily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bS9KPn" - }, - { - "name": "stoop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VlLcM9" - }, - { - "name": "upper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Arg50s" - }, - { - "name": "rocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c4S1TR" - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qI-Ocs" - }, - { - "name": "county", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o_Xm85" - }, - { - "name": "respondent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1ugBdk" - }, - { - "name": "episode", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hlWWvy" - }, - { - "name": "convenience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1s4ATH" - }, - { - "name": "determination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wGBufb" - }, - { - "name": "discipline", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1j5ISW" - }, - { - "name": "behalf", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryAu4Z" - }, - { - "name": "evidently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ZInEv" - }, - { - "name": "objective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fx_FUN" - }, - { - "name": "injure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqBafC" - }, - { - "name": "victimize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M1jEaV" - }, - { - "name": "exert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqAjbF" - }, - { - "name": "province", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DGQ5Cj" - }, - { - "name": "scandal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pFaZnq" - }, - { - "name": "horrible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "79qYuX" - }, - { - "name": "estimate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vf-7v0" - } - ], - [ - { - "name": "strengthen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LyDUAg" - }, - { - "name": "drip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tyNC7d" - }, - { - "name": "injury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3sS00g" - }, - { - "name": "exhibit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1IMxUL" - }, - { - "name": "brand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BZocTh" - }, - { - "name": "mushroom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0mkZJc" - }, - { - "name": "alcohol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8d6Xoy" - }, - { - "name": "choke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KFqEwI" - }, - { - "name": "proposal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NNkQc7" - }, - { - "name": "inevitable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YyRjbj" - }, - { - "name": "deny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-fZtk" - }, - { - "name": "miserable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "crVZxz" - }, - { - "name": "recreation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PfDVqZ" - }, - { - "name": "subtract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ENV6yl" - }, - { - "name": "allowance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XUYbnI" - }, - { - "name": "portable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZjCuyq" - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gzxgHs" - }, - { - "name": "glory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5UMuO" - }, - { - "name": "secondary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HSiLU2" - }, - { - "name": "mission", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zaslRv" - }, - { - "name": "attorney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gph_4J" - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XDjN2L" - }, - { - "name": "adopt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JPejuF" - }, - { - "name": "oppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBGt9" - }, - { - "name": "singular", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TJEImm" - }, - { - "name": "device", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "82e65a" - }, - { - "name": "mainframe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f5pJF1" - }, - { - "name": "motor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uUnH5y" - }, - { - "name": "minus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WempL-" - }, - { - "name": "conservative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YlasGt" - } - ], - [ - { - "name": "access", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fsDK4n" - }, - { - "name": "conference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cqFL_t" - }, - { - "name": "activity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uGROIa" - }, - { - "name": "primitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lcoDls" - }, - { - "name": "advisable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yvYX8b" - }, - { - "name": "dormitory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ebdHBH" - }, - { - "name": "overcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XS9-K8" - }, - { - "name": "cooperate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IRInU" - }, - { - "name": "cabin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "87bDU0" - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z9eH08" - }, - { - "name": "current", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QhB4pA" - }, - { - "name": "heel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNGSmB" - }, - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KP9uzb" - }, - { - "name": "disturb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xpENq3" - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUwtYV" - }, - { - "name": "persist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfYSXA" - }, - { - "name": "audio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPoPtd" - }, - { - "name": "civilian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "22PyWw" - }, - { - "name": "pump", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I-n_SJ" - }, - { - "name": "pierce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sq37pi" - }, - { - "name": "teenager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EiAdwj" - }, - { - "name": "apart", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xeEw09" - }, - { - "name": "calendar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g01aS" - }, - { - "name": "offensive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s9aWYl" - }, - { - "name": "cartoon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3stBma" - }, - { - "name": "speculate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5imc2i" - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ki0ddi" - }, - { - "name": "amid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3b55Lx" - }, - { - "name": "beloved", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUg6Bd" - }, - { - "name": "single", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aEmZX2" - } - ], - [ - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1fjut" - }, - { - "name": "cement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6rR-6J" - }, - { - "name": "subway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ctYP5r" - }, - { - "name": "gallon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cwa8h5" - }, - { - "name": "acquaint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Kji9bl" - }, - { - "name": "appoint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MSNvvV" - }, - { - "name": "elastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BtfkIH" - }, - { - "name": "assist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xa8WFA" - }, - { - "name": "vast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "udOX1S" - }, - { - "name": "intervene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCaeq1" - }, - { - "name": "undergraduate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRCsXM" - }, - { - "name": "symbol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WaUbu0" - }, - { - "name": "commercial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jqVsZo" - }, - { - "name": "joint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KliqB" - }, - { - "name": "reasonable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XG20Cr" - }, - { - "name": "available", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1SQ5DT" - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5MwP-2" - }, - { - "name": "advocate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AVqItf" - }, - { - "name": "frequency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "alR39P" - }, - { - "name": "horizontal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WcEX0u" - }, - { - "name": "luggage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Ftcz0" - }, - { - "name": "lick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qKLkpk" - }, - { - "name": "missile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TiHSym" - }, - { - "name": "dynamic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "39q-Jv" - }, - { - "name": "satisfactory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bw-on_" - }, - { - "name": "military", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pd5aQp" - }, - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCS3rI" - }, - { - "name": "generate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VfXQRH" - }, - { - "name": "unusual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BO4tUH" - }, - { - "name": "sector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_p0ull" - } - ], - [ - { - "name": "passion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T5C8vv" - }, - { - "name": "extreme", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KzS2TI" - }, - { - "name": "coil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H5TRT" - }, - { - "name": "ensure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0X2WJP" - }, - { - "name": "coordinate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQ6jX_" - }, - { - "name": "organism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iQSh9i" - }, - { - "name": "athlete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQk2xZ" - }, - { - "name": "epidemic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XKyK0y" - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fx0K4X" - }, - { - "name": "upright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YUXvz" - }, - { - "name": "remarkable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SHj0oJ" - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EeenxP" - }, - { - "name": "tube", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LsiJVS" - }, - { - "name": "naval", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_4k4sH" - }, - { - "name": "failure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pBBTvH" - }, - { - "name": "accountancy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXMek5" - }, - { - "name": "forge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XXIvL0" - }, - { - "name": "carpet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WSxFB2" - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nsp706" - }, - { - "name": "hint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJ98-r" - }, - { - "name": "knot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nhChWN" - }, - { - "name": "demonstrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GdjnmU" - }, - { - "name": "region", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UHhA3n" - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "08-wmj" - }, - { - "name": "yearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "60AZqh" - }, - { - "name": "deceive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDcBKq" - }, - { - "name": "saucer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aOAwWN" - }, - { - "name": "hire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P3cBh0" - }, - { - "name": "kid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Fw-VG" - }, - { - "name": "donkey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bfHXu_" - } - ], - [ - { - "name": "destination", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kR27Gh" - }, - { - "name": "vertical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_i7hH9" - }, - { - "name": "learning", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CfHoN8" - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tgld2z" - }, - { - "name": "misconception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mgqNIE" - }, - { - "name": "damp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i7CRjl" - }, - { - "name": "vivid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gx_Ji0" - }, - { - "name": "honey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uKfeEi" - }, - { - "name": "screw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_GakGW" - }, - { - "name": "gap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dD36R2" - }, - { - "name": "missing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3L_BOL" - }, - { - "name": "emphasize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kid8Xt" - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zsm0WY" - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ogew0s" - }, - { - "name": "socialist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mhC7Hu" - }, - { - "name": "gradual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zzN0r-" - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VLB38L" - }, - { - "name": "ore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tDFG81" - }, - { - "name": "slight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-cs9p" - }, - { - "name": "previous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-Btgz" - }, - { - "name": "transmit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FewDeh" - }, - { - "name": "socialism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kp08Yi" - }, - { - "name": "consumption", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0eeixs" - }, - { - "name": "argue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7YeT4w" - }, - { - "name": "technology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yj-yW6" - }, - { - "name": "weaken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vD5jFb" - }, - { - "name": "voltage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WUpCJB" - }, - { - "name": "damn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vUqHbl" - }, - { - "name": "superior", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "riIP6Q" - }, - { - "name": "location", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3rPa8" - } - ], - [ - { - "name": "compensation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT2NNJ" - }, - { - "name": "bankrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Rp1HG" - }, - { - "name": "punctual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYp-wd" - }, - { - "name": "advertise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kGYV8" - }, - { - "name": "compromise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yFkPD_" - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2--vve" - }, - { - "name": "software", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oIdkTZ" - }, - { - "name": "seminar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YS83lL" - }, - { - "name": "comparative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7U9at" - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "61ft3u" - }, - { - "name": "fruitful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mPVmQ" - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1PdC5" - }, - { - "name": "dragon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EoBpiI" - }, - { - "name": "hesitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HcC5yD" - }, - { - "name": "beyond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9cqKhX" - }, - { - "name": "hell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YN5Gzg" - }, - { - "name": "feedback", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0fTSy" - }, - { - "name": "hazard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SYg7dU" - }, - { - "name": "justify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6klxrE" - }, - { - "name": "voluntary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kjf-z1" - }, - { - "name": "connection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "suRBJY" - }, - { - "name": "proof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0W-9QJ" - }, - { - "name": "timber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RTz5UR" - }, - { - "name": "roar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_Ix3LW" - }, - { - "name": "presence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DE7CQT" - }, - { - "name": "phase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jIb4O9" - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "izGJFG" - }, - { - "name": "efficiency", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RV8wrd" - }, - { - "name": "overhead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gWaZIM" - }, - { - "name": "contract", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k19sTo" - } - ], - [ - { - "name": "conclude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3vr50e" - }, - { - "name": "comprehension", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iYlbwQ" - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iPDcrU" - }, - { - "name": "leather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z-IJXL" - }, - { - "name": "comb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lAD3Hg" - }, - { - "name": "innovative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qAfpwT" - }, - { - "name": "insight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NL5AyY" - }, - { - "name": "fabric", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0oCnTl" - }, - { - "name": "revolutionary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jDuygX" - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXHlUK" - }, - { - "name": "exact", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IWfXh_" - }, - { - "name": "indoor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myj0Cb" - }, - { - "name": "force", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0Y127" - }, - { - "name": "centigrade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j2jk5w" - }, - { - "name": "sexual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4b-rHw" - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lnUXA" - }, - { - "name": "freight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YIdS9D" - }, - { - "name": "range", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h9CIcl" - }, - { - "name": "distribution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NW5P1P" - }, - { - "name": "tyre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n9O6bo" - }, - { - "name": "derive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IpHbRi" - }, - { - "name": "capacity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WiDbaP" - }, - { - "name": "cope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2375N-" - }, - { - "name": "overseas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n4cVoh" - }, - { - "name": "impress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fA-Ejr" - }, - { - "name": "confess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i0HeCD" - }, - { - "name": "leak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XvkeJJ" - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "si-Pd-" - }, - { - "name": "feature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIblvL" - }, - { - "name": "lean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-s7YuV" - } - ], - [ - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vk2iZS" - }, - { - "name": "recall", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LFSA3T" - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PxP4xX" - }, - { - "name": "waterproof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SyT8eN" - }, - { - "name": "barber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "malSI1" - }, - { - "name": "precise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yDPErR" - }, - { - "name": "sensible", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "doi_pm" - }, - { - "name": "objection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aSLBTc" - }, - { - "name": "dispute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yeqYSc" - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EX8QGW" - }, - { - "name": "observation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TBqq1A" - }, - { - "name": "tremble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5666az" - }, - { - "name": "suspect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-OdWex" - }, - { - "name": "apologize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C6M4lI" - }, - { - "name": "inhabitant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1At73J" - }, - { - "name": "fraction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r-5LDd" - }, - { - "name": "filter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YxkPl" - }, - { - "name": "sunlight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5d0oU" - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SKgBLQ" - }, - { - "name": "emotion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SU72Du" - }, - { - "name": "massive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q4SE0y" - }, - { - "name": "cease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NgpNmM" - }, - { - "name": "assess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dwLW29" - }, - { - "name": "asset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nXq_5m" - }, - { - "name": "owe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRSpNB" - }, - { - "name": "scarce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B0jNat" - }, - { - "name": "minimum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FqGa2Y" - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OCvvly" - }, - { - "name": "mathematical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HEER5B" - }, - { - "name": "apology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xKy_u_" - } - ], - [ - { - "name": "magic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fmSF-G" - }, - { - "name": "argument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JsRQxo" - }, - { - "name": "reveal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hZj9Ly" - }, - { - "name": "data", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S9I8lA" - }, - { - "name": "theoretical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IX9v65" - }, - { - "name": "adequate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikgTO9" - }, - { - "name": "utter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8I0AB3" - }, - { - "name": "onion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z1exHP" - }, - { - "name": "vibrate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hbp-4q" - }, - { - "name": "drum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HHyePL" - }, - { - "name": "sausage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3AeuP8" - }, - { - "name": "hopeful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e2Q5rT" - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aUEqxR" - }, - { - "name": "condense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U4dmbw" - }, - { - "name": "barrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VFVzww" - }, - { - "name": "realistic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s_ahWd" - }, - { - "name": "justice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "coW09d" - }, - { - "name": "create", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PWR2MF" - }, - { - "name": "criminal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVt9dR" - }, - { - "name": "tag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gaBxqw" - }, - { - "name": "notebook", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HJHX1W" - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lHsSHj" - }, - { - "name": "indirect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PZNAsJ" - }, - { - "name": "individual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KgyxZB" - }, - { - "name": "resource", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Oyf9hq" - }, - { - "name": "ugly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iJn4Vi" - }, - { - "name": "nuisance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oHH92x" - }, - { - "name": "tax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CNz0El" - }, - { - "name": "earthquake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FZDPVF" - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wIR_3H" - } - ], - [ - { - "name": "nightmare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rSpiKW" - }, - { - "name": "cord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gqppkL" - }, - { - "name": "ending", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-ZsVCq" - }, - { - "name": "core", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rshEBM" - }, - { - "name": "council", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZysJ1T" - }, - { - "name": "enforce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Z7lu3" - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wbEgg9" - }, - { - "name": "departure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co5sB6" - }, - { - "name": "dash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6vH-m7" - }, - { - "name": "concrete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oTnU-U" - }, - { - "name": "penalty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r4QwkN" - }, - { - "name": "sociology", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILingN" - }, - { - "name": "link", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AsKjkd" - }, - { - "name": "flee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2viDL6" - }, - { - "name": "distinct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qZz3kO" - }, - { - "name": "scale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wqssfH" - }, - { - "name": "recovery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kITotX" - }, - { - "name": "hedge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N9qiug" - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GQf_IZ" - }, - { - "name": "weep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "S3zeTH" - }, - { - "name": "aware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGFX5Q" - }, - { - "name": "drama", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LV-QNW" - }, - { - "name": "security", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jF3qYv" - }, - { - "name": "limp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MqLk7G" - }, - { - "name": "award", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lIknp5" - }, - { - "name": "organize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "obSJMY" - }, - { - "name": "marriage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pCM38-" - }, - { - "name": "stove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z7WQjC" - }, - { - "name": "alarm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9P5mQb" - }, - { - "name": "weed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t8IGyq" - } - ], - [ - { - "name": "continual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znZOF2" - }, - { - "name": "herd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U9m2Uo" - }, - { - "name": "limb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hrUlcy" - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MU1eSm" - }, - { - "name": "motion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MUiRsM" - }, - { - "name": "limited", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k63feg" - }, - { - "name": "idle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ACiFQ3" - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U-kfAq" - }, - { - "name": "arbitrary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rj829H" - }, - { - "name": "fearful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOKJW7" - }, - { - "name": "accent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YGGtXG" - }, - { - "name": "passive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rHLy1H" - }, - { - "name": "fertilizer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VG_7I7" - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XlBReN" - }, - { - "name": "carrier", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nAQEIO" - }, - { - "name": "fragment", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CUrLuN" - }, - { - "name": "corresponding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "na_fA_" - }, - { - "name": "response", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9sHthC" - }, - { - "name": "treaty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eUjkAh" - }, - { - "name": "responsive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qUnhme" - }, - { - "name": "ounce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "peFTgc" - }, - { - "name": "challenge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4g989m" - }, - { - "name": "emit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qv4NQp" - }, - { - "name": "category", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikfcNV" - }, - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N4oy8R" - }, - { - "name": "intend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IEElpS" - }, - { - "name": "snap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T7r4zy" - } - ] - ], - "residueWords": [ - { - "name": "cancel", - "trans": [ - "vt.取消,注销,抵消,偿还,〈数〉约去", - "vi.抵消,中和", - "n.撤销,注销,〈数〉(相)约" - ], - "usphone": "ˈkænsəl", - "ukphone": "ˈkænsl", - "id": "qHl8vi", - "checked": false - }, - { - "name": "numerous", - "trans": [ - "adj.很多的,许多的,数量庞大的数量庞大的,数不清的" - ], - "usphone": "ˈnu:mərəs", - "ukphone": "ˈnju:mərəs", - "id": "pWy2vu", - "checked": false - } - ], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 2607, - "resourceId": "", - "url": "CET4_T.json", - "category": "中国考试", - "tags": [ - "大学英语" - ], - "translateLanguage": "common", - "type": "word", - "language": "en" - }, - { - "id": "article_nce2", - "name": "新概念英语2-课文", - "description": "新概念英语2-课文", - "sort": 0, - "originWords": [], - "words": [], - "chapterWordNumber": 30, - "chapterWords": [], - "residueWords": [], - "chapterIndex": 3, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": false, - "length": 96, - "resourceId": "article_nce2", - "url": "NCE_2.json", - "category": "英语学习", - "tags": [ - "新概念英语" - ], - "translateLanguage": "common", - "type": "article", - "language": "en" - }, - { - "id": "nce-new-2", - "name": "新概念英语(新版)-2", - "description": "新概念英语新版第二册", - "sort": 0, - "originWords": [ - { - "name": "private", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "459-d1" - }, - { - "name": "conversation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HF5ziU" - }, - { - "name": "theatre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7N632v" - }, - { - "name": "seat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XxT7f2" - }, - { - "name": "play", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ezeqff" - }, - { - "name": "loudly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a3vQNq" - }, - { - "name": "angry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myIqOb" - }, - { - "name": "angrily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlqdDv" - }, - { - "name": "attention", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v_jr8C" - }, - { - "name": "bear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DFcXV-" - }, - { - "name": "business", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DcP8Ab" - }, - { - "name": "rudely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "umoFWC" - }, - { - "name": "until", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gcgEy-" - }, - { - "name": "outside", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vWGJ5p" - }, - { - "name": "ring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xcdzgY" - }, - { - "name": "aunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bd5fMP" - }, - { - "name": "repeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UOoW1a" - }, - { - "name": "send", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oRmKGf" - }, - { - "name": "postcard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NbsXrW" - }, - { - "name": "spoil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4z2zeu" - }, - { - "name": "museum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QwdASV" - }, - { - "name": "public", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2tagQ-" - }, - { - "name": "friendly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vFdWe5" - }, - { - "name": "waiter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V-abq-" - }, - { - "name": "lend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3zB9w" - }, - { - "name": "decision", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FUMjO9" - }, - { - "name": "whole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BCg650" - }, - { - "name": "single", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vXDb8M" - }, - { - "name": "exciting", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R3WLAn" - }, - { - "name": "receive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rDK7Hg" - }, - { - "name": "firm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJcA6m" - }, - { - "name": "different", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6A0oI" - }, - { - "name": "centre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KMhbWl" - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PhfBgj" - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mki3zv" - }, - { - "name": "message", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDVTRP" - }, - { - "name": "cover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muxqSV" - }, - { - "name": "distance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HovFu6" - }, - { - "name": "request", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW_ZrY" - }, - { - "name": "spare part", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gkfwy1" - }, - { - "name": "service", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D09Wdi" - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWs_A0" - }, - { - "name": "food", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xso6AK" - }, - { - "name": "pocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L58WjW" - }, - { - "name": "call", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlRHO2" - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "31BY_n" - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vH05lA" - }, - { - "name": "expect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K1mR3a" - }, - { - "name": "valuable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IYE7aK" - }, - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3m1CC" - }, - { - "name": "diamond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VpXmOt" - }, - { - "name": "steal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZEZ3vR" - }, - { - "name": "main", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjYz9G" - }, - { - "name": "airfield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGs2vr" - }, - { - "name": "guard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k6DR9Y" - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK_TJt" - }, - { - "name": "stone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x8E0CK" - }, - { - "name": "sand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJKFfM" - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PmJ0R5" - }, - { - "name": "neat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9fM6fK" - }, - { - "name": "path", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E8olFf" - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B3M21E" - }, - { - "name": "pool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARTVmJ" - }, - { - "name": "welcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cFyE7s" - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDIzf8" - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lOYmD9" - }, - { - "name": "hand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2-e4v" - }, - { - "name": "shout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efVT4N" - }, - { - "name": "refuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JfoMMg" - }, - { - "name": "laugh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qwdzY-" - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYSZOi" - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5pqtq_" - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TnSFlc" - }, - { - "name": "clavichord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AbcNm-" - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UgDNfF" - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BmjvhI" - }, - { - "name": "key", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99YEWq" - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rz5u1I" - }, - { - "name": "shock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RB1hp4" - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pf7btj" - }, - { - "name": "touch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mil2nB" - }, - { - "name": "turn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjNgUP" - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQoc25" - }, - { - "name": "lawyer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EbbqiI" - }, - { - "name": "bank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co49Z9" - }, - { - "name": "salary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ntx7DG" - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imDGYR" - }, - { - "name": "luck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snp8T2" - }, - { - "name": "captain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WG9edH" - }, - { - "name": "sail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oY2RzQ" - }, - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcAJkM" - }, - { - "name": "proud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AV4T_W" - }, - { - "name": "important", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfcW_n" - }, - { - "name": "group", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1C-mXK" - }, - { - "name": "pop singer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5DCih" - }, - { - "name": "club", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pk_ysi" - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux7i4X" - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHdJ0l" - }, - { - "name": "amusing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLtAD2" - }, - { - "name": "experience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyrlH6" - }, - { - "name": "wave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2k6M0g" - }, - { - "name": "lift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wi2hz" - }, - { - "name": "reply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bjGulr" - }, - { - "name": "language", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djXjyy" - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JteZYn" - }, - { - "name": "secretary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1MrRlg" - }, - { - "name": "nervous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QjoJac" - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnEDWi" - }, - { - "name": "weak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A6cLrG" - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I5SQJY" - }, - { - "name": "park", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JR3WYh" - }, - { - "name": "traffic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V2hdxa" - }, - { - "name": "ticket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PbhJFn" - }, - { - "name": "note", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0KdOOB" - }, - { - "name": "area", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RfFVOI" - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSZrx8" - }, - { - "name": "reminder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxu8q3" - }, - { - "name": "fail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Um0Cev" - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zTA0NM" - }, - { - "name": "appear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xO3d0r" - }, - { - "name": "stage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAdgGs" - }, - { - "name": "bright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UAD6Q" - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQs5B9" - }, - { - "name": "sock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQD7WW" - }, - { - "name": "pub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjSaMs" - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MW2P6Y" - }, - { - "name": "bill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A5d6Jy" - }, - { - "name": "hurry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hdXtQ" - }, - { - "name": "ticket office", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8i020u" - }, - { - "name": "pity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsKEJm" - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8fwQ89" - }, - { - "name": "return", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_BV3LB" - }, - { - "name": "sadly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JM-bwM" - }, - { - "name": "catch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IfbXH" - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cN2eZn" - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hfRUk4" - }, - { - "name": "waste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i2XVYE" - }, - { - "name": "realize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Sc6Cp" - }, - { - "name": "mad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBBUtA" - }, - { - "name": "reason", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okQCk9" - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52fj1P" - }, - { - "name": "determined", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlRLxH" - }, - { - "name": "dream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wZCpbM" - }, - { - "name": "age", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sqmI3l" - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QE9MMI" - }, - { - "name": "throw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a54335" - }, - { - "name": "complete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-VwNit" - }, - { - "name": "modern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mfOffL" - }, - { - "name": "strange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iM-FKE" - }, - { - "name": "district", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14NRd9" - }, - { - "name": "manager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lZXboA" - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lrFBng" - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPBrhM" - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VxNlw_" - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RCJU1c" - }, - { - "name": "contain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sDae3s" - }, - { - "name": "honesty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-nv8iV" - }, - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVGL3b" - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcoW9y" - }, - { - "name": "several", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGtrJw" - }, - { - "name": "foreigner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fHANnb" - }, - { - "name": "wonder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "upkn7K" - }, - { - "name": "art", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NmUq_q" - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PcJ7Yi" - }, - { - "name": "paint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz4AjT" - }, - { - "name": "pretend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMTVS3" - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGIMrP" - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4R-hjC" - }, - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QCBjIx" - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6xpkII" - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QO462Y" - }, - { - "name": "whether", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MVS10I" - }, - { - "name": "hang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r1J9GS" - }, - { - "name": "critically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_CfX05" - }, - { - "name": "upside down", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJt2YP" - }, - { - "name": "tent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmoM8W" - }, - { - "name": "field", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6I6q7" - }, - { - "name": "smell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aktyXI" - }, - { - "name": "wonderful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RKlKso" - }, - { - "name": "campfire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myMTT8" - }, - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jvn9GU" - }, - { - "name": "sleeping bag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvuyvt" - }, - { - "name": "comfortable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5CSpi" - }, - { - "name": "soundly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwNhWz" - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hGjx0s" - }, - { - "name": "heavily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBc1Eh" - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2MGzv_" - }, - { - "name": "form", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zh1XfN" - }, - { - "name": "wind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1S_P1E" - }, - { - "name": "right", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gX-j2" - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2GSkq5" - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhZuh-" - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LAkX_f" - }, - { - "name": "trouble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLFZmu" - }, - { - "name": "effect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xRqCAj" - }, - { - "name": "Medusa", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJWlRQ" - }, - { - "name": "Gorgon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bKeCij" - }, - { - "name": "taxi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q8nLMg" - }, - { - "name": "Pilatus Porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CKP86f" - }, - { - "name": "land", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oti3N_" - }, - { - "name": "plough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wMoK8" - }, - { - "name": "lonely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmE_c1" - }, - { - "name": "Welsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpPuXV" - }, - { - "name": "roof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6-CZn" - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CgLwf-" - }, - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vxbhRy" - }, - { - "name": "desert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-10Kx" - }, - { - "name": "polo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lVrFp" - }, - { - "name": "Wayle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhAL_s" - }, - { - "name": "cut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-95Gl4" - }, - { - "name": "row", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IkpK00" - }, - { - "name": "kick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8Jc0X" - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hTXSFf" - }, - { - "name": "nearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DccJSL" - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R6aYPB" - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CH0LTf" - }, - { - "name": "company", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kg43lV" - }, - { - "name": "bicycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9eyOw" - }, - { - "name": "save", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "spivSg" - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rftfc2" - }, - { - "name": "helper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fxiwpD" - }, - { - "name": "employ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pzq_YR" - }, - { - "name": "grandson", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1YFbX" - }, - { - "name": "once", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JiJEv4" - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zS3WW9" - }, - { - "name": "article", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IgTBMF" - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpFP9C" - }, - { - "name": "simply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5zFxi" - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXT2Rf" - }, - { - "name": "darkness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7bBJrD" - }, - { - "name": "explain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WfUGMU" - }, - { - "name": "coast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OpqdDS" - }, - { - "name": "storm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "slxiFM" - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2sPvQ" - }, - { - "name": "rock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BHi-a1" - }, - { - "name": "shore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NcMCC5" - }, - { - "name": "light", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-64-7" - }, - { - "name": "ahead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRM-CD" - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L19NAD" - }, - { - "name": "struggle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBhrG" - }, - { - "name": "hospital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s3qNJX" - }, - { - "name": "station", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "af6fTL" - }, - { - "name": "most", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Loarr5" - }, - { - "name": "while", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZcG7F9" - }, - { - "name": "regret", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1svKKs" - }, - { - "name": "far", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lds05J" - }, - { - "name": "rush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jytMYQ" - }, - { - "name": "act", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f4JV7Z" - }, - { - "name": "straight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3yl-6C" - }, - { - "name": "fright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGRukQ" - }, - { - "name": "battered", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R-BAf3" - }, - { - "name": "shortly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6Kezk_" - }, - { - "name": "afterwards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lelTbh" - }, - { - "name": "record", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYVp8x" - }, - { - "name": "strong", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FUSKDT" - }, - { - "name": "swimmer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JGXvOS" - }, - { - "name": "succeed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tJzyVq" - }, - { - "name": "train", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QZ5wUj" - }, - { - "name": "anxiously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "c8QnQZ" - }, - { - "name": "intend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JSKsJF" - }, - { - "name": "solid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JjN96I" - }, - { - "name": "Olympic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vrS4F8" - }, - { - "name": "hold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nxwm6b" - }, - { - "name": "government", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lpl_4Z" - }, - { - "name": "immense", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "e01w6C" - }, - { - "name": "stadium", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-su6C_" - }, - { - "name": "standard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H3DYGZ" - }, - { - "name": "capital", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3jDvR0" - }, - { - "name": "fantastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pSTVVk" - }, - { - "name": "design", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gnek_W" - }, - { - "name": "except", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mj95fC" - }, - { - "name": "Mediterranean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jT6RkJ" - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "di0RaA" - }, - { - "name": "continually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lQydSe" - }, - { - "name": "bitterly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFDUpU" - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li52hh" - }, - { - "name": "operation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_8_SL" - }, - { - "name": "successful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MBY1hj" - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kdmdg" - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AxBBjY" - }, - { - "name": "alone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJ9x2x" - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-55sY" - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjeSPf" - }, - { - "name": "certain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_SSOCh" - }, - { - "name": "caller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Ugl6" - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NcADb" - }, - { - "name": "hostess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9THd7N" - }, - { - "name": "unsmiling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZfn4s" - }, - { - "name": "tight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V7zG1O" - }, - { - "name": "fix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DLZhnE" - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3rJRgf" - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UcDlOK" - }, - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ge6QM2" - }, - { - "name": "mirror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DBhFSI" - }, - { - "name": "hole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "asBHvi" - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYkprN" - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pz3hko" - }, - { - "name": "lighthouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G0UiGA" - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIsgbV" - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-gQJUr" - }, - { - "name": "snake charmer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y-GyyN" - }, - { - "name": "pipe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0lDYd" - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IERypc" - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2DMtc6" - }, - { - "name": "snake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7x14pE" - }, - { - "name": "movement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QIlbOD" - }, - { - "name": "continue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "95Jojp" - }, - { - "name": "dance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_2J1O" - }, - { - "name": "obviously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9smx3x" - }, - { - "name": "difference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52WsoR" - }, - { - "name": "Indian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mllgyA" - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kN9S-6" - }, - { - "name": "flight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0gLbK2" - }, - { - "name": "explorer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RX_Jss" - }, - { - "name": "lie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HV7Z9f" - }, - { - "name": "serious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znPlES" - }, - { - "name": "point", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W6YQtP" - }, - { - "name": "seem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_boSk" - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ouchg" - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ojOeP" - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YApyn7" - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIKtPl" - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okUQyf" - }, - { - "name": "plain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dl_wxJ" - }, - { - "name": "forest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4xcr26" - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Of-7lx" - }, - { - "name": "picnic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oSChBZ" - }, - { - "name": "edge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWu_fv" - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9aVXH" - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mrnCV1" - }, - { - "name": "breath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH323_" - }, - { - "name": "content", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-P457" - }, - { - "name": "mend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7Gw2U" - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jUveTE" - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1Q0ZIQ" - }, - { - "name": "wallet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3dvP5Q" - }, - { - "name": "savings", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kll9ww" - }, - { - "name": "villager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT4OEZ" - }, - { - "name": "per cent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIhNlU" - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3CJlqh" - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2QI96" - }, - { - "name": "extremely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "paYbPz" - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQq8fF" - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8pCOi3" - }, - { - "name": "pile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OP-lQo" - }, - { - "name": "woollen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GJ-LH" - }, - { - "name": "goods", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ief0S" - }, - { - "name": "discover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dRlo_9" - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K8U7R5" - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W30GE6" - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4EtNg" - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_VdVV" - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d0X-DE" - }, - { - "name": "haunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZKlkM" - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVzEx9" - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cnKlz5" - }, - { - "name": "whisky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hC5o59" - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mneKCS" - }, - { - "name": "shake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtQX_t" - }, - { - "name": "accept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pIPj6" - }, - { - "name": "pull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dymN8E" - }, - { - "name": "cotton wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjuUD7" - }, - { - "name": "collect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYRMCX" - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvwTg" - }, - { - "name": "nod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjMeLY" - }, - { - "name": "meanwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOthEV" - }, - { - "name": "tired", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlfW8k" - }, - { - "name": "real", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeRjgf" - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G2kDoy" - }, - { - "name": "spring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bn0P9Y" - }, - { - "name": "mattress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNfo09" - }, - { - "name": "gust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JX011u" - }, - { - "name": "sweep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DR4h8M" - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kosJdE" - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Tjyuf" - }, - { - "name": "miraculously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YBqc8" - }, - { - "name": "unhurt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVy17X" - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gPcSD0" - }, - { - "name": "promptly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNHE6f" - }, - { - "name": "ride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYKUL5" - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtOY8d" - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJ7exo" - }, - { - "name": "view", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiAW3x" - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXq4IY" - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUBxJx" - }, - { - "name": "diet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XsESpg" - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W34F63" - }, - { - "name": "hurriedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tACx9a" - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IRaksH" - }, - { - "name": "guiltily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Y8z57" - }, - { - "name": "strict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_TfdKz" - }, - { - "name": "occasionally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KZ085" - }, - { - "name": "temporarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjnhxp" - }, - { - "name": "inch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FP0Qoh" - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TPr0gJ" - }, - { - "name": "actually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RtEv1H" - }, - { - "name": "hot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2P8Djz" - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "46stwf" - }, - { - "name": "cause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DkFa2" - }, - { - "name": "examine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbyOQE" - }, - { - "name": "accidentally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tiMINR" - }, - { - "name": "remains", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-VfX5" - }, - { - "name": "wire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWtAYT" - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGNMQB" - }, - { - "name": "power line", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V3E173" - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHHpfG" - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "554D2u" - }, - { - "name": "snatch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Nw5py" - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BXtVR" - }, - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eh8l7w" - }, - { - "name": "finger", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gUr9fL" - }, - { - "name": "pie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RuP-lm" - }, - { - "name": "mix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jAdCHf" - }, - { - "name": "pastry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2D3A6" - }, - { - "name": "annoying", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5nltmJ" - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wNf_Du" - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qiXfSp" - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxFaOr" - }, - { - "name": "persuade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpHqTH" - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LM7eFT" - }, - { - "name": "doorknob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CA6Kvz" - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvuhWk" - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5VhiEA" - }, - { - "name": "gold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TvVQWP" - }, - { - "name": "mine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y7aH66" - }, - { - "name": "treasure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vjmpzq" - }, - { - "name": "revealer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJETw" - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-sB2Y" - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5wmDQ" - }, - { - "name": "bury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4sYIs7" - }, - { - "name": "cave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q8YEgn" - }, - { - "name": "seashore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CwLKtf" - }, - { - "name": "pirate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nrj7_g" - }, - { - "name": "arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qm5TAC" - }, - { - "name": "soil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bFqw_c" - }, - { - "name": "entrance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4xGa2" - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn-VjJ" - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeyJy" - }, - { - "name": "thoroughly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9dFrqb" - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WI8jbY" - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NzXY_e" - }, - { - "name": "value", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8j-W1" - }, - { - "name": "sound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIn9D0" - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRUyY4" - }, - { - "name": "handsome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CqQ54G" - }, - { - "name": "Rolls-Royce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUC5JH" - }, - { - "name": "Benz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbN5er" - }, - { - "name": "wheel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYhlbQ" - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32-LGr" - }, - { - "name": "course", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jLq8nH" - }, - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14xk-Q" - }, - { - "name": "speed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7ExP_" - }, - { - "name": "downhill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSq09Z" - }, - { - "name": "madam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RDHM_w" - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4t3J68" - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kO1sGe" - }, - { - "name": "serve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIt3AF" - }, - { - "name": "scornfully", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDL-Sj" - }, - { - "name": "punish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QKPvKz" - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JiizZ" - }, - { - "name": "eager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32XOtZ" - }, - { - "name": "blessing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jgbyK6" - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VGeJmR" - }, - { - "name": "tiny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Edcvvp" - }, - { - "name": "possess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJvC6o" - }, - { - "name": "cursed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZKDNQ0" - }, - { - "name": "increase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfFD2X" - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryayZF" - }, - { - "name": "church", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-dGrI" - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93zhPL" - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pPXv_" - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CCeXgI" - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kLZVKG" - }, - { - "name": "vicar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X3CXWs" - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHbxsE" - }, - { - "name": "income", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ai-wnE" - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PYyb6" - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5T36h" - }, - { - "name": "press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIl0jd" - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqIbbV" - }, - { - "name": "latch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wfk8GQ" - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzmhDP" - }, - { - "name": "develop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuvupZ" - }, - { - "name": "habit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wUi_0k" - }, - { - "name": "remove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qHPdbT" - }, - { - "name": "future", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LL6z48" - }, - { - "name": "fair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XWYecK" - }, - { - "name": "fortune-teller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRc0nK" - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XjcIkQ" - }, - { - "name": "relation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGRZMG" - }, - { - "name": "impatiently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wuq9yz" - }, - { - "name": "Hubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imz5By" - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EAOnq" - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wq0pfV" - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3Itij" - }, - { - "name": "NASA", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn6tsx" - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8dkOR" - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcQE4V" - }, - { - "name": "astronaut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O1SHsK" - }, - { - "name": "shuttle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Ov6yM" - }, - { - "name": "Endeavour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nu3C51" - }, - { - "name": "robot-arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PlII1o" - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BrNxGR" - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a23zvn" - }, - { - "name": "distant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDOpQO" - }, - { - "name": "galaxy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ShfTl5" - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqcA_7" - }, - { - "name": "eagle eye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-RViK" - }, - { - "name": "control", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmU6W8" - }, - { - "name": "smoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ewWjud" - }, - { - "name": "desolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-9VmT" - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QWQYfF" - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zz43p_" - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD96u7" - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5PEOmy" - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E93L1x" - }, - { - "name": "grass-seed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BGWFJH" - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYyzLq" - }, - { - "name": "quantity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEX7lj" - }, - { - "name": "root", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vp9L42" - }, - { - "name": "century", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJ9uTS" - }, - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SgkRfN" - }, - { - "name": "blacken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0CrbKW" - }, - { - "name": "circle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yi0QEU" - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BeMUzf" - }, - { - "name": "close", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R65s5x" - }, - { - "name": "wedding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3yQb-" - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uX6suh" - }, - { - "name": "sort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuoYTX" - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-1KPoP" - }, - { - "name": "port", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0910TB" - }, - { - "name": "ventilate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IcPFh0" - }, - { - "name": "chimney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QylZF1" - }, - { - "name": "sea level", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-4Puy" - }, - { - "name": "double", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOAKtC" - }, - { - "name": "ventilation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B-1chH" - }, - { - "name": "fear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lg4d67" - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i9h27P" - }, - { - "name": "officially", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mef3gK" - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "np8JZk" - }, - { - "name": "European", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QkD7sW" - }, - { - "name": "continent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Zes09" - }, - { - "name": "versus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UC2zew" - }, - { - "name": "Christmas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bt9CAi" - }, - { - "name": "circus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cb_yfO" - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ta3YpR" - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij_rve" - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rce2p_" - }, - { - "name": "ought", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBqwxA" - }, - { - "name": "weigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eTEisr" - }, - { - "name": "fortunate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OollsC" - }, - { - "name": "Lancaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBwcsB" - }, - { - "name": "bomber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOe9Rq" - }, - { - "name": "remote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvHAgC" - }, - { - "name": "Pacific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "acSms6" - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKvFEQ" - }, - { - "name": "wreck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muPOtw" - }, - { - "name": "rediscover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WCArOK" - }, - { - "name": "aerial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6pUU4x" - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHHLF6" - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RvquBK" - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9WS20" - }, - { - "name": "enthusiast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EA29JG" - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_kZR4C" - }, - { - "name": "imagine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiYk15" - }, - { - "name": "packing case", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_hnV-" - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_MrYha" - }, - { - "name": "bee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcbfBU" - }, - { - "name": "hive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XU7blC" - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBZQqt" - }, - { - "name": "beeswax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8G9sr2" - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C89SqP" - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o0yoHE" - }, - { - "name": "Kivu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uo27ml" - }, - { - "name": "Congo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JMpBV" - }, - { - "name": "Kituro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJStaV" - }, - { - "name": "erupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NWmIyW" - }, - { - "name": "violently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtU6oY" - }, - { - "name": "manage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IeXnn8" - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3WQBUc" - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qvsdnw" - }, - { - "name": "escape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNBD5o" - }, - { - "name": "alive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nfzf8" - }, - { - "name": "persistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6MOp-8" - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EMNrSm" - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BN1MyV" - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wWgxX" - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pHiQcU" - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_QIeuf" - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHb0P7" - }, - { - "name": "examiner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtIcne" - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "85m940" - }, - { - "name": "tap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAv4uJ" - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieB3LS" - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxpEtk" - }, - { - "name": "pedal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5E-HXT" - }, - { - "name": "mournful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rz_a4A" - }, - { - "name": "bullfight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57uPeV" - }, - { - "name": "drunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H9BaV" - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9GdmBT" - }, - { - "name": "ring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKfr24" - }, - { - "name": "unaware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UUdTk7" - }, - { - "name": "bull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ia-gtv" - }, - { - "name": "matador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hQQOEy" - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "amA9_8" - }, - { - "name": "apparently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSqTLZ" - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxuutY" - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEZVi" - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fXx77" - }, - { - "name": "clumsily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aYyHwp" - }, - { - "name": "bow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uExGCa" - }, - { - "name": "safety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EsVV7q" - }, - { - "name": "sympathetically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG2ECq" - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gOUWxw" - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1K-xM" - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXVyr8" - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fA7Qe" - }, - { - "name": "Greenwich", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-CSYk6" - }, - { - "name": "observatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28F4oh" - }, - { - "name": "check", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6u_4G6" - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1G20mX" - }, - { - "name": "tower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y9yK04" - }, - { - "name": "racing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZUzSSU" - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ci4HwG" - }, - { - "name": "Utah", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYKuC1" - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8QOkZi" - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rgk8Z5" - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGEfIq" - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ZNUmG" - }, - { - "name": "record-holder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_iC7c" - }, - { - "name": "truant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jHa_pT" - }, - { - "name": "unimaginative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRQt5B" - }, - { - "name": "shame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-_s3D" - }, - { - "name": "hitchhike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rUD2Je" - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kKjKQp" - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib8MZG" - }, - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7l2ALp" - }, - { - "name": "evade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YYcF8_" - }, - { - "name": "limelight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4EGokg" - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WhzTmm" - }, - { - "name": "fan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "szaYs8" - }, - { - "name": "shady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SJgkZ-" - }, - { - "name": "sheriff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FMGGRY" - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCeVjD" - }, - { - "name": "sneer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "srwYbs" - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5N5_Vi" - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5rNOk" - }, - { - "name": "stamp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PLrFGD" - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xi5HpF" - }, - { - "name": "scene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-vwDiv" - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sujdVe" - }, - { - "name": "fool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fESDIZ" - }, - { - "name": "bulletin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXVZkC" - }, - { - "name": "announcer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FQ5Bk" - }, - { - "name": "macaroni", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pC5hG5" - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "diNZM2" - }, - { - "name": "grower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TGvW2s" - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cEHweu" - }, - { - "name": "stalk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BcNISX" - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vrc4Gl" - }, - { - "name": "thresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zgjfhH" - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AuZ2c1" - }, - { - "name": "Signor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v5YKmt" - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3PkSU" - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3T_jG" - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "om23C1" - }, - { - "name": "mummy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TW4ydV" - }, - { - "name": "Egyptian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7xA9n" - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6kCWfp" - }, - { - "name": "mark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VubKK6" - }, - { - "name": "plate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PINZ7L" - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Hv7g-" - }, - { - "name": "last", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xdccDN" - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lJCrNb" - }, - { - "name": "resin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PpUlp_" - }, - { - "name": "skin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdSzsG" - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0PTyb" - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N20QyH" - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k8YkAC" - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dDzZ97" - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtuQ_Y" - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhWMoM" - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83IUA_" - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecCteY" - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G5FGl2" - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXnp33" - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1o300Y" - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILdAuN" - }, - { - "name": "produce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djSgzf" - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o46hg0" - }, - { - "name": "satisfaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kC0CSo" - }, - { - "name": "delighted", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cS1Xb6" - }, - { - "name": "parent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3ZLdD" - }, - { - "name": "flight attendant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H18Ysq" - }, - { - "name": "frightened", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IE5pYs" - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LUyNle" - }, - { - "name": "bomb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lu7-kK" - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuiTm3" - }, - { - "name": "palace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk37L" - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nIIIub" - }, - { - "name": "exhibition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp3yNs" - }, - { - "name": "iron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dL2gOL" - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66nNEN" - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRtJ6D" - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99rVrp" - }, - { - "name": "steam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkmeXF" - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mXYX0" - }, - { - "name": "college", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9vdZA" - }, - { - "name": "prisoner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OsiGL-" - }, - { - "name": "bush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YzQ3bN" - }, - { - "name": "rapidly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBMCy9" - }, - { - "name": "uniform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tAnyR" - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MoTVFq" - }, - { - "name": "shoulder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RRR0k" - }, - { - "name": "march", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikC1s0" - }, - { - "name": "boldly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nc_xls" - }, - { - "name": "blaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FCHkt" - }, - { - "name": "salute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZvHZf" - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBRfLY" - }, - { - "name": "grey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HIFUcs" - }, - { - "name": "sharp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-6v4J" - }, - { - "name": "blow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmeT0" - }, - { - "name": "monster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoUtTM" - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YujhlZ" - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etrQty" - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGqYOu" - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x00iWZ" - }, - { - "name": "shining", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cne7Q1" - }, - { - "name": "oarfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6my8y_" - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP1Rey" - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUaip1" - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYgQgV" - }, - { - "name": "fanatical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKdv0F" - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VV1Jr" - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tv4A-f" - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYcyny" - }, - { - "name": "ex-", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YRByK" - }, - { - "name": "suspicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ihISL_" - }, - { - "name": "strike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMJj15" - }, - { - "name": "busman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "THePPJ" - }, - { - "name": "state", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7DZxgQ" - }, - { - "name": "agreement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0d14w" - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pERwK" - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SCwbnk" - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uXIOgd" - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iNYqu9" - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmgCqE" - }, - { - "name": "the Press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ej6fq" - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2W9XoF" - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuGKQF" - }, - { - "name": "headmaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dpD6D" - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eVbBly" - }, - { - "name": "gift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmBefN" - }, - { - "name": "album", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C9Ocxf" - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LlOJzX" - }, - { - "name": "encouragement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5eYtJ" - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9ebEk" - }, - { - "name": "honour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_lRsQ" - }, - { - "name": "coincidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXxvJQ" - }, - { - "name": "total", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WBEfl3" - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zAB6fE" - }, - { - "name": "gardening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EH0a2n" - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIDpzb" - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZBdmt" - }, - { - "name": "speedboat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRumz2" - }, - { - "name": "desperately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lStynY" - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bBx2So" - }, - { - "name": "water ski", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5S-rK9" - }, - { - "name": "buoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zem72g" - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "520TYm" - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cOjLOa" - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xbz-Hl" - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2145r" - }, - { - "name": "gently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2AZu8x" - }, - { - "name": "alibi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mzXED-" - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z7ozOr" - }, - { - "name": "inspector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CjsFn" - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BG7SfZ" - }, - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EOM1SY" - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ME4UPj" - }, - { - "name": "truth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BUQgfF" - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eLMxG" - }, - { - "name": "surface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZW9KaI" - }, - { - "name": "explosive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpF_4r" - }, - { - "name": "vibration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93vnUj" - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0GCjs" - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XCZJV" - }, - { - "name": "capsule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEA0GV" - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48Aqxd" - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj0cX3" - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hzF7nt" - }, - { - "name": "progress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EZwBOp" - }, - { - "name": "smoothly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FcG5kq" - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zv3UHO" - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R503Wg" - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhf2Tr" - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WctjZo" - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w_4ko_" - }, - { - "name": "artiste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3Zekv" - }, - { - "name": "advertiser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKQpg_" - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T2j6M8" - }, - { - "name": "overfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kon6R2" - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EW1eQJ" - }, - { - "name": "terrify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqbQE" - }, - { - "name": "diver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1EoeL" - }, - { - "name": "oil rig", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRlKUa" - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Isbnw" - }, - { - "name": "cage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m7aKs-" - }, - { - "name": "shark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TSv0ER" - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFIJBU" - }, - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wcD8qI" - }, - { - "name": "cod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1R_nVH" - }, - { - "name": "skate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Sbr-o" - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gCK38R" - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cHBabl" - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_f2CZY" - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CpFlId" - }, - { - "name": "spy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Z3NK2" - }, - { - "name": "track", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pOoZxO" - }, - { - "name": "binoculars", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1uCB3" - }, - { - "name": "fast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zvih9" - }, - { - "name": "ladder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAOF14" - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJvzgn" - }, - { - "name": "sarcastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxWpbQ" - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "807RJp" - }, - { - "name": "noble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Rx841" - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EPXLa" - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9lzlw5" - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fYHpSk" - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n3JVFZ" - }, - { - "name": "sculptor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TrS_Lp" - }, - { - "name": "actual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b_XOgj" - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hwua8S" - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gDb5el" - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nG1-FZ" - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GfRqih" - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGJs5E" - }, - { - "name": "pedestal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lsyf2o" - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PGPnbA" - }, - { - "name": "Los Angeles", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vyqdhi" - }, - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iHqfo_" - }, - { - "name": "weight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lb47Jq" - }, - { - "name": "underwater", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGGpEH" - }, - { - "name": "tricycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t6Xr3r" - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6mfyb3" - }, - { - "name": "yard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XrqVIA" - }, - { - "name": "gasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPA4i5" - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZYAyDD" - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sJn2qT" - }, - { - "name": "Escalopia", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyW7J5" - }, - { - "name": "frightful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GCI4CH" - }, - { - "name": "fire extinguisher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4UzjX" - }, - { - "name": "drily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7j9O5" - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tqr-Zb" - }, - { - "name": "heaven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZ3ASb" - }, - { - "name": "basement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vOGKvz" - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fMFxdz" - }, - { - "name": "post", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QYa2z9" - }, - { - "name": "shot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeZnT3" - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zkhcDA" - }, - { - "name": "lantern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7mQIPk" - }, - { - "name": "spectacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hh6LBJ" - } - ], - "words": [ - { - "name": "private", - "trans": [ - "adj.私有的,私人的,秘密的,内心的,平民的,无官职的,士兵的", - "n.列兵,士兵,陆二等兵,〈古〉私人,个人,阴部,生殖器" - ], - "usphone": "ˈpraɪvɪt", - "ukphone": "ˈpraɪvət", - "id": "459-d1", - "checked": false - }, - { - "name": "conversation", - "trans": [ - "n.交谈,会话,交往,交际,会谈,(人与计算机的)人机对话" - ], - "usphone": "ˌkɑ:nvərˈseɪʃn", - "ukphone": "ˌkɒnvəˈseɪʃn", - "id": "HF5ziU", - "checked": false - }, - { - "name": "theatre", - "trans": [ - "n.剧院" - ], - "usphone": "ˈθiətər", - "ukphone": "'θɪətə", - "id": "7N632v", - "checked": false - }, - { - "name": "seat", - "trans": [ - "n.席位,座位,所在地,场所,臀部", - "vt.使就座,使就职,使获得座位(或席位),可容纳若干座位" - ], - "usphone": "sit", - "ukphone": "si:t", - "id": "XxT7f2", - "checked": false - }, - { - "name": "play", - "trans": [ - "n.比赛,游戏,戏剧,赌博", - "vt.& vi.玩,演奏,演出,参加比赛", - "vt.扮演,担任,充当…的角色,演出,装扮", - "vi.玩耍,游戏,游戏 参加游戏,赌博,闹着玩" - ], - "usphone": "pleɪ", - "ukphone": "pleɪ", - "id": "Ezeqff", - "checked": false - }, - { - "name": "loudly", - "trans": [ - "adv.高声地,吵闹地,响亮地,花哨地" - ], - "usphone": "ˈlaʊdlɪ", - "ukphone": "laʊdlɪ", - "id": "a3vQNq", - "checked": false - }, - { - "name": "angry", - "trans": [ - "adj.生气的,愤怒的,发怒的,(颜色等)刺目的,(伤口等)发炎的" - ], - "usphone": "ˈæŋɡri", - "ukphone": "ˈæŋgri", - "id": "myIqOb", - "checked": false - }, - { - "name": "angrily", - "trans": [ - "adv.愤怒地,生气地,气呼呼,气冲冲" - ], - "usphone": "ˈæŋɡrɪlɪ", - "ukphone": "'æŋɡrəlɪ", - "id": "vlqdDv", - "checked": false - }, - { - "name": "attention", - "trans": [ - "n.注意,注意力,照料,关怀,殷勤", - "int.口令立正" - ], - "usphone": "əˈtɛnʃən", - "ukphone": "əˈtenʃn", - "id": "v_jr8C", - "checked": false - }, - { - "name": "bear", - "trans": [ - "n.熊,(在证券市场等)卖空的人,蛮横的人", - "vt.忍受,承担,支撑,生育", - "vi.生(孩子),结(果实),与…有关", - "adj.跌价的,股票行情下跌的,卖空者的" - ], - "usphone": "ber", - "ukphone": "beə(r)", - "id": "DFcXV-", - "checked": false - }, - { - "name": "business", - "trans": [ - "n.商业,交易,生意,事务,业务,职业,行业" - ], - "usphone": "ˈbɪznɪs", - "ukphone": "ˈbɪznəs", - "id": "DcP8Ab", - "checked": false - }, - { - "name": "rudely", - "trans": [ - "adv.粗鲁地,不礼貌地,猛烈地,突然地" - ], - "usphone": "ˈrudlɪ", - "ukphone": "ˈru:dli", - "id": "umoFWC", - "checked": false - }, - { - "name": "until", - "trans": [ - "prep.到…为止,在…以前", - "conj.到…为止,在…以前,直到…才" - ], - "usphone": "ʌnˈtɪl", - "ukphone": "ənˈtɪl", - "id": "gcgEy-", - "checked": false - }, - { - "name": "outside", - "trans": [ - "adv.在外面,向外面,在户外,露天", - "n.外面,(弯曲路面或轨道的)外道,(靠近路中央的)外侧,(建筑物等的)周围", - "adj.外部的,集团外的,(选择余地、可能性等)非常小,可能性最大的", - "prep.(表示位置)在向…的外面,(表示范围)超出…的范围,(表示排斥)除了(某人)" - ], - "usphone": "ˈaʊtˌsaɪd", - "ukphone": "ˌaʊtˈsaɪd", - "id": "vWGJ5p", - "checked": false - }, - { - "name": "ring", - "trans": [ - "n.戒指,指环,铃声,钟声,环形物,拳击场", - "vt.形成环状,环绕,使(例如铃)响,打电话给", - "vi.按铃,敲钟,回响,成环形" - ], - "usphone": "rɪŋ", - "ukphone": "rɪŋ", - "id": "xcdzgY", - "checked": false - }, - { - "name": "aunt", - "trans": [ - "n.阿姨,姨母,姑妈,舅妈,婶娘" - ], - "usphone": "ænt", - "ukphone": "ɑ:nt", - "id": "Bd5fMP", - "checked": false - }, - { - "name": "repeat", - "trans": [ - "vt.复述,背诵,重复", - "vi.重做,重复投票", - "n.(节目)重演,重复,重复的事物" - ], - "usphone": "rɪˈpit", - "ukphone": "rɪˈpi:t", - "id": "UOoW1a", - "checked": false - }, - { - "name": "send", - "trans": [ - "vt.送,使作出(某种反应),派遣,使进入(某状态)", - "vt.& vi.用无线电波发送,发出信息", - "vi.派遣,发出,派人", - "adj.仅用作定语用于发送的" - ], - "usphone": "sɛnd", - "ukphone": "send", - "id": "oRmKGf", - "checked": false - }, - { - "name": "postcard", - "trans": [ - "n.明信片" - ], - "usphone": "ˈpoʊstkɑ:rd", - "ukphone": "ˈpəʊstkɑ:d", - "id": "NbsXrW", - "checked": false - }, - { - "name": "spoil", - "trans": [ - "vi.变质,掠夺,腐败", - "vt.损坏,糟蹋,把(酒,肉等)放坏,溺爱坏,宠坏(孩子等),抢劫,掠夺", - "n.抢劫,掠夺,废品,次品,成功所带来的好处,(开掘等时挖出的)弃土" - ], - "usphone": "spɔɪl", - "ukphone": "spɔɪl", - "id": "4z2zeu", - "checked": false - }, - { - "name": "museum", - "trans": [ - "n.博物馆" - ], - "usphone": "mjuˈziəm", - "ukphone": "mjuˈzi:əm", - "id": "QwdASV", - "checked": false - }, - { - "name": "public", - "trans": [ - "adj.公众的,公共的,公开的,政府的,人人知道的,知名的", - "n.大众,社会,公共场所,(文学家等的)爱读者" - ], - "usphone": "ˈpʌblɪk", - "ukphone": "ˈpʌblɪk", - "id": "2tagQ-", - "checked": false - }, - { - "name": "friendly", - "trans": [ - "adj.友好的,亲密的,有帮助的,互助的", - "adv.友好地,朋友般地" - ], - "usphone": "ˈfrɛndli", - "ukphone": "ˈfrendli", - "id": "vFdWe5", - "checked": false - }, - { - "name": "waiter", - "trans": [ - "n.侍者,服务员,托盘" - ], - "usphone": "ˈwetɚ", - "ukphone": "ˈweɪtə(r)", - "id": "V-abq-", - "checked": false - }, - { - "name": "lend", - "trans": [ - "vt.把…借给,贷(款),贡献,给予,适于", - "vi.增加,增添,给…增加,给予" - ], - "usphone": "lɛnd", - "ukphone": "lend", - "id": "Q3zB9w", - "checked": false - }, - { - "name": "decision", - "trans": [ - "n.决定,果断,决议,(法院的)判决", - "vt.口语拳击靠判定击败(对手)" - ], - "usphone": "dɪˈsɪʒən", - "ukphone": "dɪˈsɪʒn", - "id": "FUMjO9", - "checked": false - }, - { - "name": "whole", - "trans": [ - "adj.全部的,所有的,完整的", - "n.整体,整个,全部" - ], - "usphone": "hoʊl", - "ukphone": "həʊl", - "id": "BCg650", - "checked": false - }, - { - "name": "single", - "trans": [ - "adj.单一的,(打斗、比赛等)一对一的,惟一的,适于一人的", - "n.单程票,(旅馆等的)单人房间,复数(高尔夫球一对一的)二人对抗赛,常用复数美国、加拿大英语未婚(或单身)男子(或女子)", - "vt.挑选", - "vi.作一垒手" - ], - "usphone": "ˈsɪŋɡəl", - "ukphone": "ˈsɪŋgl", - "id": "vXDb8M", - "checked": false - }, - { - "name": "exciting", - "trans": [ - "adj.使人兴奋的,令人激动的", - "v.刺激(excite的现在分词)" - ], - "usphone": "ɪkˈsaɪtɪŋ", - "ukphone": "ɪkˈsaɪtɪŋ", - "id": "R3WLAn", - "checked": false - }, - { - "name": "receive", - "trans": [ - "vt.& vi.收到,接到,接纳,接待", - "vt.接收,受理,欢迎,承受", - "vi.接到,获得,接见,欢迎,电子学 接收,橄榄球 接球" - ], - "usphone": "rɪˈsiv", - "ukphone": "rɪˈsi:v", - "id": "rDK7Hg", - "checked": false - }, - { - "name": "firm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJcA6m", - "checked": false - }, - { - "name": "different", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6A0oI", - "checked": false - }, - { - "name": "centre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KMhbWl", - "checked": false - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PhfBgj", - "checked": false - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mki3zv", - "checked": false - }, - { - "name": "message", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDVTRP", - "checked": false - }, - { - "name": "cover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muxqSV", - "checked": false - }, - { - "name": "distance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HovFu6", - "checked": false - }, - { - "name": "request", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW_ZrY", - "checked": false - }, - { - "name": "spare part", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gkfwy1", - "checked": false - }, - { - "name": "service", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D09Wdi", - "checked": false - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWs_A0", - "checked": false - }, - { - "name": "food", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xso6AK", - "checked": false - }, - { - "name": "pocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L58WjW", - "checked": false - }, - { - "name": "call", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlRHO2", - "checked": false - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "31BY_n", - "checked": false - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vH05lA", - "checked": false - }, - { - "name": "expect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K1mR3a", - "checked": false - }, - { - "name": "valuable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IYE7aK", - "checked": false - }, - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3m1CC", - "checked": false - }, - { - "name": "diamond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VpXmOt", - "checked": false - }, - { - "name": "steal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZEZ3vR", - "checked": false - }, - { - "name": "main", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjYz9G", - "checked": false - }, - { - "name": "airfield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGs2vr", - "checked": false - }, - { - "name": "guard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k6DR9Y", - "checked": false - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK_TJt", - "checked": false - }, - { - "name": "stone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x8E0CK", - "checked": false - }, - { - "name": "sand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJKFfM", - "checked": false - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PmJ0R5", - "checked": false - }, - { - "name": "neat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9fM6fK", - "checked": false - }, - { - "name": "path", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E8olFf", - "checked": false - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B3M21E", - "checked": false - }, - { - "name": "pool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARTVmJ", - "checked": false - }, - { - "name": "welcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cFyE7s", - "checked": false - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDIzf8", - "checked": false - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lOYmD9", - "checked": false - }, - { - "name": "hand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2-e4v", - "checked": false - }, - { - "name": "shout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efVT4N", - "checked": false - }, - { - "name": "refuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JfoMMg", - "checked": false - }, - { - "name": "laugh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qwdzY-", - "checked": false - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYSZOi", - "checked": false - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5pqtq_", - "checked": false - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TnSFlc", - "checked": false - }, - { - "name": "clavichord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AbcNm-", - "checked": false - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UgDNfF", - "checked": false - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BmjvhI", - "checked": false - }, - { - "name": "key", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99YEWq", - "checked": false - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rz5u1I", - "checked": false - }, - { - "name": "shock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RB1hp4", - "checked": false - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pf7btj", - "checked": false - }, - { - "name": "touch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mil2nB", - "checked": false - }, - { - "name": "turn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjNgUP", - "checked": false - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQoc25", - "checked": false - }, - { - "name": "lawyer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EbbqiI", - "checked": false - }, - { - "name": "bank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co49Z9", - "checked": false - }, - { - "name": "salary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ntx7DG", - "checked": false - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imDGYR", - "checked": false - }, - { - "name": "luck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snp8T2", - "checked": false - }, - { - "name": "captain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WG9edH", - "checked": false - }, - { - "name": "sail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oY2RzQ", - "checked": false - }, - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcAJkM", - "checked": false - }, - { - "name": "proud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AV4T_W", - "checked": false - }, - { - "name": "important", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfcW_n", - "checked": false - }, - { - "name": "group", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1C-mXK", - "checked": false - }, - { - "name": "pop singer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5DCih", - "checked": false - }, - { - "name": "club", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pk_ysi", - "checked": false - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux7i4X", - "checked": false - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHdJ0l", - "checked": false - }, - { - "name": "amusing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLtAD2", - "checked": false - }, - { - "name": "experience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyrlH6", - "checked": false - }, - { - "name": "wave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2k6M0g", - "checked": false - }, - { - "name": "lift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wi2hz", - "checked": false - }, - { - "name": "reply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bjGulr", - "checked": false - }, - { - "name": "language", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djXjyy", - "checked": false - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JteZYn", - "checked": false - }, - { - "name": "secretary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1MrRlg", - "checked": false - }, - { - "name": "nervous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QjoJac", - "checked": false - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnEDWi", - "checked": false - }, - { - "name": "weak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A6cLrG", - "checked": false - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I5SQJY", - "checked": false - }, - { - "name": "park", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JR3WYh", - "checked": false - }, - { - "name": "traffic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V2hdxa", - "checked": false - }, - { - "name": "ticket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PbhJFn", - "checked": false - }, - { - "name": "note", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0KdOOB", - "checked": false - }, - { - "name": "area", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RfFVOI", - "checked": false - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSZrx8", - "checked": false - }, - { - "name": "reminder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxu8q3", - "checked": false - }, - { - "name": "fail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Um0Cev", - "checked": false - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zTA0NM", - "checked": false - }, - { - "name": "appear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xO3d0r", - "checked": false - }, - { - "name": "stage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAdgGs", - "checked": false - }, - { - "name": "bright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UAD6Q", - "checked": false - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQs5B9", - "checked": false - }, - { - "name": "sock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQD7WW", - "checked": false - }, - { - "name": "pub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjSaMs", - "checked": false - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MW2P6Y", - "checked": false - }, - { - "name": "bill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A5d6Jy", - "checked": false - }, - { - "name": "hurry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hdXtQ", - "checked": false - }, - { - "name": "ticket office", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8i020u", - "checked": false - }, - { - "name": "pity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsKEJm", - "checked": false - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8fwQ89", - "checked": false - }, - { - "name": "return", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_BV3LB", - "checked": false - }, - { - "name": "sadly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JM-bwM", - "checked": false - }, - { - "name": "catch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IfbXH", - "checked": false - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cN2eZn", - "checked": false - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hfRUk4", - "checked": false - }, - { - "name": "waste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i2XVYE", - "checked": false - }, - { - "name": "realize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Sc6Cp", - "checked": false - }, - { - "name": "mad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBBUtA", - "checked": false - }, - { - "name": "reason", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okQCk9", - "checked": false - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52fj1P", - "checked": false - }, - { - "name": "determined", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlRLxH", - "checked": false - }, - { - "name": "dream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wZCpbM", - "checked": false - }, - { - "name": "age", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sqmI3l", - "checked": false - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QE9MMI", - "checked": false - }, - { - "name": "throw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a54335", - "checked": false - }, - { - "name": "complete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-VwNit", - "checked": false - }, - { - "name": "modern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mfOffL", - "checked": false - }, - { - "name": "strange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iM-FKE", - "checked": false - }, - { - "name": "district", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14NRd9", - "checked": false - }, - { - "name": "manager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lZXboA", - "checked": false - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lrFBng", - "checked": false - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPBrhM", - "checked": false - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VxNlw_", - "checked": false - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RCJU1c", - "checked": false - }, - { - "name": "contain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sDae3s", - "checked": false - }, - { - "name": "honesty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-nv8iV", - "checked": false - }, - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVGL3b", - "checked": false - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcoW9y", - "checked": false - }, - { - "name": "several", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGtrJw", - "checked": false - }, - { - "name": "foreigner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fHANnb", - "checked": false - }, - { - "name": "wonder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "upkn7K", - "checked": false - }, - { - "name": "art", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NmUq_q", - "checked": false - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PcJ7Yi", - "checked": false - }, - { - "name": "paint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz4AjT", - "checked": false - }, - { - "name": "pretend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMTVS3", - "checked": false - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGIMrP", - "checked": false - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4R-hjC", - "checked": false - }, - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QCBjIx", - "checked": false - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6xpkII", - "checked": false - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QO462Y", - "checked": false - }, - { - "name": "whether", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MVS10I", - "checked": false - }, - { - "name": "hang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r1J9GS", - "checked": false - }, - { - "name": "critically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_CfX05", - "checked": false - }, - { - "name": "upside down", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJt2YP", - "checked": false - }, - { - "name": "tent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmoM8W", - "checked": false - }, - { - "name": "field", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6I6q7", - "checked": false - }, - { - "name": "smell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aktyXI", - "checked": false - }, - { - "name": "wonderful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RKlKso", - "checked": false - }, - { - "name": "campfire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myMTT8", - "checked": false - }, - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jvn9GU", - "checked": false - }, - { - "name": "sleeping bag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvuyvt", - "checked": false - }, - { - "name": "comfortable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5CSpi", - "checked": false - }, - { - "name": "soundly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwNhWz", - "checked": false - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hGjx0s", - "checked": false - }, - { - "name": "heavily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBc1Eh", - "checked": false - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2MGzv_", - "checked": false - }, - { - "name": "form", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zh1XfN", - "checked": false - }, - { - "name": "wind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1S_P1E", - "checked": false - }, - { - "name": "right", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gX-j2", - "checked": false - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2GSkq5", - "checked": false - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhZuh-", - "checked": false - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LAkX_f", - "checked": false - }, - { - "name": "trouble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLFZmu", - "checked": false - }, - { - "name": "effect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xRqCAj", - "checked": false - }, - { - "name": "Medusa", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJWlRQ", - "checked": false - }, - { - "name": "Gorgon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bKeCij", - "checked": false - }, - { - "name": "taxi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q8nLMg", - "checked": false - }, - { - "name": "Pilatus Porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CKP86f", - "checked": false - }, - { - "name": "land", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oti3N_", - "checked": false - }, - { - "name": "plough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wMoK8", - "checked": false - }, - { - "name": "lonely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmE_c1", - "checked": false - }, - { - "name": "Welsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpPuXV", - "checked": false - }, - { - "name": "roof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6-CZn", - "checked": false - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CgLwf-", - "checked": false - }, - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vxbhRy", - "checked": false - }, - { - "name": "desert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-10Kx", - "checked": false - }, - { - "name": "polo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lVrFp", - "checked": false - }, - { - "name": "Wayle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhAL_s", - "checked": false - }, - { - "name": "cut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-95Gl4", - "checked": false - }, - { - "name": "row", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IkpK00", - "checked": false - }, - { - "name": "kick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8Jc0X", - "checked": false - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hTXSFf", - "checked": false - }, - { - "name": "nearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DccJSL", - "checked": false - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R6aYPB", - "checked": false - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CH0LTf", - "checked": false - }, - { - "name": "company", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kg43lV", - "checked": false - }, - { - "name": "bicycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9eyOw", - "checked": false - }, - { - "name": "save", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "spivSg", - "checked": false - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rftfc2", - "checked": false - }, - { - "name": "helper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fxiwpD", - "checked": false - }, - { - "name": "employ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pzq_YR", - "checked": false - }, - { - "name": "grandson", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1YFbX", - "checked": false - }, - { - "name": "once", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JiJEv4", - "checked": false - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zS3WW9", - "checked": false - }, - { - "name": "article", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IgTBMF", - "checked": false - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpFP9C", - "checked": false - }, - { - "name": "simply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5zFxi", - "checked": false - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXT2Rf", - "checked": false - }, - { - "name": "darkness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7bBJrD", - "checked": false - }, - { - "name": "explain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WfUGMU", - "checked": false - }, - { - "name": "coast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OpqdDS", - "checked": false - }, - { - "name": "storm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "slxiFM", - "checked": false - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2sPvQ", - "checked": false - }, - { - "name": "rock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BHi-a1", - "checked": false - }, - { - "name": "shore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NcMCC5", - "checked": false - }, - { - "name": "light", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-64-7", - "checked": false - }, - { - "name": "ahead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRM-CD", - "checked": false - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L19NAD", - "checked": false - }, - { - "name": "struggle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBhrG", - "checked": false - }, - { - "name": "hospital", - "trans": [ - "n.医院,收容所,养老院,〈古〉旅客招待所" - ], - "usphone": "ˈhɑ:spɪtl", - "ukphone": "ˈhɒspɪtl", - "id": "s3qNJX", - "checked": false - }, - { - "name": "station", - "trans": [ - "n.车站,所,局,身份,电视台", - "vt.配置,安置,驻扎" - ], - "usphone": "ˈsteʃən", - "ukphone": "ˈsteɪʃn", - "id": "af6fTL", - "checked": false - }, - { - "name": "most", - "trans": [ - "adv.最,最多(大),much的最高级,非常,很,几乎", - "adj.many的最高级,最多的,最大的,大概的,大多数的,大部分的", - "n.最大限度,大部分,大多数人" - ], - "usphone": "moʊst", - "ukphone": "məʊst", - "id": "Loarr5", - "checked": false - }, - { - "name": "while", - "trans": [ - "conj.在…期间,与…同时,虽然,而", - "n.(一段)时间", - "vt.消磨,打发(时间),(愉快而懒散地)度过(时间)(常与 away 连用)" - ], - "usphone": "waɪl", - "ukphone": "waɪl", - "id": "ZcG7F9", - "checked": false - }, - { - "name": "regret", - "trans": [ - "vt.后悔,悔恨,遗憾,抱歉,悼念,哀悼", - "vi.感到后悔,感到抱歉", - "n.遗憾,惋惜,后悔,悔恨,哀悼" - ], - "usphone": "rɪˈɡrɛt", - "ukphone": "rɪˈgret", - "id": "1svKKs", - "checked": false - }, - { - "name": "far", - "trans": [ - "adv.久远地,(问到或谈及距离时说)有多远,到很远距离,到很大程度", - "adj.远的,遥远的,(某方向的)最远的,远端的", - "n.远方" - ], - "usphone": "fɑr", - "ukphone": "fɑ:(r)", - "id": "lds05J", - "checked": false - }, - { - "name": "rush", - "trans": [ - "vi.(使)急速行进,仓促完成,猛攻,急速流动,奔腾", - "vt.突袭,(使)仓促行事,催促,(为物色、招募目的)特别关注", - "n.冲,匆忙,繁忙的活动,涌动" - ], - "usphone": "rʌʃ", - "ukphone": "rʌʃ", - "id": "jytMYQ", - "checked": false - }, - { - "name": "act", - "trans": [ - "v.行动,表现,表演,起作用", - "n.行为,行动,法案,法令,短节目" - ], - "usphone": "ækt", - "ukphone": "ækt", - "id": "f4JV7Z", - "checked": false - }, - { - "name": "straight", - "trans": [ - "adj.直的,连续的,直率的,整齐的", - "adv.直地,直接地,坦率地,立即", - "n.直线,直线部分" - ], - "usphone": "stret", - "ukphone": "streɪt", - "id": "3yl-6C", - "checked": false - }, - { - "name": "fright", - "trans": [ - "n.恐怖,惊吓,可怕的东西,难看的人", - "v.使惊恐" - ], - "usphone": "fraɪt", - "ukphone": "fraɪt", - "id": "qGRukQ", - "checked": false - }, - { - "name": "battered", - "trans": [ - "adj.破旧的,磨损的,受虐待的,消瘦的", - "v.连续猛击,磨损" - ], - "usphone": "ˈbætərd", - "ukphone": "ˈbætəd", - "id": "R-BAf3", - "checked": false - }, - { - "name": "shortly", - "trans": [ - "adv.立刻,马上,简单地,扼要地,唐突地,简慢地,在即" - ], - "usphone": "ˈʃɔ:rtli", - "ukphone": "ˈʃɔ:tli", - "id": "6Kezk_", - "checked": false - }, - { - "name": "afterwards", - "trans": [ - "adv.然后,后来地,以后,之后,继" - ], - "usphone": "ˈæftərwərdz", - "ukphone": "ˈɑ:ftəwədz", - "id": "lelTbh", - "checked": false - }, - { - "name": "record", - "trans": [ - "n.记录,记载,档案,履历,唱片,最高纪录" - ], - "usphone": "ˈrekərd", - "ukphone": "ˈrekɔ:d", - "id": "hYVp8x", - "checked": false - }, - { - "name": "strong", - "trans": [ - "adj.强的,坚强的,强烈的,强壮的", - "adv.强劲地,猛烈地,大大地,坚强地" - ], - "usphone": "strɔ:ŋ", - "ukphone": "strɒŋ", - "id": "FUSKDT", - "checked": false - }, - { - "name": "swimmer", - "trans": [ - "n.游泳者" - ], - "usphone": "ˈswɪmər", - "ukphone": "ˈswɪmə(r)", - "id": "JGXvOS", - "checked": false - }, - { - "name": "succeed", - "trans": [ - "vi.成功,继承", - "vt.继承,继任,继位,随…之后" - ], - "usphone": "səkˈsid", - "ukphone": "səkˈsi:d", - "id": "tJzyVq", - "checked": false - }, - { - "name": "train", - "trans": [ - "n.火车,行列,一系列相关的事情, 拖裾", - "v.训练,教育,培养,修整" - ], - "usphone": "tren", - "ukphone": "treɪn", - "id": "QZ5wUj", - "checked": false - }, - { - "name": "anxiously", - "trans": [ - "adv.焦急地,担忧地,眼巴巴,亟" - ], - "usphone": "ˈæŋkʃəslɪ", - "ukphone": "'æŋkʃəslɪ", - "id": "c8QnQZ", - "checked": false - }, - { - "name": "intend", - "trans": [ - "vt.意欲,计划,为特殊目的而设计,为特定用途而打算,意指或意味", - "vi.怀有某种意图或目的" - ], - "usphone": "ɪnˈtɛnd", - "ukphone": "ɪnˈtend", - "id": "JSKsJF", - "checked": false - }, - { - "name": "solid", - "trans": [ - "adj.固体的,实心的,结实的,可靠的,可信赖的", - "n.固体,立体图形,立方体" - ], - "usphone": "ˈsɑ:lɪd", - "ukphone": "ˈsɒlɪd", - "id": "JjN96I", - "checked": false - }, - { - "name": "Olympic", - "trans": [ - "adj.奥林匹斯山的,奥林匹亚的;奥林匹克的", - "n.奥林匹克运动会比赛项目,用复数the Olympic = Olympic Games" - ], - "usphone": "oˈlɪmpɪk", - "ukphone": "əˈlɪmpɪk", - "id": "vrS4F8", - "checked": false - }, - { - "name": "hold", - "trans": [ - "vt.拿住,握住,保留,保存,扣留,拘押,容纳", - "vi.拿住,握住,同意,赞成,保持不变,有效", - "n.握住,保留,控制" - ], - "usphone": "hold", - "ukphone": "həʊld", - "id": "Nxwm6b", - "checked": false - }, - { - "name": "government", - "trans": [ - "n.政府,政体,治理的形式,管辖,治理" - ], - "usphone": "ˈgʌvərnmənt", - "ukphone": "ˈgʌvənmənt", - "id": "Lpl_4Z", - "checked": false - }, - { - "name": "immense", - "trans": [ - "adj.极大的,巨大的,浩瀚的,无边际的,〈口〉非常好的,弘道" - ], - "usphone": "ɪˈmɛns", - "ukphone": "ɪˈmens", - "id": "e01w6C", - "checked": false - }, - { - "name": "stadium", - "trans": [ - "n.运动场,体育场,医(疾病的第…)期" - ], - "usphone": "ˈstediəm", - "ukphone": "ˈsteɪdiəm", - "id": "-su6C_", - "checked": false - }, - { - "name": "standard", - "trans": [ - "n.标准,规格,旗,军旗,度量衡标准,直立支柱", - "adj.标准的,合格的,普遍的,一般的,公认为优秀的" - ], - "usphone": "ˈstændərd", - "ukphone": "ˈstændəd", - "id": "H3DYGZ", - "checked": false - }, - { - "name": "capital", - "trans": [ - "n.首都,资本,资源,大写字母", - "adj.极好的,死刑的,资本的,首都的" - ], - "usphone": "ˈkæpɪtl", - "ukphone": "ˈkæpɪtl", - "id": "3jDvR0", - "checked": false - }, - { - "name": "fantastic", - "trans": [ - "adj.极好的,很大的,怪诞的,不切实际的" - ], - "usphone": "fænˈtæstɪk", - "ukphone": "fænˈtæstɪk", - "id": "pSTVVk", - "checked": false - }, - { - "name": "design", - "trans": [ - "vt.& vi.设计,绘制", - "vt.设计,计划,企图,决意(做)", - "n.设计,图案,结构,计划", - "vi.设计略图,(为工艺品、装潢项目等)设计,当设计师,构思" - ], - "usphone": "dɪˈzaɪn", - "ukphone": "dɪˈzaɪn", - "id": "gnek_W", - "checked": false - }, - { - "name": "except", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mj95fC", - "checked": false - }, - { - "name": "Mediterranean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jT6RkJ", - "checked": false - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "di0RaA", - "checked": false - }, - { - "name": "continually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lQydSe", - "checked": false - }, - { - "name": "bitterly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFDUpU", - "checked": false - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li52hh", - "checked": false - }, - { - "name": "operation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_8_SL", - "checked": false - }, - { - "name": "successful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MBY1hj", - "checked": false - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kdmdg", - "checked": false - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AxBBjY", - "checked": false - }, - { - "name": "alone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJ9x2x", - "checked": false - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-55sY", - "checked": false - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjeSPf", - "checked": false - }, - { - "name": "certain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_SSOCh", - "checked": false - }, - { - "name": "caller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Ugl6", - "checked": false - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NcADb", - "checked": false - }, - { - "name": "hostess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9THd7N", - "checked": false - }, - { - "name": "unsmiling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZfn4s", - "checked": false - }, - { - "name": "tight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V7zG1O", - "checked": false - }, - { - "name": "fix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DLZhnE", - "checked": false - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3rJRgf", - "checked": false - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UcDlOK", - "checked": false - }, - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ge6QM2", - "checked": false - }, - { - "name": "mirror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DBhFSI", - "checked": false - }, - { - "name": "hole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "asBHvi", - "checked": false - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYkprN", - "checked": false - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pz3hko", - "checked": false - }, - { - "name": "lighthouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G0UiGA", - "checked": false - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIsgbV", - "checked": false - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-gQJUr", - "checked": false - }, - { - "name": "snake charmer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y-GyyN", - "checked": false - }, - { - "name": "pipe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0lDYd", - "checked": false - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IERypc", - "checked": false - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2DMtc6", - "checked": false - }, - { - "name": "snake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7x14pE", - "checked": false - }, - { - "name": "movement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QIlbOD", - "checked": false - }, - { - "name": "continue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "95Jojp", - "checked": false - }, - { - "name": "dance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_2J1O", - "checked": false - }, - { - "name": "obviously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9smx3x", - "checked": false - }, - { - "name": "difference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52WsoR", - "checked": false - }, - { - "name": "Indian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mllgyA", - "checked": false - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kN9S-6", - "checked": false - }, - { - "name": "flight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0gLbK2", - "checked": false - }, - { - "name": "explorer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RX_Jss", - "checked": false - }, - { - "name": "lie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HV7Z9f", - "checked": false - }, - { - "name": "serious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znPlES", - "checked": false - }, - { - "name": "point", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W6YQtP", - "checked": false - }, - { - "name": "seem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_boSk", - "checked": false - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ouchg", - "checked": false - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ojOeP", - "checked": false - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YApyn7", - "checked": false - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIKtPl", - "checked": false - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okUQyf", - "checked": false - }, - { - "name": "plain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dl_wxJ", - "checked": false - }, - { - "name": "forest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4xcr26", - "checked": false - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Of-7lx", - "checked": false - }, - { - "name": "picnic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oSChBZ", - "checked": false - }, - { - "name": "edge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWu_fv", - "checked": false - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9aVXH", - "checked": false - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mrnCV1", - "checked": false - }, - { - "name": "breath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH323_", - "checked": false - }, - { - "name": "content", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-P457", - "checked": false - }, - { - "name": "mend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7Gw2U", - "checked": false - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jUveTE", - "checked": false - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1Q0ZIQ", - "checked": false - }, - { - "name": "wallet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3dvP5Q", - "checked": false - }, - { - "name": "savings", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kll9ww", - "checked": false - }, - { - "name": "villager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT4OEZ", - "checked": false - }, - { - "name": "per cent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIhNlU", - "checked": false - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3CJlqh", - "checked": false - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2QI96", - "checked": false - }, - { - "name": "extremely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "paYbPz", - "checked": false - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQq8fF", - "checked": false - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8pCOi3", - "checked": false - }, - { - "name": "pile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OP-lQo", - "checked": false - }, - { - "name": "woollen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GJ-LH", - "checked": false - }, - { - "name": "goods", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ief0S", - "checked": false - }, - { - "name": "discover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dRlo_9", - "checked": false - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K8U7R5", - "checked": false - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W30GE6", - "checked": false - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4EtNg", - "checked": false - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_VdVV", - "checked": false - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d0X-DE", - "checked": false - }, - { - "name": "haunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZKlkM", - "checked": false - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVzEx9", - "checked": false - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cnKlz5", - "checked": false - }, - { - "name": "whisky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hC5o59", - "checked": false - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mneKCS", - "checked": false - }, - { - "name": "shake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtQX_t", - "checked": false - }, - { - "name": "accept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pIPj6", - "checked": false - }, - { - "name": "pull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dymN8E", - "checked": false - }, - { - "name": "cotton wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjuUD7", - "checked": false - }, - { - "name": "collect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYRMCX", - "checked": false - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvwTg", - "checked": false - }, - { - "name": "nod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjMeLY", - "checked": false - }, - { - "name": "meanwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOthEV", - "checked": false - }, - { - "name": "tired", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlfW8k", - "checked": false - }, - { - "name": "real", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeRjgf", - "checked": false - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G2kDoy", - "checked": false - }, - { - "name": "spring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bn0P9Y", - "checked": false - }, - { - "name": "mattress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNfo09", - "checked": false - }, - { - "name": "gust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JX011u", - "checked": false - }, - { - "name": "sweep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DR4h8M", - "checked": false - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kosJdE", - "checked": false - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Tjyuf", - "checked": false - }, - { - "name": "miraculously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YBqc8", - "checked": false - }, - { - "name": "unhurt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVy17X", - "checked": false - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gPcSD0", - "checked": false - }, - { - "name": "promptly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNHE6f", - "checked": false - }, - { - "name": "ride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYKUL5", - "checked": false - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtOY8d", - "checked": false - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJ7exo", - "checked": false - }, - { - "name": "view", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiAW3x", - "checked": false - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXq4IY", - "checked": false - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUBxJx", - "checked": false - }, - { - "name": "diet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XsESpg", - "checked": false - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W34F63", - "checked": false - }, - { - "name": "hurriedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tACx9a", - "checked": false - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IRaksH", - "checked": false - }, - { - "name": "guiltily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Y8z57", - "checked": false - }, - { - "name": "strict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_TfdKz", - "checked": false - }, - { - "name": "occasionally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KZ085", - "checked": false - }, - { - "name": "temporarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjnhxp", - "checked": false - }, - { - "name": "inch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FP0Qoh", - "checked": false - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TPr0gJ", - "checked": false - }, - { - "name": "actually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RtEv1H", - "checked": false - }, - { - "name": "hot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2P8Djz", - "checked": false - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "46stwf", - "checked": false - }, - { - "name": "cause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DkFa2", - "checked": false - }, - { - "name": "examine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbyOQE", - "checked": false - }, - { - "name": "accidentally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tiMINR", - "checked": false - }, - { - "name": "remains", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-VfX5", - "checked": false - }, - { - "name": "wire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWtAYT", - "checked": false - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGNMQB", - "checked": false - }, - { - "name": "power line", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V3E173", - "checked": false - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHHpfG", - "checked": false - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "554D2u", - "checked": false - }, - { - "name": "snatch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Nw5py", - "checked": false - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BXtVR", - "checked": false - }, - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eh8l7w", - "checked": false - }, - { - "name": "finger", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gUr9fL", - "checked": false - }, - { - "name": "pie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RuP-lm", - "checked": false - }, - { - "name": "mix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jAdCHf", - "checked": false - }, - { - "name": "pastry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2D3A6", - "checked": false - }, - { - "name": "annoying", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5nltmJ", - "checked": false - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wNf_Du", - "checked": false - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qiXfSp", - "checked": false - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxFaOr", - "checked": false - }, - { - "name": "persuade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpHqTH", - "checked": false - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LM7eFT", - "checked": false - }, - { - "name": "doorknob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CA6Kvz", - "checked": false - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvuhWk", - "checked": false - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5VhiEA", - "checked": false - }, - { - "name": "gold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TvVQWP", - "checked": false - }, - { - "name": "mine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y7aH66", - "checked": false - }, - { - "name": "treasure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vjmpzq", - "checked": false - }, - { - "name": "revealer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJETw", - "checked": false - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-sB2Y", - "checked": false - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5wmDQ", - "checked": false - }, - { - "name": "bury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4sYIs7", - "checked": false - }, - { - "name": "cave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q8YEgn", - "checked": false - }, - { - "name": "seashore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CwLKtf", - "checked": false - }, - { - "name": "pirate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nrj7_g", - "checked": false - }, - { - "name": "arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qm5TAC", - "checked": false - }, - { - "name": "soil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bFqw_c", - "checked": false - }, - { - "name": "entrance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4xGa2", - "checked": false - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn-VjJ", - "checked": false - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeyJy", - "checked": false - }, - { - "name": "thoroughly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9dFrqb", - "checked": false - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WI8jbY", - "checked": false - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NzXY_e", - "checked": false - }, - { - "name": "value", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8j-W1", - "checked": false - }, - { - "name": "sound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIn9D0", - "checked": false - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRUyY4", - "checked": false - }, - { - "name": "handsome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CqQ54G", - "checked": false - }, - { - "name": "Rolls-Royce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUC5JH", - "checked": false - }, - { - "name": "Benz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbN5er", - "checked": false - }, - { - "name": "wheel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYhlbQ", - "checked": false - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32-LGr", - "checked": false - }, - { - "name": "course", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jLq8nH", - "checked": false - }, - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14xk-Q", - "checked": false - }, - { - "name": "speed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7ExP_", - "checked": false - }, - { - "name": "downhill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSq09Z", - "checked": false - }, - { - "name": "madam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RDHM_w", - "checked": false - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4t3J68", - "checked": false - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kO1sGe", - "checked": false - }, - { - "name": "serve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIt3AF", - "checked": false - }, - { - "name": "scornfully", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDL-Sj", - "checked": false - }, - { - "name": "punish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QKPvKz", - "checked": false - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JiizZ", - "checked": false - }, - { - "name": "eager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32XOtZ", - "checked": false - }, - { - "name": "blessing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jgbyK6", - "checked": false - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VGeJmR", - "checked": false - }, - { - "name": "tiny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Edcvvp", - "checked": false - }, - { - "name": "possess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJvC6o", - "checked": false - }, - { - "name": "cursed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZKDNQ0", - "checked": false - }, - { - "name": "increase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfFD2X", - "checked": false - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryayZF", - "checked": false - }, - { - "name": "church", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-dGrI", - "checked": false - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93zhPL", - "checked": false - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pPXv_", - "checked": false - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CCeXgI", - "checked": false - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kLZVKG", - "checked": false - }, - { - "name": "vicar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X3CXWs", - "checked": false - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHbxsE", - "checked": false - }, - { - "name": "income", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ai-wnE", - "checked": false - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PYyb6", - "checked": false - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5T36h", - "checked": false - }, - { - "name": "press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIl0jd", - "checked": false - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqIbbV", - "checked": false - }, - { - "name": "latch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wfk8GQ", - "checked": false - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzmhDP", - "checked": false - }, - { - "name": "develop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuvupZ", - "checked": false - }, - { - "name": "habit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wUi_0k", - "checked": false - }, - { - "name": "remove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qHPdbT", - "checked": false - }, - { - "name": "future", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LL6z48", - "checked": false - }, - { - "name": "fair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XWYecK", - "checked": false - }, - { - "name": "fortune-teller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRc0nK", - "checked": false - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XjcIkQ", - "checked": false - }, - { - "name": "relation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGRZMG", - "checked": false - }, - { - "name": "impatiently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wuq9yz", - "checked": false - }, - { - "name": "Hubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imz5By", - "checked": false - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EAOnq", - "checked": false - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wq0pfV", - "checked": false - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3Itij", - "checked": false - }, - { - "name": "NASA", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn6tsx", - "checked": false - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8dkOR", - "checked": false - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcQE4V", - "checked": false - }, - { - "name": "astronaut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O1SHsK", - "checked": false - }, - { - "name": "shuttle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Ov6yM", - "checked": false - }, - { - "name": "Endeavour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nu3C51", - "checked": false - }, - { - "name": "robot-arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PlII1o", - "checked": false - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BrNxGR", - "checked": false - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a23zvn", - "checked": false - }, - { - "name": "distant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDOpQO", - "checked": false - }, - { - "name": "galaxy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ShfTl5", - "checked": false - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqcA_7", - "checked": false - }, - { - "name": "eagle eye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-RViK", - "checked": false - }, - { - "name": "control", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmU6W8", - "checked": false - }, - { - "name": "smoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ewWjud", - "checked": false - }, - { - "name": "desolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-9VmT", - "checked": false - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QWQYfF", - "checked": false - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zz43p_", - "checked": false - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD96u7", - "checked": false - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5PEOmy", - "checked": false - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E93L1x", - "checked": false - }, - { - "name": "grass-seed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BGWFJH", - "checked": false - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYyzLq", - "checked": false - }, - { - "name": "quantity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEX7lj", - "checked": false - }, - { - "name": "root", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vp9L42", - "checked": false - }, - { - "name": "century", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJ9uTS", - "checked": false - }, - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SgkRfN", - "checked": false - }, - { - "name": "blacken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0CrbKW", - "checked": false - }, - { - "name": "circle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yi0QEU", - "checked": false - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BeMUzf", - "checked": false - }, - { - "name": "close", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R65s5x", - "checked": false - }, - { - "name": "wedding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3yQb-", - "checked": false - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uX6suh", - "checked": false - }, - { - "name": "sort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuoYTX", - "checked": false - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-1KPoP", - "checked": false - }, - { - "name": "port", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0910TB", - "checked": false - }, - { - "name": "ventilate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IcPFh0", - "checked": false - }, - { - "name": "chimney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QylZF1", - "checked": false - }, - { - "name": "sea level", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-4Puy", - "checked": false - }, - { - "name": "double", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOAKtC", - "checked": false - }, - { - "name": "ventilation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B-1chH", - "checked": false - }, - { - "name": "fear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lg4d67", - "checked": false - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i9h27P", - "checked": false - }, - { - "name": "officially", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mef3gK", - "checked": false - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "np8JZk", - "checked": false - }, - { - "name": "European", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QkD7sW", - "checked": false - }, - { - "name": "continent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Zes09", - "checked": false - }, - { - "name": "versus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UC2zew", - "checked": false - }, - { - "name": "Christmas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bt9CAi", - "checked": false - }, - { - "name": "circus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cb_yfO", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ta3YpR", - "checked": false - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij_rve", - "checked": false - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rce2p_", - "checked": false - }, - { - "name": "ought", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBqwxA", - "checked": false - }, - { - "name": "weigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eTEisr", - "checked": false - }, - { - "name": "fortunate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OollsC", - "checked": false - }, - { - "name": "Lancaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBwcsB", - "checked": false - }, - { - "name": "bomber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOe9Rq", - "checked": false - }, - { - "name": "remote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvHAgC", - "checked": false - }, - { - "name": "Pacific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "acSms6", - "checked": false - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKvFEQ", - "checked": false - }, - { - "name": "wreck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muPOtw", - "checked": false - }, - { - "name": "rediscover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WCArOK", - "checked": false - }, - { - "name": "aerial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6pUU4x", - "checked": false - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHHLF6", - "checked": false - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RvquBK", - "checked": false - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9WS20", - "checked": false - }, - { - "name": "enthusiast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EA29JG", - "checked": false - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_kZR4C", - "checked": false - }, - { - "name": "imagine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiYk15", - "checked": false - }, - { - "name": "packing case", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_hnV-", - "checked": false - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_MrYha", - "checked": false - }, - { - "name": "bee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcbfBU", - "checked": false - }, - { - "name": "hive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XU7blC", - "checked": false - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBZQqt", - "checked": false - }, - { - "name": "beeswax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8G9sr2", - "checked": false - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C89SqP", - "checked": false - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o0yoHE", - "checked": false - }, - { - "name": "Kivu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uo27ml", - "checked": false - }, - { - "name": "Congo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JMpBV", - "checked": false - }, - { - "name": "Kituro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJStaV", - "checked": false - }, - { - "name": "erupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NWmIyW", - "checked": false - }, - { - "name": "violently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtU6oY", - "checked": false - }, - { - "name": "manage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IeXnn8", - "checked": false - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3WQBUc", - "checked": false - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qvsdnw", - "checked": false - }, - { - "name": "escape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNBD5o", - "checked": false - }, - { - "name": "alive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nfzf8", - "checked": false - }, - { - "name": "persistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6MOp-8", - "checked": false - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EMNrSm", - "checked": false - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BN1MyV", - "checked": false - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wWgxX", - "checked": false - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pHiQcU", - "checked": false - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_QIeuf", - "checked": false - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHb0P7", - "checked": false - }, - { - "name": "examiner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtIcne", - "checked": false - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "85m940", - "checked": false - }, - { - "name": "tap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAv4uJ", - "checked": false - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieB3LS", - "checked": false - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxpEtk", - "checked": false - }, - { - "name": "pedal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5E-HXT", - "checked": false - }, - { - "name": "mournful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rz_a4A", - "checked": false - }, - { - "name": "bullfight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57uPeV", - "checked": false - }, - { - "name": "drunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H9BaV", - "checked": false - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9GdmBT", - "checked": false - }, - { - "name": "ring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKfr24", - "checked": false - }, - { - "name": "unaware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UUdTk7", - "checked": false - }, - { - "name": "bull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ia-gtv", - "checked": false - }, - { - "name": "matador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hQQOEy", - "checked": false - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "amA9_8", - "checked": false - }, - { - "name": "apparently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSqTLZ", - "checked": false - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxuutY", - "checked": false - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEZVi", - "checked": false - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fXx77", - "checked": false - }, - { - "name": "clumsily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aYyHwp", - "checked": false - }, - { - "name": "bow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uExGCa", - "checked": false - }, - { - "name": "safety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EsVV7q", - "checked": false - }, - { - "name": "sympathetically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG2ECq", - "checked": false - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gOUWxw", - "checked": false - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1K-xM", - "checked": false - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXVyr8", - "checked": false - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fA7Qe", - "checked": false - }, - { - "name": "Greenwich", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-CSYk6", - "checked": false - }, - { - "name": "observatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28F4oh", - "checked": false - }, - { - "name": "check", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6u_4G6", - "checked": false - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1G20mX", - "checked": false - }, - { - "name": "tower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y9yK04", - "checked": false - }, - { - "name": "racing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZUzSSU", - "checked": false - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ci4HwG", - "checked": false - }, - { - "name": "Utah", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYKuC1", - "checked": false - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8QOkZi", - "checked": false - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rgk8Z5", - "checked": false - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGEfIq", - "checked": false - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ZNUmG", - "checked": false - }, - { - "name": "record-holder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_iC7c", - "checked": false - }, - { - "name": "truant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jHa_pT", - "checked": false - }, - { - "name": "unimaginative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRQt5B", - "checked": false - }, - { - "name": "shame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-_s3D", - "checked": false - }, - { - "name": "hitchhike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rUD2Je", - "checked": false - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kKjKQp", - "checked": false - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib8MZG", - "checked": false - }, - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7l2ALp", - "checked": false - }, - { - "name": "evade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YYcF8_", - "checked": false - }, - { - "name": "limelight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4EGokg", - "checked": false - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WhzTmm", - "checked": false - }, - { - "name": "fan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "szaYs8", - "checked": false - }, - { - "name": "shady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SJgkZ-", - "checked": false - }, - { - "name": "sheriff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FMGGRY", - "checked": false - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCeVjD", - "checked": false - }, - { - "name": "sneer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "srwYbs", - "checked": false - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5N5_Vi", - "checked": false - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5rNOk", - "checked": false - }, - { - "name": "stamp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PLrFGD", - "checked": false - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xi5HpF", - "checked": false - }, - { - "name": "scene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-vwDiv", - "checked": false - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sujdVe", - "checked": false - }, - { - "name": "fool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fESDIZ", - "checked": false - }, - { - "name": "bulletin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXVZkC", - "checked": false - }, - { - "name": "announcer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FQ5Bk", - "checked": false - }, - { - "name": "macaroni", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pC5hG5", - "checked": false - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "diNZM2", - "checked": false - }, - { - "name": "grower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TGvW2s", - "checked": false - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cEHweu", - "checked": false - }, - { - "name": "stalk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BcNISX", - "checked": false - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vrc4Gl", - "checked": false - }, - { - "name": "thresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zgjfhH", - "checked": false - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AuZ2c1", - "checked": false - }, - { - "name": "Signor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v5YKmt", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3PkSU", - "checked": false - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3T_jG", - "checked": false - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "om23C1", - "checked": false - }, - { - "name": "mummy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TW4ydV", - "checked": false - }, - { - "name": "Egyptian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7xA9n", - "checked": false - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6kCWfp", - "checked": false - }, - { - "name": "mark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VubKK6", - "checked": false - }, - { - "name": "plate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PINZ7L", - "checked": false - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Hv7g-", - "checked": false - }, - { - "name": "last", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xdccDN", - "checked": false - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lJCrNb", - "checked": false - }, - { - "name": "resin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PpUlp_", - "checked": false - }, - { - "name": "skin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdSzsG", - "checked": false - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0PTyb", - "checked": false - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N20QyH", - "checked": false - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k8YkAC", - "checked": false - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dDzZ97", - "checked": false - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtuQ_Y", - "checked": false - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhWMoM", - "checked": false - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83IUA_", - "checked": false - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecCteY", - "checked": false - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G5FGl2", - "checked": false - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXnp33", - "checked": false - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1o300Y", - "checked": false - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILdAuN", - "checked": false - }, - { - "name": "produce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djSgzf", - "checked": false - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o46hg0", - "checked": false - }, - { - "name": "satisfaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kC0CSo", - "checked": false - }, - { - "name": "delighted", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cS1Xb6", - "checked": false - }, - { - "name": "parent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3ZLdD", - "checked": false - }, - { - "name": "flight attendant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H18Ysq", - "checked": false - }, - { - "name": "frightened", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IE5pYs", - "checked": false - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LUyNle", - "checked": false - }, - { - "name": "bomb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lu7-kK", - "checked": false - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuiTm3", - "checked": false - }, - { - "name": "palace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk37L", - "checked": false - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nIIIub", - "checked": false - }, - { - "name": "exhibition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp3yNs", - "checked": false - }, - { - "name": "iron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dL2gOL", - "checked": false - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66nNEN", - "checked": false - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRtJ6D", - "checked": false - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99rVrp", - "checked": false - }, - { - "name": "steam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkmeXF", - "checked": false - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mXYX0", - "checked": false - }, - { - "name": "college", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9vdZA", - "checked": false - }, - { - "name": "prisoner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OsiGL-", - "checked": false - }, - { - "name": "bush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YzQ3bN", - "checked": false - }, - { - "name": "rapidly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBMCy9", - "checked": false - }, - { - "name": "uniform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tAnyR", - "checked": false - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MoTVFq", - "checked": false - }, - { - "name": "shoulder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RRR0k", - "checked": false - }, - { - "name": "march", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikC1s0", - "checked": false - }, - { - "name": "boldly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nc_xls", - "checked": false - }, - { - "name": "blaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FCHkt", - "checked": false - }, - { - "name": "salute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZvHZf", - "checked": false - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBRfLY", - "checked": false - }, - { - "name": "grey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HIFUcs", - "checked": false - }, - { - "name": "sharp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-6v4J", - "checked": false - }, - { - "name": "blow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmeT0", - "checked": false - }, - { - "name": "monster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoUtTM", - "checked": false - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YujhlZ", - "checked": false - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etrQty", - "checked": false - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGqYOu", - "checked": false - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x00iWZ", - "checked": false - }, - { - "name": "shining", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cne7Q1", - "checked": false - }, - { - "name": "oarfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6my8y_", - "checked": false - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP1Rey", - "checked": false - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUaip1", - "checked": false - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYgQgV", - "checked": false - }, - { - "name": "fanatical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKdv0F", - "checked": false - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VV1Jr", - "checked": false - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tv4A-f", - "checked": false - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYcyny", - "checked": false - }, - { - "name": "ex-", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YRByK", - "checked": false - }, - { - "name": "suspicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ihISL_", - "checked": false - }, - { - "name": "strike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMJj15", - "checked": false - }, - { - "name": "busman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "THePPJ", - "checked": false - }, - { - "name": "state", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7DZxgQ", - "checked": false - }, - { - "name": "agreement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0d14w", - "checked": false - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pERwK", - "checked": false - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SCwbnk", - "checked": false - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uXIOgd", - "checked": false - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iNYqu9", - "checked": false - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmgCqE", - "checked": false - }, - { - "name": "the Press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ej6fq", - "checked": false - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2W9XoF", - "checked": false - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuGKQF", - "checked": false - }, - { - "name": "headmaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dpD6D", - "checked": false - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eVbBly", - "checked": false - }, - { - "name": "gift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmBefN", - "checked": false - }, - { - "name": "album", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C9Ocxf", - "checked": false - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LlOJzX", - "checked": false - }, - { - "name": "encouragement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5eYtJ", - "checked": false - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9ebEk", - "checked": false - }, - { - "name": "honour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_lRsQ", - "checked": false - }, - { - "name": "coincidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXxvJQ", - "checked": false - }, - { - "name": "total", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WBEfl3", - "checked": false - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zAB6fE", - "checked": false - }, - { - "name": "gardening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EH0a2n", - "checked": false - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIDpzb", - "checked": false - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZBdmt", - "checked": false - }, - { - "name": "speedboat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRumz2", - "checked": false - }, - { - "name": "desperately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lStynY", - "checked": false - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bBx2So", - "checked": false - }, - { - "name": "water ski", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5S-rK9", - "checked": false - }, - { - "name": "buoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zem72g", - "checked": false - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "520TYm", - "checked": false - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cOjLOa", - "checked": false - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xbz-Hl", - "checked": false - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2145r", - "checked": false - }, - { - "name": "gently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2AZu8x", - "checked": false - }, - { - "name": "alibi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mzXED-", - "checked": false - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z7ozOr", - "checked": false - }, - { - "name": "inspector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CjsFn", - "checked": false - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BG7SfZ", - "checked": false - }, - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EOM1SY", - "checked": false - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ME4UPj", - "checked": false - }, - { - "name": "truth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BUQgfF", - "checked": false - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eLMxG", - "checked": false - }, - { - "name": "surface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZW9KaI", - "checked": false - }, - { - "name": "explosive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpF_4r", - "checked": false - }, - { - "name": "vibration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93vnUj", - "checked": false - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0GCjs", - "checked": false - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XCZJV", - "checked": false - }, - { - "name": "capsule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEA0GV", - "checked": false - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48Aqxd", - "checked": false - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj0cX3", - "checked": false - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hzF7nt", - "checked": false - }, - { - "name": "progress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EZwBOp", - "checked": false - }, - { - "name": "smoothly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FcG5kq", - "checked": false - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zv3UHO", - "checked": false - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R503Wg", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhf2Tr", - "checked": false - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WctjZo", - "checked": false - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w_4ko_", - "checked": false - }, - { - "name": "artiste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3Zekv", - "checked": false - }, - { - "name": "advertiser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKQpg_", - "checked": false - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T2j6M8", - "checked": false - }, - { - "name": "overfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kon6R2", - "checked": false - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EW1eQJ", - "checked": false - }, - { - "name": "terrify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqbQE", - "checked": false - }, - { - "name": "diver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1EoeL", - "checked": false - }, - { - "name": "oil rig", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRlKUa", - "checked": false - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Isbnw", - "checked": false - }, - { - "name": "cage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m7aKs-", - "checked": false - }, - { - "name": "shark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TSv0ER", - "checked": false - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFIJBU", - "checked": false - }, - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wcD8qI", - "checked": false - }, - { - "name": "cod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1R_nVH", - "checked": false - }, - { - "name": "skate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Sbr-o", - "checked": false - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gCK38R", - "checked": false - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cHBabl", - "checked": false - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_f2CZY", - "checked": false - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CpFlId", - "checked": false - }, - { - "name": "spy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Z3NK2", - "checked": false - }, - { - "name": "track", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pOoZxO", - "checked": false - }, - { - "name": "binoculars", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1uCB3", - "checked": false - }, - { - "name": "fast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zvih9", - "checked": false - }, - { - "name": "ladder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAOF14", - "checked": false - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJvzgn", - "checked": false - }, - { - "name": "sarcastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxWpbQ", - "checked": false - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "807RJp", - "checked": false - }, - { - "name": "noble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Rx841", - "checked": false - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EPXLa", - "checked": false - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9lzlw5", - "checked": false - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fYHpSk", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n3JVFZ", - "checked": false - }, - { - "name": "sculptor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TrS_Lp", - "checked": false - }, - { - "name": "actual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b_XOgj", - "checked": false - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hwua8S", - "checked": false - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gDb5el", - "checked": false - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nG1-FZ", - "checked": false - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GfRqih", - "checked": false - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGJs5E", - "checked": false - }, - { - "name": "pedestal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lsyf2o", - "checked": false - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PGPnbA", - "checked": false - }, - { - "name": "Los Angeles", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vyqdhi", - "checked": false - }, - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iHqfo_", - "checked": false - }, - { - "name": "weight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lb47Jq", - "checked": false - }, - { - "name": "underwater", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGGpEH", - "checked": false - }, - { - "name": "tricycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t6Xr3r", - "checked": false - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6mfyb3", - "checked": false - }, - { - "name": "yard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XrqVIA", - "checked": false - }, - { - "name": "gasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPA4i5", - "checked": false - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZYAyDD", - "checked": false - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sJn2qT", - "checked": false - }, - { - "name": "Escalopia", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyW7J5", - "checked": false - }, - { - "name": "frightful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GCI4CH", - "checked": false - }, - { - "name": "fire extinguisher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4UzjX", - "checked": false - }, - { - "name": "drily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7j9O5", - "checked": false - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tqr-Zb", - "checked": false - }, - { - "name": "heaven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZ3ASb", - "checked": false - }, - { - "name": "basement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vOGKvz", - "checked": false - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fMFxdz", - "checked": false - }, - { - "name": "post", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QYa2z9", - "checked": false - }, - { - "name": "shot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeZnT3", - "checked": false - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zkhcDA", - "checked": false - }, - { - "name": "lantern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7mQIPk", - "checked": false - }, - { - "name": "spectacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hh6LBJ", - "checked": false - } - ], - "chapterWordNumber": 30, - "chapterWords": [ - [ - { - "name": "private", - "trans": [ - "adj.私有的,私人的,秘密的,内心的,平民的,无官职的,士兵的", - "n.列兵,士兵,陆二等兵,〈古〉私人,个人,阴部,生殖器" - ], - "usphone": "ˈpraɪvɪt", - "ukphone": "ˈpraɪvət", - "id": "459-d1", - "checked": false - }, - { - "name": "conversation", - "trans": [ - "n.交谈,会话,交往,交际,会谈,(人与计算机的)人机对话" - ], - "usphone": "ˌkɑ:nvərˈseɪʃn", - "ukphone": "ˌkɒnvəˈseɪʃn", - "id": "HF5ziU", - "checked": false - }, - { - "name": "theatre", - "trans": [ - "n.剧院" - ], - "usphone": "ˈθiətər", - "ukphone": "'θɪətə", - "id": "7N632v", - "checked": false - }, - { - "name": "seat", - "trans": [ - "n.席位,座位,所在地,场所,臀部", - "vt.使就座,使就职,使获得座位(或席位),可容纳若干座位" - ], - "usphone": "sit", - "ukphone": "si:t", - "id": "XxT7f2", - "checked": false - }, - { - "name": "play", - "trans": [ - "n.比赛,游戏,戏剧,赌博", - "vt.& vi.玩,演奏,演出,参加比赛", - "vt.扮演,担任,充当…的角色,演出,装扮", - "vi.玩耍,游戏,游戏 参加游戏,赌博,闹着玩" - ], - "usphone": "pleɪ", - "ukphone": "pleɪ", - "id": "Ezeqff", - "checked": false - }, - { - "name": "loudly", - "trans": [ - "adv.高声地,吵闹地,响亮地,花哨地" - ], - "usphone": "ˈlaʊdlɪ", - "ukphone": "laʊdlɪ", - "id": "a3vQNq", - "checked": false - }, - { - "name": "angry", - "trans": [ - "adj.生气的,愤怒的,发怒的,(颜色等)刺目的,(伤口等)发炎的" - ], - "usphone": "ˈæŋɡri", - "ukphone": "ˈæŋgri", - "id": "myIqOb", - "checked": false - }, - { - "name": "angrily", - "trans": [ - "adv.愤怒地,生气地,气呼呼,气冲冲" - ], - "usphone": "ˈæŋɡrɪlɪ", - "ukphone": "'æŋɡrəlɪ", - "id": "vlqdDv", - "checked": false - }, - { - "name": "attention", - "trans": [ - "n.注意,注意力,照料,关怀,殷勤", - "int.口令立正" - ], - "usphone": "əˈtɛnʃən", - "ukphone": "əˈtenʃn", - "id": "v_jr8C", - "checked": false - }, - { - "name": "bear", - "trans": [ - "n.熊,(在证券市场等)卖空的人,蛮横的人", - "vt.忍受,承担,支撑,生育", - "vi.生(孩子),结(果实),与…有关", - "adj.跌价的,股票行情下跌的,卖空者的" - ], - "usphone": "ber", - "ukphone": "beə(r)", - "id": "DFcXV-", - "checked": false - }, - { - "name": "business", - "trans": [ - "n.商业,交易,生意,事务,业务,职业,行业" - ], - "usphone": "ˈbɪznɪs", - "ukphone": "ˈbɪznəs", - "id": "DcP8Ab", - "checked": false - }, - { - "name": "rudely", - "trans": [ - "adv.粗鲁地,不礼貌地,猛烈地,突然地" - ], - "usphone": "ˈrudlɪ", - "ukphone": "ˈru:dli", - "id": "umoFWC", - "checked": false - }, - { - "name": "until", - "trans": [ - "prep.到…为止,在…以前", - "conj.到…为止,在…以前,直到…才" - ], - "usphone": "ʌnˈtɪl", - "ukphone": "ənˈtɪl", - "id": "gcgEy-", - "checked": false - }, - { - "name": "outside", - "trans": [ - "adv.在外面,向外面,在户外,露天", - "n.外面,(弯曲路面或轨道的)外道,(靠近路中央的)外侧,(建筑物等的)周围", - "adj.外部的,集团外的,(选择余地、可能性等)非常小,可能性最大的", - "prep.(表示位置)在向…的外面,(表示范围)超出…的范围,(表示排斥)除了(某人)" - ], - "usphone": "ˈaʊtˌsaɪd", - "ukphone": "ˌaʊtˈsaɪd", - "id": "vWGJ5p", - "checked": false - }, - { - "name": "ring", - "trans": [ - "n.戒指,指环,铃声,钟声,环形物,拳击场", - "vt.形成环状,环绕,使(例如铃)响,打电话给", - "vi.按铃,敲钟,回响,成环形" - ], - "usphone": "rɪŋ", - "ukphone": "rɪŋ", - "id": "xcdzgY", - "checked": false - }, - { - "name": "aunt", - "trans": [ - "n.阿姨,姨母,姑妈,舅妈,婶娘" - ], - "usphone": "ænt", - "ukphone": "ɑ:nt", - "id": "Bd5fMP", - "checked": false - }, - { - "name": "repeat", - "trans": [ - "vt.复述,背诵,重复", - "vi.重做,重复投票", - "n.(节目)重演,重复,重复的事物" - ], - "usphone": "rɪˈpit", - "ukphone": "rɪˈpi:t", - "id": "UOoW1a", - "checked": false - }, - { - "name": "send", - "trans": [ - "vt.送,使作出(某种反应),派遣,使进入(某状态)", - "vt.& vi.用无线电波发送,发出信息", - "vi.派遣,发出,派人", - "adj.仅用作定语用于发送的" - ], - "usphone": "sɛnd", - "ukphone": "send", - "id": "oRmKGf", - "checked": false - }, - { - "name": "postcard", - "trans": [ - "n.明信片" - ], - "usphone": "ˈpoʊstkɑ:rd", - "ukphone": "ˈpəʊstkɑ:d", - "id": "NbsXrW", - "checked": false - }, - { - "name": "spoil", - "trans": [ - "vi.变质,掠夺,腐败", - "vt.损坏,糟蹋,把(酒,肉等)放坏,溺爱坏,宠坏(孩子等),抢劫,掠夺", - "n.抢劫,掠夺,废品,次品,成功所带来的好处,(开掘等时挖出的)弃土" - ], - "usphone": "spɔɪl", - "ukphone": "spɔɪl", - "id": "4z2zeu", - "checked": false - }, - { - "name": "museum", - "trans": [ - "n.博物馆" - ], - "usphone": "mjuˈziəm", - "ukphone": "mjuˈzi:əm", - "id": "QwdASV", - "checked": false - }, - { - "name": "public", - "trans": [ - "adj.公众的,公共的,公开的,政府的,人人知道的,知名的", - "n.大众,社会,公共场所,(文学家等的)爱读者" - ], - "usphone": "ˈpʌblɪk", - "ukphone": "ˈpʌblɪk", - "id": "2tagQ-", - "checked": false - }, - { - "name": "friendly", - "trans": [ - "adj.友好的,亲密的,有帮助的,互助的", - "adv.友好地,朋友般地" - ], - "usphone": "ˈfrɛndli", - "ukphone": "ˈfrendli", - "id": "vFdWe5", - "checked": false - }, - { - "name": "waiter", - "trans": [ - "n.侍者,服务员,托盘" - ], - "usphone": "ˈwetɚ", - "ukphone": "ˈweɪtə(r)", - "id": "V-abq-", - "checked": false - }, - { - "name": "lend", - "trans": [ - "vt.把…借给,贷(款),贡献,给予,适于", - "vi.增加,增添,给…增加,给予" - ], - "usphone": "lɛnd", - "ukphone": "lend", - "id": "Q3zB9w", - "checked": false - }, - { - "name": "decision", - "trans": [ - "n.决定,果断,决议,(法院的)判决", - "vt.口语拳击靠判定击败(对手)" - ], - "usphone": "dɪˈsɪʒən", - "ukphone": "dɪˈsɪʒn", - "id": "FUMjO9", - "checked": false - }, - { - "name": "whole", - "trans": [ - "adj.全部的,所有的,完整的", - "n.整体,整个,全部" - ], - "usphone": "hoʊl", - "ukphone": "həʊl", - "id": "BCg650", - "checked": false - }, - { - "name": "single", - "trans": [ - "adj.单一的,(打斗、比赛等)一对一的,惟一的,适于一人的", - "n.单程票,(旅馆等的)单人房间,复数(高尔夫球一对一的)二人对抗赛,常用复数美国、加拿大英语未婚(或单身)男子(或女子)", - "vt.挑选", - "vi.作一垒手" - ], - "usphone": "ˈsɪŋɡəl", - "ukphone": "ˈsɪŋgl", - "id": "vXDb8M", - "checked": false - }, - { - "name": "exciting", - "trans": [ - "adj.使人兴奋的,令人激动的", - "v.刺激(excite的现在分词)" - ], - "usphone": "ɪkˈsaɪtɪŋ", - "ukphone": "ɪkˈsaɪtɪŋ", - "id": "R3WLAn", - "checked": false - }, - { - "name": "receive", - "trans": [ - "vt.& vi.收到,接到,接纳,接待", - "vt.接收,受理,欢迎,承受", - "vi.接到,获得,接见,欢迎,电子学 接收,橄榄球 接球" - ], - "usphone": "rɪˈsiv", - "ukphone": "rɪˈsi:v", - "id": "rDK7Hg", - "checked": false - } - ], - [ - { - "name": "firm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VJcA6m", - "checked": false - }, - { - "name": "different", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q6A0oI", - "checked": false - }, - { - "name": "centre", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KMhbWl", - "checked": false - }, - { - "name": "abroad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PhfBgj", - "checked": false - }, - { - "name": "pigeon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mki3zv", - "checked": false - }, - { - "name": "message", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kDVTRP", - "checked": false - }, - { - "name": "cover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muxqSV", - "checked": false - }, - { - "name": "distance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HovFu6", - "checked": false - }, - { - "name": "request", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RW_ZrY", - "checked": false - }, - { - "name": "spare part", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Gkfwy1", - "checked": false - }, - { - "name": "service", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D09Wdi", - "checked": false - }, - { - "name": "beggar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fWs_A0", - "checked": false - }, - { - "name": "food", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xso6AK", - "checked": false - }, - { - "name": "pocket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L58WjW", - "checked": false - }, - { - "name": "call", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlRHO2", - "checked": false - }, - { - "name": "detective", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "31BY_n", - "checked": false - }, - { - "name": "airport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vH05lA", - "checked": false - }, - { - "name": "expect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K1mR3a", - "checked": false - }, - { - "name": "valuable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IYE7aK", - "checked": false - }, - { - "name": "parcel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J3m1CC", - "checked": false - }, - { - "name": "diamond", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VpXmOt", - "checked": false - }, - { - "name": "steal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZEZ3vR", - "checked": false - }, - { - "name": "main", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjYz9G", - "checked": false - }, - { - "name": "airfield", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rGs2vr", - "checked": false - }, - { - "name": "guard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k6DR9Y", - "checked": false - }, - { - "name": "precious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XK_TJt", - "checked": false - }, - { - "name": "stone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x8E0CK", - "checked": false - }, - { - "name": "sand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJKFfM", - "checked": false - }, - { - "name": "competition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PmJ0R5", - "checked": false - }, - { - "name": "neat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9fM6fK", - "checked": false - } - ], - [ - { - "name": "path", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E8olFf", - "checked": false - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B3M21E", - "checked": false - }, - { - "name": "pool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ARTVmJ", - "checked": false - }, - { - "name": "welcome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cFyE7s", - "checked": false - }, - { - "name": "crowd", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDIzf8", - "checked": false - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lOYmD9", - "checked": false - }, - { - "name": "hand", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2-e4v", - "checked": false - }, - { - "name": "shout", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "efVT4N", - "checked": false - }, - { - "name": "refuse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JfoMMg", - "checked": false - }, - { - "name": "laugh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qwdzY-", - "checked": false - }, - { - "name": "jazz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VYSZOi", - "checked": false - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5pqtq_", - "checked": false - }, - { - "name": "instrument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TnSFlc", - "checked": false - }, - { - "name": "clavichord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AbcNm-", - "checked": false - }, - { - "name": "recently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UgDNfF", - "checked": false - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BmjvhI", - "checked": false - }, - { - "name": "key", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99YEWq", - "checked": false - }, - { - "name": "string", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rz5u1I", - "checked": false - }, - { - "name": "shock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RB1hp4", - "checked": false - }, - { - "name": "allow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pf7btj", - "checked": false - }, - { - "name": "touch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mil2nB", - "checked": false - }, - { - "name": "turn", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UjNgUP", - "checked": false - }, - { - "name": "deserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PQoc25", - "checked": false - }, - { - "name": "lawyer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EbbqiI", - "checked": false - }, - { - "name": "bank", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "co49Z9", - "checked": false - }, - { - "name": "salary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ntx7DG", - "checked": false - }, - { - "name": "immediately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imDGYR", - "checked": false - }, - { - "name": "luck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "snp8T2", - "checked": false - }, - { - "name": "captain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WG9edH", - "checked": false - }, - { - "name": "sail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oY2RzQ", - "checked": false - } - ], - [ - { - "name": "harbour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pcAJkM", - "checked": false - }, - { - "name": "proud", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AV4T_W", - "checked": false - }, - { - "name": "important", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HfcW_n", - "checked": false - }, - { - "name": "group", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1C-mXK", - "checked": false - }, - { - "name": "pop singer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n5DCih", - "checked": false - }, - { - "name": "club", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pk_ysi", - "checked": false - }, - { - "name": "performance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ux7i4X", - "checked": false - }, - { - "name": "occasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uHdJ0l", - "checked": false - }, - { - "name": "amusing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eLtAD2", - "checked": false - }, - { - "name": "experience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uyrlH6", - "checked": false - }, - { - "name": "wave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2k6M0g", - "checked": false - }, - { - "name": "lift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0wi2hz", - "checked": false - }, - { - "name": "reply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bjGulr", - "checked": false - }, - { - "name": "language", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djXjyy", - "checked": false - }, - { - "name": "journey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JteZYn", - "checked": false - }, - { - "name": "secretary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1MrRlg", - "checked": false - }, - { - "name": "nervous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QjoJac", - "checked": false - }, - { - "name": "afford", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jnEDWi", - "checked": false - }, - { - "name": "weak", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A6cLrG", - "checked": false - }, - { - "name": "interrupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "I5SQJY", - "checked": false - }, - { - "name": "park", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JR3WYh", - "checked": false - }, - { - "name": "traffic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V2hdxa", - "checked": false - }, - { - "name": "ticket", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PbhJFn", - "checked": false - }, - { - "name": "note", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0KdOOB", - "checked": false - }, - { - "name": "area", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RfFVOI", - "checked": false - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OSZrx8", - "checked": false - }, - { - "name": "reminder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xxu8q3", - "checked": false - }, - { - "name": "fail", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Um0Cev", - "checked": false - }, - { - "name": "obey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zTA0NM", - "checked": false - }, - { - "name": "appear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xO3d0r", - "checked": false - } - ], - [ - { - "name": "stage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAdgGs", - "checked": false - }, - { - "name": "bright", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-UAD6Q", - "checked": false - }, - { - "name": "stocking", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TQs5B9", - "checked": false - }, - { - "name": "sock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQD7WW", - "checked": false - }, - { - "name": "pub", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NjSaMs", - "checked": false - }, - { - "name": "landlord", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MW2P6Y", - "checked": false - }, - { - "name": "bill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "A5d6Jy", - "checked": false - }, - { - "name": "hurry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0hdXtQ", - "checked": false - }, - { - "name": "ticket office", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8i020u", - "checked": false - }, - { - "name": "pity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DsKEJm", - "checked": false - }, - { - "name": "exclaim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8fwQ89", - "checked": false - }, - { - "name": "return", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_BV3LB", - "checked": false - }, - { - "name": "sadly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JM-bwM", - "checked": false - }, - { - "name": "catch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-IfbXH", - "checked": false - }, - { - "name": "fisherman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cN2eZn", - "checked": false - }, - { - "name": "boot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hfRUk4", - "checked": false - }, - { - "name": "waste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i2XVYE", - "checked": false - }, - { - "name": "realize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Sc6Cp", - "checked": false - }, - { - "name": "mad", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBBUtA", - "checked": false - }, - { - "name": "reason", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okQCk9", - "checked": false - }, - { - "name": "sum", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52fj1P", - "checked": false - }, - { - "name": "determined", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QlRLxH", - "checked": false - }, - { - "name": "dream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wZCpbM", - "checked": false - }, - { - "name": "age", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sqmI3l", - "checked": false - }, - { - "name": "channel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QE9MMI", - "checked": false - }, - { - "name": "throw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a54335", - "checked": false - }, - { - "name": "complete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-VwNit", - "checked": false - }, - { - "name": "modern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mfOffL", - "checked": false - }, - { - "name": "strange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iM-FKE", - "checked": false - }, - { - "name": "district", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14NRd9", - "checked": false - } - ], - [ - { - "name": "manager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lZXboA", - "checked": false - }, - { - "name": "upset", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lrFBng", - "checked": false - }, - { - "name": "sympathetic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EPBrhM", - "checked": false - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VxNlw_", - "checked": false - }, - { - "name": "wicked", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RCJU1c", - "checked": false - }, - { - "name": "contain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sDae3s", - "checked": false - }, - { - "name": "honesty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-nv8iV", - "checked": false - }, - { - "name": "railway", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CVGL3b", - "checked": false - }, - { - "name": "porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcoW9y", - "checked": false - }, - { - "name": "several", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGtrJw", - "checked": false - }, - { - "name": "foreigner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fHANnb", - "checked": false - }, - { - "name": "wonder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "upkn7K", - "checked": false - }, - { - "name": "art", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NmUq_q", - "checked": false - }, - { - "name": "critic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PcJ7Yi", - "checked": false - }, - { - "name": "paint", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qz4AjT", - "checked": false - }, - { - "name": "pretend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dMTVS3", - "checked": false - }, - { - "name": "pattern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CGIMrP", - "checked": false - }, - { - "name": "curtain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4R-hjC", - "checked": false - }, - { - "name": "material", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QCBjIx", - "checked": false - }, - { - "name": "appreciate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6xpkII", - "checked": false - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QO462Y", - "checked": false - }, - { - "name": "whether", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MVS10I", - "checked": false - }, - { - "name": "hang", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "r1J9GS", - "checked": false - }, - { - "name": "critically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_CfX05", - "checked": false - }, - { - "name": "upside down", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EJt2YP", - "checked": false - }, - { - "name": "tent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hmoM8W", - "checked": false - }, - { - "name": "field", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q6I6q7", - "checked": false - }, - { - "name": "smell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aktyXI", - "checked": false - }, - { - "name": "wonderful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RKlKso", - "checked": false - }, - { - "name": "campfire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "myMTT8", - "checked": false - } - ], - [ - { - "name": "creep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jvn9GU", - "checked": false - }, - { - "name": "sleeping bag", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xvuyvt", - "checked": false - }, - { - "name": "comfortable", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j5CSpi", - "checked": false - }, - { - "name": "soundly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EwNhWz", - "checked": false - }, - { - "name": "leap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hGjx0s", - "checked": false - }, - { - "name": "heavily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jBc1Eh", - "checked": false - }, - { - "name": "stream", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2MGzv_", - "checked": false - }, - { - "name": "form", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zh1XfN", - "checked": false - }, - { - "name": "wind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1S_P1E", - "checked": false - }, - { - "name": "right", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3gX-j2", - "checked": false - }, - { - "name": "rare", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2GSkq5", - "checked": false - }, - { - "name": "ancient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NhZuh-", - "checked": false - }, - { - "name": "myth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LAkX_f", - "checked": false - }, - { - "name": "trouble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TLFZmu", - "checked": false - }, - { - "name": "effect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xRqCAj", - "checked": false - }, - { - "name": "Medusa", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pJWlRQ", - "checked": false - }, - { - "name": "Gorgon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bKeCij", - "checked": false - }, - { - "name": "taxi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q8nLMg", - "checked": false - }, - { - "name": "Pilatus Porter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CKP86f", - "checked": false - }, - { - "name": "land", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oti3N_", - "checked": false - }, - { - "name": "plough", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2wMoK8", - "checked": false - }, - { - "name": "lonely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HmE_c1", - "checked": false - }, - { - "name": "Welsh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gpPuXV", - "checked": false - }, - { - "name": "roof", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z6-CZn", - "checked": false - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CgLwf-", - "checked": false - }, - { - "name": "flat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vxbhRy", - "checked": false - }, - { - "name": "desert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-10Kx", - "checked": false - }, - { - "name": "polo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6lVrFp", - "checked": false - }, - { - "name": "Wayle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uhAL_s", - "checked": false - }, - { - "name": "cut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-95Gl4", - "checked": false - } - ], - [ - { - "name": "row", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IkpK00", - "checked": false - }, - { - "name": "kick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U8Jc0X", - "checked": false - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hTXSFf", - "checked": false - }, - { - "name": "nearly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DccJSL", - "checked": false - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R6aYPB", - "checked": false - }, - { - "name": "retire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CH0LTf", - "checked": false - }, - { - "name": "company", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kg43lV", - "checked": false - }, - { - "name": "bicycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9eyOw", - "checked": false - }, - { - "name": "save", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "spivSg", - "checked": false - }, - { - "name": "workshop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rftfc2", - "checked": false - }, - { - "name": "helper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fxiwpD", - "checked": false - }, - { - "name": "employ", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Pzq_YR", - "checked": false - }, - { - "name": "grandson", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1YFbX", - "checked": false - }, - { - "name": "once", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JiJEv4", - "checked": false - }, - { - "name": "temptation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zS3WW9", - "checked": false - }, - { - "name": "article", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IgTBMF", - "checked": false - }, - { - "name": "wrap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WpFP9C", - "checked": false - }, - { - "name": "simply", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t5zFxi", - "checked": false - }, - { - "name": "arrest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXT2Rf", - "checked": false - }, - { - "name": "darkness", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7bBJrD", - "checked": false - }, - { - "name": "explain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WfUGMU", - "checked": false - }, - { - "name": "coast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OpqdDS", - "checked": false - }, - { - "name": "storm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "slxiFM", - "checked": false - }, - { - "name": "towards", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v2sPvQ", - "checked": false - }, - { - "name": "rock", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BHi-a1", - "checked": false - }, - { - "name": "shore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NcMCC5", - "checked": false - }, - { - "name": "light", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q-64-7", - "checked": false - }, - { - "name": "ahead", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZRM-CD", - "checked": false - }, - { - "name": "cliff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "L19NAD", - "checked": false - }, - { - "name": "struggle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XMBhrG", - "checked": false - } - ], - [ - { - "name": "except", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Mj95fC", - "checked": false - }, - { - "name": "Mediterranean", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jT6RkJ", - "checked": false - }, - { - "name": "complain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "di0RaA", - "checked": false - }, - { - "name": "continually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lQydSe", - "checked": false - }, - { - "name": "bitterly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFDUpU", - "checked": false - }, - { - "name": "sunshine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "li52hh", - "checked": false - }, - { - "name": "operation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O_8_SL", - "checked": false - }, - { - "name": "successful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MBY1hj", - "checked": false - }, - { - "name": "following", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3kdmdg", - "checked": false - }, - { - "name": "patient", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AxBBjY", - "checked": false - }, - { - "name": "alone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MJ9x2x", - "checked": false - }, - { - "name": "exchange", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v-55sY", - "checked": false - }, - { - "name": "inquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AjeSPf", - "checked": false - }, - { - "name": "certain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_SSOCh", - "checked": false - }, - { - "name": "caller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "f6Ugl6", - "checked": false - }, - { - "name": "relative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2NcADb", - "checked": false - }, - { - "name": "hostess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9THd7N", - "checked": false - }, - { - "name": "unsmiling", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UZfn4s", - "checked": false - }, - { - "name": "tight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V7zG1O", - "checked": false - }, - { - "name": "fix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DLZhnE", - "checked": false - }, - { - "name": "globe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3rJRgf", - "checked": false - }, - { - "name": "despair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UcDlOK", - "checked": false - }, - { - "name": "rude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ge6QM2", - "checked": false - }, - { - "name": "mirror", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DBhFSI", - "checked": false - }, - { - "name": "hole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "asBHvi", - "checked": false - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYkprN", - "checked": false - }, - { - "name": "remind", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pz3hko", - "checked": false - }, - { - "name": "lighthouse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G0UiGA", - "checked": false - }, - { - "name": "musical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dIsgbV", - "checked": false - }, - { - "name": "market", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-gQJUr", - "checked": false - } - ], - [ - { - "name": "snake charmer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y-GyyN", - "checked": false - }, - { - "name": "pipe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Z0lDYd", - "checked": false - }, - { - "name": "tune", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IERypc", - "checked": false - }, - { - "name": "glimpse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2DMtc6", - "checked": false - }, - { - "name": "snake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7x14pE", - "checked": false - }, - { - "name": "movement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QIlbOD", - "checked": false - }, - { - "name": "continue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "95Jojp", - "checked": false - }, - { - "name": "dance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u_2J1O", - "checked": false - }, - { - "name": "obviously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9smx3x", - "checked": false - }, - { - "name": "difference", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "52WsoR", - "checked": false - }, - { - "name": "Indian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mllgyA", - "checked": false - }, - { - "name": "pole", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kN9S-6", - "checked": false - }, - { - "name": "flight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0gLbK2", - "checked": false - }, - { - "name": "explorer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RX_Jss", - "checked": false - }, - { - "name": "lie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HV7Z9f", - "checked": false - }, - { - "name": "serious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "znPlES", - "checked": false - }, - { - "name": "point", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W6YQtP", - "checked": false - }, - { - "name": "seem", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_boSk", - "checked": false - }, - { - "name": "crash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ouchg", - "checked": false - }, - { - "name": "sack", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2ojOeP", - "checked": false - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YApyn7", - "checked": false - }, - { - "name": "aircraft", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIKtPl", - "checked": false - }, - { - "name": "endless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "okUQyf", - "checked": false - }, - { - "name": "plain", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dl_wxJ", - "checked": false - }, - { - "name": "forest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4xcr26", - "checked": false - }, - { - "name": "risk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Of-7lx", - "checked": false - }, - { - "name": "picnic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oSChBZ", - "checked": false - }, - { - "name": "edge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWu_fv", - "checked": false - }, - { - "name": "strap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z9aVXH", - "checked": false - }, - { - "name": "possession", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mrnCV1", - "checked": false - } - ], - [ - { - "name": "breath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qH323_", - "checked": false - }, - { - "name": "content", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-P457", - "checked": false - }, - { - "name": "mend", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U7Gw2U", - "checked": false - }, - { - "name": "clear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jUveTE", - "checked": false - }, - { - "name": "conscience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1Q0ZIQ", - "checked": false - }, - { - "name": "wallet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3dvP5Q", - "checked": false - }, - { - "name": "savings", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kll9ww", - "checked": false - }, - { - "name": "villager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HT4OEZ", - "checked": false - }, - { - "name": "per cent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fIhNlU", - "checked": false - }, - { - "name": "unload", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3CJlqh", - "checked": false - }, - { - "name": "wooden", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b2QI96", - "checked": false - }, - { - "name": "extremely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "paYbPz", - "checked": false - }, - { - "name": "occur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cQq8fF", - "checked": false - }, - { - "name": "astonish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8pCOi3", - "checked": false - }, - { - "name": "pile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OP-lQo", - "checked": false - }, - { - "name": "woollen", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-GJ-LH", - "checked": false - }, - { - "name": "goods", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4ief0S", - "checked": false - }, - { - "name": "discover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dRlo_9", - "checked": false - }, - { - "name": "admit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K8U7R5", - "checked": false - }, - { - "name": "confine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W30GE6", - "checked": false - }, - { - "name": "normal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "s4EtNg", - "checked": false - }, - { - "name": "thirsty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h_VdVV", - "checked": false - }, - { - "name": "ghost", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "d0X-DE", - "checked": false - }, - { - "name": "haunt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZKlkM", - "checked": false - }, - { - "name": "block", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JVzEx9", - "checked": false - }, - { - "name": "furniture", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cnKlz5", - "checked": false - }, - { - "name": "whisky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hC5o59", - "checked": false - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mneKCS", - "checked": false - }, - { - "name": "shake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtQX_t", - "checked": false - }, - { - "name": "accept", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-pIPj6", - "checked": false - } - ], - [ - { - "name": "pull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dymN8E", - "checked": false - }, - { - "name": "cotton wool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SjuUD7", - "checked": false - }, - { - "name": "collect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zYRMCX", - "checked": false - }, - { - "name": "collection", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BJvwTg", - "checked": false - }, - { - "name": "nod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xjMeLY", - "checked": false - }, - { - "name": "meanwhile", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WOthEV", - "checked": false - }, - { - "name": "tired", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vlfW8k", - "checked": false - }, - { - "name": "real", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeRjgf", - "checked": false - }, - { - "name": "owner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G2kDoy", - "checked": false - }, - { - "name": "spring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Bn0P9Y", - "checked": false - }, - { - "name": "mattress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rNfo09", - "checked": false - }, - { - "name": "gust", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JX011u", - "checked": false - }, - { - "name": "sweep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DR4h8M", - "checked": false - }, - { - "name": "courtyard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kosJdE", - "checked": false - }, - { - "name": "smash", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Tjyuf", - "checked": false - }, - { - "name": "miraculously", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-YBqc8", - "checked": false - }, - { - "name": "unhurt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZVy17X", - "checked": false - }, - { - "name": "glance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gPcSD0", - "checked": false - }, - { - "name": "promptly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RNHE6f", - "checked": false - }, - { - "name": "ride", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cYKUL5", - "checked": false - }, - { - "name": "excursion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JtOY8d", - "checked": false - }, - { - "name": "conductor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CJ7exo", - "checked": false - }, - { - "name": "view", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiAW3x", - "checked": false - }, - { - "name": "reward", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZXq4IY", - "checked": false - }, - { - "name": "virtue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "DUBxJx", - "checked": false - }, - { - "name": "diet", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XsESpg", - "checked": false - }, - { - "name": "forbid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "W34F63", - "checked": false - }, - { - "name": "hurriedly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tACx9a", - "checked": false - }, - { - "name": "embarrass", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IRaksH", - "checked": false - }, - { - "name": "guiltily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Y8z57", - "checked": false - } - ], - [ - { - "name": "strict", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_TfdKz", - "checked": false - }, - { - "name": "occasionally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5KZ085", - "checked": false - }, - { - "name": "temporarily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Fjnhxp", - "checked": false - }, - { - "name": "inch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FP0Qoh", - "checked": false - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TPr0gJ", - "checked": false - }, - { - "name": "actually", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RtEv1H", - "checked": false - }, - { - "name": "hot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2P8Djz", - "checked": false - }, - { - "name": "fireman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "46stwf", - "checked": false - }, - { - "name": "cause", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6DkFa2", - "checked": false - }, - { - "name": "examine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kbyOQE", - "checked": false - }, - { - "name": "accidentally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tiMINR", - "checked": false - }, - { - "name": "remains", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-VfX5", - "checked": false - }, - { - "name": "wire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MWtAYT", - "checked": false - }, - { - "name": "volt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGNMQB", - "checked": false - }, - { - "name": "power line", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V3E173", - "checked": false - }, - { - "name": "solve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QHHpfG", - "checked": false - }, - { - "name": "mystery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "554D2u", - "checked": false - }, - { - "name": "snatch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Nw5py", - "checked": false - }, - { - "name": "spark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1BXtVR", - "checked": false - }, - { - "name": "sticky", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eh8l7w", - "checked": false - }, - { - "name": "finger", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gUr9fL", - "checked": false - }, - { - "name": "pie", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RuP-lm", - "checked": false - }, - { - "name": "mix", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jAdCHf", - "checked": false - }, - { - "name": "pastry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-2D3A6", - "checked": false - }, - { - "name": "annoying", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5nltmJ", - "checked": false - }, - { - "name": "receiver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wNf_Du", - "checked": false - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qiXfSp", - "checked": false - }, - { - "name": "recognize", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sxFaOr", - "checked": false - }, - { - "name": "persuade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kpHqTH", - "checked": false - }, - { - "name": "mess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LM7eFT", - "checked": false - } - ], - [ - { - "name": "doorknob", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CA6Kvz", - "checked": false - }, - { - "name": "sign", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvuhWk", - "checked": false - }, - { - "name": "register", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5VhiEA", - "checked": false - }, - { - "name": "gold", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TvVQWP", - "checked": false - }, - { - "name": "mine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y7aH66", - "checked": false - }, - { - "name": "treasure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vjmpzq", - "checked": false - }, - { - "name": "revealer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rxJETw", - "checked": false - }, - { - "name": "invent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w-sB2Y", - "checked": false - }, - { - "name": "detect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5wmDQ", - "checked": false - }, - { - "name": "bury", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4sYIs7", - "checked": false - }, - { - "name": "cave", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q8YEgn", - "checked": false - }, - { - "name": "seashore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CwLKtf", - "checked": false - }, - { - "name": "pirate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nrj7_g", - "checked": false - }, - { - "name": "arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qm5TAC", - "checked": false - }, - { - "name": "soil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bFqw_c", - "checked": false - }, - { - "name": "entrance", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v4xGa2", - "checked": false - }, - { - "name": "finally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn-VjJ", - "checked": false - }, - { - "name": "worthless", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zQeyJy", - "checked": false - }, - { - "name": "thoroughly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9dFrqb", - "checked": false - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WI8jbY", - "checked": false - }, - { - "name": "confident", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NzXY_e", - "checked": false - }, - { - "name": "value", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8j-W1", - "checked": false - }, - { - "name": "sound", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIn9D0", - "checked": false - }, - { - "name": "excitement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LRUyY4", - "checked": false - }, - { - "name": "handsome", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CqQ54G", - "checked": false - }, - { - "name": "Rolls-Royce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bUC5JH", - "checked": false - }, - { - "name": "Benz", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pbN5er", - "checked": false - }, - { - "name": "wheel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BYhlbQ", - "checked": false - }, - { - "name": "explosion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32-LGr", - "checked": false - }, - { - "name": "course", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jLq8nH", - "checked": false - } - ], - [ - { - "name": "rival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "14xk-Q", - "checked": false - }, - { - "name": "speed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7ExP_", - "checked": false - }, - { - "name": "downhill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VSq09Z", - "checked": false - }, - { - "name": "madam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RDHM_w", - "checked": false - }, - { - "name": "jeans", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4t3J68", - "checked": false - }, - { - "name": "hesitate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kO1sGe", - "checked": false - }, - { - "name": "serve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cIt3AF", - "checked": false - }, - { - "name": "scornfully", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZDL-Sj", - "checked": false - }, - { - "name": "punish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QKPvKz", - "checked": false - }, - { - "name": "fur", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_JiizZ", - "checked": false - }, - { - "name": "eager", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "32XOtZ", - "checked": false - }, - { - "name": "blessing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jgbyK6", - "checked": false - }, - { - "name": "disguise", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VGeJmR", - "checked": false - }, - { - "name": "tiny", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Edcvvp", - "checked": false - }, - { - "name": "possess", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RJvC6o", - "checked": false - }, - { - "name": "cursed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZKDNQ0", - "checked": false - }, - { - "name": "increase", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IfFD2X", - "checked": false - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ryayZF", - "checked": false - }, - { - "name": "church", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k-dGrI", - "checked": false - }, - { - "name": "evil", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93zhPL", - "checked": false - }, - { - "name": "reputation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2pPXv_", - "checked": false - }, - { - "name": "claim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CCeXgI", - "checked": false - }, - { - "name": "victim", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kLZVKG", - "checked": false - }, - { - "name": "vicar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X3CXWs", - "checked": false - }, - { - "name": "source", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wHbxsE", - "checked": false - }, - { - "name": "income", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ai-wnE", - "checked": false - }, - { - "name": "trunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7PYyb6", - "checked": false - }, - { - "name": "bark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5T36h", - "checked": false - }, - { - "name": "press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GIl0jd", - "checked": false - }, - { - "name": "paw", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iqIbbV", - "checked": false - } - ], - [ - { - "name": "latch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wfk8GQ", - "checked": false - }, - { - "name": "expert", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FzmhDP", - "checked": false - }, - { - "name": "develop", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuvupZ", - "checked": false - }, - { - "name": "habit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wUi_0k", - "checked": false - }, - { - "name": "remove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qHPdbT", - "checked": false - }, - { - "name": "future", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LL6z48", - "checked": false - }, - { - "name": "fair", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XWYecK", - "checked": false - }, - { - "name": "fortune-teller", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JRc0nK", - "checked": false - }, - { - "name": "crystal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XjcIkQ", - "checked": false - }, - { - "name": "relation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iGRZMG", - "checked": false - }, - { - "name": "impatiently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wuq9yz", - "checked": false - }, - { - "name": "Hubble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "imz5By", - "checked": false - }, - { - "name": "telescope", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2EAOnq", - "checked": false - }, - { - "name": "launch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Wq0pfV", - "checked": false - }, - { - "name": "space", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "K3Itij", - "checked": false - }, - { - "name": "NASA", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jn6tsx", - "checked": false - }, - { - "name": "billion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "P8dkOR", - "checked": false - }, - { - "name": "faulty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OcQE4V", - "checked": false - }, - { - "name": "astronaut", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "O1SHsK", - "checked": false - }, - { - "name": "shuttle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2Ov6yM", - "checked": false - }, - { - "name": "Endeavour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Nu3C51", - "checked": false - }, - { - "name": "robot-arm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PlII1o", - "checked": false - }, - { - "name": "grab", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BrNxGR", - "checked": false - }, - { - "name": "atmosphere", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "a23zvn", - "checked": false - }, - { - "name": "distant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NDOpQO", - "checked": false - }, - { - "name": "galaxy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ShfTl5", - "checked": false - }, - { - "name": "universe", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pqcA_7", - "checked": false - }, - { - "name": "eagle eye", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "h-RViK", - "checked": false - }, - { - "name": "control", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmU6W8", - "checked": false - }, - { - "name": "smoke", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ewWjud", - "checked": false - } - ], - [ - { - "name": "desolate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8-9VmT", - "checked": false - }, - { - "name": "threaten", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QWQYfF", - "checked": false - }, - { - "name": "surrounding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zz43p_", - "checked": false - }, - { - "name": "destruction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gD96u7", - "checked": false - }, - { - "name": "flood", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5PEOmy", - "checked": false - }, - { - "name": "authority", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E93L1x", - "checked": false - }, - { - "name": "grass-seed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BGWFJH", - "checked": false - }, - { - "name": "spray", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYyzLq", - "checked": false - }, - { - "name": "quantity", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AEX7lj", - "checked": false - }, - { - "name": "root", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vp9L42", - "checked": false - }, - { - "name": "century", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NJ9uTS", - "checked": false - }, - { - "name": "patch", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SgkRfN", - "checked": false - }, - { - "name": "blacken", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0CrbKW", - "checked": false - }, - { - "name": "circle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Yi0QEU", - "checked": false - }, - { - "name": "admire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BeMUzf", - "checked": false - }, - { - "name": "close", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R65s5x", - "checked": false - }, - { - "name": "wedding", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "g3yQb-", - "checked": false - }, - { - "name": "reception", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uX6suh", - "checked": false - }, - { - "name": "sort", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MuoYTX", - "checked": false - }, - { - "name": "tunnel", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-1KPoP", - "checked": false - }, - { - "name": "port", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "0910TB", - "checked": false - }, - { - "name": "ventilate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IcPFh0", - "checked": false - }, - { - "name": "chimney", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QylZF1", - "checked": false - }, - { - "name": "sea level", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Y-4Puy", - "checked": false - }, - { - "name": "double", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JOAKtC", - "checked": false - }, - { - "name": "ventilation", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "B-1chH", - "checked": false - }, - { - "name": "fear", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lg4d67", - "checked": false - }, - { - "name": "invasion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i9h27P", - "checked": false - }, - { - "name": "officially", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mef3gK", - "checked": false - }, - { - "name": "connect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "np8JZk", - "checked": false - } - ], - [ - { - "name": "European", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QkD7sW", - "checked": false - }, - { - "name": "continent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7Zes09", - "checked": false - }, - { - "name": "versus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UC2zew", - "checked": false - }, - { - "name": "Christmas", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bt9CAi", - "checked": false - }, - { - "name": "circus", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cb_yfO", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ta3YpR", - "checked": false - }, - { - "name": "accompany", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ij_rve", - "checked": false - }, - { - "name": "approach", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rce2p_", - "checked": false - }, - { - "name": "ought", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GBqwxA", - "checked": false - }, - { - "name": "weigh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eTEisr", - "checked": false - }, - { - "name": "fortunate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OollsC", - "checked": false - }, - { - "name": "Lancaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBwcsB", - "checked": false - }, - { - "name": "bomber", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OOe9Rq", - "checked": false - }, - { - "name": "remote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gvHAgC", - "checked": false - }, - { - "name": "Pacific", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "acSms6", - "checked": false - }, - { - "name": "damage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKvFEQ", - "checked": false - }, - { - "name": "wreck", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "muPOtw", - "checked": false - }, - { - "name": "rediscover", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WCArOK", - "checked": false - }, - { - "name": "aerial", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6pUU4x", - "checked": false - }, - { - "name": "survey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gHHLF6", - "checked": false - }, - { - "name": "rescue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "RvquBK", - "checked": false - }, - { - "name": "package", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9WS20", - "checked": false - }, - { - "name": "enthusiast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EA29JG", - "checked": false - }, - { - "name": "restore", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_kZR4C", - "checked": false - }, - { - "name": "imagine", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iiYk15", - "checked": false - }, - { - "name": "packing case", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2_hnV-", - "checked": false - }, - { - "name": "colony", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_MrYha", - "checked": false - }, - { - "name": "bee", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VcbfBU", - "checked": false - }, - { - "name": "hive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XU7blC", - "checked": false - }, - { - "name": "preserve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FBZQqt", - "checked": false - } - ], - [ - { - "name": "beeswax", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8G9sr2", - "checked": false - }, - { - "name": "volcano", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C89SqP", - "checked": false - }, - { - "name": "active", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o0yoHE", - "checked": false - }, - { - "name": "Kivu", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uo27ml", - "checked": false - }, - { - "name": "Congo", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2JMpBV", - "checked": false - }, - { - "name": "Kituro", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dJStaV", - "checked": false - }, - { - "name": "erupt", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "NWmIyW", - "checked": false - }, - { - "name": "violently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtU6oY", - "checked": false - }, - { - "name": "manage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IeXnn8", - "checked": false - }, - { - "name": "brilliant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3WQBUc", - "checked": false - }, - { - "name": "liquid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qvsdnw", - "checked": false - }, - { - "name": "escape", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yNBD5o", - "checked": false - }, - { - "name": "alive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_nfzf8", - "checked": false - }, - { - "name": "persistent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6MOp-8", - "checked": false - }, - { - "name": "avoid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EMNrSm", - "checked": false - }, - { - "name": "insist", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BN1MyV", - "checked": false - }, - { - "name": "murder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9wWgxX", - "checked": false - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pHiQcU", - "checked": false - }, - { - "name": "acquire", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_QIeuf", - "checked": false - }, - { - "name": "confidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JHb0P7", - "checked": false - }, - { - "name": "examiner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtIcne", - "checked": false - }, - { - "name": "suppose", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "85m940", - "checked": false - }, - { - "name": "tap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gAv4uJ", - "checked": false - }, - { - "name": "react", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ieB3LS", - "checked": false - }, - { - "name": "brake", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GxpEtk", - "checked": false - }, - { - "name": "pedal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5E-HXT", - "checked": false - }, - { - "name": "mournful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Rz_a4A", - "checked": false - }, - { - "name": "bullfight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "57uPeV", - "checked": false - }, - { - "name": "drunk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-H9BaV", - "checked": false - }, - { - "name": "wander", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9GdmBT", - "checked": false - } - ], - [ - { - "name": "ring", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fKfr24", - "checked": false - }, - { - "name": "unaware", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UUdTk7", - "checked": false - }, - { - "name": "bull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ia-gtv", - "checked": false - }, - { - "name": "matador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hQQOEy", - "checked": false - }, - { - "name": "remark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "amA9_8", - "checked": false - }, - { - "name": "apparently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xSqTLZ", - "checked": false - }, - { - "name": "sensitive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qxuutY", - "checked": false - }, - { - "name": "criticism", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WsEZVi", - "checked": false - }, - { - "name": "charge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fXx77", - "checked": false - }, - { - "name": "clumsily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aYyHwp", - "checked": false - }, - { - "name": "bow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uExGCa", - "checked": false - }, - { - "name": "safety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EsVV7q", - "checked": false - }, - { - "name": "sympathetically", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QG2ECq", - "checked": false - }, - { - "name": "parliament", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gOUWxw", - "checked": false - }, - { - "name": "erect", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "D1K-xM", - "checked": false - }, - { - "name": "accurate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FXVyr8", - "checked": false - }, - { - "name": "official", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5fA7Qe", - "checked": false - }, - { - "name": "Greenwich", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-CSYk6", - "checked": false - }, - { - "name": "observatory", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "28F4oh", - "checked": false - }, - { - "name": "check", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6u_4G6", - "checked": false - }, - { - "name": "microphone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1G20mX", - "checked": false - }, - { - "name": "tower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "y9yK04", - "checked": false - }, - { - "name": "racing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZUzSSU", - "checked": false - }, - { - "name": "per", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ci4HwG", - "checked": false - }, - { - "name": "Utah", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OYKuC1", - "checked": false - }, - { - "name": "horsepower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8QOkZi", - "checked": false - }, - { - "name": "burst", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rgk8Z5", - "checked": false - }, - { - "name": "average", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UGEfIq", - "checked": false - }, - { - "name": "footstep", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5ZNUmG", - "checked": false - }, - { - "name": "record-holder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n_iC7c", - "checked": false - } - ], - [ - { - "name": "truant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jHa_pT", - "checked": false - }, - { - "name": "unimaginative", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cRQt5B", - "checked": false - }, - { - "name": "shame", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "M-_s3D", - "checked": false - }, - { - "name": "hitchhike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rUD2Je", - "checked": false - }, - { - "name": "meantime", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kKjKQp", - "checked": false - }, - { - "name": "lorry", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Ib8MZG", - "checked": false - }, - { - "name": "border", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7l2ALp", - "checked": false - }, - { - "name": "evade", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YYcF8_", - "checked": false - }, - { - "name": "limelight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4EGokg", - "checked": false - }, - { - "name": "precaution", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WhzTmm", - "checked": false - }, - { - "name": "fan", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "szaYs8", - "checked": false - }, - { - "name": "shady", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SJgkZ-", - "checked": false - }, - { - "name": "sheriff", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FMGGRY", - "checked": false - }, - { - "name": "notice", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YCeVjD", - "checked": false - }, - { - "name": "sneer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "srwYbs", - "checked": false - }, - { - "name": "thick", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5N5_Vi", - "checked": false - }, - { - "name": "signal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "J5rNOk", - "checked": false - }, - { - "name": "stamp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PLrFGD", - "checked": false - }, - { - "name": "helicopter", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xi5HpF", - "checked": false - }, - { - "name": "scene", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-vwDiv", - "checked": false - }, - { - "name": "survivor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sujdVe", - "checked": false - }, - { - "name": "fool", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fESDIZ", - "checked": false - }, - { - "name": "bulletin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TXVZkC", - "checked": false - }, - { - "name": "announcer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FQ5Bk", - "checked": false - }, - { - "name": "macaroni", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pC5hG5", - "checked": false - }, - { - "name": "leading", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "diNZM2", - "checked": false - }, - { - "name": "grower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TGvW2s", - "checked": false - }, - { - "name": "splendid", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cEHweu", - "checked": false - }, - { - "name": "stalk", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BcNISX", - "checked": false - }, - { - "name": "gather", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vrc4Gl", - "checked": false - } - ], - [ - { - "name": "thresh", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zgjfhH", - "checked": false - }, - { - "name": "process", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AuZ2c1", - "checked": false - }, - { - "name": "Signor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "v5YKmt", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o3PkSU", - "checked": false - }, - { - "name": "champion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "E3T_jG", - "checked": false - }, - { - "name": "studio", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "om23C1", - "checked": false - }, - { - "name": "mummy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TW4ydV", - "checked": false - }, - { - "name": "Egyptian", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q7xA9n", - "checked": false - }, - { - "name": "temple", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6kCWfp", - "checked": false - }, - { - "name": "mark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "VubKK6", - "checked": false - }, - { - "name": "plate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PINZ7L", - "checked": false - }, - { - "name": "disease", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-Hv7g-", - "checked": false - }, - { - "name": "last", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xdccDN", - "checked": false - }, - { - "name": "prove", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lJCrNb", - "checked": false - }, - { - "name": "resin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PpUlp_", - "checked": false - }, - { - "name": "skin", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PdSzsG", - "checked": false - }, - { - "name": "section", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "F0PTyb", - "checked": false - }, - { - "name": "figure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "N20QyH", - "checked": false - }, - { - "name": "normally", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "k8YkAC", - "checked": false - }, - { - "name": "survive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dDzZ97", - "checked": false - }, - { - "name": "entitle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MtuQ_Y", - "checked": false - }, - { - "name": "calm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LhWMoM", - "checked": false - }, - { - "name": "nerve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "83IUA_", - "checked": false - }, - { - "name": "concentration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ecCteY", - "checked": false - }, - { - "name": "suffer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "G5FGl2", - "checked": false - }, - { - "name": "symptom", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LXnp33", - "checked": false - }, - { - "name": "temper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1o300Y", - "checked": false - }, - { - "name": "appetite", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ILdAuN", - "checked": false - }, - { - "name": "produce", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "djSgzf", - "checked": false - }, - { - "name": "urge", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "o46hg0", - "checked": false - } - ], - [ - { - "name": "satisfaction", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kC0CSo", - "checked": false - }, - { - "name": "delighted", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cS1Xb6", - "checked": false - }, - { - "name": "parent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "u3ZLdD", - "checked": false - }, - { - "name": "flight attendant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H18Ysq", - "checked": false - }, - { - "name": "frightened", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IE5pYs", - "checked": false - }, - { - "name": "curious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LUyNle", - "checked": false - }, - { - "name": "bomb", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lu7-kK", - "checked": false - }, - { - "name": "plant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LuiTm3", - "checked": false - }, - { - "name": "palace", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yYk37L", - "checked": false - }, - { - "name": "extraordinary", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nIIIub", - "checked": false - }, - { - "name": "exhibition", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hp3yNs", - "checked": false - }, - { - "name": "iron", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dL2gOL", - "checked": false - }, - { - "name": "various", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "66nNEN", - "checked": false - }, - { - "name": "machinery", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QRtJ6D", - "checked": false - }, - { - "name": "display", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "99rVrp", - "checked": false - }, - { - "name": "steam", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JkmeXF", - "checked": false - }, - { - "name": "profit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8mXYX0", - "checked": false - }, - { - "name": "college", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "q9vdZA", - "checked": false - }, - { - "name": "prisoner", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OsiGL-", - "checked": false - }, - { - "name": "bush", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YzQ3bN", - "checked": false - }, - { - "name": "rapidly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JBMCy9", - "checked": false - }, - { - "name": "uniform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9tAnyR", - "checked": false - }, - { - "name": "rifle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "MoTVFq", - "checked": false - }, - { - "name": "shoulder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9RRR0k", - "checked": false - }, - { - "name": "march", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ikC1s0", - "checked": false - }, - { - "name": "boldly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nc_xls", - "checked": false - }, - { - "name": "blaze", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_FCHkt", - "checked": false - }, - { - "name": "salute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uZvHZf", - "checked": false - }, - { - "name": "elderly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BBRfLY", - "checked": false - }, - { - "name": "grey", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "HIFUcs", - "checked": false - } - ], - [ - { - "name": "sharp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "i-6v4J", - "checked": false - }, - { - "name": "blow", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "jOmeT0", - "checked": false - }, - { - "name": "monster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UoUtTM", - "checked": false - }, - { - "name": "sailor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "YujhlZ", - "checked": false - }, - { - "name": "sight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "etrQty", - "checked": false - }, - { - "name": "creature", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGqYOu", - "checked": false - }, - { - "name": "peculiar", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x00iWZ", - "checked": false - }, - { - "name": "shining", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Cne7Q1", - "checked": false - }, - { - "name": "oarfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6my8y_", - "checked": false - }, - { - "name": "election", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "oP1Rey", - "checked": false - }, - { - "name": "former", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "OUaip1", - "checked": false - }, - { - "name": "defeat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hYgQgV", - "checked": false - }, - { - "name": "fanatical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eKdv0F", - "checked": false - }, - { - "name": "opponent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8VV1Jr", - "checked": false - }, - { - "name": "radical", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "tv4A-f", - "checked": false - }, - { - "name": "progressive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uYcyny", - "checked": false - }, - { - "name": "ex-", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9YRByK", - "checked": false - }, - { - "name": "suspicious", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ihISL_", - "checked": false - }, - { - "name": "strike", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uMJj15", - "checked": false - }, - { - "name": "busman", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "THePPJ", - "checked": false - }, - { - "name": "state", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7DZxgQ", - "checked": false - }, - { - "name": "agreement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "H0d14w", - "checked": false - }, - { - "name": "relieve", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4pERwK", - "checked": false - }, - { - "name": "pressure", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SCwbnk", - "checked": false - }, - { - "name": "extent", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "uXIOgd", - "checked": false - }, - { - "name": "volunteer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iNYqu9", - "checked": false - }, - { - "name": "gratitude", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rmgCqE", - "checked": false - }, - { - "name": "the Press", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Ej6fq", - "checked": false - }, - { - "name": "object", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2W9XoF", - "checked": false - }, - { - "name": "inform", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "xuGKQF", - "checked": false - } - ], - [ - { - "name": "headmaster", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5dpD6D", - "checked": false - }, - { - "name": "contribute", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eVbBly", - "checked": false - }, - { - "name": "gift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "JmBefN", - "checked": false - }, - { - "name": "album", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "C9Ocxf", - "checked": false - }, - { - "name": "patience", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LlOJzX", - "checked": false - }, - { - "name": "encouragement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "V5eYtJ", - "checked": false - }, - { - "name": "farewell", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "x9ebEk", - "checked": false - }, - { - "name": "honour", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m_lRsQ", - "checked": false - }, - { - "name": "coincidence", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "UXxvJQ", - "checked": false - }, - { - "name": "total", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WBEfl3", - "checked": false - }, - { - "name": "devote", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zAB6fE", - "checked": false - }, - { - "name": "gardening", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EH0a2n", - "checked": false - }, - { - "name": "hobby", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pIDpzb", - "checked": false - }, - { - "name": "swing", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3ZBdmt", - "checked": false - }, - { - "name": "speedboat", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SRumz2", - "checked": false - }, - { - "name": "desperately", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lStynY", - "checked": false - }, - { - "name": "companion", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bBx2So", - "checked": false - }, - { - "name": "water ski", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5S-rK9", - "checked": false - }, - { - "name": "buoy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Zem72g", - "checked": false - }, - { - "name": "dismay", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "520TYm", - "checked": false - }, - { - "name": "tremendous", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cOjLOa", - "checked": false - }, - { - "name": "petrol", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Xbz-Hl", - "checked": false - }, - { - "name": "drift", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "X2145r", - "checked": false - }, - { - "name": "gently", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2AZu8x", - "checked": false - }, - { - "name": "alibi", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "mzXED-", - "checked": false - }, - { - "name": "commit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "z7ozOr", - "checked": false - }, - { - "name": "inspector", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "2CjsFn", - "checked": false - }, - { - "name": "employer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BG7SfZ", - "checked": false - }, - { - "name": "confirm", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EOM1SY", - "checked": false - }, - { - "name": "suggest", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ME4UPj", - "checked": false - } - ], - [ - { - "name": "truth", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BUQgfF", - "checked": false - }, - { - "name": "trap", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-eLMxG", - "checked": false - }, - { - "name": "surface", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZW9KaI", - "checked": false - }, - { - "name": "explosive", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "dpF_4r", - "checked": false - }, - { - "name": "vibration", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "93vnUj", - "checked": false - }, - { - "name": "collapse", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "U0GCjs", - "checked": false - }, - { - "name": "drill", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "3XCZJV", - "checked": false - }, - { - "name": "capsule", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "lEA0GV", - "checked": false - }, - { - "name": "layer", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "48Aqxd", - "checked": false - }, - { - "name": "beneath", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Qj0cX3", - "checked": false - }, - { - "name": "lower", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "hzF7nt", - "checked": false - }, - { - "name": "progress", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EZwBOp", - "checked": false - }, - { - "name": "smoothly", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "FcG5kq", - "checked": false - }, - { - "name": "slip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zv3UHO", - "checked": false - }, - { - "name": "comedy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "R503Wg", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qhf2Tr", - "checked": false - }, - { - "name": "queue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "WctjZo", - "checked": false - }, - { - "name": "dull", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "w_4ko_", - "checked": false - }, - { - "name": "artiste", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Q3Zekv", - "checked": false - }, - { - "name": "advertiser", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gKQpg_", - "checked": false - }, - { - "name": "chip", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "T2j6M8", - "checked": false - }, - { - "name": "overfish", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "kon6R2", - "checked": false - }, - { - "name": "giant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "EW1eQJ", - "checked": false - }, - { - "name": "terrify", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "LGqbQE", - "checked": false - }, - { - "name": "diver", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "j1EoeL", - "checked": false - }, - { - "name": "oil rig", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "bRlKUa", - "checked": false - }, - { - "name": "wit", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "5Isbnw", - "checked": false - }, - { - "name": "cage", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "m7aKs-", - "checked": false - }, - { - "name": "shark", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TSv0ER", - "checked": false - }, - { - "name": "whale", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "BFIJBU", - "checked": false - } - ], - [ - { - "name": "variety", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "wcD8qI", - "checked": false - }, - { - "name": "cod", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1R_nVH", - "checked": false - }, - { - "name": "skate", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "8Sbr-o", - "checked": false - }, - { - "name": "factor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gCK38R", - "checked": false - }, - { - "name": "crew", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "cHBabl", - "checked": false - }, - { - "name": "balloon", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "_f2CZY", - "checked": false - }, - { - "name": "royal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "CpFlId", - "checked": false - }, - { - "name": "spy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9Z3NK2", - "checked": false - }, - { - "name": "track", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "pOoZxO", - "checked": false - }, - { - "name": "binoculars", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n1uCB3", - "checked": false - }, - { - "name": "fast", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "1zvih9", - "checked": false - }, - { - "name": "ladder", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "rAOF14", - "checked": false - }, - { - "name": "shed", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "AJvzgn", - "checked": false - }, - { - "name": "sarcastic", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "IxWpbQ", - "checked": false - }, - { - "name": "tone", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "807RJp", - "checked": false - }, - { - "name": "noble", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "4Rx841", - "checked": false - }, - { - "name": "monument", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "-EPXLa", - "checked": false - }, - { - "name": "statue", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "9lzlw5", - "checked": false - }, - { - "name": "liberty", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fYHpSk", - "checked": false - }, - { - "name": "present", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "n3JVFZ", - "checked": false - }, - { - "name": "sculptor", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "TrS_Lp", - "checked": false - }, - { - "name": "actual", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b_XOgj", - "checked": false - }, - { - "name": "copper", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hwua8S", - "checked": false - }, - { - "name": "support", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "gDb5el", - "checked": false - }, - { - "name": "framework", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "nG1-FZ", - "checked": false - }, - { - "name": "transport", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GfRqih", - "checked": false - }, - { - "name": "site", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "KGJs5E", - "checked": false - }, - { - "name": "pedestal", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lsyf2o", - "checked": false - }, - { - "name": "instruct", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "PGPnbA", - "checked": false - }, - { - "name": "Los Angeles", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Vyqdhi", - "checked": false - } - ], - [ - { - "name": "reluctant", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "iHqfo_", - "checked": false - }, - { - "name": "weight", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Lb47Jq", - "checked": false - }, - { - "name": "underwater", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "qGGpEH", - "checked": false - }, - { - "name": "tricycle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "t6Xr3r", - "checked": false - }, - { - "name": "compete", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "6mfyb3", - "checked": false - }, - { - "name": "yard", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "XrqVIA", - "checked": false - }, - { - "name": "gasp", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "SPA4i5", - "checked": false - }, - { - "name": "fantasy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "ZYAyDD", - "checked": false - }, - { - "name": "ambassador", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "sJn2qT", - "checked": false - }, - { - "name": "Escalopia", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "eyW7J5", - "checked": false - }, - { - "name": "frightful", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "GCI4CH", - "checked": false - }, - { - "name": "fire extinguisher", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "b4UzjX", - "checked": false - }, - { - "name": "drily", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "l7j9O5", - "checked": false - }, - { - "name": "embassy", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Tqr-Zb", - "checked": false - }, - { - "name": "heaven", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "yZ3ASb", - "checked": false - }, - { - "name": "basement", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "vOGKvz", - "checked": false - }, - { - "name": "definitely", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "fMFxdz", - "checked": false - }, - { - "name": "post", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "QYa2z9", - "checked": false - }, - { - "name": "shot", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "aeZnT3", - "checked": false - }, - { - "name": "festival", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "zkhcDA", - "checked": false - }, - { - "name": "lantern", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "7mQIPk", - "checked": false - }, - { - "name": "spectacle", - "trans": [], - "usphone": "", - "ukphone": "", - "id": "Hh6LBJ", - "checked": false - } - ] - ], - "residueWords": [ - { - "name": "hospital", - "trans": [ - "n.医院,收容所,养老院,〈古〉旅客招待所" - ], - "usphone": "ˈhɑ:spɪtl", - "ukphone": "ˈhɒspɪtl", - "id": "s3qNJX", - "checked": false - }, - { - "name": "station", - "trans": [ - "n.车站,所,局,身份,电视台", - "vt.配置,安置,驻扎" - ], - "usphone": "ˈsteʃən", - "ukphone": "ˈsteɪʃn", - "id": "af6fTL", - "checked": false - }, - { - "name": "most", - "trans": [ - "adv.最,最多(大),much的最高级,非常,很,几乎", - "adj.many的最高级,最多的,最大的,大概的,大多数的,大部分的", - "n.最大限度,大部分,大多数人" - ], - "usphone": "moʊst", - "ukphone": "məʊst", - "id": "Loarr5", - "checked": false - }, - { - "name": "while", - "trans": [ - "conj.在…期间,与…同时,虽然,而", - "n.(一段)时间", - "vt.消磨,打发(时间),(愉快而懒散地)度过(时间)(常与 away 连用)" - ], - "usphone": "waɪl", - "ukphone": "waɪl", - "id": "ZcG7F9", - "checked": false - }, - { - "name": "regret", - "trans": [ - "vt.后悔,悔恨,遗憾,抱歉,悼念,哀悼", - "vi.感到后悔,感到抱歉", - "n.遗憾,惋惜,后悔,悔恨,哀悼" - ], - "usphone": "rɪˈɡrɛt", - "ukphone": "rɪˈgret", - "id": "1svKKs", - "checked": false - }, - { - "name": "far", - "trans": [ - "adv.久远地,(问到或谈及距离时说)有多远,到很远距离,到很大程度", - "adj.远的,遥远的,(某方向的)最远的,远端的", - "n.远方" - ], - "usphone": "fɑr", - "ukphone": "fɑ:(r)", - "id": "lds05J", - "checked": false - }, - { - "name": "rush", - "trans": [ - "vi.(使)急速行进,仓促完成,猛攻,急速流动,奔腾", - "vt.突袭,(使)仓促行事,催促,(为物色、招募目的)特别关注", - "n.冲,匆忙,繁忙的活动,涌动" - ], - "usphone": "rʌʃ", - "ukphone": "rʌʃ", - "id": "jytMYQ", - "checked": false - }, - { - "name": "act", - "trans": [ - "v.行动,表现,表演,起作用", - "n.行为,行动,法案,法令,短节目" - ], - "usphone": "ækt", - "ukphone": "ækt", - "id": "f4JV7Z", - "checked": false - }, - { - "name": "straight", - "trans": [ - "adj.直的,连续的,直率的,整齐的", - "adv.直地,直接地,坦率地,立即", - "n.直线,直线部分" - ], - "usphone": "stret", - "ukphone": "streɪt", - "id": "3yl-6C", - "checked": false - }, - { - "name": "fright", - "trans": [ - "n.恐怖,惊吓,可怕的东西,难看的人", - "v.使惊恐" - ], - "usphone": "fraɪt", - "ukphone": "fraɪt", - "id": "qGRukQ", - "checked": false - }, - { - "name": "battered", - "trans": [ - "adj.破旧的,磨损的,受虐待的,消瘦的", - "v.连续猛击,磨损" - ], - "usphone": "ˈbætərd", - "ukphone": "ˈbætəd", - "id": "R-BAf3", - "checked": false - }, - { - "name": "shortly", - "trans": [ - "adv.立刻,马上,简单地,扼要地,唐突地,简慢地,在即" - ], - "usphone": "ˈʃɔ:rtli", - "ukphone": "ˈʃɔ:tli", - "id": "6Kezk_", - "checked": false - }, - { - "name": "afterwards", - "trans": [ - "adv.然后,后来地,以后,之后,继" - ], - "usphone": "ˈæftərwərdz", - "ukphone": "ˈɑ:ftəwədz", - "id": "lelTbh", - "checked": false - }, - { - "name": "record", - "trans": [ - "n.记录,记载,档案,履历,唱片,最高纪录" - ], - "usphone": "ˈrekərd", - "ukphone": "ˈrekɔ:d", - "id": "hYVp8x", - "checked": false - }, - { - "name": "strong", - "trans": [ - "adj.强的,坚强的,强烈的,强壮的", - "adv.强劲地,猛烈地,大大地,坚强地" - ], - "usphone": "strɔ:ŋ", - "ukphone": "strɒŋ", - "id": "FUSKDT", - "checked": false - }, - { - "name": "swimmer", - "trans": [ - "n.游泳者" - ], - "usphone": "ˈswɪmər", - "ukphone": "ˈswɪmə(r)", - "id": "JGXvOS", - "checked": false - }, - { - "name": "succeed", - "trans": [ - "vi.成功,继承", - "vt.继承,继任,继位,随…之后" - ], - "usphone": "səkˈsid", - "ukphone": "səkˈsi:d", - "id": "tJzyVq", - "checked": false - }, - { - "name": "train", - "trans": [ - "n.火车,行列,一系列相关的事情, 拖裾", - "v.训练,教育,培养,修整" - ], - "usphone": "tren", - "ukphone": "treɪn", - "id": "QZ5wUj", - "checked": false - }, - { - "name": "anxiously", - "trans": [ - "adv.焦急地,担忧地,眼巴巴,亟" - ], - "usphone": "ˈæŋkʃəslɪ", - "ukphone": "'æŋkʃəslɪ", - "id": "c8QnQZ", - "checked": false - }, - { - "name": "intend", - "trans": [ - "vt.意欲,计划,为特殊目的而设计,为特定用途而打算,意指或意味", - "vi.怀有某种意图或目的" - ], - "usphone": "ɪnˈtɛnd", - "ukphone": "ɪnˈtend", - "id": "JSKsJF", - "checked": false - }, - { - "name": "solid", - "trans": [ - "adj.固体的,实心的,结实的,可靠的,可信赖的", - "n.固体,立体图形,立方体" - ], - "usphone": "ˈsɑ:lɪd", - "ukphone": "ˈsɒlɪd", - "id": "JjN96I", - "checked": false - }, - { - "name": "Olympic", - "trans": [ - "adj.奥林匹斯山的,奥林匹亚的;奥林匹克的", - "n.奥林匹克运动会比赛项目,用复数the Olympic = Olympic Games" - ], - "usphone": "oˈlɪmpɪk", - "ukphone": "əˈlɪmpɪk", - "id": "vrS4F8", - "checked": false - }, - { - "name": "hold", - "trans": [ - "vt.拿住,握住,保留,保存,扣留,拘押,容纳", - "vi.拿住,握住,同意,赞成,保持不变,有效", - "n.握住,保留,控制" - ], - "usphone": "hold", - "ukphone": "həʊld", - "id": "Nxwm6b", - "checked": false - }, - { - "name": "government", - "trans": [ - "n.政府,政体,治理的形式,管辖,治理" - ], - "usphone": "ˈgʌvərnmənt", - "ukphone": "ˈgʌvənmənt", - "id": "Lpl_4Z", - "checked": false - }, - { - "name": "immense", - "trans": [ - "adj.极大的,巨大的,浩瀚的,无边际的,〈口〉非常好的,弘道" - ], - "usphone": "ɪˈmɛns", - "ukphone": "ɪˈmens", - "id": "e01w6C", - "checked": false - }, - { - "name": "stadium", - "trans": [ - "n.运动场,体育场,医(疾病的第…)期" - ], - "usphone": "ˈstediəm", - "ukphone": "ˈsteɪdiəm", - "id": "-su6C_", - "checked": false - }, - { - "name": "standard", - "trans": [ - "n.标准,规格,旗,军旗,度量衡标准,直立支柱", - "adj.标准的,合格的,普遍的,一般的,公认为优秀的" - ], - "usphone": "ˈstændərd", - "ukphone": "ˈstændəd", - "id": "H3DYGZ", - "checked": false - }, - { - "name": "capital", - "trans": [ - "n.首都,资本,资源,大写字母", - "adj.极好的,死刑的,资本的,首都的" - ], - "usphone": "ˈkæpɪtl", - "ukphone": "ˈkæpɪtl", - "id": "3jDvR0", - "checked": false - }, - { - "name": "fantastic", - "trans": [ - "adj.极好的,很大的,怪诞的,不切实际的" - ], - "usphone": "fænˈtæstɪk", - "ukphone": "fænˈtæstɪk", - "id": "pSTVVk", - "checked": false - }, - { - "name": "design", - "trans": [ - "vt.& vi.设计,绘制", - "vt.设计,计划,企图,决意(做)", - "n.设计,图案,结构,计划", - "vi.设计略图,(为工艺品、装潢项目等)设计,当设计师,构思" - ], - "usphone": "dɪˈzaɪn", - "ukphone": "dɪˈzaɪn", - "id": "gnek_W", - "checked": false - } - ], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 862, - "resourceId": "nce-new-2", - "url": "nce-new-2.json", - "category": "青少年英语", - "tags": [ - "新概念英语" - ], - "translateLanguage": "common", - "type": "word", - "language": "en" - }, - { - "id": "QseZSr", - "name": "CET-6", - "description": "大学英语六级词库", - "sort": 0, - "originWords": [], - "words": [], - "chapterWordNumber": 30, - "chapterWords": [], - "residueWords": [], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": false, - "length": 2345, - "resourceId": "", - "url": "CET6_T.json", - "category": "中国考试", - "tags": [ - "大学英语" - ], - "translateLanguage": "common", - "type": "word", - "language": "en" - }, - { - "id": "oR-0FJ", - "name": "Coder Dict", - "description": "程序员常见单词词库", - "sort": 0, - "originWords": [ - { - "name": "command", - "trans": [ - "n.命令,指挥; 司令部,指挥部; [计算机]指令; 控制力 vt.指挥,控制,命令; 命令; 应得,值得 vi.给出命令; 命令,指令 adj.指挥的,根据命令(或要求)而作的" - ], - "id": "_xC0Lc" - }, - { - "name": "use", - "trans": [ - "n. 运用,用法,使用权,适用 vt. 使用,利用,对待 vi. 吸毒" - ], - "id": "6ZScs6" - }, - { - "name": "program", - "trans": [ - "n. 节目(单),程序,计划 vt. 规划,拟定计划,制作节目" - ], - "id": "P1t4vf" - }, - { - "name": "line", - "trans": [ - "n. 行,线,航线,场界,皱纹,家族 vt. &vi. 用做衬里,排成一行,顺...排列 vi. 排成一行,顺...排列,划线于" - ], - "id": "SjMtee" - }, - { - "name": "if", - "trans": [ - "conj. 如果,是否,即使 n. 条件,设想" - ], - "id": "rdjNgj" - }, - { - "name": "display", - "trans": [ - "n. 显示,陈列,炫耀 vt. 显示,表现,夸示" - ], - "id": "iF7Xoe" - }, - { - "name": "set", - "trans": [ - "vt.放置,安置; 使处于某种状况; 设置; 摆放餐具 vi.落山; 出发; 凝结 n.一套,一副; 集合; 布景; 电视机 adj.固定的; 位于…的; 顽固的; 安排好的" - ], - "id": "hCBECj" - }, - { - "name": "key", - "trans": [ - "adj. 主要的,关键的 n. 钥匙,关键,答案,按键,音调 vt. 上锁,调节,提供解答,键入 vi. 使用钥匙" - ], - "id": "ViedIp" - }, - { - "name": "list", - "trans": [ - "n.清单,目录; 倾斜; 布边,布头; 狭条 vt.列出,列入; 把…编列成表; 记入名单内 vi.列于表上" - ], - "id": "64jLzW" - }, - { - "name": "by", - "trans": [ - "prep. 被, 经由, 在...之前, 根据 adv. 靠近, 经过, 放在一旁地 adj. 在旁边的, 附带的 n. 次要的事件" - ], - "id": "CZFA8A" - }, - { - "name": "press", - "trans": [ - "vt.压,按; 逼迫; 紧抱 vi.压; 逼迫; 重压 n.强迫征兵; 新闻报道,出版物; 压榨; 印刷机(厂)" - ], - "id": "TnOWwr" - }, - { - "name": "with", - "trans": [ - "prep. 和...一起,用, 随着, 包括" - ], - "id": "3LJY5_" - }, - { - "name": "format", - "trans": [ - "n. 设计,版式 n.[计算机]格式,DOS命令 : 格式化(磁盘),用于空盘或使用过的磁盘建立新空盘来存储数据 v. vt.使格式化,设计,安排" - ], - "id": "FVF5Eq" - }, - { - "name": "change", - "trans": [ - "n. 变化, 零钱 v. 改变" - ], - "id": "AUn5Xf" - }, - { - "name": "cursor", - "trans": [ - "光标" - ], - "id": "QlOWnW" - }, - { - "name": "directory", - "trans": [ - "n. 目录,工商名录,指南 [计算机] 目录 adj. 给予指导的" - ], - "id": "NfHmJF" - }, - { - "name": "from", - "trans": [ - "prep. 从,从...起" - ], - "id": "jJT8DT" - }, - { - "name": "menu", - "trans": [ - "n. 菜单" - ], - "id": "JTOpVm" - }, - { - "name": "option", - "trans": [ - "n.选择(的自由); 选项; 选择权; 选择能力 vt.得到或获准进行选择; 调动球员" - ], - "id": "pC_bVI" - }, - { - "name": "character", - "trans": [ - "n. 个性, 品质; 字符; 人物; 名誉; 地位" - ], - "id": "M5JSEa" - }, - { - "name": "current", - "trans": [ - "n. (水、气、电)流, 趋势 adj. 流通的, 现在的, 最近的" - ], - "id": "OVjk7U" - }, - { - "name": "type", - "trans": [ - "n.类型; 铅字; (印刷或打印的)文字; 于…类型的 vt.& vi.打字 vt.[医学]测定(血型); 按类型把…归类; 成为…的典型; [印刷]浇铸(铅字等)" - ], - "id": "0ephAl" - }, - { - "name": "screen", - "trans": [ - "n.屏幕; 银幕; 屏风 vt.筛(煤、矿石等); 拍摄; 放映(电影); 庇护" - ], - "id": "mnr3PV" - }, - { - "name": "specify", - "trans": [ - "vt. 明确说明,叙述,指定,详细说明" - ], - "id": "YQDUVI" - }, - { - "name": "move", - "trans": [ - "vt.& vi.移动,搬动 vi.搬家; 行动; 进展; (机器等)开动 vt.提议; 使感动; 摇动; 变化 n.改变; 迁移" - ], - "id": "AJqchB" - }, - { - "name": "disk", - "trans": [ - "n. 圆盘,唱片,花盘,盘形物,光盘 vt. 用圆盘耙耙地 [计算机] 磁盘" - ], - "id": "cjxuQi" - }, - { - "name": "text", - "trans": [ - "n. 本文, 文件, 正文, 课文 vt. &vi. 发短信" - ], - "id": "s9ZoMs" - }, - { - "name": "drive", - "trans": [ - "v. 开车, 驱使, 驾进力 n. 驾车, 快车道, 推进力, 驱使, 路, 街" - ], - "id": "QuwPd4" - }, - { - "name": "see", - "trans": [ - "vt. 看见,经历,明白,确保,视为,拜访,陪同 vi. 注意,想象,了解,调查 n. 主教教区,主角权限" - ], - "id": "XlUARW" - }, - { - "name": "name", - "trans": [ - "n. 名字, 名称, 姓名 vt. 命名, 称呼, 任命 adj. 有名的, 著名的" - ], - "id": "37EoJv" - }, - { - "name": "record", - "trans": [ - "n. 记录,纪录,唱片 vt. 记录,(将声音等)录下,表明 adj. 关于" - ], - "id": "WT9YhG" - }, - { - "name": "box", - "trans": [ - "n. 盒子,箱,专席,亭子,窘境 vt. 装...入盒中,限制住,调和,改变形状,用拳击... vi.参与拳击" - ], - "id": "I_fg8c" - }, - { - "name": "database", - "trans": [ - "n. 数据库" - ], - "id": "z6UXqf" - }, - { - "name": "help", - "trans": [ - "n. 帮助,援助 vt. &vi. 帮助,改善" - ], - "id": "FCkvNj" - }, - { - "name": "memory", - "trans": [ - "n. 记忆,内存,回忆" - ], - "id": "mRsZLr" - }, - { - "name": "all", - "trans": [ - "adj. 所有的,全部的 adv. 全部,非常,全然,所有 pron. 全部,所有 n. 全部" - ], - "id": "Os_ATX" - }, - { - "name": "on", - "trans": [ - "prep. 在...之上,由…支撑着,在(某一天),使用, 根据 [计算机] 开 adv.穿着,向前(移动),(表示持续性) adj. 表示已连接、处于工作状态或使用中,表示发生,值班 abbr.=Ontario" - ], - "id": "nEHJQV" - }, - { - "name": "copy", - "trans": [ - "n.复制品; 一份; (报刊等的)稿件; 准备排印的书面材料 vt.& vi.复制; 抄写; 容许复制的 vt.模仿; 仿造…的样式或图案; 抄写; 复制" - ], - "id": "ZX97gC" - }, - { - "name": "shell", - "trans": [ - "n. 贝壳,壳,外形 vt. &vi. 去壳,脱落,炮击,拾贝壳 n.[计算机] DOS命令 : 安装备用的COMMAND.COM文件, 并改变环境尺寸" - ], - "id": "F87qTY" - }, - { - "name": "delete", - "trans": [ - "vt. 删除" - ], - "id": "xLHsRg" - }, - { - "name": "enter", - "trans": [ - "vi. 进入,参加,开始,上台,进入角色 vt. 进入,报名,开始,加入,报价,提出 [计算机] 送入" - ], - "id": "nt0nEu" - }, - { - "name": "margin", - "trans": [ - "n. 差额,利润,页边空白,边缘 vt. 使围绕于,加边缘" - ], - "id": "Of1gCF" - }, - { - "name": "mark", - "trans": [ - "n. 污迹, 标记, 分数, 烙印, 纪录 vt. 做标记于, 留意, 打分数, 留下污痕, 使...明显 vi. 做标志, 记分, 留下印记" - ], - "id": "D8SfqJ" - }, - { - "name": "also", - "trans": [ - "adv. 也, 同样地, 而且" - ], - "id": "fL31aW" - }, - { - "name": "do", - "trans": [ - "aux. 助动词(无词意) v. 干,做" - ], - "id": "SpfQZH" - }, - { - "name": "information", - "trans": [ - "n. 信息, 情报, 新闻, 资料, 询问" - ], - "id": "H1Tqr8" - }, - { - "name": "choose", - "trans": [ - "vt. &vi. 选择" - ], - "id": "jsgHnk" - }, - { - "name": "select", - "trans": [ - "adj. 精选的 n. 被挑选出来的人或物 v. 选择 vi. 选择,挑选,选拔 vt. 选择,挑选" - ], - "id": "AZTXMg" - }, - { - "name": "group", - "trans": [ - "n. 团体,组,团 vt. &vi. 聚合,成群 [计算机] 成组" - ], - "id": "AUztCw" - }, - { - "name": "first", - "trans": [ - "adv. 首先,第一,优先 adj. 第一的, 最早的, 一流的 n. (序数词)第一, 第一个人或事物, (大学学位的)最优等, (汽车, 自行车等的)最低挡" - ], - "id": "Co9xyZ" - }, - { - "name": "field", - "trans": [ - "n. 领域;牧场;旷野;战场;运动场 vi. 担任场外队员 adj. 扫描场;田赛的;野生的 vt. 把暴晒于场上;使上场;(通常成功地)回答,处理(问题)" - ], - "id": "w6JaL8" - }, - { - "name": "procedure", - "trans": [ - "n. 程序, 手续, 步骤; 常规的做法" - ], - "id": "Lzve8t" - }, - { - "name": "print", - "trans": [ - "n. 版,印刷物,印迹 vt. &vi. 印刷,出版,打印 adj. 印刷的" - ], - "id": "6p7B8l" - }, - { - "name": "return", - "trans": [ - "n. 返回,归还,报答,报告 vt. &vi. 返回,归还,回来 adj. 返回的" - ], - "id": "lnC8LT" - }, - { - "name": "number", - "trans": [ - "n. 号码,数字 v. 编号,加号码,总计 vi. 总计 vt. 编号" - ], - "id": "p43w7F" - }, - { - "name": "selected", - "trans": [ - "adj. 选定的 动词select的过去式和过去分词" - ], - "id": "fo4Xiv" - }, - { - "name": "want", - "trans": [ - "n. 缺乏, 贫困, 欲望, 需要, 不足 vi. 要, 希望, 必须 vt. 缺少, 渴望, 喜欢, 应该" - ], - "id": "bvNu0v" - }, - { - "name": "window", - "trans": [ - "n. 窗户" - ], - "id": "SYgD9z" - }, - { - "name": "message", - "trans": [ - "n. 消息,信息,要点 vt. &vi. 传递信息, 通讯" - ], - "id": "bFwSNf" - }, - { - "name": "dialog", - "trans": [ - "n. 对话, 对白 (美)=dialogue" - ], - "id": "sAgvf4" - }, - { - "name": "example", - "trans": [ - "n. 榜样,例子 vt. 把...作为例子" - ], - "id": "Rkrj9T" - }, - { - "name": "create", - "trans": [ - "vt. 创造, 造成" - ], - "id": "cqTsZ-" - }, - { - "name": "insert", - "trans": [ - "n. 插入物 vt. &vi. 插入" - ], - "id": "Q37wsl" - }, - { - "name": "related", - "trans": [ - "adj. 有关系的,有关联的 v. 讲,有关系 vbl. 讲,有关系" - ], - "id": "N-w0va" - }, - { - "name": "item", - "trans": [ - "n. 项目,条款, 一件商品(或物品) adv. 也" - ], - "id": "HqF0WZ" - }, - { - "name": "edit", - "trans": [ - "vt. 编辑,编校,修订 n. 编辑工作" - ], - "id": "SQnVBX" - }, - { - "name": "marked", - "trans": [ - "adj. 有记号的,显著的,醒目的 v. 作记号,打分数,表示 vbl. 作记号,打分数,表示" - ], - "id": "4fGg8C" - }, - { - "name": "area", - "trans": [ - "n. 地区, 区域, 面积, 方面" - ], - "id": "gu1CDb" - }, - { - "name": "parameter", - "trans": [ - "n. 参数,参量,决定因素" - ], - "id": "6ItEuP" - }, - { - "name": "then", - "trans": [ - "adv. 那么, 当时,然后,于是 adj. 当时的" - ], - "id": "5b0neX" - }, - { - "name": "variable", - "trans": [ - "adj. 可变的,易变的 n. 变量, 易变的东西" - ], - "id": "Q0qcFp" - }, - { - "name": "tab", - "trans": [ - "n.(tabulate)制表, 标签, 垂饰, 拉环,账单 vt. 用标签或垂饰安装" - ], - "id": "8OjMmY" - }, - { - "name": "up", - "trans": [ - "adv. 向上,增加,用尽,完全,储存,靠近 adj. 向上的,直立的,完成的,高兴的,在进行的 prep. 向上,迎着 n. 上司,上坡,繁荣,上面 vt. 升起,增加 vi. 上升" - ], - "id": "R57vBZ" - }, - { - "name": "string", - "trans": [ - "n. 线,一串,字串 vt. 串起,成串,收紧, 悬挂;系;扎 vi. 给…装弦 adj. 线的" - ], - "id": "nxmqlQ" - }, - { - "name": "each", - "trans": [ - "adj. 每个, 每, 每一 adv. 每个 int. 每个, 个人, 个自" - ], - "id": "y0nUVN" - }, - { - "name": "active", - "trans": [ - "adj. 积极的;活跃的;主动的;有效的;现役的 n. 主动语态;积极分子" - ], - "id": "baLt2f" - }, - { - "name": "topic", - "trans": [ - "n. 题目, 话题, 主题" - ], - "id": "xm034d" - }, - { - "name": "start", - "trans": [ - "n.开始; 动身; 开动; 起点 vt.& vi.出发,启程 vt.起动; 提出(问题); 开办; 使开始 vi.起始; 突然出现; 突然跳起; 突然涌出" - ], - "id": "wgu4Vf" - }, - { - "name": "mode", - "trans": [ - "n. 方式,样式,模式,风格,时兴 [音乐] 调式" - ], - "id": "ZYEP2A" - }, - { - "name": "selection", - "trans": [ - "n. 选择,挑选,挑选出来的人或事" - ], - "id": "6REsMe" - }, - { - "name": "function", - "trans": [ - "n. 功能, 函数, 重大聚会 vi. 运行, 起作用" - ], - "id": "44uUNl" - }, - { - "name": "word", - "trans": [ - "n. 词, 单词, 消息, 诺言 vt. 用词语表达" - ], - "id": "dZtMAl" - }, - { - "name": "make", - "trans": [ - "vt.做,制造; 生产,制定; 使成为; 使产生 vi.开始; 尝试; 行进; 增大 n.制造; 生产量; 性格; 形状,样式" - ], - "id": "BPWazT" - }, - { - "name": "right", - "trans": [ - "adj. 正确的,正直的,合适的,垂直的,右面的,正常的,正面的 n. 权利,右,正义,实况 adv. 正好,恰当,径直地,正确地,立即,非常,向右边 vt. 纠正,扶直,公正对待,伸冤 vi. 复正" - ], - "id": "RwPISs" - }, - { - "name": "value", - "trans": [ - "n. 价值, 重要性, 价格, (pl)价值观 vt. 评价, 估价, 重视" - ], - "id": "gAP0EA" - }, - { - "name": "button", - "trans": [ - "n. 钮扣,徽章,像纽扣的东西,未成熟的蘑菇,按钮 vt. 用纽扣装饰,钉纽扣,闭嘴 vi. 扣上" - ], - "id": "DisZr7" - }, - { - "name": "index", - "trans": [ - "n.索引; <数>指数; 指示; 标志 vt.给…编索引; 把…编入索引; [经济学]按生活指数调整(工资、价格等) vi.[机械学]转位" - ], - "id": "1kl82e" - }, - { - "name": "without", - "trans": [ - "adv.在外部; 户外; 缺少; 没有或不显示某事物 prep.没有,缺乏; 在外面 conj.除非,如果不" - ], - "id": "McBlDr" - }, - { - "name": "appear", - "trans": [ - "vi. 出现,显得,出版,抵达" - ], - "id": "RUdh02" - }, - { - "name": "left", - "trans": [ - "adj.左边的,左侧的; 左派的 n.左,左面; [军]左翼; 左派,激进分子 adv.向左; 在左边 v.离开( leave的过去式和过去分词)" - ], - "id": "gBLG9m" - }, - { - "name": "save", - "trans": [ - "vt.节省; 保存; 储蓄; 解救 vi.节省; 挽救; 救球 prep.&conj.除…之外 n.救援,救援" - ], - "id": "C6W_Fz" - }, - { - "name": "next", - "trans": [ - "adj.紧接在后的; 次于的; 贴近的; 紧邻的 adv.接下去; 然后; 居后地; 依次的 n.下一位; 下一个 prep.靠近; 居于…之后; 在…的隔壁" - ], - "id": "ndA6b-" - }, - { - "name": "off", - "trans": [ - "adj. 远的,休假的,空闲的,落后懈怠的 adv. 离开,出发,距离隔断,分割,不继续运行,下台 prep. 离开,脱落,下班 vi. 离开, 走开" - ], - "id": "g8gF8x" - }, - { - "name": "following", - "trans": [ - "n. 下列各项,部下,党羽 adj. 下列的,其次的 prep. 在(某事)以后" - ], - "id": "svkaC_" - }, - { - "name": "control", - "trans": [ - "n. 克制,控制,管制,操作装置 vt. 控制,掌管,支配" - ], - "id": "JAlUZw" - }, - { - "name": "only", - "trans": [ - "adj. 最好的,唯一的,出众的 adv. 仅仅,只有,专门地,唯一地,刚才 conj. 除非, 但是, 然而, 毕竟" - ], - "id": "J93YCI" - }, - { - "name": "user", - "trans": [ - "n. 用户, 使用者" - ], - "id": "SEUjF6" - }, - { - "name": "end", - "trans": [ - "n. 结束,终点,目标,末端 vt.& vi. 结束,终结 adj. 最终的" - ], - "id": "Mt18VG" - }, - { - "name": "system", - "trans": [ - "n. 系统,体系,制度,体制" - ], - "id": "qgzPuR" - }, - { - "name": "contain", - "trans": [ - "vt. 包含,容纳,克制,抑制 vi. 自制" - ], - "id": "1VrX2i" - }, - { - "name": "time", - "trans": [ - "n.时间; 时刻; 时代; 次 vt.为…安排时间; 测定…的时间; 调准(机械的)速度; 拨准(钟、表)的快慢 vi.合拍; 和谐; 打拍子 adj.定时的; 定期的; [美国英语]分期(付款)的" - ], - "id": "Jqcb3Y" - }, - { - "name": "letter", - "trans": [ - "n.信; 证书,许可证; 字母,文字; 字面意义 vt.用字母标明; 写字母于; 加标题 vi.写印刷体字母" - ], - "id": "O0yzSJ" - }, - { - "name": "data", - "trans": [ - "n. (datum的复数)资料,数据" - ], - "id": "ToJ67P" - }, - { - "name": "setting", - "trans": [ - "n.镶嵌; 环境; 装置; (某事、戏剧、小说等的)背景 v.放( set的现在分词); 安插; 树立; 安排" - ], - "id": "yOZSqw" - }, - { - "name": "desire", - "trans": [ - "n. 愿望, 欲望, 情欲 v. 向往, 要求, 请求 vt. 渴望" - ], - "id": "XDn2Kt" - }, - { - "name": "position", - "trans": [ - "n. 位置, 职位; 状态, 立场 vt. 安置, 决定...的位置" - ], - "id": "5M2QXz" - }, - { - "name": "down", - "trans": [ - "adj. 向下的,降低的,情绪低落,停止运行 adv. 向下的,下跌,在南方 n. 绒毛,汗毛,轻视 prep. 沿着...而下" - ], - "id": "lu-Kd9" - }, - { - "name": "task", - "trans": [ - "n. 工作,任务 vt. 交给某人(任务)" - ], - "id": "MyqZBr" - }, - { - "name": "view", - "trans": [ - "n. 视野,风景,见解,方法,检查 vt. 把...视为,看,考虑" - ], - "id": "7PFkBu" - }, - { - "name": "switch", - "trans": [ - "n. 开关, 电门,闸,转换器, vt. &vi. 鞭打,转轨,交换,突然转变, 摆动,接通或切断…电流" - ], - "id": "TTc-O0" - }, - { - "name": "include", - "trans": [ - "v. 包括,包含,连...在内 [计算机] 包括" - ], - "id": "BQLTdV" - }, - { - "name": "get", - "trans": [ - "vt. 使得;获得;受到;变成 vi. 成为;变得;到达" - ], - "id": "O33phh" - }, - { - "name": "default", - "trans": [ - "n. 假设值,默认(值),不履行责任,缺席 v. 默认,不履行义务,缺席,拖欠 [计算机] 缺省" - ], - "id": "lRqH7v" - }, - { - "name": "structure", - "trans": [ - "n. 结构,构造,建筑物 v. 构成,建立,建造" - ], - "id": "_nt4_F" - }, - { - "name": "into", - "trans": [ - "prep. 到...里" - ], - "id": "MWl5X3" - }, - { - "name": "path", - "trans": [ - "n.小路,路; 路线,路程; 〈比喻〉(人生的)道路; (思想,行为,生活的)途径" - ], - "id": "HyCD9l" - }, - { - "name": "blank", - "trans": [ - "adj. 空白的, 茫然的, 全部的, 面无表情的, 未完工的 n. 空白(处), 空隙, 空虚, (有弹药而无弹头的)空弹 vi. 消失, 走神 vt. 使模糊不清, 删除, 封闭, (比赛时连续得分)使对手得零分" - ], - "id": "HvFY9Z" - }, - { - "name": "open", - "trans": [ - "n. 公开,户外,空旷 adj. 开着的,开放的,公开的 vt. 打开,公开,开放,开始 vi. 开, 通行,大叫" - ], - "id": "_SRPjq" - }, - { - "name": "add", - "trans": [ - "vt. &vi. 增加" - ], - "id": "07Orgm" - }, - { - "name": "enable", - "trans": [ - "vt. 使...能够,使可行 [计算机] 使能" - ], - "id": "pVBJCk" - }, - { - "name": "operation", - "trans": [ - "n. 手术, 行动,活动, 操作" - ], - "id": "iwSXLQ" - }, - { - "name": "erase", - "trans": [ - "v. 抹去,擦掉 [计算机] 擦除" - ], - "id": "psoAeZ" - }, - { - "name": "filename", - "trans": [ - "文件名" - ], - "id": "rNGSk5" - }, - { - "name": "search", - "trans": [ - "n. 搜寻, 探究 v. 搜寻, 探求, 调查" - ], - "id": "xnL61L" - }, - { - "name": "another", - "trans": [ - "adj. 另一,再一 pron.&prep. 另一个" - ], - "id": "wfuMCS" - }, - { - "name": "last", - "trans": [ - "adj. 最后的,末尾的,最近的,晚了,迟到了 adv. 最后,最新 n. 最后来的人(或发生的事) vi. &vt. 持续" - ], - "id": "X57GgH" - }, - { - "name": "column", - "trans": [ - "n.纵队,列; 圆柱; 专栏" - ], - "id": "k288aC" - }, - { - "name": "after", - "trans": [ - "adj. 以后的 adv. 以后, 后来 conj. 在...以后 prep. 在...之后" - ], - "id": "WQ8h5f" - }, - { - "name": "prompt", - "trans": [ - "adj. 迅速的, 敏捷的, 立刻的 vt. 激起, 促进, 推动; 提示 vi. 提示 n. 提示; 提示的内容 n. [商]付款期限" - ], - "id": "Nf8HeC" - }, - { - "name": "two", - "trans": [ - "num. 二,两个" - ], - "id": "XP_16q" - }, - { - "name": "execute", - "trans": [ - "vt. 执行,处决,实行,完成 [计算机] 执行" - ], - "id": "6Acjw8" - }, - { - "name": "about", - "trans": [ - "adj. 准备 adv. 大约 prep. 关于" - ], - "id": "brkMAf" - }, - { - "name": "escape", - "trans": [ - "n. 逃亡,避难设备 vt. &vi. 逃脱,避开 adj. 逃避的" - ], - "id": "JHjMyf" - }, - { - "name": "error", - "trans": [ - "n. 错误, 过失" - ], - "id": "cPzYjh" - }, - { - "name": "currently", - "trans": [ - "adv. 现在,现时,目前,当前" - ], - "id": "TDgNP7" - }, - { - "name": "extension", - "trans": [ - "n. 延长,扩充,范围,分机号码" - ], - "id": "1QRGQH" - }, - { - "name": "same", - "trans": [ - "adj. 同样的 adv. 同样地 pron. 同样的人或事" - ], - "id": "3ZRM3A" - }, - { - "name": "status", - "trans": [ - "n. 地位, 身份, 情形, 状况" - ], - "id": "Z6BZhL" - }, - { - "name": "run", - "trans": [ - "n. 奔跑,路程,趋向 vt. 跑,放牧,经营,走私,使运转,浇铸,使遭受 vi. 跑,竞赛,行驶,运转,遭遇,持续,熔化,褪色,流,蔓延,传播 adj. 熔化的,浇铸的,洄游的" - ], - "id": "RtWoEK" - }, - { - "name": "argument", - "trans": [ - "n. 辩论,争论,论点(据),理由" - ], - "id": "XGbPhT" - }, - { - "name": "statement", - "trans": [ - "n. 声明, 陈述" - ], - "id": "S4RW2L" - }, - { - "name": "shift", - "trans": [ - "n. 交换,变化,移动,接班者 vt. 更替,移转,变声 vi. 改变,定责,更衣" - ], - "id": "06TQ1x" - }, - { - "name": "store", - "trans": [ - "n. 商店,贮藏,仓库 vt. 储存,贮藏,供给,保存 adj. 储备的 (在计算机里)存贮;记忆" - ], - "id": "giMv1N" - }, - { - "name": "scroll", - "trans": [ - "n. 卷轴,目录 vt.& vi. 卷动" - ], - "id": "3Kdq80" - }, - { - "name": "replace", - "trans": [ - "vt. 取代,更换" - ], - "id": "MlyzaI" - }, - { - "name": "macro", - "trans": [ - "adj. 巨大的,大范围的,总的 n. [计算机]宏" - ], - "id": "VT38gw" - }, - { - "name": "page", - "trans": [ - "n. 页 v. (给...)当听差 vt. (通过扩音器、传呼机等)呼叫" - ], - "id": "vsxRip" - }, - { - "name": "quit", - "trans": [ - "v. 离开,辞职,停止" - ], - "id": "l0TbDO" - }, - { - "name": "define", - "trans": [ - "vt. 定义, 解释" - ], - "id": "3Faqqb" - }, - { - "name": "reference", - "trans": [ - "n. 参考, 出处, 参照 n. 推荐人, 推荐函 vt. 提供参考" - ], - "id": "BMT-M-" - }, - { - "name": "other", - "trans": [ - "adj. 别的,其他的 pron. 另一个人(或事) n. 其他人(或事)" - ], - "id": "Vqh9Ga" - }, - { - "name": "while", - "trans": [ - "conj. 当...的时候,然而 n. &adj. 一会儿 vt. 消磨" - ], - "id": "zCjHCt" - }, - { - "name": "pressing", - "trans": [ - "adj. 紧迫的,紧急的,切实的 vbl. 压迫" - ], - "id": "wh7Gd2" - }, - { - "name": "restore", - "trans": [ - "vt. 恢复,归还,翻新" - ], - "id": "DDnz5S" - }, - { - "name": "top", - "trans": [ - "n. 顶端, 极点, 盖子, (女式)上衣, 最高地位, 陀螺 adj. 最高的, 顶上的, 最一流的 vt. 高耸, 加以顶盖, 超越, 上升到顶端 vi. 得出结论, 到达顶峰" - ], - "id": "jfemUo" - }, - { - "name": "how", - "trans": [ - "adv. 如何,怎样,多么,多少 conj. 如何,怎样,以...方式 n. 方式" - ], - "id": "j4yF9L" - }, - { - "name": "color", - "trans": [ - "n. 颜色,气色,风格 vt. 把...涂颜色,粉饰 vi. 脸红" - ], - "id": "rb-ubi" - }, - { - "name": "allow", - "trans": [ - "vi. (for)考虑到,使可能 vt. 给予,承认,允许, 断定" - ], - "id": "tqVWYe" - }, - { - "name": "block", - "trans": [ - "n.块; 街区; <英>大楼,大厦; 障碍物,阻碍 vt.阻止; 阻塞; 限制" - ], - "id": "EW1NgO" - }, - { - "name": "decimal", - "trans": [ - "adj. 十进位的,小数的 n. 小数" - ], - "id": "Q0co8P" - }, - { - "name": "main", - "trans": [ - "adj. 主要的 n. 主要部分,干线,(水、煤气、电等的)供应系统,体力" - ], - "id": "bZuy4X" - }, - { - "name": "definition", - "trans": [ - "n. 定义, 阐释,清晰度" - ], - "id": "FzeVJ_" - }, - { - "name": "between", - "trans": [ - "adv. 在中间 prep. 在...之间" - ], - "id": "0qWFoW" - }, - { - "name": "optional", - "trans": [ - "adj. 可以任选的,非强制的" - ], - "id": "mEoLZ7" - }, - { - "name": "date", - "trans": [ - "n. 日期,约会,枣椰子 vt. 约会,定日期 vi. 追溯到 n.[计算机] DOS命令 : 显示或设置系统日期" - ], - "id": "W2tq8y" - }, - { - "name": "remove", - "trans": [ - "n. 间距, 移动 vt. 除去,开除, 移动, 取下, 拿走 vi. 迁徙,离开,搬迁" - ], - "id": "S0vg_X" - }, - { - "name": "arrow", - "trans": [ - "n. 箭,箭头 vi. 快且笔直的前进有如穿梭的箭" - ], - "id": "BAJvGg" - }, - { - "name": "label", - "trans": [ - "n.标签; 称标记,符号; [建] 门或窗户上面的线脚 vt.贴标签于; 把…称为; 把…列为; [化]用放射性元素使(元素或原子等)示踪" - ], - "id": "iVrRog" - }, - { - "name": "within", - "trans": [ - "adv. 在内 n. 里面 prep. 在...里面 adj. 在里面的" - ], - "id": "J3A0DK" - }, - { - "name": "issue", - "trans": [ - "n. 问题;流出;期号;发行物 vt. 发行,发布;发给;放出,排出 vi. 发行;流出;造成…结果;传下" - ], - "id": "74JoF3" - }, - { - "name": "different", - "trans": [ - "adj. 不同的,与众不同的" - ], - "id": "Nlq58K" - }, - { - "name": "available", - "trans": [ - "adj. 可用的,可得到的,有用的,有效的" - ], - "id": "-uygoB" - }, - { - "name": "returned", - "trans": [ - "adj.被送回的,归来的" - ], - "id": "XGIrvg" - }, - { - "name": "associate", - "trans": [ - "vt.(使)发生联系; (使)联合; 结交; 联想 vi.联盟; 陪伴同事 n.合伙人; 伴侣,同志; 非正式会员 adj.联合的; 合伙的; 非正式的; (性质上)有密切联系的" - ], - "id": "1cymum" - }, - { - "name": "attribute", - "trans": [ - "n. 属性, 特征; 标志, 象征 vt. 归于, 属于" - ], - "id": "3LyJ8V" - }, - { - "name": "DOS", - "trans": [ - "n. [计] 磁盘操作系统(=Disk Operating System)" - ], - "id": "Oqwquk" - }, - { - "name": "before", - "trans": [ - "prep.在…之前; 先于,优于; 当着…的面; 与其… conj.在…之前; 在…以前; 比…早些; 与其… adv.先前,从前; 在前,在前方" - ], - "id": "-Il3Bz" - }, - { - "name": "order", - "trans": [ - "n.命令; 秩序; 规则,制度; 次序 vt.命令; 订购; 整理 vi.下订单" - ], - "id": "oWNfWl" - }, - { - "name": "modify", - "trans": [ - "vt. 修改,调正,缓和 vi. 修改" - ], - "id": "_QEIHj" - }, - { - "name": "array", - "trans": [ - "n. 数组,(陈)排列,大批,一系列 vt. 排列,布署,打扮" - ], - "id": "Xq8i-H" - }, - { - "name": "mouse", - "trans": [ - "n. 老鼠,鼠标,胆小如鼠的人,乌青色的肿块 vi. 捕鼠,蹑手蹑脚行动 vt. 仔细寻找" - ], - "id": "P7kz3r" - }, - { - "name": "note", - "trans": [ - "n. 笔记, 注解, 备忘录, 音符, 音调, 票据, 便条, 纸币 vt. 记录, 注解, 注意" - ], - "id": "O_sWUA" - }, - { - "name": "locate", - "trans": [ - "vt. 找出,设于,位于,建立 vi. 建立" - ], - "id": "MoLXdY" - }, - { - "name": "video", - "trans": [ - "adj. 录像的 n. 录像(机) vt. 制作...的录像" - ], - "id": "ucFeqL" - }, - { - "name": "printer", - "trans": [ - "n. 打印机,印刷工" - ], - "id": "DEomeE" - }, - { - "name": "bar", - "trans": [ - "n. 条,棒,横木,酒吧 vt. 禁止,阻挠" - ], - "id": "QvOD80" - }, - { - "name": "bottom", - "trans": [ - "n. 底部;臀部;船身;水底;服装下面的部分;低洼地;底色;尽头 adj. 底部的 vt. 给...装底,建立基础,到达底部 vi. 到达底部,垫底,降到最低点" - ], - "id": "FL8zyW" - }, - { - "name": "carriage", - "trans": [ - "n. 四轮马车,车厢" - ], - "id": "6hUKQf" - }, - { - "name": "content", - "trans": [ - "n. 内容, 目录, 含量 adj. 满足的, 满意的 vt. 使...满足, 使...安心" - ], - "id": "4lr95M" - }, - { - "name": "either", - "trans": [ - "pron. 任一的 conj. 或, 也 adj. 任一, 两方的 adv. 也" - ], - "id": "kupSEk" - }, - { - "name": "OK", - "trans": [ - "adj. 好, 不错, 可以 adv. 好, 不错, 可以" - ], - "id": "8kFzuf" - }, - { - "name": "space", - "trans": [ - "n. 位置, 空间, 距离, 太空, 空地, 持续的一段时间 vt. &vi. 均匀隔开, 分隔" - ], - "id": "pLhjne" - }, - { - "name": "editor", - "trans": [ - "n. 编辑, 编者" - ], - "id": "L9sYzQ" - }, - { - "name": "exist", - "trans": [ - "v. 存在" - ], - "id": "3pXkl4" - }, - { - "name": "scope", - "trans": [ - "n. 能力,范围,眼界,机会,余地 vt. 仔细研究" - ], - "id": "DKn31-" - }, - { - "name": "paragraph", - "trans": [ - "n. 段落 vt. 将...分段,写短评 vi. 写短评" - ], - "id": "vv5PJg" - }, - { - "name": "multi", - "trans": [ - "n. 多种;多数" - ], - "id": "sQJoWS" - }, - { - "name": "clear", - "trans": [ - "adj. 清楚的,明确的,澄清的,头脑清醒的 vt. 澄清,清除障碍, 使明亮, 明确 vi. 变清晰, 消失, 放晴 adv. 清楚地, 一直 n. 间隙, 空地, 开旷的地方" - ], - "id": "L185kM" - }, - { - "name": "exit", - "trans": [ - "n. 出口,退场,离去 vi. 退出,死亡 vt. 离开" - ], - "id": "55a3wt" - }, - { - "name": "report", - "trans": [ - "n. 传闻,报告,成绩单,爆炸声 vt. 报告,报导,记录 vi. 叙述,报告" - ], - "id": "BEQRJJ" - }, - { - "name": "execution", - "trans": [ - "n. 实行,完成,执行" - ], - "id": "znxatP" - }, - { - "name": "backup", - "trans": [ - "n. 后备,后备" - ], - "id": "aZD2DO" - }, - { - "name": "version", - "trans": [ - "n. 版本, 说法,翻译" - ], - "id": "yNRzhX" - }, - { - "name": "find", - "trans": [ - "vt. &vi. 发现,感觉到,认为 n. 发现物" - ], - "id": "3itUVq" - }, - { - "name": "pointer", - "trans": [ - "n. 指针,教鞭,(能指出猎物位置的)猎犬,暗示 Pointer: 指极星" - ], - "id": "JVGgEX" - }, - { - "name": "subset", - "trans": [ - "n. 子集" - ], - "id": "CvSjFL" - }, - { - "name": "keyboard", - "trans": [ - "n. 键盘 vt. 用键盘输入(信息)" - ], - "id": "gZT-rc" - }, - { - "name": "full", - "trans": [ - "adj.满的,装满的; 完全的,完整的; 丰富的; 详尽的 adv.极其,十分; 充分地,完全地; 整整; 直接地 n.充分,完全; 全部; 完整; 极盛时 v.把衣服缝得宽大; 把裙子缝出皱褶; [印]蒸洗,漂洗" - ], - "id": "6Asxd5" - }, - { - "name": "check", - "trans": [ - "vt.检查,核对; 制止,抑制; 在…上打勾 vi.核实,查核; 中止; 打勾; [象棋]将一军 n.<美>支票; 制止,抑制; 检验,核对" - ], - "id": "4oVLjf" - }, - { - "name": "should", - "trans": [ - "verb auxiliary. 应该,竟然,可能" - ], - "id": "wVzSBy" - }, - { - "name": "single", - "trans": [ - "adj. 单身的,单纯的,单一的 n. 单程票,单曲,单人房,单身者 vt. 单独挑出 vi. (棒球)作一垒打" - ], - "id": "uYFehm" - }, - { - "name": "provide", - "trans": [ - "vi. 供给, 提供 vt. 提供; 规定; 准备" - ], - "id": "nehl4L" - }, - { - "name": "title", - "trans": [ - "n. 头衔,名称,标题,所有权,资格,冠军 vt. 赋予称号,加标题于 adj. 标题的" - ], - "id": "2a0CA8" - }, - { - "name": "expression", - "trans": [ - "n. 表达,表示,表现,表情,措辞,词句" - ], - "id": "rbQZI8" - }, - { - "name": "through", - "trans": [ - "adv. 穿越, 完全 prep. 经过, 穿过, 凭借 adj. 完成的, 完结的; 贯穿的, 直通的" - ], - "id": "eaDDNl" - }, - { - "name": "toggle", - "trans": [ - "n. 乒乓开关,触发器,套索钉,棒形纽扣 vt. 系纽扣,提供索钉 vi. 开开关" - ], - "id": "O_K7rV" - }, - { - "name": "code", - "trans": [ - "n. 码,密码,法规,准则 vt. 把...编码,制成法典" - ], - "id": "flrFuU" - }, - { - "name": "such", - "trans": [ - "adj. 如此的,这样的 pron. 这样的 adv. 如此地" - ], - "id": "5g9I5Y" - }, - { - "name": "beginning", - "trans": [ - "n. 开始,开端,起源,早期 adj. 刚开始的 动词begin的现在分词" - ], - "id": "oOBjDc" - }, - { - "name": "guide", - "trans": [ - "vt.引路; 指导; 操纵; 影响 n.指导者; 向导; 导游; 有指导意义的事物" - ], - "id": "I7n9_w" - }, - { - "name": "tree", - "trans": [ - "n. 树" - ], - "id": "8XCC5k" - }, - { - "name": "environment", - "trans": [ - "n. 环境,外界" - ], - "id": "5b75FD" - }, - { - "name": "but", - "trans": [ - "adv. 仅仅,只 conj. 但是 prep. 除...以外 pron. 只有" - ], - "id": "nYaEU_" - }, - { - "name": "device", - "trans": [ - "n. 装置, 设计, 策略, 设备" - ], - "id": "ezhWrZ" - }, - { - "name": "highlight", - "trans": [ - "n. 加亮区,精彩部分, 最重要的细节或事件, 闪光点 vt. 加亮,强调, 使...显得重要, 照亮 [计算机] 醒目" - ], - "id": "lto75g" - }, - { - "name": "call", - "trans": [ - "v.呼唤,喊叫; 召唤,叫来,召集; 下令,命令; 打电话给 n.喊叫,大声喊; 电话联络; 必要,理由; 要求" - ], - "id": "9Ejajk" - }, - { - "name": "continue", - "trans": [ - "vt. &vi. 继续, 连续, 维持" - ], - "id": "dmSTfS" - }, - { - "name": "indicate", - "trans": [ - "v.指明, 表明, 显示, 象征, 指示" - ], - "id": "-iYxKk" - }, - { - "name": "until", - "trans": [ - "prep. 直到...为止 conj. 直到...时才..." - ], - "id": "iEDupn" - }, - { - "name": "begin", - "trans": [ - "vt.& vi.开始; 着手; 创始; 创办 vi.(从…)开始; 起始; 起初是; 开始讲话" - ], - "id": "twZwqc" - }, - { - "name": "place", - "trans": [ - "n. 地方,职位,获奖的名次 vt. 放置,任命,安排 vi. 获得名次" - ], - "id": "WWgBTi" - }, - { - "name": "rename", - "trans": [ - "v. 重新命名, 改名 n. [计算机]DOS命令" - ], - "id": "g2Q_Fx" - }, - { - "name": "swap", - "trans": [ - "n. 交换 vt. &vi. 交换,用...作交易" - ], - "id": "_oRNBJ" - }, - { - "name": "work", - "trans": [ - "n. 工作,作用,成果,作品,善行,工艺,奏效,建筑工程,工厂,(机械)活动部件 adj. 工作的 vi. 创造, 实现, 有工作, 起作用, 操作, 正常运转, 成功, 产生影响, 逐渐进行, 处理 vt. 造成, 产生, 使运转, 锻造, 奋力达到, 利用" - ], - "id": "feXOsk" - }, - { - "name": "remain", - "trans": [ - "v. 保持, 依然, 剩余, 留下, 逗留 n. 遗迹, 剩余物, 残骸" - ], - "id": "LIkRv0" - }, - { - "name": "close", - "trans": [ - "n. 完结, 结论 adj. 靠近的,亲近的,几乎,密切的, 势均力敌的 vt. 关,结束,靠近 vi. 关,停业, 搏斗 adv. 紧挨着, 紧紧地" - ], - "id": "Kmd9xA" - }, - { - "name": "combination", - "trans": [ - "n. 结合,联合,联合体" - ], - "id": "2_XJSH" - }, - { - "name": "profile", - "trans": [ - "n.侧面,半面; 外形,轮廓; [航]翼型; 人物简介 vt.描…的轮廓; 给…画侧面图; 为(某人)写传略; [机]铣出…的轮廓" - ], - "id": "1w1SmH" - }, - { - "name": "unless", - "trans": [ - "conj. 除非 prep. 除...外" - ], - "id": "LKXmt5" - }, - { - "name": "except", - "trans": [ - "vt. 除,除外 prep.&conj. 除了...之外,若不是,除非" - ], - "id": "qoCT2c" - }, - { - "name": "turn", - "trans": [ - "vt.& vi.使转动; 旋转; 使改变方向; 使不适 vt.使变酸; 使变换; 使变为 n.翻转; (路线或方向的)改变; 机会" - ], - "id": "qLa9ec" - }, - { - "name": "back", - "trans": [ - "adj. 后面的,偏远的, 过时的, 积欠的, 向后的 adv. 向后地 n. 后背, 背脊,后面, 靠背 vt. 后退,支持 vi. 后退" - ], - "id": "KSzDqE" - }, - { - "name": "sure", - "trans": [ - "adj. 确信, 必然的, 必定的 adv. 当然, 确实地, 无疑地" - ], - "id": "AsaaAU" - }, - { - "name": "section", - "trans": [ - "n. 零件,部分,章节,区域,部门,路段,断面 vt. 划分,切开 vi. 划分" - ], - "id": "A7d5yK" - }, - { - "name": "follow", - "trans": [ - "vt. 跟随,沿行,遵循,听得懂 vi. 跟着做,之后是 n. 跟随" - ], - "id": "0W1hpr" - }, - { - "name": "split", - "trans": [ - "n. 劈开, 裂片, 裂口 adj. 分散的 v. 分离, 分开, 劈开" - ], - "id": "wSYePp" - }, - { - "name": "need", - "trans": [ - "n. 需要,必须,缺乏 v. 需要,必需 conj. 需要" - ], - "id": "RrZIWX" - }, - { - "name": "access", - "trans": [ - "n.入口,出口; 接近,进入; 增长; 爆发 vt.接近,进入; 使用,接近,获取" - ], - "id": "rZYUbd" - }, - { - "name": "additional", - "trans": [ - "adj. 附加的, 另外的" - ], - "id": "YJBFk_" - }, - { - "name": "cancel", - "trans": [ - "n. 取消,撤消 vt. 取消,删去, 约分 vi. 抵消" - ], - "id": "3Wi7lH" - }, - { - "name": "document", - "trans": [ - "n. 文件,公文 vt. 记载,用文件等证明 [计算机] 文档" - ], - "id": "vTh9aE" - }, - { - "name": "case", - "trans": [ - "n. 情况,实情,箱,案例 vt. 装箱,踩点" - ], - "id": "mVGsFy" - }, - { - "name": "numeric", - "trans": [ - "adj. 数字的,数值的 n. 数,数字" - ], - "id": "ob78Eu" - }, - { - "name": "go", - "trans": [ - "vi. 去, 走, 变得, 进行, 放, 通往, 消失 vt. 走过, 称重 [计算机] 执行" - ], - "id": "DcCB2h" - }, - { - "name": "load", - "trans": [ - "n. 负荷, 重担, 装载量 v. 装载, 装填, 担负, 给(枪)装子弹 [计算机] 装入" - ], - "id": "vzHM5s" - }, - { - "name": "try", - "trans": [ - "n. 尝试,试验 vt. 审理,尝试,试验 vi. 尝试" - ], - "id": "JeBiYG" - }, - { - "name": "size", - "trans": [ - "n. 尺寸, 大小 vt. 按大小排列(或分类) adj. 一定大小的 vt. 用...填充(某物)" - ], - "id": "wa_WCt" - }, - { - "name": "entire", - "trans": [ - "adj. 全部的,完整的,同性质的,纯正的,全面的" - ], - "id": "v6gI-e" - }, - { - "name": "leave", - "trans": [ - "离开, 告假, 遗留, 听任" - ], - "id": "2SGmd8" - }, - { - "name": "history", - "trans": [ - "n. 历史" - ], - "id": "Ux1bav" - }, - { - "name": "second", - "trans": [ - "n. vt. 支持 n. 第二,秒 adj. 第二的,次等的,另一个的" - ], - "id": "3tRDem" - }, - { - "name": "reflow", - "trans": [ - "vi. 回流" - ], - "id": "wdIPFk" - }, - { - "name": "output", - "trans": [ - "n. 产量,输出,输出功率,输出端 vt. 输出(信息等)" - ], - "id": "rr1OWW" - }, - { - "name": "out", - "trans": [ - "vt. adj. 外面的,向外的,落伍的,不做考虑的 adv. 向外,离岸,外出,出局,出去,用尽,完成,出现,结束 vt. 释放出,揭露 vi. 揭发 prep. 向外,通过 n. 外面,在野者,下台者,出局的一击" - ], - "id": "JPh6St" - }, - { - "name": "both", - "trans": [ - "adj.二者,两者都 pron.二者 adv.二者,二者都 conj.不仅…而且…,…和…都" - ], - "id": "PqS256" - }, - { - "name": "install", - "trans": [ - "v. 安装,安置,使...就职 n.[计算机] 安装,DOS命令 : 装入结束且驻留软件" - ], - "id": "WBXtAe" - }, - { - "name": "source", - "trans": [ - "n. 来源" - ], - "id": "Ra3hEy" - }, - { - "name": "way", - "trans": [ - "n. 方法,道路,方向,作风,(某)方面,程度,状态 adv. 非常,很多,很远 adj. 与路线的中间点相关的,路线的中间点" - ], - "id": "mRyXbr" - }, - { - "name": "assign", - "trans": [ - "v. 分配,指派 n.[计算机] DOS 命令将驱动器符重指向第二个驱动器符" - ], - "id": "Grv5NN" - }, - { - "name": "support", - "trans": [ - "n. 支持, 援助, 供养 vt. 支援, 帮助, 支持" - ], - "id": "LgteBr" - }, - { - "name": "specific", - "trans": [ - "adj. 特殊的, 明确的, 具有特效的 n. 特效药, 特性, 详情" - ], - "id": "huufUJ" - }, - { - "name": "join", - "trans": [ - "v. 参加, 结合, 联合, 加入" - ], - "id": "iH7gwr" - }, - { - "name": "expand", - "trans": [ - "vt. 增加,详述,扩展,使...膨胀 vi. 扩展,增加,详述" - ], - "id": "zdHVny" - }, - { - "name": "like", - "trans": [ - "adj. 相似的,同样的 vt. &vi. 喜欢,愿意,想 prep. 像,如同 n. 爱好,类似的人(或物) adv. 大概,和…一样 conj. 如同" - ], - "id": "ioCn_E" - }, - { - "name": "Diskette", - "trans": [ - "n. [计]软盘" - ], - "id": "3_lqPJ" - }, - { - "name": "skip", - "trans": [ - "n. 跳跃,跳读 vt. &vi. 跳越,蹦跳,略过,跳过" - ], - "id": "_UkYxl" - }, - { - "name": "application", - "trans": [ - "n.适用,应用,运用; 申请,请求,申请表格; 勤勉,用功; 敷用,敷用药" - ], - "id": "Bp5HGp" - }, - { - "name": "confirmation", - "trans": [ - "n. 确认, 证实, 基督教的坚信礼" - ], - "id": "ylAf00" - }, - { - "name": "whether", - "trans": [ - "conj.&adv. 是否" - ], - "id": "tOJ7Pb" - }, - { - "name": "hold", - "trans": [ - "vt.拿住,握住; 保留,保存; 扣留,拘押; 容纳 vi.拿住,握住; 同意,赞成; 保持不变; 有效 n.握住; 保留; 控制" - ], - "id": "q-rRpC" - }, - { - "name": "click", - "trans": [ - "n. 点击,滴答声,拍答声 vt. 点击,作滴答声,使...作拍答声 vi. 击打,完全符合,成功,以点击的方式选择" - ], - "id": "EGmb4c" - }, - { - "name": "write", - "trans": [ - "v. 写" - ], - "id": "a9XD4j" - }, - { - "name": "byte", - "trans": [ - "n. 字节, 8位元组" - ], - "id": "Bajhyr" - }, - { - "name": "abbreviate", - "trans": [ - "vt. 缩写,缩短,使...简略" - ], - "id": "Og_KTB" - }, - { - "name": "show", - "trans": [ - "n. 显示,表现,表演,事情 vt. &vi. 表示,显现,展现,指示" - ], - "id": "g31VuF" - }, - { - "name": "otherwise", - "trans": [ - "adv. 否则,不同地,在不同方面 pron. 其他 adj. 不同的" - ], - "id": "EqpOIp" - }, - { - "name": "working", - "trans": [ - "adj. 工人的, 劳动的" - ], - "id": "ixakFE" - }, - { - "name": "delimiter", - "trans": [ - "n. 定界符, 分隔符" - ], - "id": "6KN18F" - }, - { - "name": "location", - "trans": [ - "n. 地点,位置" - ], - "id": "WBUrRT" - }, - { - "name": "perform", - "trans": [ - "v. 执行, 表演, 做" - ], - "id": "rTZBWb" - }, - { - "name": "graphic", - "trans": [ - "adj. 生动的,图表的 n. 图表" - ], - "id": "21HHkg" - }, - { - "name": "read", - "trans": [ - "vt.& vi.阅读,朗读; 显示; 研究; 看得懂 vt.显示; 阅读; 读懂,理解 n.阅读; 读物; 读书; 里德(人名) adj.被朗读的; 博识的; 博览的; 有学问的" - ], - "id": "7Ao_IT" - }, - { - "name": "confirm", - "trans": [ - "v. 确定, 批准, 证实" - ], - "id": "tVKv5G" - }, - { - "name": "sort", - "trans": [ - "n. 种类,样子,态度 v. 分类,整理,排序 n.[计算机] DOS命令 : 在字符型文件中进行数据排序, 或者将DOS命令的输出进行排序" - ], - "id": "qL7v7-" - }, - { - "name": "clause", - "trans": [ - "n. 分句, 从句, 条款, 款项" - ], - "id": "seo3Lu" - }, - { - "name": "once", - "trans": [ - "adv. 一次, 曾经 conj. 一旦 n. 一次 adj. 曾经的" - ], - "id": "qLP_dg" - }, - { - "name": "however", - "trans": [ - "adv. 然而 conj. 然而, 可是, 不过" - ], - "id": "e6HjQt" - }, - { - "name": "extend", - "trans": [ - "v. 扩充, 延伸, 伸展, 扩展" - ], - "id": "93ykQb" - }, - { - "name": "look", - "trans": [ - "n. 看, 神色, 样子, 脸色 vi. 看, 注意, 朝着, 好象, 显得 vt. 打量, 注视, 用眼神或脸色表示, 期待" - ], - "id": "dKlaOq" - }, - { - "name": "now", - "trans": [ - "n. 现在,此刻 adj. 现存的, 目前的 adv. 现在,立刻 conj. 既然 abbr. =National Organization of Women 全国妇女组织" - ], - "id": "943en_" - }, - { - "name": "original", - "trans": [ - "adj. 最初的, 原始的; 有独创性的, 原版的 n. 原件, 原稿; 有独创性的人, 怪人" - ], - "id": "UJ9E9b" - }, - { - "name": "correspond", - "trans": [ - "vi. 符合,通信,相当" - ], - "id": "7IuF2K" - }, - { - "name": "property", - "trans": [ - "n. 财产; 性质; 道具" - ], - "id": "6QJ9Oq" - }, - { - "name": "several", - "trans": [ - "adj. 几个,各自的 pron. 若干" - ], - "id": "mFxsvf" - }, - { - "name": "learn", - "trans": [ - "vt. 学习,获悉 vi. 了解,习得" - ], - "id": "04kqxg" - }, - { - "name": "cause", - "trans": [ - "n. 原因;事业;目标 vt. 引起;使遭受" - ], - "id": "ZxM2Mv" - }, - { - "name": "bracket", - "trans": [ - "n. 支架, 括号, 档次 vt. 支撑, 放在括号内, 归入一类, 包含, 支持" - ], - "id": "dUWRyx" - }, - { - "name": "omit", - "trans": [ - "vt. 省略,疏忽,遗漏" - ], - "id": "0F_n3I" - }, - { - "name": "running", - "trans": [ - "n. 跑步;经营,管理 adj. 奔跑的;流动的;运转中的 adv. 连续地" - ], - "id": "7Ouago" - }, - { - "name": "edge", - "trans": [ - "n. 边,边缘,刀口 vt. 给...加上边,缓慢横过,使逐渐丧失 vi. 徐徐前进" - ], - "id": "6TyNKE" - }, - { - "name": "form", - "trans": [ - "n. 形式, 形状, 表格 v. 形成, 组成, 建立" - ], - "id": "x9Taye" - }, - { - "name": "instruction", - "trans": [ - "n. 说明,须知,指令,教学" - ], - "id": "wy4LJo" - }, - { - "name": "ASCII", - "trans": [ - "American Standard Code for Information Interchange,美国信息互换标准代码" - ], - "id": "jIZLxU" - }, - { - "name": "below", - "trans": [ - "adv.在下面,到下面 prep.(表示位置)在…下面; (表示状态)在…掩饰之下; (表示比较)不及; 低于" - ], - "id": "zxwqKl" - }, - { - "name": "standard", - "trans": [ - "n.标准,规格; 旗,军旗; 度量衡标准; 直立支柱 adj.标准的,合格的; 普遍的,一般的; 公认为优秀的" - ], - "id": "YpVTlo" - }, - { - "name": "occurrence", - "trans": [ - "n. 发生,事件,发现" - ], - "id": "Fas9Lv" - }, - { - "name": "lock", - "trans": [ - "n.锁; 水闸,船闸; (机器部件等的)锁定; 一把,一撮 vt.锁上; 锁好,关好; 使固定; 隐藏 vi.卡住,不动; 纠结; 僵硬不动" - ], - "id": "dUkKTM" - }, - { - "name": "append", - "trans": [ - "v. 附加,添加,悬挂 n.[计算机] DOS 命令建立数据文件的子目录搜索路经" - ], - "id": "Qlu5mS" - }, - { - "name": "destination", - "trans": [ - "n. 目的地,终点,景点" - ], - "id": "5VqwjE" - }, - { - "name": "password", - "trans": [ - "n. 口令,密码" - ], - "id": "Fj9PlD" - }, - { - "name": "point", - "trans": [ - "n. 点, 要点, 尖端,细节,目标 vt. &vi. 指出, 瞄准" - ], - "id": "_14qZg" - }, - { - "name": "variety", - "trans": [ - "n. 多样, 种类, 杂耍" - ], - "id": "VMcdCU" - }, - { - "name": "many", - "trans": [ - "n. 许多人,许多 adj. 许多的 pron. 许多人或物" - ], - "id": "OFfusm" - }, - { - "name": "buffer", - "trans": [ - "n. 缓冲,缓冲区 vt. 减轻,缓冲" - ], - "id": "vyfBGE" - }, - { - "name": "useful", - "trans": [ - "adj. 有用的" - ], - "id": "QlyYPT" - }, - { - "name": "object", - "trans": [ - "n. 物, 物体, 目标, 宾语 v. 反对,提出...作为反对的理由" - ], - "id": "j4zJAT" - }, - { - "name": "again", - "trans": [ - "adv. 又,再,另一方面" - ], - "id": "7msciG" - }, - { - "name": "carry", - "trans": [ - "n. 搬运, 射程, 投射, 联运 vt. 负载, 运输, 传送, 传播, 表达, 带有, 容纳, 承担, 怀孕, 延续, 推动, 赢得, 记录 vi. 负载, 被传达, 容许被运输, 被通过" - ], - "id": "tnugeE" - }, - { - "name": "update", - "trans": [ - "vt. &vi. 更新,补充最新资料 n. 更新" - ], - "id": "riZADJ" - }, - { - "name": "moving", - "trans": [ - "vbl.移动" - ], - "id": "XWX47_" - }, - { - "name": "coprocessor", - "trans": [ - "协处理器" - ], - "id": "FkyCCO" - }, - { - "name": "overlay", - "trans": [ - "覆盖" - ], - "id": "dVzZjH" - }, - { - "name": "practice", - "trans": [ - "n. 练习, 实行, 习惯; 业务 vt. &vi 练习, 实习, 开业" - ], - "id": "vw5B8G" - }, - { - "name": "navigation", - "trans": [ - "n. 航行, 航海, 导航" - ], - "id": "yLsucM" - }, - { - "name": "automatically", - "trans": [ - "adj. 不经思索的 adv. 自动地" - ], - "id": "pQiPoq" - }, - { - "name": "total", - "trans": [ - "adj.总计的(金额等); 全部的; 完全的; 绝对的 n.总计,总数; 全体数量 vt.& vi.总计达,计算…的总数" - ], - "id": "p8yehW" - }, - { - "name": "previous", - "trans": [ - "adj. 在...之前, 先, 前, 以前的" - ], - "id": "1lTNzb" - }, - { - "name": "software", - "trans": [ - "n. 软件" - ], - "id": "xBKY3H" - }, - { - "name": "shortcut", - "trans": [ - "n. 捷径 v. 抄近路,走捷径" - ], - "id": "3aHYH4" - }, - { - "name": "long", - "trans": [ - "adj. 长的,很久的,冗长的 vi. 渴望,热望,极想 adv. 长期地,远地 n. 长时间,长音节" - ], - "id": "u4iddp" - }, - { - "name": "unique", - "trans": [ - "adj. 独一无二的, 独特的, 稀罕的" - ], - "id": "2pB3hK" - }, - { - "name": "part", - "trans": [ - "n. 部份,零件,角色,部位 vt. 分开,分离,分配 vi. 分离,离开 adv. 部份地 adj. 分离的" - ], - "id": "JZTj0i" - }, - { - "name": "internal", - "trans": [ - "adj. 国内的, 内在的,身体内部的" - ], - "id": "1lYmRO" - }, - { - "name": "fill", - "trans": [ - "vt. 装满,填充,弥漫,担任 n. 足量" - ], - "id": "zF8DcL" - }, - { - "name": "basic", - "trans": [ - "adj.基本的; [化学]碱性的; [地质学]基性的; 首要的 n.基础,基本; 基本原则,基本原理,基本规律; 要素; 基础训练" - ], - "id": "TSBCil" - }, - { - "name": "math", - "trans": [ - "n. 数学" - ], - "id": "MRIaOw" - }, - { - "name": "since", - "trans": [ - "adv. 后来 conj. 既然,因为,自从 prep. 自从" - ], - "id": "O9VnaJ" - }, - { - "name": "determine", - "trans": [ - "vt.& vi.(使)下决心,(使)做出决定 vt.决定,确定; 判定,判决; 使决定; 限定 vi.[主用于法律]了结,终止,结束" - ], - "id": "ZL8M_9" - }, - { - "name": "making", - "trans": [ - "n. 制成 动词make的现在分词" - ], - "id": "OlOAIm" - }, - { - "name": "center", - "trans": [ - "n. 中心, 中间, 主角, 中锋, 重点 vi. 居中, 聚焦于... vt. 使集中, 放在中央" - ], - "id": "_9hhkZ" - }, - { - "name": "already", - "trans": [ - "adv. 已经" - ], - "id": "cHJ88f" - }, - { - "name": "keyword", - "trans": [ - "n. 关键字" - ], - "id": "BbUnmI" - }, - { - "name": "action", - "trans": [ - "n. 起诉,行为,作用,情节,活动" - ], - "id": "VX4J9F" - }, - { - "name": "condition", - "trans": [ - "n. 情况, 条件 v. 以...为条件, 决定, 支配, 训练" - ], - "id": "bn31lS" - }, - { - "name": "quick", - "trans": [ - "adj.快的,急速的; 聪明的,凌厉的; 灵活的; 短时间做成的 adv.迅速地,快速地 n.(指甲下的)活肉; 感情的中枢,感觉最敏锐的地方; 要害,核心" - ], - "id": "jL26ls" - }, - { - "name": "give", - "trans": [ - "vt.& vi.给予; 赠送; 作出 vt.供给; 产生; 举办; (为购买某物或做某事而)支付 vi.(物体)塌下; 让步 n.伸展性,弹性" - ], - "id": "aQy9p3" - }, - { - "name": "large", - "trans": [ - "adj. 广泛的,大的,强烈的 adv. 普遍地, 大量地" - ], - "id": "CuCtEd" - }, - { - "name": "chapter", - "trans": [ - "n. 章,回,篇,牧师的例行会议,地方分会" - ], - "id": "NAyU1R" - }, - { - "name": "computer", - "trans": [ - "n. 计算机" - ], - "id": "AJntzr" - }, - { - "name": "complete", - "trans": [ - "adj. 彻底的, 完整的, 已完成的 vt. 完成; 使圆满, 使完美" - ], - "id": "YVmXuY" - }, - { - "name": "past", - "trans": [ - "adj. 过去的 adv. 过 n. 过去 prep. 过,经过" - ], - "id": "x_Swa-" - }, - { - "name": "match", - "trans": [ - "n. 比赛, 火柴, 对手, 般配的人, 配偶 v. 使...相配, 与...竞争, 相配" - ], - "id": "P4Cf6X" - }, - { - "name": "recover", - "trans": [ - "vt.恢复; 重新获得; 找回; <正>恢复(适当的状态或位置) vi.恢复健康(体力、能力等) n.恢复开始时姿势" - ], - "id": "IpdJ4C" - }, - { - "name": "always", - "trans": [ - "adv. 总是" - ], - "id": "zeuMLx" - }, - { - "name": "require", - "trans": [ - "v. 需要, 要求" - ], - "id": "8Ha6ah" - }, - { - "name": "opening", - "trans": [ - "n. 开始, 口, 揭幕, 空缺的职务 vbl. 打开, 开放, 开始" - ], - "id": "ibVpk_" - }, - { - "name": "network", - "trans": [ - "n. 网络,系统,广播网 vt. 用网覆盖,联网 vi. 加入网络" - ], - "id": "OhDbez" - }, - { - "name": "sign", - "trans": [ - "n. 符号, 正负号, 手势, 迹象, 招牌 v. 签, 做手势, 做标记" - ], - "id": "Db7wKJ" - }, - { - "name": "release", - "trans": [ - "n. 释放, 让渡, 发行 vt. 释放, 让与, 准予发表, 发射" - ], - "id": "LpJ2zd" - }, - { - "name": "three", - "trans": [ - "num. 三 pron.&adj. 三(个,只...)" - ], - "id": "gUMV5S" - }, - { - "name": "recall", - "trans": [ - "vt. 召回;回想起,记起;取消 n. 召回;回忆;撤消" - ], - "id": "ala-QB" - }, - { - "name": "deletion", - "trans": [ - "n. 删除" - ], - "id": "oM0Dja" - }, - { - "name": "fixed", - "trans": [ - "adj. 固定的,不变的,准备好的 v. 修理,使...固定,决定 vbl. 修理,使...固定,决定 [计算机] 固定的" - ], - "id": "T7EsIF" - }, - { - "name": "amount", - "trans": [ - "n. 数量, 总额 vi. 总计, 等于" - ], - "id": "9ZCqLZ" - }, - { - "name": "alias", - "trans": [ - "n. 别名,化名 adv. 又被称为,另外地" - ], - "id": "HFIqZx" - }, - { - "name": "quote", - "trans": [ - "n. 引用 v. 引述, 举证, 报价" - ], - "id": "OJ9WP7" - }, - { - "name": "correct", - "trans": [ - "adj. 正确的 v. 改正,纠正 vt. 改正" - ], - "id": "onlXb5" - }, - { - "name": "else", - "trans": [ - "adj. 别的, 其他的 adv. 另外,否则" - ], - "id": "9wn7wT" - }, - { - "name": "maximum", - "trans": [ - "n. 极点, 最大量, 极大 adj. 最高的, 最大极限的" - ], - "id": "NlAQJT" - }, - { - "name": "under", - "trans": [ - "prep. 在...下,在...内,在...控制下,低于 adv. 在...下,在昏迷中,淹没地 adj. 下面的,从属的,少于的" - ], - "id": "h08Ezq" - }, - { - "name": "take", - "trans": [ - "vt.拿,取; 采取; 接受(礼物等); 耗费(时间等) vi.拿; 获得 n.镜头; 看法; 收入额; 场景" - ], - "id": "BGZCo5" - }, - { - "name": "element", - "trans": [ - "n. 成分,要素,元素,基本原理,(复数)恶劣天气" - ], - "id": "gKQ_LT" - }, - { - "name": "modification", - "trans": [ - "n. 修正, 修饰, 修改" - ], - "id": "59KP1g" - }, - { - "name": "input", - "trans": [ - "n. 输入" - ], - "id": "beKt0k" - }, - { - "name": "uppercase", - "trans": [ - "n. 大写字母 adj. 大写的 vt. 用大写字母排版或印刷" - ], - "id": "5pH1G8" - }, - { - "name": "plus", - "trans": [ - "prep.(表示运算)加; (表示包容)外加; [口语]和; (表示数目)在零(度)以上 n.加号; [数学]正量; 好处; 附加物 adj.加的; 正的; 附加的; 比所示数量多的" - ], - "id": "JRH8oW" - }, - { - "name": "found", - "trans": [ - "vt. 创立,建立;创办 v. 找到(find的过去分词)" - ], - "id": "vc3j9q" - }, - { - "name": "debug", - "trans": [ - "v.调试,驱除(某处的)害虫,排除障碍,纠正...的错误,寻出并拆除...内的窃听器" - ], - "id": "n52GJq" - }, - { - "name": "force", - "trans": [ - "n. 力量,武力,暴力,影响力 vt. 施暴,强迫,强夺,加压力 [计算机] 强制" - ], - "id": "Pbw-9E" - }, - { - "name": "lowercase", - "trans": [ - "adj. 小写体的 vt. 用小写字母书写,用小写字母打字 n. 小写体,小写字母" - ], - "id": "D5BJrf" - }, - { - "name": "just", - "trans": [ - "adj. 公正的,公平的,恰当的 adv. 正好,恰好" - ], - "id": "jV_fno" - }, - { - "name": "undo", - "trans": [ - "v. 解开,松开,取消" - ], - "id": "dCO6g2" - }, - { - "name": "environ", - "trans": [ - "vt. 包围, 环绕" - ], - "id": "HpF8gG" - }, - { - "name": "why", - "trans": [ - "adv. 为什么 conj. …的理由, 为什么 int. 咳, 哎呀 pron. 为何, 为什么" - ], - "id": "x6ecgl" - }, - { - "name": "temporary", - "trans": [ - "adj. 暂时的,临时的 n. 临时工" - ], - "id": "_mxbwb" - }, - { - "name": "put", - "trans": [ - "vt. 放,安置, 使处于 vi. 提交, 记下" - ], - "id": "sxlcff" - }, - { - "name": "instead", - "trans": [ - "adv. 代替, 反而" - ], - "id": "MpdT1z" - }, - { - "name": "encounter", - "trans": [ - "n. 意外的相见,遭遇 vt. &vi. 遇到,偶然碰到,遭遇" - ], - "id": "8Knioj" - }, - { - "name": "across", - "trans": [ - "adv. 横过, 使...被理解(或接受) prep. 穿过, 横过" - ], - "id": "eEylYG" - }, - { - "name": "matching", - "trans": [ - "adj. 匹配的, 相称的 动词match的现在分词" - ], - "id": "9ilR5t" - }, - { - "name": "wildcard", - "trans": [ - "n.[计]通配符" - ], - "id": "sBVzc0" - }, - { - "name": "spill", - "trans": [ - "vt.& vi.溢出; 泼出; 涌出; 蜂拥而出 n.洒出; 泼出; 溢出;小塞子" - ], - "id": "Ro0xWq" - }, - { - "name": "level", - "trans": [ - "n. 水平,等级,标准,层次 adj. 平坦的,齐平的,稳定的,合理的,满满的 vt. 压平,使同等,瞄准,夷为平地,推翻, 指责 vi. 趋向平稳, 瞄准, 诚恳待人, 使平等" - ], - "id": "jpu-rx" - }, - { - "name": "browse", - "trans": [ - "vt. &vi. 浏览, 随意观看, 吃草 n. 浏览, 嫩叶" - ], - "id": "r7-Vaf" - }, - { - "name": "speech", - "trans": [ - "n. 演讲,对话,话语,语言" - ], - "id": "JbpS6t" - }, - { - "name": "occur", - "trans": [ - "vi.发生; 出现; 闪现" - ], - "id": "VV5gGj" - }, - { - "name": "memo", - "trans": [ - "n. 备忘录" - ], - "id": "cdBuUT" - }, - { - "name": "prior", - "trans": [ - "adj. 更重要的, 较早的, 在先的 adv. 居先 n. 小修道院院长; 大修道院副院长" - ], - "id": "FkaCyH" - }, - { - "name": "loaded", - "trans": [ - "adj. 有负载的(装着货的, 装有弹药的, 加重的) v. 装载" - ], - "id": "ymD4m2" - }, - { - "name": "length", - "trans": [ - "n. 长度,篇幅" - ], - "id": "QOVJ3c" - }, - { - "name": "round", - "trans": [ - "n. 圆,(某种圆形)交谊舞,常规活动,一局(轮) adj. 圆的,微胖的,完整的,坦率的,圆满完成的 adv. 环形地 vt. 弄圆,绕行,使...完全,使成为整数 vi. 变圆(胖),弯曲 prp. 围绕,遍及" - ], - "id": "k9T5jj" - }, - { - "name": "variant", - "trans": [ - "n. 变体 adj. 不同的" - ], - "id": "nT4zGA" - }, - { - "name": "floppy", - "trans": [ - "adj. 叭塌叭塌响的,懒散的,邋遢的" - ], - "id": "Jx1frC" - }, - { - "name": "machine", - "trans": [ - "n.机器,机械; 机械般的人; 核心 vt.用机器制造,用机器加工 vi.被机器切削" - ], - "id": "ceuqtD" - }, - { - "name": "square", - "trans": [ - "n. 正方形,街区,平方,广场 adj. 正方形的,正直的,公正的,结实的 vt. 使...成方形,调整,一致 vi. 符合 adv. 成直角,直接的,正方形地" - ], - "id": "VzaQM1" - }, - { - "name": "supply", - "trans": [ - "n. 补给,供给,供应,贮备 vt. 补给,供给,提供,提供足够以满足" - ], - "id": "s_E_aC" - }, - { - "name": "home", - "trans": [ - "adj. 家(乡)的 adv. 回家, 在家, 正确的方向 n. 家, 住所, 国内的, 养老院 vt. 提供住处 vi. 回家, 移向" - ], - "id": "t3QD19" - }, - { - "name": "normal", - "trans": [ - "adj. 正常的,正规的 n. 常态, 标准" - ], - "id": "JbVrvi" - }, - { - "name": "onto", - "trans": [ - "prep. 到...上" - ], - "id": "eOCGz5" - }, - { - "name": "during", - "trans": [ - "prep. 在...期间" - ], - "id": "QtOMGO" - }, - { - "name": "module", - "trans": [ - "[计算机] 模块 n. 组件" - ], - "id": "Yjl35w" - }, - { - "name": "monochrome", - "trans": [ - "n. 单色画,单色画法 adj. 单色的,黑白的 [计算机] 单色的" - ], - "id": "nGu8fE" - }, - { - "name": "assistance", - "trans": [ - "n. 帮助, 援助" - ], - "id": "Oc0KNX" - }, - { - "name": "tell", - "trans": [ - "vt. 告诉,说,知道,认出,计数 vi. 讲述,告发,作证,产生效果" - ], - "id": "tnlVeP" - }, - { - "name": "library", - "trans": [ - "n. 图书馆, 藏书" - ], - "id": "banY4R" - }, - { - "name": "demonstration", - "trans": [ - "n. 示范,实证,表达,集会" - ], - "id": "VL7MJe" - }, - { - "name": "stack", - "trans": [ - "n. 堆叠,堆 vt. 堆积,成叠放在 vi. 堆成一堆" - ], - "id": "1SDyZi" - }, - { - "name": "even", - "trans": [ - "adj. 平坦的, 偶数的, 相等的 adv. 甚至, 恰好, 正当 v. 使平坦, 相等" - ], - "id": "pCp8-m" - }, - { - "name": "evaluate", - "trans": [ - "vt. 评估,评价" - ], - "id": "9TVp4P" - }, - { - "name": "times", - "trans": [ - "n. 时间,期限,次数,乘 vt. 为...安排时间,计时,定时,乘 [计算机] DOS命令 : 显示并允许改变系统时间 adj. 根据时间的, 时间上的" - ], - "id": "DZ4USr" - }, - { - "name": "previously", - "trans": [ - "adv. 以前(预先)" - ], - "id": "jDV9eN" - }, - { - "name": "directly", - "trans": [ - "adv. 直接地(立即,完全)" - ], - "id": "yqUpOM" - }, - { - "name": "logical", - "trans": [ - "adj. 符合逻辑的,逻辑上的,有推理能力的" - ], - "id": "-Bmddj" - }, - { - "name": "template", - "trans": [ - "n. 模板,样板" - ], - "id": "FyresN" - }, - { - "name": "calling", - "trans": [ - "n. 职业, 行业, 邀请 召集" - ], - "id": "z-WxcO" - }, - { - "name": "later", - "trans": [ - "adj. 更迟的,后面的 adv. 稍后,后来, 迟到地" - ], - "id": "PcNDdq" - }, - { - "name": "driver", - "trans": [ - "n. 驾驶员, 司机" - ], - "id": "Yv-78F" - }, - { - "name": "therefore", - "trans": [ - "adv. 因此, 所以" - ], - "id": "EeTZUF" - }, - { - "name": "saving", - "trans": [ - "n. n. 节约,挽救 (复数)savings:储蓄金,存款" - ], - "id": "nI3v5V" - }, - { - "name": "detail", - "trans": [ - "n. 细节,详情,部分,分派 vt. 详述,选派,用小元素装饰 vi. 画细节" - ], - "id": "hKj2vB" - }, - { - "name": "linker", - "trans": [ - "[计] (目标代码)连接器" - ], - "id": "dvrNJg" - }, - { - "name": "loop", - "trans": [ - "n. 环,圈,弯曲部份,回路 vt. 使...成环,以圈结,以环连结 vi. 形成环,环形地行动" - ], - "id": "w95uu1" - }, - { - "name": "process", - "trans": [ - "n.过程; 工序; 做事方法; 工艺流程 vt.加工; 处理; 审阅; 审核 vi.列队行进 adj.经过特殊加工(或处理)的" - ], - "id": "hXfEOj" - }, - { - "name": "scheme", - "trans": [ - "n. 方案, 计划, 阴谋 v. 计画, 设计, 体系, 结构, 图谋" - ], - "id": "OV4ohS" - }, - { - "name": "every", - "trans": [ - "adj. 每,每个,每隔...的" - ], - "id": "kKOdeA" - }, - { - "name": "refer", - "trans": [ - "vt. 把…提交; 把...归因, 归类为 vi. 谈及, 咨询, 参考" - ], - "id": "RCIQoq" - }, - { - "name": "possible", - "trans": [ - "adj. 可能的" - ], - "id": "zIgciz" - }, - { - "name": "above", - "trans": [ - "adj. 上面的 adv. 在上面, 超过 n. 上面的东西 prep. 在...上面, 超过" - ], - "id": "bBI9pD" - }, - { - "name": "overview", - "trans": [ - "n. 概观(况),总结 [计算机] 概貌" - ], - "id": "urlEzt" - }, - { - "name": "result", - "trans": [ - "n. 结果,成绩,答案 v. 产生,起于,致使" - ], - "id": "SGNsoB" - }, - { - "name": "syntax", - "trans": [ - "n. 句法" - ], - "id": "fRU84M" - }, - { - "name": "abbreviation", - "trans": [ - "n. 缩写" - ], - "id": "iysWRe" - }, - { - "name": "BIOS", - "trans": [ - "abbr. (=Basic Input Output System)基本输入输出系统" - ], - "id": "AM-Ckf" - }, - { - "name": "hidden", - "trans": [ - "adj. 隐藏的, 秘密的 vbl. 藏着, 隐藏, 躲藏 [计算机] 隐藏的" - ], - "id": "UXXb7a" - }, - { - "name": "null", - "trans": [ - "adj. 无效力的,无效的,无价值的 n. 零 [计算机] 空 vt. 使无效" - ], - "id": "__stDO" - }, - { - "name": "send", - "trans": [ - "vt. 送给,传,寄,发射 vi. 放送 n. 波浪的推力" - ], - "id": "5YI_Tw" - }, - { - "name": "private", - "trans": [ - "adj. 私人的,隐蔽的 n. 士兵,列兵" - ], - "id": "p2EsZ3" - }, - { - "name": "hard", - "trans": [ - "adj. 坚硬的;艰难的,苛刻的 adv. 努力地,猛烈地,坚定地" - ], - "id": "MfZWKx" - }, - { - "name": "hardware", - "trans": [ - "n. 五金器具 n. (计算机) 硬件" - ], - "id": "YI0VD3" - }, - { - "name": "say", - "trans": [ - "vt. 说,讲,表达,假设,,指示 vi. 说 n. 发言权 adv. 大约" - ], - "id": "sJ4dFE" - }, - { - "name": "equal", - "trans": [ - "adj. 相等的,平等的,胜任的 n. 对手,匹敌,同辈 vt. 等于,比得上" - ], - "id": "DT8lrf" - }, - { - "name": "pack", - "trans": [ - "n. 包裹,一群,一副,一帮,一群 vt. 包装,捆扎,塞满, 收拾行李, 佩戴 vi. 包装,(用某物)保存,保藏 ,塞进" - ], - "id": "oaSI4F" - }, - { - "name": "minus", - "trans": [ - "adj. 负的,减的 n. 减号,负数,缺点 prep. 减去" - ], - "id": "Hh2kNd" - }, - { - "name": "alternate", - "trans": [ - "adj. 交替的, 轮流的, 间隔的 vt. &vi. 交替, 轮流" - ], - "id": "CYzuza" - }, - { - "name": "collapse", - "trans": [ - "n. 崩溃,倒塌,暴跌 vi. 倒塌,崩溃,瓦解,折叠 vt. 倒塌,缩减" - ], - "id": "nv12lc" - }, - { - "name": "linux", - "trans": [ - "一种可免费使用的类UNIX操作系统" - ], - "id": "KDTdE-" - }, - { - "name": "corner", - "trans": [ - "n.角落,角; 拐角; 困境; [商]囤积 vi.驾车转弯; 聚于角落 vt.垄断; 逼入困境 adj.位于角落的" - ], - "id": "gePFc8" - }, - { - "name": "present", - "trans": [ - "n. 礼物, 现在 adj. 当面的, 出席的, 现在的 v. 赠送, 提出, 呈现" - ], - "id": "tcn0ye" - }, - { - "name": "interpreter", - "trans": [ - "n. 译员,口译者,解释程序" - ], - "id": "WBSX4W" - }, - { - "name": "advance", - "trans": [ - "n. 前进,进步,预支 vt. 前进,增涨,预先 vi. 前进,提升 adj. 预先的,提前的" - ], - "id": "wn-PPY" - }, - { - "name": "forward", - "trans": [ - "adv.前进地; 向前; 至将来; 提前地 adj.向前方的; 迅速的; (社会、政治)进步的; 早熟的 vt.促进,助长; (按新地址)转寄; 发送 n.前锋" - ], - "id": "xbCrUe" - }, - { - "name": "fast", - "trans": [ - "adj.快的; 走得快; 感光快的; 紧的 adv.(比准确的时间或宣布的时间)快; 迅速地; 紧紧地; 彻底地 vi.禁食,(尤指)斋戒 n.禁食期,斋戒期; 断食,节食" - ], - "id": "4VqF5z" - }, - { - "name": "special", - "trans": [ - "n. 专辑,专车,特色菜,特价,特刊 adj. 特别的,专门的" - ], - "id": "N5YYGZ" - }, - { - "name": "slash", - "trans": [ - "vi. 大幅度削减 vt. 猛砍,尖锐抨击,大幅减少 n. 猛砍,斜线,长切口,衣衩" - ], - "id": "MLR9WN" - }, - { - "name": "utility", - "trans": [ - "n. 公共设施,效用,公用程序,实用品,实用 adj. 多效用的,多功能的" - ], - "id": "nJOs4S" - }, - { - "name": "regardless", - "trans": [ - "adj. 不注意的, 粗心的 adv. 不顾" - ], - "id": "BosCxq" - }, - { - "name": "disable", - "trans": [ - "v. 使...失去能力" - ], - "id": "drmSMq" - }, - { - "name": "compatible", - "trans": [ - "adj. 能共处的,可并立的,适合的, 兼容的 n. 兼容" - ], - "id": "hmzvyc" - }, - { - "name": "depend", - "trans": [ - "vi. 依靠,相信,指望" - ], - "id": "kWuC3h" - }, - { - "name": "empty", - "trans": [ - "adj. 空的,空虚的,空腹的 n. 空物 vt. 使...空 vi. 变空,流入" - ], - "id": "zIbaKl" - }, - { - "name": "alphabetical", - "trans": [ - "adj. 按字母表顺序的" - ], - "id": "uqe6yW" - }, - { - "name": "branch", - "trans": [ - "n. 分支,树枝 vt &vi. 分支, 分岔" - ], - "id": "_f1DYM" - }, - { - "name": "resume", - "trans": [ - "v. 再继续, 重新开始 n. 简历, 履历; 摘要" - ], - "id": "RlgwlX" - }, - { - "name": "multiple", - "trans": [ - "adj. 许多,多种多样的 n. 倍数,并联" - ], - "id": "-h1p2N" - }, - { - "name": "monitor", - "trans": [ - "n. 监督器, 班长, 监听员, [计算机]显示器, 监视器 v. 监视, 监听, 监督" - ], - "id": "rleRxR" - }, - { - "name": "configuration", - "trans": [ - "n. 结构,布局,形态,格式塔心理完形 [计算机] 配置" - ], - "id": "xjmchx" - }, - { - "name": "replacement", - "trans": [ - "n. 交换,更换,代替者" - ], - "id": "YkO1ye" - }, - { - "name": "required", - "trans": [ - "adj. 必需的" - ], - "id": "b7IuEw" - }, - { - "name": "table", - "trans": [ - "n. 桌子, 平地层, 石板, 表格 vt. 搁置, 嵌合, 制表 adj. 桌子的" - ], - "id": "9CQeL1" - }, - { - "name": "loss", - "trans": [ - "n. 丧失, 损耗, 亏损" - ], - "id": "6Y58QF" - }, - { - "name": "exact", - "trans": [ - "adj. 精确的 vt. 强求,要求,索取" - ], - "id": "TU1aZw" - }, - { - "name": "aboveboard", - "trans": [ - "adv. 光明正大地, 率直地 adj. 光明正大的, 率直的" - ], - "id": "NnCeCB" - }, - { - "name": "activate", - "trans": [ - "v. 刺激,使...活动,创设" - ], - "id": "IL9q7N" - }, - { - "name": "around", - "trans": [ - "adj. 大约, 在现存范围内 adv. 大约,到处,在周围 prep. 在...附近, 到处" - ], - "id": "TPexv5" - }, - { - "name": "slow", - "trans": [ - "adj. 慢的 adv. 慢慢地 vt.& vi. 放慢,减速" - ], - "id": "dT8aFR" - }, - { - "name": "floating", - "trans": [ - "adj.浮动的,流动性的,不固定的 动词float的现在分词形式" - ], - "id": "utinEo" - }, - { - "name": "refresh", - "trans": [ - "vt.& vi. 使...生气蓬勃,提起精神,恢复精神" - ], - "id": "H9KUnn" - }, - { - "name": "stop", - "trans": [ - "n. 停止,车站,滞留,阻挡 vt. 停止,制止,塞住 vi. 停止,停留,结束" - ], - "id": "p7beb1" - }, - { - "name": "pass", - "trans": [ - "vt.& vi.走过; 通过; 批准; 度过 vt.传球; 及格; 发生; 不要 n.通道; 通行证; 关口; 越过" - ], - "id": "XikViR" - }, - { - "name": "public", - "trans": [ - "adj. 公开的,众所周知的,公众的 n. 公共场合,公众,同好者" - ], - "id": "fInto8" - }, - { - "name": "eject", - "trans": [ - "vt.喷出; 驱逐; 强制离开 vi.弹射出" - ], - "id": "4Y10bH" - }, - { - "name": "ignore", - "trans": [ - "vt. 不顾,不理,忽视" - ], - "id": "UXD-1T" - }, - { - "name": "share", - "trans": [ - "n. 部份,股份,分担,犁头 vt. 分享,共有,分配 vi. 分享" - ], - "id": "BaID4k" - }, - { - "name": "sequence", - "trans": [ - "n. 序列, 一系列, 顺序, 一组镜头 vt. 安排顺序" - ], - "id": "PDzHUt" - }, - { - "name": "consist", - "trans": [ - "n. 组成 vi. 组成,存在,一致" - ], - "id": "8_2rB0" - }, - { - "name": "step", - "trans": [ - "n. 步骤,步伐,踏级 vt. 踏,以步测量" - ], - "id": "97Gulj" - }, - { - "name": "double", - "trans": [ - "n. 两倍,复制品,替身,双重角色的演员,反转,双人房 adj. 两倍的,双重的,骗人的,加量的 adv. 两倍地,双人地,翻来覆去地,对折地 vt. 使加倍,对折,握紧,做替身 vi. 加倍,转身,兼任,替代演出" - ], - "id": "SJLl_3" - }, - { - "name": "come", - "trans": [ - "vt. 接近,扮演 vi. 来,发生,达到,进入" - ], - "id": "7iooth" - }, - { - "name": "lower", - "trans": [ - "adj. 低的, 下级的, 下层的 vt. 降低, 跌落, 减弱, 贬低 vi. 皱眉, 降低, 阴沉, 变少 n. 皱眉, 下级, 阴沉的样子, 前兆" - ], - "id": "53Ith7" - }, - { - "name": "describe", - "trans": [ - "vt. 描述, 画(尤指几何图形)" - ], - "id": "jwC4y2" - }, - { - "name": "count", - "trans": [ - "v. 计算, 视为, 依赖 n. 计数" - ], - "id": "VxHchb" - }, - { - "name": "pop", - "trans": [ - "n. 取出,砰然声,流行乐曲,流行文化艺术,(尤用作称呼)爸 adj. 流行的,热门的,通俗的 vt. 取出,发出爆裂声,突然伸出,击打,开火 vi. 发出砰的一声,(因激动、惊奇)张大 adv. 突然间地, 暴发地 POP abbr.=point of purchase POP abbr.=population 人口" - ], - "id": "okFlky" - }, - { - "name": "valid", - "trans": [ - "adj. 有确实根据的; 有效的; 正当的, 合法的" - ], - "id": "I90RWc" - }, - { - "name": "suspend", - "trans": [ - "v. 推迟,悬(浮),挂,暂停,取消 vi. 吊,悬浮 vt. 悬,挂,吊,暂停,中止" - ], - "id": "NQUqn8" - }, - { - "name": "enhance", - "trans": [ - "vt. 提高,加强,增加" - ], - "id": "LGxtZN" - }, - { - "name": "separate", - "trans": [ - "n. 分开, 抽印本 adj. 分开的, 各自的, 单独的 v. 分开, 隔开, 分居" - ], - "id": "hTAz5d" - }, - { - "name": "echo", - "trans": [ - "n. 回声,回音,回波,反响,共鸣 vt. 发回声,回响, 重复, 仿效 vi. 回响, 回荡 n.[计算机] DOS命令 :禁止(或允许)批处理命令行显示屏幕上" - ], - "id": "FFvasa" - }, - { - "name": "necessary", - "trans": [ - "adj. 必需的,必要的,必然的 n. [pl.]必需品" - ], - "id": "xcf_mb" - }, - { - "name": "able", - "trans": [ - "adj. 能干的, 有能力的" - ], - "id": "5r3NUN" - }, - { - "name": "marking", - "trans": [ - "n. 印记, 作记号,打分 动词mark的现在分词" - ], - "id": "SnDfZI" - }, - { - "name": "ask", - "trans": [ - "vt. 询问, 请求,要求,开价 vi. 询问,恳求" - ], - "id": "bd7M5d" - }, - { - "name": "term", - "trans": [ - "n.学期; 条款; 术语; 期限 vt.把…称为; 把…叫做" - ], - "id": "6bVPNi" - }, - { - "name": "bring", - "trans": [ - "vt. 带来, 引起, 促使, 劝诱 vi. 产生" - ], - "id": "mSJd9s" - }, - { - "name": "warning", - "trans": [ - "n. 警告, 预告, 通知 vbl. 警告, 注意, 通知" - ], - "id": "PgLyZj" - }, - { - "name": "less", - "trans": [ - "adj. 更少的,更小的 adv. 更少地,更小地 n. 少量, 次要 prep. 减" - ], - "id": "XtD8i8" - }, - { - "name": "comment", - "trans": [ - "n. 注释, 评论; 闲话 v. 注释, 评论" - ], - "id": "maunTp" - }, - { - "name": "effect", - "trans": [ - "n. 结果, 影响, 效果; 要旨 vt. 招致, 引起; 实现, 达到" - ], - "id": "I9Fxab" - }, - { - "name": "expanding", - "trans": [ - "adj.展开的,扩大的" - ], - "id": "QwJEHJ" - }, - { - "name": "on-line", - "trans": [ - "adj.在线的,即时的" - ], - "id": "HwxoWC" - }, - { - "name": "reorder", - "trans": [ - "重新排序, 再定购" - ], - "id": "xjgKMB" - }, - { - "name": "direct", - "trans": [ - "adj. 笔直的,直接的,坦白的 vt. 指挥,命令,负责 vi. 指导,指出" - ], - "id": "io-jdv" - }, - { - "name": "enclose", - "trans": [ - "vt. 围绕, 圈起, 放入封套, 附上 [计算机] 括入" - ], - "id": "zSAMEQ" - }, - { - "name": "reset", - "trans": [ - "n. 重新设定, 重新组合 v. 重新设定, 重新放置, 重新组合" - ], - "id": "zFNPuC" - }, - { - "name": "various", - "trans": [ - "adj. 各种各样的" - ], - "id": "oHIiAk" - }, - { - "name": "paper", - "trans": [ - "n. 纸,文件,论文,报纸,票据 vt. 用纸包,供纸,仓促完成 vi. 贴壁纸 adj.纸制的,文书的,理论上的" - ], - "id": "anKLNs" - }, - { - "name": "prevent", - "trans": [ - "v. 预防, 防止" - ], - "id": "Z4c_oS" - }, - { - "name": "side", - "trans": [ - "n. 旁边,侧,方面 adj. 旁的,侧的 vt. 支持,同意 vi. 支持" - ], - "id": "TkxPmQ" - }, - { - "name": "push", - "trans": [ - "n. 推,奋力,决心 vt. &vi. 推,挤,逼迫" - ], - "id": "HVKXEC" - }, - { - "name": "programming", - "trans": [ - "n. 程序设计, 编程 动词program的现在分词" - ], - "id": "oT_AAI" - }, - { - "name": "upper", - "trans": [ - "adj. 上部的,地位较高的,上面的,北方的 n. 鞋帮,上牙,兴奋剂,令人愉快的经历" - ], - "id": "5FQ8FC" - }, - { - "name": "row", - "trans": [ - "n. 排,船游,吵闹 vt. 划船,成排 vi. 划船,吵架" - ], - "id": "Y5nrIV" - }, - { - "name": "pressed", - "trans": [ - "adj. 被压迫的,压缩的 动词press的过去式和过去分词" - ], - "id": "rWOjjy" - }, - { - "name": "temporarily", - "trans": [ - "adj. 临时的 adv. 暂时地,临时地" - ], - "id": "pW5TnZ" - }, - { - "name": "day", - "trans": [ - "n. 白天,一天" - ], - "id": "sBZy5U" - }, - { - "name": "repaint", - "trans": [ - "v.重漆,重画 v.重新绘制" - ], - "id": "euKh1F" - }, - { - "name": "redefine", - "trans": [ - "vt. 重新定义" - ], - "id": "moA8z3" - }, - { - "name": "relation", - "trans": [ - "n. 关系,家人,亲戚,叙述,陈述" - ], - "id": "mAOfLu" - }, - { - "name": "dimension", - "trans": [ - "n. 尺寸, 次元, 容积, 维度 n. 范围; 方面 vt. 标尺寸; 形成...尺寸" - ], - "id": "SaT-lT" - }, - { - "name": "boundary", - "trans": [ - "n. 分界线, 边界" - ], - "id": "GMe81h" - }, - { - "name": "zoom", - "trans": [ - "vi.嗡嗡作响; 急速上升 n.嗡嗡声; 隆隆声; (车辆等)疾驰的声音; 变焦 vt.使急速上升; 使猛增" - ], - "id": "lt4zHs" - }, - { - "name": "initialize", - "trans": [ - "vt. 初始化" - ], - "id": "0SVX-_" - }, - { - "name": "personal", - "trans": [ - "adj. 私人的,个人的 n. (报刊的)私人专栏" - ], - "id": "nnXEDd" - }, - { - "name": "true", - "trans": [ - "adj. 确切的,可靠的,真实的,正确的,正式的 adv. 笔直地,事实地 n. 真相,精确 vt. 使...平衡" - ], - "id": "H8w28W" - }, - { - "name": "wish", - "trans": [ - "n. 渴望,愿望,(复数)祝颂,命令 vt. &vi. 想要,希望" - ], - "id": "jbsUYi" - }, - { - "name": "font", - "trans": [ - "n.字体; 字形; 圣洗池(设于教堂中,常为石造)" - ], - "id": "kWEhlF" - }, - { - "name": "know", - "trans": [ - "vt. &vi.知道,了解,认识" - ], - "id": "y3KfJ7" - }, - { - "name": "convert", - "trans": [ - "v. 使转变, 使...改变信仰, 倒置 n. 皈依者, 改宗者" - ], - "id": "CL0xbh" - }, - { - "name": "global", - "trans": [ - "adj. 全球性的, 全局的" - ], - "id": "tDEjgC" - }, - { - "name": "installation", - "trans": [ - "n. 安装,装置, 军事驻地" - ], - "id": "oHXIhQ" - }, - { - "name": "invoke", - "trans": [ - "vt. 求助,用咒语召唤,请求,应用,引起 [计算机] 调用" - ], - "id": "oNs4OG" - }, - { - "name": "interactive", - "trans": [ - "adj. 相互作用的 [计算机] 交互的" - ], - "id": "KSFi2r" - }, - { - "name": "century", - "trans": [ - "n. 世纪,一百年,成百的东西" - ], - "id": "IMobou" - }, - { - "name": "literal", - "trans": [ - "adj. 逐字的, 字面上的, 文字的 [计算机] 文字的" - ], - "id": "hL9e63" - }, - { - "name": "rather", - "trans": [ - "adv. 宁可,宁愿,有些,相当,反而" - ], - "id": "BHpjyH" - }, - { - "name": "exclusive", - "trans": [ - "adj. 独占的, 唯一的, 排外的; 高价的, 时髦的 [计算机] 互斥的 n. 独家新闻, 独权" - ], - "id": "lqr2OI" - }, - { - "name": "marker", - "trans": [ - "n. 标记,做记号的工具,做记号的人,记分员" - ], - "id": "ONVphz" - }, - { - "name": "wait", - "trans": [ - "vt.& vi.等候; 等待; (尤指长期地)希望; 盼望 vi.准备妥; 在手边; 可得到; 可使用 vt.推迟,搁置,延缓" - ], - "id": "wtL39x" - }, - { - "name": "appropriate", - "trans": [ - "adj. 适当的, 相称的 vt. 拨出(款项); 占用" - ], - "id": "nCPBwL" - }, - { - "name": "fit", - "trans": [ - "adj. 适宜的,对的,准备好的 v. 适合,安装 n. 适宜,发作,一阵" - ], - "id": "3MAzSD" - }, - { - "name": "adapter", - "trans": [ - "n. 适配器 n. 改编者" - ], - "id": "XfvGu5" - }, - { - "name": "filter", - "trans": [ - "n. 筛选,滤波器,过滤器,滤色镜 vt. &vi. 过滤,渗透 [计算机] 过滤" - ], - "id": "4ZzEL8" - }, - { - "name": "break", - "trans": [ - "n. 休息,中断,破裂 v. 打破,弄破,弄坏" - ], - "id": "8WVSb_" - }, - { - "name": "backward", - "trans": [ - "adj. 向后的 adv. 向后" - ], - "id": "A6-ie2" - }, - { - "name": "searching", - "trans": [ - "adj. 探寻的,洞察的 动词search的现在分词" - ], - "id": "YMYAZi" - }, - { - "name": "receive", - "trans": [ - "vt. 收到,接受,迎接,容纳,遭受,相信 vi. 接到,获得" - ], - "id": "PfIGoW" - }, - { - "name": "dual", - "trans": [ - "adj. 双重的, 成双的 n. 双数" - ], - "id": "4al0Iz" - }, - { - "name": "retry", - "trans": [ - "vt. 重试" - ], - "id": "cQ_eEQ" - }, - { - "name": "normally", - "trans": [ - "adv. 正常地,通常地" - ], - "id": "dC2xFt" - }, - { - "name": "exactly", - "trans": [ - "adj. 完全的 adv. 恰好地,正好地,正确地,精确地,正是" - ], - "id": "pVXkJB" - }, - { - "name": "immediately", - "trans": [ - "adv. 立即,直接地 conj. 一...(就)" - ], - "id": "b1WnSA" - }, - { - "name": "separated", - "trans": [ - "adj. 分开的 动词separate的过去式和过去分词" - ], - "id": "TY6vK7" - }, - { - "name": "high", - "trans": [ - "adj.高的,轻微变质的,高尚的,严重的,强的 adv. 高,好 n. 高地,天堂,高气压,高度,兴奋" - ], - "id": "ViWnc-" - }, - { - "name": "equivalent", - "trans": [ - "adj. 等价的, 相等的 n. 相等物" - ], - "id": "_Fz8Vv" - }, - { - "name": "light", - "trans": [ - "n. 光,光线,灯,启发,众所周知的,通光口,眼光 adj. 轻的,不重要的,容易的,明亮的,淡色的 vi. 点燃,着火,变亮,下马,落下,碰巧发生 vt. 点燃,照亮 adv. 轻地,轻便的" - ], - "id": "iplyqx" - }, - { - "name": "zero", - "trans": [ - "num.&n. 零" - ], - "id": "2sqiGy" - }, - { - "name": "storage", - "trans": [ - "n. 储存体, 储藏, 仓库, 保管费" - ], - "id": "nI6itU" - }, - { - "name": "width", - "trans": [ - "n. 宽度,广度,某一宽度的材料" - ], - "id": "qUkvRx" - }, - { - "name": "language", - "trans": [ - "n. 语言" - ], - "id": "raCGtf" - }, - { - "name": "startup", - "trans": [ - "n. 开动, 出发" - ], - "id": "aJwnP9" - }, - { - "name": "much", - "trans": [ - "adj. 许多的 adv. 很,非常 pron.&n. 许多" - ], - "id": "LpQB1F" - }, - { - "name": "per", - "trans": [ - "prep. 每,每一 adv.每人" - ], - "id": "Y0x1nt" - }, - { - "name": "over", - "trans": [ - "prep.(表示方向)越过; (部份或全部覆盖)在…上面; 由于; (表示论及)关于 adv.结束; 再; (倒)下; 从一边至另一边 adj.过去的; 外面的; 在上的; 上级的 n.额外; 剩余; 剩余(或多余)的量; 剩余物" - ], - "id": "GYPs42" - }, - { - "name": "mirror", - "trans": [ - "n. 镜子 vt. 反映,反射" - ], - "id": "F62Wsb" - }, - { - "name": "request", - "trans": [ - "n. 要求, 请求 vt. 请求, 要求" - ], - "id": "U6yW8y" - }, - { - "name": "keypad", - "trans": [ - "n. [计算机]小键盘" - ], - "id": "MqEjq2" - }, - { - "name": "keep", - "trans": [ - "vt.保持; 保留; 遵守; 阻止 vi.(食品)保持新; 保持健康 n.保持,保养; 供养,抚养; 生活,生计; 饲料;牧草" - ], - "id": "QBTvlx" - }, - { - "name": "resident", - "trans": [ - "adj. 居住的 n. 居民,旅客" - ], - "id": "PEq-7F" - }, - { - "name": "learning", - "trans": [ - "n. 学问, 学识, 学习 动词learn的现在分词" - ], - "id": "aCH3tk" - }, - { - "name": "talk", - "trans": [ - "n. 谈话,会谈,讲话, 闲话 vt. 说, 谈论, 商讨 vi. 说闲话, 招供, 开口说话, 闲聊" - ], - "id": "LDEXJc" - }, - { - "name": "summary", - "trans": [ - "n. 摘要,概要 adj. 摘要的,简略的" - ], - "id": "UA-Fh3" - }, - { - "name": "well", - "trans": [ - "n. 井,源泉,楼梯井 adj. 健康的,良好的,适宜的 adv. 很好地,适当地 vi. 涌出 interj. 好吧,啊" - ], - "id": "qAU5dY" - }, - { - "name": "link", - "trans": [ - "n. 环节,联系, (链的)环, 圈 vt. &vi. 连接,联系" - ], - "id": "xmcCMJ" - }, - { - "name": "identify", - "trans": [ - "vt.识别,认出; 确定; 使参与; 把…看成一样 vi.确定; 认同" - ], - "id": "qRxOdJ" - }, - { - "name": "pertain", - "trans": [ - "vi. 从属, 关于" - ], - "id": "xbPrsq" - }, - { - "name": "expansion", - "trans": [ - "n. 扩大,膨胀,扩充" - ], - "id": "-fcZJx" - }, - { - "name": "incompatible", - "trans": [ - "adj. 不相容的, 不能并存的, 矛盾的" - ], - "id": "S7hn8i" - }, - { - "name": "blinking", - "trans": [ - "adj. 闪烁的 adj. 该死的, 讨厌的, 十足的 动词blink的现在分词" - ], - "id": "GYJSDS" - }, - { - "name": "month", - "trans": [ - "n. 月" - ], - "id": "bm37VK" - }, - { - "name": "precede", - "trans": [ - "vt. &vi. 在...之前,优于,较...优先" - ], - "id": "wb_9md" - }, - { - "name": "readily", - "trans": [ - "adv. 不迟疑地,迅速地,轻易地" - ], - "id": "sSvrvD" - }, - { - "name": "transportable", - "trans": [ - "便携式计算机, 可传送的" - ], - "id": "0tKMrf" - }, - { - "name": "routine", - "trans": [ - "n. 例行公事, 常规,无聊 adj. 常规的, 例行的,乏味的" - ], - "id": "otUrPU" - }, - { - "name": "ready", - "trans": [ - "adj. 准备好的,乐意的,情愿的,现成的 vt. 做好…的准备" - ], - "id": "NrWuvA" - }, - { - "name": "listing", - "trans": [ - "[计算机] 清单" - ], - "id": "k6cPks" - }, - { - "name": "newly", - "trans": [ - "adv. 崭新,新改,以新方法" - ], - "id": "jOtnJf" - }, - { - "name": "year", - "trans": [ - "n.年; 年纪; 一年的期间; 某年级的学生" - ], - "id": "4iL7CB" - }, - { - "name": "contact", - "trans": [ - "v. (与)联系, (与)接触 n. 接触, 联系; 联系人" - ], - "id": "DXB0bg" - }, - { - "name": "session", - "trans": [ - "n.开会,会议;(法庭的)开庭; 会期,学期; (进行某活动连续的)一段时间" - ], - "id": "dNMN5e" - }, - { - "name": "own", - "trans": [ - "adj. 自己的, 嫡亲的 pron. 自己的 vi. 承认 vt. 拥有, 承认" - ], - "id": "cdnuVZ" - }, - { - "name": "redraw", - "trans": [ - "v. 重划" - ], - "id": "dX5pGh" - }, - { - "name": "here", - "trans": [ - "adv.在这里; 这时; 在这一点上; (给某人东西或指出某物时说) n.这里 int.喂; 嗨" - ], - "id": "FbmCBd" - }, - { - "name": "manual", - "trans": [ - "adj. 手工的,体力的 n. 手册,指南,键盘" - ], - "id": "tDi7um" - }, - { - "name": "particular", - "trans": [ - "n. 个别项目, 详细说明 adj. 特别的, 独有的; 挑剔的; 详细的" - ], - "id": "B5PULl" - }, - { - "name": "rectangle", - "trans": [ - "n. 长方形,矩形" - ], - "id": "QbDVHW" - }, - { - "name": "additive", - "trans": [ - "n. 附加物(加法) adj. 加添的" - ], - "id": "1h_Wrc" - }, - { - "name": "similar", - "trans": [ - "adj. 相似的,类似的,相同,一样" - ], - "id": "MrYuXZ" - }, - { - "name": "assembly", - "trans": [ - "n. 集合, 集会, 装配" - ], - "id": "AAEtRK" - }, - { - "name": "copyright", - "trans": [ - "adj. 版权(的) n. 版权,著作权" - ], - "id": "9v6xZq" - }, - { - "name": "description", - "trans": [ - "n. 描写, 描述, 说明书, 作图 n. 类型" - ], - "id": "3b-9u7" - }, - { - "name": "retrieve", - "trans": [ - "vt. 挽回,恢复,回忆,补偿 vi. 找回猎物 n. 取回,恢复" - ], - "id": "h59zfZ" - }, - { - "name": "mistake", - "trans": [ - "n. 错误,误会 vt. 弄错,误认 vi. 犯错" - ], - "id": "6Pk5hd" - }, - { - "name": "produce", - "trans": [ - "n. 产品, 农作物 vt. 生产, 提出, 引起, 分娩, 制片 vi. 生产, 制造" - ], - "id": "WzxlfP" - }, - { - "name": "ram", - "trans": [ - "abbr. 随机存取存储器(random access memory的缩写);随机访问内存(random-access memory的缩写) n. 公羊;撞锤;撞击装置;有撞角的军舰;(水压机的)[机] 活塞 v. 撞击;填塞;强迫通过或接受" - ], - "id": "mPLDY0" - }, - { - "name": "exception", - "trans": [ - "n. 除外,例外" - ], - "id": "nylhbu" - }, - { - "name": "digit", - "trans": [ - "n. 数字,位数,指头" - ], - "id": "Mg3xUR" - }, - { - "name": "reverse", - "trans": [ - "n. 相反; 背面; 失败, 挫折 adj. 反面的, 相反的, 颠倒的 v. 颠倒, 逆转, 倒退" - ], - "id": "tOc66G" - }, - { - "name": "minimum", - "trans": [ - "adj. 最低的, 最小的 n. 最小量, 最低限度" - ], - "id": "PCt5mD" - }, - { - "name": "enough", - "trans": [ - "adj. 足够的 adv. 足够地 n. 充足,足够 pron. 足够(的)" - ], - "id": "1HRpGx" - }, - { - "name": "although", - "trans": [ - "conj. 尽管, 虽然" - ], - "id": "Sz6enI" - }, - { - "name": "third", - "trans": [ - "adj. 第三(的) n. 三分之一 num. 第三" - ], - "id": "31Pt7o" - }, - { - "name": "red", - "trans": [ - "adj. 红色的 n. 红色" - ], - "id": "xQoVRW" - }, - { - "name": "along", - "trans": [ - "adv. 向前,(与某人)一道 prep. 沿着" - ], - "id": "l9De0R" - }, - { - "name": "test", - "trans": [ - "n. 测试, 试验 vt. 测试, 试验, 接受测验, 测得... adj. 测试的" - ], - "id": "roYWTl" - }, - { - "name": "small", - "trans": [ - "adj. 小的,少的 adv. 些许地 n. 狭小部分" - ], - "id": "--st5l" - }, - { - "name": "feed", - "trans": [ - "vt.喂养; 满足(欲望等); 向…提供; 供…作食物 vi.吃,以…为食; 流入,注入,进入(如油流入机器); [电子学]馈入 n.饲料(尤指粗饲料),施肥; 喂送; 草料" - ], - "id": "OWtSyV" - }, - { - "name": "company", - "trans": [ - "n. 同伴,客人,一群,连队,公司 vt. 陪伴 vi. 联合" - ], - "id": "Q2EVPF" - }, - { - "name": "movie", - "trans": [ - "n. 电影" - ], - "id": "YnHTaZ" - }, - { - "name": "compile", - "trans": [ - "v. 编译,编辑,编纂 [计算机] 编译" - ], - "id": "DUI23a" - }, - { - "name": "frequently", - "trans": [ - "adv. 经常地, 频繁地" - ], - "id": "aTrPb_" - }, - { - "name": "undefined", - "trans": [ - "adj. 未定义的" - ], - "id": "WcMd7k" - }, - { - "name": "state", - "trans": [ - "n. 州, 国, 情形 adj. 国家的, 州的, 正式的 vt. 说, 陈述, 声明, 规定" - ], - "id": "m2_k7R" - }, - { - "name": "accept", - "trans": [ - "vi.承认; 同意; 承兑 vt.接受; 承认; 承担; 承兑" - ], - "id": "ZCzvCY" - }, - { - "name": "intense", - "trans": [ - "adj. 非常的,强烈的,紧张的,热情的" - ], - "id": "2UwYkg" - }, - { - "name": "documentation", - "trans": [ - "n. 文件" - ], - "id": "ISKzs5" - }, - { - "name": "asterisk", - "trans": [ - "n. 星号(*)" - ], - "id": "yuhv8X" - }, - { - "name": "easily", - "trans": [ - "adj. 容易地,不费力地 adv. 容易地" - ], - "id": "FoJZEb" - }, - { - "name": "become", - "trans": [ - "vt. 变得 vi. 存在,变得,经历改变或发展" - ], - "id": "fUjM4d" - }, - { - "name": "address", - "trans": [ - "n. n.地址; 通信处; 演说; 称呼" - ], - "id": "8MyDeF" - }, - { - "name": "interface", - "trans": [ - "n. 界面,接触面 vt. 连接,作接口 vi. 连接" - ], - "id": "AdQTlj" - }, - { - "name": "pause", - "trans": [ - "n. 暂停,中止,犹豫不决 vi. 停顿,中止 vt. 使停顿" - ], - "id": "2bh-0v" - }, - { - "name": "repeat", - "trans": [ - "n. 重复,反复 vt. 重复,复述 vi. 重复 adj. 重复的,反复的" - ], - "id": "itKfDU" - }, - { - "name": "restart", - "trans": [ - "重新启动" - ], - "id": "Gt7kw1" - }, - { - "name": "assumed", - "trans": [ - "adj.假定的, 假装的 动词assume的过去式和过去分词" - ], - "id": "IEnSq8" - }, - { - "name": "speed", - "trans": [ - "n. 速度,迅速,感光度,超速 vt. 加速,催促,促进 vi. 超速,加速,进展" - ], - "id": "G-SC1l" - }, - { - "name": "entry", - "trans": [ - "n. 进入,入口,登记,项目" - ], - "id": "kR7tEi" - }, - { - "name": "combine", - "trans": [ - "n. 集团,联合收割机 v. 化合,结合,联合 vi. 结合,联合 vt. 使结合,使联合" - ], - "id": "PepIUr" - }, - { - "name": "root", - "trans": [ - "n. 根,根源,祖先 vt. &vi. 生根,扎根,翻寻,起源于" - ], - "id": "x7nSTi" - }, - { - "name": "symbol", - "trans": [ - "n. 符号, 标志, 象征" - ], - "id": "ImDyVL" - }, - { - "name": "binary", - "trans": [ - "adj. 二进位的,二元的 n. 二进制,二元" - ], - "id": "hHWI0B" - }, - { - "name": "whenever", - "trans": [ - "adv. 无论何时 conj. 每当, 无论何时, 随时" - ], - "id": "EhczkX" - }, - { - "name": "reach", - "trans": [ - "n. 延伸,范围,河段 vt. 到达,伸出,延伸,取得联系 vi. 延伸" - ], - "id": "KwiDOm" - }, - { - "name": "caution", - "trans": [ - "n. 警告,戒备措施,慎重,吸引人眼球的物品或人 vt. 警告" - ], - "id": "1mUZyc" - }, - { - "name": "subtotal", - "trans": [ - "n. 小计 adj. 不完全的" - ], - "id": "DN8CzI" - }, - { - "name": "card", - "trans": [ - "n. 卡片,纸牌,名片,打牌,节目单 vt. 附上或提供卡片,印卡,在卡片上列出,检查资格" - ], - "id": "cWhKQw" - }, - { - "name": "general", - "trans": [ - "n. 一般,将军,大体 adj. 一般的,普遍的 v. 指挥,作...将军" - ], - "id": "2cSlUK" - }, - { - "name": "associated", - "trans": [ - "adj. 联合的,相关的" - ], - "id": "x9cCrk" - }, - { - "name": "transfer", - "trans": [ - "n. 迁移, 移动, 换车 v. 转移, 调转, 调任" - ], - "id": "xyVLe2" - }, - { - "name": "connect", - "trans": [ - "vt. 连接,联通,使有联系 vi. 连接,接通" - ], - "id": "7UT9iF" - }, - { - "name": "partition", - "trans": [ - "n. 分割,隔离物,隔墙 v. 区分,隔开,分割" - ], - "id": "J0i_6m" - }, - { - "name": "hexadecimal", - "trans": [ - "adj. 十六的, 十六进制的 n. 十六进制" - ], - "id": "RQXJxC" - }, - { - "name": "generate", - "trans": [ - "vt. 产生,发生,引起 [计算机] 产生" - ], - "id": "sdumXS" - }, - { - "name": "specification", - "trans": [ - "n. 规格,详述,详细说明书" - ], - "id": "tFNmVe" - }, - { - "name": "customize", - "trans": [ - "vt. 定制 [计算机] 用户化" - ], - "id": "csBlsj" - }, - { - "name": "far", - "trans": [ - "adv.&adj. 远的(地) n. 远处" - ], - "id": "KCtx2t" - }, - { - "name": "nest", - "trans": [ - "n. 巢, 窝 vt. 嵌入 vi. 筑巢" - ], - "id": "jywgcg" - }, - { - "name": "duplicate", - "trans": [ - "n. 副本,复制品 adj. 复制的,二重的 vt. 复制,重复 vi. 重复 [计算机] 复制" - ], - "id": "2Z67VG" - }, - { - "name": "compression", - "trans": [ - "n. 压缩, 压榨, 缩小" - ], - "id": "AyxzRg" - }, - { - "name": "unable", - "trans": [ - "adj. 不能的,不会的 v. 不能,不会" - ], - "id": "HYKzCZ" - }, - { - "name": "means", - "trans": [ - "n. 方法,手段,折中点,物质财富" - ], - "id": "xLNS2Y" - }, - { - "name": "intensity", - "trans": [ - "n. 激烈,强度,强烈,剧烈" - ], - "id": "O6qcEt" - }, - { - "name": "reading", - "trans": [ - "adj. 阅读的 n. 阅读" - ], - "id": "uZDu3w" - }, - { - "name": "let", - "trans": [ - "vt. 让,容许,释放 vi. 出租,承包 n. 障碍,擦网球" - ], - "id": "pra5e5" - }, - { - "name": "compare", - "trans": [ - "vt.&vi. 比较,比喻,对照 n. 比较,对照" - ], - "id": "AqJ-W3" - }, - { - "name": "sector", - "trans": [ - "n. 扇形,扇区,部门,区域 vt. 分区" - ], - "id": "KBy-af" - }, - { - "name": "problem", - "trans": [ - "adj. 成问题的, 难对付的 n. 问题" - ], - "id": "w-y_RY" - }, - { - "name": "backspace", - "trans": [ - "vi. 按退格键 n. 退格键" - ], - "id": "xa7DS3" - }, - { - "name": "terminate", - "trans": [ - "adj. 有结尾的,有限的 vt. 结束,终止,满期 vi. 达到终点" - ], - "id": "ntGs2S" - }, - { - "name": "people", - "trans": [ - "n. 民族,人,人们,人民,家人 vt. 居住于" - ], - "id": "5yhMAl" - }, - { - "name": "short", - "trans": [ - "adj. 短的,矮的,短暂的 n. 短裤 adv. 短暂地;突然地" - ], - "id": "q0i0p9" - }, - { - "name": "drag", - "trans": [ - "n. 用来拖拉的东西,拖,拖累 vt. 拖累,拖拉(动) vi. 拖拉(动),缓慢地行走" - ], - "id": "yOHLjI" - }, - { - "name": "preview", - "trans": [ - "n. 预审,查阅,预习,预告 vt. 事先查看,查阅,预审,预习" - ], - "id": "c_tQiN" - }, - { - "name": "underscore", - "trans": [ - "vt. 划线于,强调,提供伴奏乐 n. 下划线,影片伴奏乐" - ], - "id": "zt_wLL" - }, - { - "name": "correctly", - "trans": [ - "adv.恰当地,正确地" - ], - "id": "-qmAYi" - }, - { - "name": "initially", - "trans": [ - "adv. 最初, 开头" - ], - "id": "doRsLy" - }, - { - "name": "reformat", - "trans": [ - "vt. 重定格式, 重新格式化" - ], - "id": "q33olC" - }, - { - "name": "inside", - "trans": [ - "adj. 里面的 adv. 在里面 n. 内部 prep. 在...里面" - ], - "id": "EGzuDX" - }, - { - "name": "integrate", - "trans": [ - "v. 整合, 使...成整体" - ], - "id": "DYrpF7" - }, - { - "name": "controlled", - "trans": [ - "adj. 受控制的, 受约束的 动词control的过去式和过去分词形式" - ], - "id": "IiuYTQ" - }, - { - "name": "period", - "trans": [ - "n. 学时, 课时; 一段时间, 时期, 周期; 句号" - ], - "id": "bv2hpq" - }, - { - "name": "huge", - "trans": [ - "adj. 巨大的,程度高的" - ], - "id": "sPk5vl" - }, - { - "name": "determined", - "trans": [ - "adj. 坚毅的,下定决心的" - ], - "id": "cI7ztp" - }, - { - "name": "trailing", - "trans": [ - "adj. 牵引的 n. 拖尾 动词trail的现在分词形式" - ], - "id": "a_CaLD" - }, - { - "name": "seek", - "trans": [ - "n. 找寻 v. 寻求,寻找,搜索" - ], - "id": "YBiZHD" - }, - { - "name": "introduction", - "trans": [ - "n. 介绍, 引进, 导论, 序言" - ], - "id": "CedttS" - }, - { - "name": "indent", - "trans": [ - "n. 契约, 订货单 v. 切割成锯齿状, 缩排, 定货 [计算机] 缩排, 缩进" - ], - "id": "59sB_V" - }, - { - "name": "base", - "trans": [ - "n. 基底,(支持、收入、力量等的)基础 vt. 以...作基础 adj. 卑鄙的;不道德的" - ], - "id": "AkAnhm" - }, - { - "name": "integer", - "trans": [ - "n. 完整的事物,整体,整数 [计算机] 整数" - ], - "id": "XXKR-M" - }, - { - "name": "attempt", - "trans": [ - "vt.试图; 尝试 n.进攻; 尝试,冲击" - ], - "id": "atiyca" - }, - { - "name": "twice", - "trans": [ - "adv. 两倍, 两次" - ], - "id": "zoS-_W" - }, - { - "name": "formed", - "trans": [ - "adj. 成形的 动词form的过去式和过去分词" - ], - "id": "Lc8Dny" - }, - { - "name": "subscript", - "trans": [ - "n. 下标 adj. 写在下方的" - ], - "id": "_57XpL" - }, - { - "name": "tiny", - "trans": [ - "adj. 极小的,微小的" - ], - "id": "739I7O" - }, - { - "name": "model", - "trans": [ - "n. 模型, 模范, 模特儿 adj. 模范的, 作模型用的 v. 做模型, 塑造, 模仿" - ], - "id": "pyK3Vx" - }, - { - "name": "correction", - "trans": [ - "n. 订正, 改正, 改正的地方" - ], - "id": "PLPOsc" - }, - { - "name": "rating", - "trans": [ - "n. 等级,评定,收视率" - ], - "id": "fTiG3o" - }, - { - "name": "secondary", - "trans": [ - "adj. 中级的,中等的,次要的 n. 次要位置, 副手" - ], - "id": "M0pDi7" - }, - { - "name": "limit", - "trans": [ - "n.限制; 限量,限度; 界限 vt.限制,限定" - ], - "id": "N_h0As" - }, - { - "name": "sun", - "trans": [ - "n. 太阳,阳光,中心人物,像太阳般的东西 vt.& vi. 晒太阳" - ], - "id": "irQ768" - }, - { - "name": "translate", - "trans": [ - "vt. 翻译;转化;解释;转变为;调动 vi. 翻译" - ], - "id": "IuahEl" - }, - { - "name": "reason", - "trans": [ - "n. 理由,原因,理智,理性 vt. 说服,总结 vi. 规劝,下判断" - ], - "id": "bfFjre" - }, - { - "name": "colon", - "trans": [ - "n. 冒号, 结肠, 科朗(哥斯达黎加和萨尔瓦多的货币单位) (Colon)科隆(巴拿马港市)" - ], - "id": "YucB7B" - }, - { - "name": "avoid", - "trans": [ - "v. 避免 vt. 避免,逃避" - ], - "id": "1pJhoC" - }, - { - "name": "range", - "trans": [ - "n.范围; 射程; 类别; (山脉,房屋等的)排列 vi.搜索; 变化; 延伸; 漫游 vt.排列; (按一定位置或顺序)排序; 把…分类; 徘徊 adj.牧场的,放牧区的" - ], - "id": "7SLyoG" - }, - { - "name": "allocate", - "trans": [ - "v. 分派, 分配, 分配额" - ], - "id": "Ztn_xP" - }, - { - "name": "simply", - "trans": [ - "adv.&adj. 简单地,仅仅" - ], - "id": "NEdJl6" - }, - { - "name": "verify", - "trans": [ - "v. 查证,核实 n.[计算机] DOS命令 : 打开关闭在 DOS操作期间的写文件校验开关" - ], - "id": "Sc1N7R" - }, - { - "name": "manner", - "trans": [ - "n. 样子,礼貌,风格,方式" - ], - "id": "Beu67h" - }, - { - "name": "direction", - "trans": [ - "n. 方向,指导,用法说明,趋势" - ], - "id": "ERZ8Zs" - }, - { - "name": "portion", - "trans": [ - "n. 部分,份,命运 v. 将...分配,分配" - ], - "id": "8E_CW9" - }, - { - "name": "emulator", - "trans": [ - "n. 仿真器" - ], - "id": "QsjCNj" - }, - { - "name": "successful", - "trans": [ - "adj. 成功的,达到目的的" - ], - "id": "MuTcyQ" - }, - { - "name": "applied", - "trans": [ - "adj. 应用的 v. 应用, 适用 vbl. 应用" - ], - "id": "lJie89" - }, - { - "name": "sum", - "trans": [ - "n. 总数(计),金额,顶点,概略,一笔钱 vt. 总计,概括 vi. 总计" - ], - "id": "_cP55j" - }, - { - "name": "achieve", - "trans": [ - "vt. 完成,达到,实现 vi. 达到目的" - ], - "id": "pKuE-G" - }, - { - "name": "together", - "trans": [ - "adv. 一起,共同,相结合,同时地,协调地 adj. 头脑清楚的,镇定的" - ], - "id": "n04LeZ" - }, - { - "name": "affect", - "trans": [ - "vt. 影响, 作用, 感动" - ], - "id": "HCwu1p" - }, - { - "name": "delay", - "trans": [ - "n. 耽搁,迟滞 vt. 耽搁,延迟 vi. 耽搁" - ], - "id": "E9qUxG" - }, - { - "name": "free", - "trans": [ - "adj. 自由的,大方的,免费的 vt. 释放,解放 adv. 自由地,免费地" - ], - "id": "vYNv0d" - }, - { - "name": "properly", - "trans": [ - "adv. 适当地, 相当地, 当然地" - ], - "id": "cSjW4w" - }, - { - "name": "kind", - "trans": [ - "adj. 仁慈的,友好的 n. 种类,本质" - ], - "id": "4O2dd4" - }, - { - "name": "splitting", - "trans": [ - "爆裂式的" - ], - "id": "WsdTFK" - }, - { - "name": "feature", - "trans": [ - "n. 特征, 容貌 vt. 以...为特色 vi. 起重要作用" - ], - "id": "pQxezp" - }, - { - "name": "console", - "trans": [ - "vt. 安慰,慰藉 n. 仪表盘,操控台,(游戏)平台" - ], - "id": "pDNVXm" - }, - { - "name": "operate", - "trans": [ - "vi. 操作, 运转 vt. 起作用, 动手术" - ], - "id": "acEaJI" - }, - { - "name": "kernel", - "trans": [ - "n. 核心, 中心, 精髓 [计算机] 核心" - ], - "id": "R_zzbp" - }, - { - "name": "easy", - "trans": [ - "adj. 容易的,安逸的,不费力的 adv. 慢慢地, 当心地" - ], - "id": "ub4itk" - }, - { - "name": "modifier", - "trans": [ - "n. 修正的人, 修饰语" - ], - "id": "dGKqFv" - }, - { - "name": "invalid", - "trans": [ - "adj. 无效的,伤残的 n. 病人,残疾者 vt. 失去健康" - ], - "id": "iot7KW" - }, - { - "name": "compiler", - "trans": [ - "n. 编辑者,[计算机]编译器, 编译程序" - ], - "id": "LsN82c" - }, - { - "name": "dot", - "trans": [ - "n. 小圆点,少量,小东西 vt. 作小点记号,点缀 vi. 作小点记号 [计算机] 点" - ], - "id": "hHCr4y" - }, - { - "name": "beep", - "trans": [ - "n. 哔哔声 vt. 产生(如号角)声音 vi. 吹号,发出哔哔声" - ], - "id": "UD0DTf" - }, - { - "name": "face", - "trans": [ - "n. 脸, 神情, 面子, 表面 vt. 面对, 朝 vi. 朝, 向" - ], - "id": "lX36a9" - }, - { - "name": "random", - "trans": [ - "n. 随意,任意 adj. 任意的,随便的,胡乱的 adv. 随机地" - ], - "id": "UPloML" - }, - { - "name": "facility", - "trans": [ - "n.设备; 容易; 能力; 灵巧" - ], - "id": "Cp80be" - }, - { - "name": "heading", - "trans": [ - "n. 标题,题目,航向 动词head的现在分词" - ], - "id": "FQ4WXF" - }, - { - "name": "asynchronous", - "trans": [ - "adj. 异步的" - ], - "id": "nzeFMr" - }, - { - "name": "series", - "trans": [ - "n. 系列,连续" - ], - "id": "x5ybbD" - }, - { - "name": "individual", - "trans": [ - "adj. 个别的; 独有的 n. 个人, 个体" - ], - "id": "xXvGh6" - }, - { - "name": "explain", - "trans": [ - "vt. &vi. 解释,说明" - ], - "id": "yPmkJL" - }, - { - "name": "paste", - "trans": [ - "n. 糊,浆糊,铅制玻璃 vt. 粘贴,覆盖,猛击" - ], - "id": "ocOS18" - }, - { - "name": "welcome", - "trans": [ - "vt.欢迎; 乐于接受 adj.受欢迎的; 令人愉悦的; 表示感谢的 n.欢迎,迎接" - ], - "id": "f8zc2-" - }, - { - "name": "six", - "trans": [ - "n.六;六个;六岁;六点 num.六;六个" - ], - "id": "NgYUUa" - }, - { - "name": "early", - "trans": [ - "adv.&adj. 早" - ], - "id": "WvmBnh" - }, - { - "name": "wrap", - "trans": [ - "vt.包; 缠绕; 用…包裹(或包扎、覆盖等); 掩护 n.膝毯,披肩,围巾,围脖,头巾,罩衫,外套,大衣; 包装纸; 〈俚〉机密 vi.缠绕,盘绕(通常与 over, around 等连用); 包上,裹上; 穿上(衣服等)" - ], - "id": "fEhYRL" - }, - { - "name": "blue", - "trans": [ - "adj. 蓝色的,沮丧的,忧郁的,(女人)有学问的 n. 蓝色 vt. 使...变蓝 vi. 变蓝" - ], - "id": "QhZ5FA" - }, - { - "name": "queue", - "trans": [ - "n. 行列,长队 v. 排队 vi. 排长队" - ], - "id": "KtfF0y" - }, - { - "name": "interrupt", - "trans": [ - "n. 中断 vt. 打断,妨碍 vi. 插嘴 [计算机] 中断" - ], - "id": "tfpHAz" - }, - { - "name": "respect", - "trans": [ - "n. 尊敬, 敬重; 关系, 方面 vt. 尊敬, 尊重; 关于, 涉及" - ], - "id": "d7eRqU" - }, - { - "name": "common", - "trans": [ - "adj. 共同的, 平常的, 普通的 n. 平民, 普通, 公地, 公园" - ], - "id": "0-6bwH" - }, - { - "name": "hyphen", - "trans": [ - "n. 连字号 v. 以连字号连接" - ], - "id": "xq3oMQ" - }, - { - "name": "serial", - "trans": [ - "n. 序列,串列 adj. 连续的,一连串的" - ], - "id": "Q_dAlI" - }, - { - "name": "loading", - "trans": [ - "n.装载,装填" - ], - "id": "3yYeZ-" - }, - { - "name": "retain", - "trans": [ - "vt. 保持, 保留; 记住" - ], - "id": "Iat4Ls" - }, - { - "name": "setup", - "trans": [ - "n. 装备, 组织, 计划" - ], - "id": "zQv6ZG" - }, - { - "name": "freeze", - "trans": [ - "v. 冻结, 冷冻, 僵硬" - ], - "id": "9KSITf" - }, - { - "name": "intend", - "trans": [ - "v. 打算 vt. 想要,打算,计划" - ], - "id": "MqVCdL" - }, - { - "name": "explanation", - "trans": [ - "n. 解释, 说明" - ], - "id": "iQuro4" - }, - { - "name": "certain", - "trans": [ - "adj. 一定的 pron. 某几个,某些 肯定的,无疑的,必然发生的" - ], - "id": "jwPugG" - }, - { - "name": "zap", - "trans": [ - "vt. 击溃,射杀 vi. 快速移动 int. 嚓(表示枪声等)" - ], - "id": "D1Twop" - }, - { - "name": "archive", - "trans": [ - "n. 档案,档案馆 vt. 存档" - ], - "id": "lie0ia" - }, - { - "name": "negative", - "trans": [ - "adj. 否定的,负的,消极的 n. 底片,负数,否定 vt. 否定" - ], - "id": "zTQnve" - }, - { - "name": "image", - "trans": [ - "n. 图像,影像,肖像,想像,形象 vt. 想像,描绘,反映" - ], - "id": "0B93QL" - }, - { - "name": "platform", - "trans": [ - "n. 平台,月台,讲台,坛,计划" - ], - "id": "_GZkA6" - }, - { - "name": "often", - "trans": [ - "adv. 经常" - ], - "id": "BF9202" - }, - { - "name": "signal", - "trans": [ - "n. 信号,导火线,动机 vt. 发信号,标志 vi. 发信号 adj. 显著的" - ], - "id": "MYyC3g" - }, - { - "name": "CPU", - "trans": [ - "abbr. [计算机]中央处理器(=central processing unit)" - ], - "id": "OcYV-Y" - }, - { - "name": "bit", - "trans": [ - "n. 一点儿,少量 n. 钻头,马嚼子,辅币 n. 位,比特(二进位制信息单位) v. 控制" - ], - "id": "9UZltv" - }, - { - "name": "fully", - "trans": [ - "adv. 十分地, 完全地, 全" - ], - "id": "CvSgc0" - }, - { - "name": "deactivate", - "trans": [ - "vt. 使无效,使不活动,解散部队" - ], - "id": "OsIRV7" - }, - { - "name": "especially", - "trans": [ - "adv. 特别,尤其" - ], - "id": "ypZscK" - }, - { - "name": "usually", - "trans": [ - "adv. 通常" - ], - "id": "LWCePi" - }, - { - "name": "recommend", - "trans": [ - "vt. 建议, 推荐, 劝告 vt. 使成为可取, 使受欢迎" - ], - "id": "az_1TC" - }, - { - "name": "maintain", - "trans": [ - "vt. 维持; 维修, 保养; 坚持; 断言" - ], - "id": "t5G-Ef" - }, - { - "name": "important", - "trans": [ - "adj. 重要的,影响很大的" - ], - "id": "yCr0YF" - }, - { - "name": "central", - "trans": [ - "adj. 中心的,基本的,折中的,中枢的 n. 电话交流,中央办公室,中心" - ], - "id": "1d18gx" - }, - { - "name": "addition", - "trans": [ - "n. 增加,附加物,加,加法" - ], - "id": "KJb0gE" - }, - { - "name": "anytime", - "trans": [ - "adv. 任何时候;无例外地" - ], - "id": "AEQ8r1" - }, - { - "name": "analyst", - "trans": [ - "n. 分析家" - ], - "id": "06HBgN" - }, - { - "name": "false", - "trans": [ - "adj. 不真实的,错误的,人造的,假的,虚伪的 adv. 不真诚地,虚伪地" - ], - "id": "bwK_sm" - }, - { - "name": "black", - "trans": [ - "adj.黑(色)的; 黑色人种的; 黑暗的 n.黑色; 黑人; 黑颜料; 黑暗 v.使变黑; 抵制; 拒绝; 使变黑暗" - ], - "id": "ChQanu" - }, - { - "name": "gather", - "trans": [ - "vt.收集; 聚集,搜集; 收紧,收缩; 采集 vi.逐渐增加,积聚 n.聚集; 衣褶" - ], - "id": "9daLnO" - }, - { - "name": "cycle", - "trans": [ - "n. 循环,周期,长期,圈,套曲,自行车, vt. 环行,骑自行车 vi. 使环行" - ], - "id": "zv-cuQ" - }, - { - "name": "relative", - "trans": [ - "adj. 相对的,比较的,涉及到的 n. 亲属,同类事物,相关物" - ], - "id": "QjWIFQ" - }, - { - "name": "offer", - "trans": [ - "n. 出价, 提议 vt. 提供, 出价; 贡献, 奉献 vi. 提议; 出现; 求婚" - ], - "id": "kTVgd0" - }, - { - "name": "ending", - "trans": [ - "n. 结尾, 结局" - ], - "id": "mYh0oc" - }, - { - "name": "rent", - "trans": [ - "n. 租金 v. 租 vi. 出租 vt. 出租,租用" - ], - "id": "ymmp61" - }, - { - "name": "sentence", - "trans": [ - "n. 句子,意见,宣判,刑罚,命题 vt. 宣判,判决,使遭受" - ], - "id": "2h5E5f" - }, - { - "name": "remember", - "trans": [ - "vt. &vi. 记得,记忆" - ], - "id": "pmT3_a" - }, - { - "name": "proper", - "trans": [ - "adj. 适当的,正确的,合适的,正当的,规矩的" - ], - "id": "1RfM85" - }, - { - "name": "design", - "trans": [ - "vt.& vi.设计; 绘制 vt.设计; 计划; 企图; 决意(做) n.设计; 图案; 结构; 计划 vi.设计略图; (为工艺品、装潢项目等)设计; 当设计师; 构思" - ], - "id": "XgFZAS" - }, - { - "name": "examine", - "trans": [ - "vt.检查,调查; 考试; 诊察; 审问 vi.检查; 调查" - ], - "id": "nr2LAv" - }, - { - "name": "initial", - "trans": [ - "n. (词)首字母 adj. 开始的, 最初的, 字首的 vt. 签姓名的首字母于" - ], - "id": "mPD-m1" - }, - { - "name": "corrupt", - "trans": [ - "adj. 腐败的,堕落的 vt. 使...恶化,贿赂,使...腐烂 vi. 腐烂,堕落" - ], - "id": "kiN3Gd" - }, - { - "name": "buy", - "trans": [ - "n. 合理的价格,购买 vt. 买,换得,收买,接受 vi. 购买" - ], - "id": "TQ2ITb" - }, - { - "name": "increase", - "trans": [ - "v. 增加, 提高 n. 增加, 增强, 提高" - ], - "id": "y4bpT5" - }, - { - "name": "host", - "trans": [ - "n.[计算机]主机; 主人,东道主; 节目主持人; 酒店业主 vt.当主人; 主办宴会,主持节目; 款待,做东 vi.做主人,做东道主" - ], - "id": "9iAu-d" - }, - { - "name": "sample", - "trans": [ - "n. 样品,标本 vt. 采样,品尝 adj. 样例的" - ], - "id": "Q8ID8z" - }, - { - "name": "pending", - "trans": [ - "adj. 待定的,即将发生或来临的 prep. 直到,等待...的时候,在...期间" - ], - "id": "j_icPp" - }, - { - "name": "divide", - "trans": [ - "vt.& vi.分; 划分; 分离; (使)产生分歧 n.分水岭,分界线; 分配" - ], - "id": "8FMB48" - }, - { - "name": "boot", - "trans": [ - "n. 靴子,[英]汽车行李箱,猛踢, 锁扣 vt. 踢, 穿靴子,锁车 vi. 启动(计算机),在(通常为非法停放的汽车)车轮上装制动装置, 利用, 帮助" - ], - "id": "y2tS3R" - }, - { - "name": "hide", - "trans": [ - "vt.隐藏; 躲避,隐匿,躲藏; 遮蔽,覆盖 vi.隐瞒; 遮住; 遮挡; 掩盖 n.兽皮; <口>生命; <口>人的皮肤; (观看野生动物的)隐蔽处" - ], - "id": "jffkUm" - }, - { - "name": "half", - "trans": [ - "adj. 一半的, 不完全的 adv. 一半地 n. 半, 一半" - ], - "id": "iC48AO" - }, - { - "name": "magenta", - "trans": [ - "n.&adj. 紫红色(的染料)" - ], - "id": "O_Nmnp" - }, - { - "name": "leading", - "trans": [ - "n. 领导, 疏导, 铅板 adj. 领导的, 主要的, 在前的 vbl. 领导, 引领, 以铅接合 [计算机] 行间空白" - ], - "id": "Kk0wqf" - }, - { - "name": "wrong", - "trans": [ - "adj. 错误的,不正当的,失常的 adv. 错误地 n. 错误,不公正 vt. 伤害,亏待,欺骗,中伤" - ], - "id": "dPAsXF" - }, - { - "name": "today", - "trans": [ - "n.&adv. 今天" - ], - "id": "-CHYt4" - }, - { - "name": "least", - "trans": [ - "adj. 最少的,最小的 n.&adv. 最少,最小" - ], - "id": "wLZOPw" - }, - { - "name": "opposite", - "trans": [ - "adj. 相对的, 相反的, 对面的 n. 对立物,对立者,对手 adv. 在对面地,处于相反位置地 prep. 在...对面" - ], - "id": "eTGJOg" - }, - { - "name": "white", - "trans": [ - "adj. 白色的,白种的,纯洁的,幸运的 n. 白色,白种人" - ], - "id": "gH2zhm" - }, - { - "name": "override", - "trans": [ - "vt. 弃绝,渺视,凌驾,过度负重 n. 给代理人的佣金,滥用 [计算机] 废除" - ], - "id": "AUYbGa" - }, - { - "name": "brown", - "trans": [ - "adj. 褐色的,棕色的 n. 褐色,棕色 (姓)布朗" - ], - "id": "Iuk5nj" - }, - { - "name": "hex", - "trans": [ - "v. 施法,诅咒 n. 施法的人 abbr. (=hexagon) 六边形 abbr. (=hexadecimal) 十六进制" - ], - "id": "av6Uor" - }, - { - "name": "rest", - "trans": [ - "n.休息; 剩余部分; 支持物; 宁静,安宁 vt.& vi.(使)休息; (使)倚靠[支撑] vi.休息; 静止; 停止; 安心 vt.使休息; 使轻松; 使长眠; 使依赖" - ], - "id": "NrJwmc" - }, - { - "name": "damage", - "trans": [ - "n. (pl.)赔偿金,损坏,毁坏 vt. 损害,毁坏" - ], - "id": "yII3K7" - }, - { - "name": "instant", - "trans": [ - "n. 立即, 瞬间 adj. 立即的, 即时的" - ], - "id": "tOqeu6" - }, - { - "name": "reserved", - "trans": [ - "v. 保留(预定,推迟) adj. 保留的(预订的,冷淡的,缄默)" - ], - "id": "m6sV4x" - }, - { - "name": "technology", - "trans": [ - "n. 技术,工艺(学)" - ], - "id": "ANZyQl" - }, - { - "name": "handle", - "trans": [ - "n. 柄,把手 vt. 买卖,处理,操作 vi. 驾驭" - ], - "id": "4fM1mF" - }, - { - "name": "apply", - "trans": [ - "vt. 应用, 申请; 涂 vt. 使专心从事 vi.申请; 有关联" - ], - "id": "J9rR2m" - }, - { - "name": "stand", - "trans": [ - "n. 站立,停顿,楼台,货摊 vi. 站立,位于,停滞 vt. 忍受,使站立" - ], - "id": "Y02EwZ" - }, - { - "name": "payment", - "trans": [ - "n. 支付, 付款" - ], - "id": "WTFFE0" - }, - { - "name": "kilobyte", - "trans": [ - "n. [计]千字节(1024字节)" - ], - "id": "vUfDfR" - }, - { - "name": "parenthesis", - "trans": [ - "n. 圆括号, 插入语, 插曲,间歇,停歇" - ], - "id": "Ms2JWf" - }, - { - "name": "scan", - "trans": [ - "vt. 扫描;浏览;细看;详细调查;标出格律 vi. 扫描;扫掠 n. 扫描;浏览;审视;细看" - ], - "id": "uBIw6z" - }, - { - "name": "developer", - "trans": [ - "n. 开发者,显影剂" - ], - "id": "yQZJzh" - }, - { - "name": "murder", - "trans": [ - "n. 谋杀,危险物 vt. 谋杀,折磨,损坏 vi. 谋杀" - ], - "id": "bgJgKR" - }, - { - "name": "flush", - "trans": [ - "n. 流溢, 面红, 旺盛, 冲水(尤指冲马桶), 突然萌发, (纸牌)同花顺, 清一色 [计算机] 冲洗 vi. 脸发红, 冲刷, 旺盛成长 vt. 用水冲洗, 惊起(一群鸟), 抄...老窝, 使兴奋 adj. 丰足的,齐平的,满盈的 adv. 正直地, 羞涩地" - ], - "id": "gGRJkq" - }, - { - "name": "unlock", - "trans": [ - "vt. 开启, 显露, 放开" - ], - "id": "t8ZFfE" - }, - { - "name": "movement", - "trans": [ - "n. 活动,运动,动作,移动" - ], - "id": "XZ_WBu" - }, - { - "name": "consecutive", - "trans": [ - "adj. 连续的,连贯的" - ], - "id": "04RAVz" - }, - { - "name": "collection", - "trans": [ - "n. 收藏品,收集物,小组,集合" - ], - "id": "pJafqp" - }, - { - "name": "front", - "trans": [ - "n.前面; 正面; 身体前部; 前线 adj.前面的; 正面的; 舌前的 v.面向; 在…前面; 用…作正面; 领导" - ], - "id": "Catlt2" - }, - { - "name": "prefix", - "trans": [ - "n. 前缀 vt. 加...作为前缀,置于前面 adj. 前缀的" - ], - "id": "5K5MeP" - }, - { - "name": "carousel", - "trans": [ - "n. 旋转木马, (机场的)行李传送带 =carrousel" - ], - "id": "WshXda" - }, - { - "name": "safety", - "trans": [ - "n.安全; 安全性; 安全处所; 中卫 adj.保障安全的" - ], - "id": "6YkClN" - }, - { - "name": "static", - "trans": [ - "n. 静电, 静电干扰, 噪声, 阻碍, 抨击 adj. 静态的,静电的,固态的" - ], - "id": "haSzaB" - }, - { - "name": "fact", - "trans": [ - "n. 实际, 事实" - ], - "id": "hnsC8X" - }, - { - "name": "alter", - "trans": [ - "v. 改变" - ], - "id": "h01pG4" - }, - { - "name": "track", - "trans": [ - "n. 小路, 跑道, 轨道, 踪迹; 惯例, 常规 v. 跟踪, 追踪" - ], - "id": "rZS6Vl" - }, - { - "name": "precedence", - "trans": [ - "n. 优先, 居先" - ], - "id": "sNvjJ_" - }, - { - "name": "skeleton", - "trans": [ - "n. 骨架,纲要,骨骼,骨瘦如柴的人或动物,家丑 adj. 骨骼的" - ], - "id": "xYT8a7" - }, - { - "name": "log", - "trans": [ - "n. 记录,圆木,日志,计程仪 vt. 伐木,切,记录,航行,度过(时间) vi. 采伐" - ], - "id": "aQbKTX" - }, - { - "name": "star", - "trans": [ - "n. 星, 明星 v. 以星状物装饰, 变成演员" - ], - "id": "TzgCrC" - }, - { - "name": "hot", - "trans": [ - "adj. 热的,热情的,辣的,性感的 adv. 激动地,快速地 n. 最高温度,滚烫的东西" - ], - "id": "LuOBVT" - }, - { - "name": "replaceable", - "trans": [ - "adj. 可置换的,可代替的" - ], - "id": "0mwgee" - }, - { - "name": "accessible", - "trans": [ - "adj. 可得到的, 易接近的, 可进入的" - ], - "id": "_yGQaJ" - }, - { - "name": "involve", - "trans": [ - "vt. 包含, 使陷入, 使忙于, 使卷入, 牵涉" - ], - "id": "kCJnNX" - }, - { - "name": "configure", - "trans": [ - "v. 配置" - ], - "id": "GxhAHT" - }, - { - "name": "question", - "trans": [ - "n. 问题,询问,争论点 vt. 询问,怀疑 vi. 问问题" - ], - "id": "ZyGbC6" - }, - { - "name": "green", - "trans": [ - "adj.绿色的; 未熟的,青春的; 未成熟的; 主张保护环境的 n.绿色蔬菜; 绿色的衣服; 植物 vi.绿化,使重视环境保护问题" - ], - "id": "6TATwB" - }, - { - "name": "entirely", - "trans": [ - "adv. 完全地" - ], - "id": "HbxxaB" - }, - { - "name": "helpful", - "trans": [ - "adj. 有帮助的, 有益的" - ], - "id": "7K8jW9" - }, - { - "name": "middle", - "trans": [ - "n.中部,中间; 腰部; 中央; 正中 adj.中部的; 中央的; 正中的; 中间的 vt.把…放在中间; 把…对折 vi.放在中间; 对折" - ], - "id": "nPWwVI" - }, - { - "name": "declared", - "trans": [ - "adj. 承认的, 公告的 动词declare的过去式和过去分词" - ], - "id": "yjkgF5" - }, - { - "name": "compress", - "trans": [ - "vt. 压缩, 压榨 n. [医]敷布" - ], - "id": "EjANau" - }, - { - "name": "graphically", - "trans": [ - "adv. 用图表表示地" - ], - "id": "rsYp2u" - }, - { - "name": "auto", - "trans": [ - "n. autos=automobile 自动汽车 pref. 自动的,自己的" - ], - "id": "Y7l61G" - }, - { - "name": "automatic", - "trans": [ - "n. 自动装置, 半自动武器 adj. 自动的,机械的,半自动化的" - ], - "id": "kOkoMn" - }, - { - "name": "anywhere", - "trans": [ - "adv. 任何地方 pron. 任何(一个)地方" - ], - "id": "rsIXgP" - }, - { - "name": "terminal", - "trans": [ - "n. n. 终端机,终点,末端 adj. 终点的,晚期的,致死的" - ], - "id": "XCHXXD" - }, - { - "name": "door", - "trans": [ - "n. 门" - ], - "id": "AB5xzz" - }, - { - "name": "expire", - "trans": [ - "vi. 期满,失效,终止,断气 vt. 呼气" - ], - "id": "i8zG8Q" - }, - { - "name": "resolution", - "trans": [ - "n.决心; 解决; 坚决; 分辨率" - ], - "id": "MgQZUa" - }, - { - "name": "local", - "trans": [ - "adj. 地方性的,当地的,局部的 [计算机] 局部的" - ], - "id": "SiOI0K" - }, - { - "name": "semicolon", - "trans": [ - "n. 分号" - ], - "id": "N1zsDL" - }, - { - "name": "reread", - "trans": [ - "vt.重读,再读" - ], - "id": "z084_j" - }, - { - "name": "overwrite", - "trans": [ - "v. 重写, 写得过多, 描述过分" - ], - "id": "9w7YQa" - }, - { - "name": "critical", - "trans": [ - "adj.批评的,爱挑剔的; 危险的,危急的; 决定性的; [物]临界的" - ], - "id": "SKu_mi" - }, - { - "name": "manager", - "trans": [ - "n. 经理" - ], - "id": "JcdjG-" - }, - { - "name": "capability", - "trans": [ - "n. 能力,才能,性能,容量" - ], - "id": "PO9DQ4" - }, - { - "name": "affected", - "trans": [ - "adj. 受到影响的;做作的;假装的 vt. 影响;假装;使…感动(affect的过去式和过去分词)" - ], - "id": "v6v6Ts" - }, - { - "name": "border", - "trans": [ - "n. 边缘 vt. 作...之疆界,加边" - ], - "id": "O3Bgo9" - }, - { - "name": "cache", - "trans": [ - "n. 电脑高速缓冲存储器;贮存物;隐藏处 vt. 隐藏;窖藏 vi. 躲藏" - ], - "id": "uzXdmr" - }, - { - "name": "bell", - "trans": [ - "n. 钟,铃,花冠,吼叫声 vt. 敲钟,使象钟状地张开 vi. 使呈钟状,张开" - ], - "id": "i-OjcU" - }, - { - "name": "play", - "trans": [ - "n. 游戏,游玩,剧本,比赛,比赛中的动作,影响 vt. &vi. 玩,进行比赛,演奏,播放,捉弄,假装" - ], - "id": "r-BpW1" - }, - { - "name": "quickly", - "trans": [ - "adv. 快, 迅速" - ], - "id": "uRRvjY" - }, - { - "name": "fastback", - "trans": [ - "快速返回" - ], - "id": "id6xVy" - }, - { - "name": "answer", - "trans": [ - "vt.& vi.答复; 解答; 答辩; 适应 n.回答; 答案; 反应; 足以媲美的人" - ], - "id": "3pqbvb" - }, - { - "name": "represent", - "trans": [ - "vt. 表现, 表示, 描绘, 代表 vi. 提出异议" - ], - "id": "vHLHjY" - }, - { - "name": "difference", - "trans": [ - "n. 差异,分歧 vt. 引起区别" - ], - "id": "J2m4wa" - }, - { - "name": "project", - "trans": [ - "n. 工程,项目,计划,事业 v. 计划,设计,表达 v. 投射,放映,凸出" - ], - "id": "YfrKzE" - }, - { - "name": "physical", - "trans": [ - "adj. 身体的,物理的,物质的 n. 体检" - ], - "id": "RudbJs" - }, - { - "name": "matter", - "trans": [ - "n. 事件, 物质, 原因 vi. 有关系" - ], - "id": "ilMEaq" - }, - { - "name": "hercules", - "trans": [ - "n.大力英雄,力士,武仙座" - ], - "id": "T-wy_q" - }, - { - "name": "reduce", - "trans": [ - "vt.换算; 约束; 使变为; 使变弱 vi.减少; 减轻体重; [生物学](细胞)减数分裂; (液体)浓缩变稠" - ], - "id": "Ij20Rh" - }, - { - "name": "publisher", - "trans": [ - "n. 出版者, 发行人" - ], - "id": "r2ep0u" - }, - { - "name": "trim", - "trans": [ - "n. 整齐,装饰,修剪下来的部分 adj. 整洁的,匀称的 adv. 整齐地 vt. 修除,削剪,装备,痛打,击败, 使整洁 vi. 保持平衡, 见风使舵" - ], - "id": "OMKuJ5" - }, - { - "name": "substitute", - "trans": [ - "n. 代替者,代用品 v. 代替 vi. (for)代替 vt. 用...代替,代以" - ], - "id": "r0oWKU" - }, - { - "name": "disabled", - "trans": [ - "adj. 残废的 n. 残疾人" - ], - "id": "nJzi_l" - }, - { - "name": "recent", - "trans": [ - "adj. 近来的, 新近的" - ], - "id": "uTlPAa" - }, - { - "name": "positive", - "trans": [ - "adj. 肯定的, 积极的, 绝对的 adj. 正面的, 正数的, 阳性的" - ], - "id": "L4_Zr2" - }, - { - "name": "upgrade", - "trans": [ - "vt. 提高(上升,浓集,加强) n. 提高(上升,浓集,加强)" - ], - "id": "nuNLSc" - }, - { - "name": "instance", - "trans": [ - "n.例子,实例; 情况; 要求,建议; [法]诉讼手续 vt.举…为例" - ], - "id": "nZpKGg" - }, - { - "name": "happen", - "trans": [ - "vi. 发生,碰巧,出现,偶然遇到" - ], - "id": "DoJvuZ" - }, - { - "name": "future", - "trans": [ - "adj. 将来的 n. 将来,未来 n. 期货" - ], - "id": "F11Bgf" - }, - { - "name": "midnight", - "trans": [ - "n. 午夜,漆黑" - ], - "id": "i_0KCe" - }, - { - "name": "though", - "trans": [ - "adv. 可是,然而,不过 conj. 尽管,虽然 prep. 但." - ], - "id": "q-hZ5-" - }, - { - "name": "nor", - "trans": [ - "conj.&adv. 也不,也没有 [计]\"或非\",\"非或\" abbr. 诺曼人(=Norman) abbr. 北方(=North) abbr. 挪威(= Norway) abbr. 挪威人(=Norwegian)" - ], - "id": "wq3m7p" - }, - { - "name": "mono", - "trans": [ - "pref. 表示“一”“单一” adj. (唱片等)单声道的 n. 单声道唱片 n. (=infectious mononucleosis) 传染性单核细胞增多症" - ], - "id": "c0jQFV" - }, - { - "name": "slide", - "trans": [ - "n. 滑,幻灯片,雪崩,山崩,滑坡,滑梯 vt. 使滑 vi. 滑,跌落" - ], - "id": "j3SQ0t" - }, - { - "name": "abort", - "trans": [ - "v. 流产, 打胎, 堕胎" - ], - "id": "h1hJjv" - }, - { - "name": "jump", - "trans": [ - "n. 跳跃,跳动,上涨 vt. &vi. 跳越,突升,惊跳" - ], - "id": "_6wj8T" - }, - { - "name": "toward", - "trans": [ - "prep. 对于,关于,接近,将近,向,朝 adj. 有希望的,有利的,逼近的" - ], - "id": "-f08Tw" - }, - { - "name": "throughout", - "trans": [ - "adv. 到处, 自始至终 prep. 遍及, 贯穿" - ], - "id": "N-Ul6j" - }, - { - "name": "via", - "trans": [ - "prep. 经由" - ], - "id": "PCalKV" - }, - { - "name": "among", - "trans": [ - "prep. 在...之中" - ], - "id": "z-Z9bE" - }, - { - "name": "neither", - "trans": [ - "adj. 皆不,两者都不 int. 两者都不 conj. 既非,既不" - ], - "id": "wC60UP" - }, - { - "name": "layer", - "trans": [ - "n.层,层次; 膜; [植]压条; 放置者,计划者 vt.把…分层堆放; 借助压条法; 生根繁殖; 将(头发)剪成不同层次 vi.形成或分成层次; [植]通过压条法而生根" - ], - "id": "Mjxuep" - }, - { - "name": "scatter", - "trans": [ - "n. 散布, 零星少量 vt. 驱散, 散播 vi. 分散, 消散" - ], - "id": "c6rUhN" - }, - { - "name": "attention", - "trans": [ - "n. 注意(力),关心,立正" - ], - "id": "bykWgU" - }, - { - "name": "convention", - "trans": [ - "n.会议; 全体与会者; 国际公约; 惯例,习俗,规矩" - ], - "id": "TXCR9z" - }, - { - "name": "conventional", - "trans": [ - "adj. 普通的,常见的,习惯的,常规的" - ], - "id": "jwSA_w" - }, - { - "name": "tool", - "trans": [ - "n. 工具,用具,受人利用的人,印压的图案 vt. 驾驶,用工具加工,印压图案于 vi. 驾驶,用工具加工" - ], - "id": "rLImzc" - }, - { - "name": "processor", - "trans": [ - "n. 加工者,处理器" - ], - "id": "94Cpme" - }, - { - "name": "desktop", - "trans": [ - "n. 桌面,台式电脑 adj. 台式的,桌上用的" - ], - "id": "9G-F_-" - }, - { - "name": "build", - "trans": [ - "vt. &vi. 建造,创建,开发,逐渐增强 n. 体格,身材" - ], - "id": "hx8qn0" - }, - { - "name": "development", - "trans": [ - "n. 发展,显影, 开发区, 开发" - ], - "id": "1vzrhx" - }, - { - "name": "exceed", - "trans": [ - "vt. 超过, 胜过, 超出界限 vi. 领先" - ], - "id": "KhgStx" - }, - { - "name": "understand", - "trans": [ - "vt. 理解, 闻知 vi. 理解, 相信, 表示同情" - ], - "id": "38b_bK" - }, - { - "name": "horizontal", - "trans": [ - "adj. 水平的,横的 n. 水平线,水平面" - ], - "id": "1nvRsr" - }, - { - "name": "meet", - "trans": [ - "n. 集会,比赛, 运动会 adj. 适宜的,合适的 vt. 遇见,引见,经历,结识,对付,满足,支付 vi. 相遇,集合,交锋,相交" - ], - "id": "RT-0mg" - }, - { - "name": "protect", - "trans": [ - "vt. 保护,投保 vi. 提供保护" - ], - "id": "GyLAIU" - }, - { - "name": "reserve", - "trans": [ - "n. 预备品, 贮存, 候补 n. 克制, 含蓄 vt. 保留, 预订, 延期" - ], - "id": "qMA2Tt" - }, - { - "name": "clock", - "trans": [ - "n. 时钟, 计时器" - ], - "id": "K_eoEx" - }, - { - "name": "manifest", - "trans": [ - "n. 载货单,运货单,旅客名单 adj. 显然的,明白的 vt. 显示, 证实, 出示" - ], - "id": "w__KlP" - }, - { - "name": "safe", - "trans": [ - "adj. 安全的 n. 保险箱" - ], - "id": "NxJJMk" - }, - { - "name": "disconnect", - "trans": [ - "vt. 使分离 vi. 断开,拆开" - ], - "id": "RhT0QW" - }, - { - "name": "clockwise", - "trans": [ - "adj. 顺时针方向的 adv. 顺时针方向地" - ], - "id": "hmAN6f" - }, - { - "name": "eliminate", - "trans": [ - "v. 除去,排除,剔除 [计算机] 消除" - ], - "id": "RuXj_e" - }, - { - "name": "actual", - "trans": [ - "adj. 实际的,真实的" - ], - "id": "ZVl2Gr" - }, - { - "name": "declaration", - "trans": [ - "n. 宣布, 宣言" - ], - "id": "hEjY-2" - }, - { - "name": "probably", - "trans": [ - "adv. 大概,或许" - ], - "id": "Kc3Py2" - }, - { - "name": "ring", - "trans": [ - "n. 环, 戒指, 铃声, 圈 vt. 包围, 挂铃铛 vi. 鸣响, 回响, 在空气中螺旋上扬, 形成圈" - ], - "id": "wOjjnz" - }, - { - "name": "cover", - "trans": [ - "n. 封面, 盖子, 表面 v. 覆盖, 涉及, 包含" - ], - "id": "1snCwV" - }, - { - "name": "indicator", - "trans": [ - "n. 指示器, 指示剂 [计算机] 指示符" - ], - "id": "DnSPI0" - }, - { - "name": "apple", - "trans": [ - "n. 苹果" - ], - "id": "OvttAc" - }, - { - "name": "icon", - "trans": [ - "n. 肖像, 偶像, 象征, 图符 [计算机] 图标,图符" - ], - "id": "rZXTe7" - }, - { - "name": "consideration", - "trans": [ - "n. 考虑, 体贴, 考虑因素, 敬重, 意见" - ], - "id": "XBh7pL" - }, - { - "name": "skill", - "trans": [ - "n. 技能, 技巧" - ], - "id": "Bilotp" - }, - { - "name": "picture", - "trans": [ - "n. 图画,照片,景色 vt. 画,描写,想像" - ], - "id": "ExyWnK" - }, - { - "name": "layout", - "trans": [ - "n. 布局, 安排, 设计" - ], - "id": "SUwR5o" - }, - { - "name": "suggest", - "trans": [ - "vt. 建议,暗示,要求" - ], - "id": "ZdphD3" - }, - { - "name": "convenient", - "trans": [ - "adj. 方便的" - ], - "id": "87E57C" - }, - { - "name": "instruct", - "trans": [ - "v. 教, 命令, 指导 [计算机] 指示" - ], - "id": "NohoZm" - }, - { - "name": "appendix", - "trans": [ - "n. 附录,阑尾" - ], - "id": "ogvPtT" - }, - { - "name": "medium", - "trans": [ - "n. 媒体, 方法, 媒介 adj. 适中的, 中等的" - ], - "id": "iLKH7q" - }, - { - "name": "truncate", - "trans": [ - "vt. 切去头端,缩短,截棱成平面 adj. 切去了头,缩短了的,截形的" - ], - "id": "zr2NB0" - }, - { - "name": "inhibit", - "trans": [ - "vt. &vi. 禁止,抑制 [计算机] 禁止" - ], - "id": "j5_HUF" - }, - { - "name": "nearly", - "trans": [ - "adv. 几乎, 差不多" - ], - "id": "11tJ6F" - }, - { - "name": "warn", - "trans": [ - "vt. 警告,注意,远离 vi. 提醒" - ], - "id": "m1PMO4" - }, - { - "name": "underline", - "trans": [ - "v. 在...下面划线" - ], - "id": "_doAwW" - }, - { - "name": "register", - "trans": [ - "v. 记录, 登记, 注册, 挂号 n. 暂存器, 记录, 登记簿 n. (语)语域; 通风调节设备" - ], - "id": "mMVGdA" - }, - { - "name": "stuff", - "trans": [ - "n. 材料, 原料, 东西 n. 素质, 本质; 废物 vt. 填满, 塞满" - ], - "id": "my2i6i" - }, - { - "name": "exclude", - "trans": [ - "vt. 除外,排除,拒绝 [计算机] 排除" - ], - "id": "SuVfOa" - }, - { - "name": "destroy", - "trans": [ - "vt. &vi. 破坏,毁坏 [计算机] 撤消" - ], - "id": "xuFLjo" - }, - { - "name": "calculation", - "trans": [ - "n. 计算" - ], - "id": "JlFuTR" - }, - { - "name": "angle", - "trans": [ - "n. 角(度),角落 vt. 斜移,转变角度 vi. 钓鱼,谋取,转变角度 n. (Angle)盎格鲁人" - ], - "id": "URXo-Q" - }, - { - "name": "lexical", - "trans": [ - "adj. 字典的, 语句的" - ], - "id": "qzUHFu" - }, - { - "name": "decide", - "trans": [ - "vt. &vi. 决定,作出抉择" - ], - "id": "fsBwWb" - }, - { - "name": "trouble", - "trans": [ - "n. 困扰,麻烦,困难,故障 vt.& vi. 困扰,麻烦" - ], - "id": "NCkL8y" - }, - { - "name": "customer", - "trans": [ - "n. 顾客,家伙" - ], - "id": "qEv8x4" - }, - { - "name": "port", - "trans": [ - "n.港口; (事情的)意义; (计算机与其他设备的)接口; (船、飞机等的)左舷 vt.举枪; 持枪; 左转舵 vi.转向左舷 adj.左舷的,左侧的 vt.& vi.转舵(向左),把(舵)转向左边 adv.向左舷,向左" - ], - "id": "5X2mDQ" - }, - { - "name": "discuss", - "trans": [ - "vt. 讨论" - ], - "id": "KypLs8" - }, - { - "name": "segment", - "trans": [ - "n. 部分 v. 部分,段,分割 vt. 分割" - ], - "id": "e5l2B3" - }, - { - "name": "filing", - "trans": [ - "n. 锉(文件的整理汇集)" - ], - "id": "5nt4uy" - }, - { - "name": "market", - "trans": [ - "n. 市场,交易,推销地区 vt. 在市场上交易,使...上市 vi. 在市场上买卖" - ], - "id": "Rog5ZK" - }, - { - "name": "valuable", - "trans": [ - "adj. 贵重的, 有价值的 n. (pl.)贵重物品" - ], - "id": "rLFgTo" - }, - { - "name": "limited", - "trans": [ - "adj. 有限的" - ], - "id": "XG_ZAI" - }, - { - "name": "trying", - "trans": [ - "vbl. 试验,尝试 adj. 难受的, 费劲的, 令人厌烦的" - ], - "id": "DZKysq" - }, - { - "name": "heap", - "trans": [ - "n. 堆,许多,累积 vt. 使成堆,装满 [计算机] 堆" - ], - "id": "KU_AIu" - }, - { - "name": "grey", - "trans": [ - "adj. 灰色的 n. 灰色(的) v. 变成灰色 [=gray] vi. 变成灰色" - ], - "id": "4w3ltC" - }, - { - "name": "permanently", - "trans": [ - "adv. 永久地" - ], - "id": "Di5f7x" - }, - { - "name": "accelerator", - "trans": [ - "n. 加速器, 油门,[化学]加速剂,促进剂" - ], - "id": "M2M8Ir" - }, - { - "name": "originally", - "trans": [ - "adv. 本来,原来,最初 重要的" - ], - "id": "eLwt-O" - }, - { - "name": "ability", - "trans": [ - "n. 才能, 能力" - ], - "id": "vNfPkB" - }, - { - "name": "internally", - "trans": [ - "adv.在内,在中心" - ], - "id": "9kahWC" - }, - { - "name": "derelict", - "trans": [ - "adj. 被抛弃了的,无主的,玩忽职守的 n. 遗弃物,被遗弃的人,玩忽职守者" - ], - "id": "rchYeL" - }, - { - "name": "redirect", - "trans": [ - "adj. 再直接的 v. 重新传入, 重新寄送" - ], - "id": "Xg9Ccc" - }, - { - "name": "reside", - "trans": [ - "v. 住,居留,属于" - ], - "id": "BWwhoa" - }, - { - "name": "header", - "trans": [ - "n. 装盖者,割穗机,顶梁,集管 n.[体]头球,头先入水的跳水姿势 n.[计]页眉" - ], - "id": "dzdkwD" - }, - { - "name": "extra", - "trans": [ - "adj. 额外的 adv. 特别地 n. 额外的事物,另外收费的" - ], - "id": "PB7eKb" - }, - { - "name": "repeated", - "trans": [ - "adj. 重复的, 再之的 动词repeat的过去式和过去分词形式" - ], - "id": "QX530E" - }, - { - "name": "death", - "trans": [ - "n. 死,死亡,死神,毁灭" - ], - "id": "puKdHL" - }, - { - "name": "observe", - "trans": [ - "v. 观察, 遵守, 注意到" - ], - "id": "cTyRh7" - }, - { - "name": "density", - "trans": [ - "n. 密集,密度,透明度" - ], - "id": "0DWRaa" - }, - { - "name": "management", - "trans": [ - "n. 管理(层),经营,处理" - ], - "id": "n7G5V5" - }, - { - "name": "environmental", - "trans": [ - "adj. 环境的" - ], - "id": "tXv9Z1" - }, - { - "name": "surrounding", - "trans": [ - "adj. 周围的 n. 环境, 周围的事物" - ], - "id": "f78dKb" - }, - { - "name": "master", - "trans": [ - "n. 主人, 硕士, 母机 adj. 主人的, 主要的 v. 征服, 控制, 精通" - ], - "id": "_49-80" - }, - { - "name": "recursive", - "trans": [ - "adj. 递归的,循环的" - ], - "id": "0y2jSi" - }, - { - "name": "trap", - "trans": [ - "n. 圈套,陷阱,困境,双轮轻便马车 vt. &vi. 设圈套,设陷阱" - ], - "id": "0vHqkz" - }, - { - "name": "dimensional", - "trans": [ - "adj.空间的" - ], - "id": "XbBq2P" - }, - { - "name": "logic", - "trans": [ - "n. 逻辑(学),逻辑性,合理的推理" - ], - "id": "WGjU0m" - }, - { - "name": "conjunction", - "trans": [ - "n. 连词, 结合, 关联,(事件等的)同时发生" - ], - "id": "NSp2p-" - }, - { - "name": "identical", - "trans": [ - "adj. 相同的,同一的" - ], - "id": "aw1OWn" - }, - { - "name": "advice", - "trans": [ - "n. 忠告,建议,劝告" - ], - "id": "rZ-Z6E" - }, - { - "name": "meaning", - "trans": [ - "n. 意义,意思,含义 adj. 意味深长的" - ], - "id": "FlueCg" - }, - { - "name": "fall", - "trans": [ - "n. 秋天, 落下, 瀑布 v. 倒下, 落下, 来临" - ], - "id": "dmnsad" - }, - { - "name": "interval", - "trans": [ - "n. 间隔,休息时间, (数学)区间, (音乐)音程" - ], - "id": "r6QbVX" - }, - { - "name": "compatibility", - "trans": [ - "n. 和谐共处, 兼容" - ], - "id": "HGshph" - }, - { - "name": "rule", - "trans": [ - "n. 惯例,规则,统治 v. 裁定,统治,支配 vi. 裁决,统治 vt. 统治" - ], - "id": "w2BSoO" - }, - { - "name": "flag", - "trans": [ - "n. 旗标,旗子,信号旗 vt. 打旗号 vi. 无力地下垂,减退" - ], - "id": "vxGEt_" - }, - { - "name": "criterion", - "trans": [ - "n. 标准, 准则" - ], - "id": "fzrXMd" - }, - { - "name": "office", - "trans": [ - "n. 办公室,职务,事务" - ], - "id": "xeJcyU" - }, - { - "name": "express", - "trans": [ - "n. 快车, 快递, 专使 adj. 急速的, 明确的, 直接的 adv. 用快递; 特意地 vt. 表达, 表示; 挤压出; 快递" - ], - "id": "7ijo9l" - }, - { - "name": "volume", - "trans": [ - "n. 体积, 容量, 音量 n. 卷, 册" - ], - "id": "VnyY-R" - }, - { - "name": "soft", - "trans": [ - "adj. 柔软的,温和的,不强烈的,细腻的,轻的 adv. 柔软地,温和地 n. 柔软的东西" - ], - "id": "NGYogb" - }, - { - "name": "activity", - "trans": [ - "n. 活动;行动;活跃" - ], - "id": "qDfrjE" - }, - { - "name": "odometer", - "trans": [ - "n. 里程表" - ], - "id": "V5iZJN" - }, - { - "name": "phoenix", - "trans": [ - "n. 凤凰, 长生(不死)鸟 引申为重生" - ], - "id": "w1k1kJ" - }, - { - "name": "obtain", - "trans": [ - "vt. 获得, 得到 vi. 通用, 流行, 存在" - ], - "id": "D_QkF2" - }, - { - "name": "easel", - "trans": [ - "n. 画架" - ], - "id": "9OIzov" - }, - { - "name": "latter", - "trans": [ - "adj. 后面的,后者的 pron.&n. 后者" - ], - "id": "NOj-YN" - }, - { - "name": "decrease", - "trans": [ - "n. 减少(量),降低 vt.& vi. 减少,降低" - ], - "id": "zAQC2y" - }, - { - "name": "mainframe", - "trans": [ - "n. 主机,大型计算机" - ], - "id": "iZvUY-" - }, - { - "name": "diacritical", - "trans": [ - "adj. 可区分的 =diacritic" - ], - "id": "lvHreP" - }, - { - "name": "confidential", - "trans": [ - "adj. 机密的,获他人信赖的,易于信任他人的" - ], - "id": "VhRIFF" - }, - { - "name": "trace", - "trans": [ - "n. 痕迹,踪迹,微量 vt. 追踪,找出根源,描绘 vi. 追踪" - ], - "id": "IwXGeo" - }, - { - "name": "division", - "trans": [ - "n. 区分,分开,除法,公司,部门,师(军队里)" - ], - "id": "M3uY6y" - }, - { - "name": "regular", - "trans": [ - "adj. 有规律的,有规则的,整齐的,正规的" - ], - "id": "pkp0E4" - }, - { - "name": "implicit", - "trans": [ - "adj. 暗示的,盲从的 [计算机] 隐式" - ], - "id": "raHxGa" - }, - { - "name": "mention", - "trans": [ - "vt.提到,说起; 提名表扬 n.提及" - ], - "id": "4g59RT" - }, - { - "name": "near", - "trans": [ - "adj. 接近的,近亲的,亲近的,勉强的,直接的,小气的,近似的 adv. 接近,几乎,亲近 prep. 靠近 vt. 靠拢,接近 vi. 接近" - ], - "id": "IO-ykO" - }, - { - "name": "fifth", - "trans": [ - "num. 第五 n.五分之一" - ], - "id": "DLwot5" - }, - { - "name": "seven", - "trans": [ - "num. 七" - ], - "id": "fMTUQ2" - }, - { - "name": "whereas", - "trans": [ - "conj.&adv. 然而,却,反之" - ], - "id": "jvgdQH" - }, - { - "name": "review", - "trans": [ - "n. 检讨, 复习, 回顾, 评审 vt. 温习, 检讨, 评论, 检阅 vi. 写评论" - ], - "id": "XTXnr2" - }, - { - "name": "transform", - "trans": [ - "vt. 转换,变形 vi. 改变 n. 变形" - ], - "id": "8_rLtR" - }, - { - "name": "align", - "trans": [ - "vt. 使成一行, 使一致, 使结盟, 调整, 排列 vi. 成一条线" - ], - "id": "rpCg-o" - }, - { - "name": "yellow", - "trans": [ - "adj. 黄色的 n. 黄色" - ], - "id": "51Xyss" - }, - { - "name": "assist", - "trans": [ - "n. 帮助,协助,协助的器械 vt. 帮助,协助 vi. 帮助,协助,出席" - ], - "id": "2OyUtk" - }, - { - "name": "finish", - "trans": [ - "n. 完成,最后加工,结局,完美 vt. 结束,获...第几名 vi. 终结,完成" - ], - "id": "GsugQr" - }, - { - "name": "micro", - "trans": [ - "adj. 微小的 n. 微米(百万分之一, 测微计)" - ], - "id": "VCvdIs" - }, - { - "name": "beyond", - "trans": [ - "adv. 在更远处,另外 n. 远处, 来世 prep. 超出, 越过,另外" - ], - "id": "OwUmvj" - }, - { - "name": "against", - "trans": [ - "prep. 反对,倚靠,违背,防御,相比,相对" - ], - "id": "RZVMD_" - }, - { - "name": "upon", - "trans": [ - "prep. 在...上" - ], - "id": "n6P3AU" - }, - { - "name": "service", - "trans": [ - "n. 服务, 公务部门, 服役, 发球, 发球方式 vt. 维护, 保养" - ], - "id": "5zK_O8" - }, - { - "name": "little", - "trans": [ - "adj. 小的 adv. 毫不,少量地 n. 几乎没有(指数量或程度等)" - ], - "id": "lV2u_x" - }, - { - "name": "exhaust", - "trans": [ - "n. 排气,排气装置 v. 用尽,耗尽,使...精疲力尽 [计算机] 排除" - ], - "id": "6cQl0l" - }, - { - "name": "choice", - "trans": [ - "adj. 上等的,精选的 n. 选择,挑选" - ], - "id": "CZYJl8" - }, - { - "name": "sounding", - "trans": [ - "n. 探测水的深度, 试探 adj. 发声的, 夸大的 动词sound的现在分词形式" - ], - "id": "f9fNzV" - }, - { - "name": "develop", - "trans": [ - "vt. 发展,开发,冲洗照片 vi. 进步" - ], - "id": "DpVRJ-" - }, - { - "name": "holding", - "trans": [ - "n. 把持, 支持, 保持 vbl. 握住, 把持, 举行" - ], - "id": "-d9FUX" - }, - { - "name": "alpha", - "trans": [ - "n. 希腊字母的第一个字母,最初,开端 adj. [化]阿尔法位的,主导的,首要的,按字母顺序的" - ], - "id": "_6H1T2" - }, - { - "name": "constant", - "trans": [ - "adj. 经常的, 不变的 n. 常数, 恒量" - ], - "id": "MPVT7x" - }, - { - "name": "warranty", - "trans": [ - "n. 担保,保证,根据" - ], - "id": "dAA5FE" - }, - { - "name": "stay", - "trans": [ - "n. 停留,停止;依靠,忍耐力;撑条 vt. 等待,坚持到底 vi. 保持,停留,留宿" - ], - "id": "JrK89V" - }, - { - "name": "industry", - "trans": [ - "n. 工业,产业,勤勉,刻苦" - ], - "id": "VMaef4" - }, - { - "name": "trigger", - "trans": [ - "vt. 引发,引起;触发 vi. 松开扳柄 n. 扳机;[电子] 触发器;制滑机" - ], - "id": "ZYoXuA" - }, - { - "name": "lesson", - "trans": [ - "n. 课,教训 vt. 给...上课,教训" - ], - "id": "EjkUCv" - }, - { - "name": "treat", - "trans": [ - "v. 对待, 治疗,处理,请客,视为 n. 款待,宴飨" - ], - "id": "Fdk139" - }, - { - "name": "busy", - "trans": [ - "adj. 忙的,杂乱的 vt. 使忙于 vi. 忙" - ], - "id": "lfSujl" - }, - { - "name": "usage", - "trans": [ - "n. 惯用法,使用,用法" - ], - "id": "Y0mHjk" - }, - { - "name": "difficult", - "trans": [ - "adj. 困难的, (人)难取悦的, 难相处的" - ], - "id": "NOQQ7p" - }, - { - "name": "failure", - "trans": [ - "n. 失败,失败的人或事" - ], - "id": "XyNYYt" - }, - { - "name": "communication", - "trans": [ - "n. 沟通,交通" - ], - "id": "RFIJxx" - }, - { - "name": "building", - "trans": [ - "n. 建筑物" - ], - "id": "6nZ0el" - }, - { - "name": "ally", - "trans": [ - "n. 盟友,同盟国 vt. &vi. 联盟,联合,同盟" - ], - "id": "cWxiKJ" - }, - { - "name": "exclamation", - "trans": [ - "n. 惊呼, 惊叹词" - ], - "id": "-M7y4d" - }, - { - "name": "turning", - "trans": [ - "n. 旋转, 回转, 转向" - ], - "id": "BKI2gs" - }, - { - "name": "whole", - "trans": [ - "adj. 整个的, 完全的, 未受损的, (人)全面发展的 n. 全部, 通常情况 adv. 完全地, 统一地" - ], - "id": "f8Za83" - }, - { - "name": "parent", - "trans": [ - "n. 父母,根源 vt. &vi. 抚养,产生" - ], - "id": "sXRC_3" - }, - { - "name": "connection", - "trans": [ - "n. 联系,关系,连接,亲戚" - ], - "id": "WgBaWF" - }, - { - "name": "connectivity", - "trans": [ - "n. [计算机] 连通性" - ], - "id": "ZkZFzL" - }, - { - "name": "translation", - "trans": [ - "n. 翻译, 译文" - ], - "id": "TsCQ2q" - }, - { - "name": "dynamic", - "trans": [ - "adj. 动态的, (有)动力的, (有)力的; 有活力的 n. 动力; 力学" - ], - "id": "GMcCHp" - }, - { - "name": "foreground", - "trans": [ - "n. 前景, 最显著的位置" - ], - "id": "RZruqn" - }, - { - "name": "preserve", - "trans": [ - "vt.保护; 保持,保存; 腌制食物; 防腐处理 vi.保鲜; 保持原状; 做蜜饯; 禁猎 n.蜜饯; 防护用品; 禁猎地; 独占的事物(或范围)" - ], - "id": "-NODDu" - }, - { - "name": "vice", - "trans": [ - "n. 恶习,恶行,罪恶,缺陷,恶癖,老虎钳 vt. 钳住 prep. 代替,副,次" - ], - "id": "hM1_Zp" - }, - { - "name": "necessarily", - "trans": [ - "adv. 必然地,必定地,必需地" - ], - "id": "wTmkeL" - }, - { - "name": "circle", - "trans": [ - "n. 圆周,社交圈,循环 vt. &vi. 包围,盘旋,环绕" - ], - "id": "n1BDof" - }, - { - "name": "differ", - "trans": [ - "vi. 不一致,不同(意见)" - ], - "id": "zEohhd" - }, - { - "name": "stationary", - "trans": [ - "adj. 不动的(稳定的) n. 固定物(驻军)" - ], - "id": "61DZIP" - }, - { - "name": "extract", - "trans": [ - "n. 榨出物,精华,摘录 vt. 拔出,榨出,摘录,提取,选取 [计算机] 提取" - ], - "id": "QKpFSC" - }, - { - "name": "unrecognized", - "trans": [ - "adj. 未被承认的, 未被认出的" - ], - "id": "jjDKfY" - }, - { - "name": "thereafter", - "trans": [ - "adv. 其后, 从那时以后" - ], - "id": "0V-4ps" - }, - { - "name": "inverse", - "trans": [ - "adj. 相反的,倒转的 n. 相反的事物,(数学)逆反函数, 倒数, 负数" - ], - "id": "9iC627" - }, - { - "name": "spell", - "trans": [ - "v. 拼写,缓慢地或吃力地读 n. 魅力,符咒 vt. 用符咒镇住(某人) n. 一段时间,轮班 v. 轮班,休息" - ], - "id": "9fsvPp" - }, - { - "name": "limiting", - "trans": [ - "adj. 限制的 动词limit的现在分词" - ], - "id": "TB0dhj" - }, - { - "name": "restructure", - "trans": [ - "v. 更改结构, 重建构造" - ], - "id": "9Y9gRj" - }, - { - "name": "delimit", - "trans": [ - "vt. 定界限, 划界" - ], - "id": "syf3fN" - }, - { - "name": "pay", - "trans": [ - "n. 薪资,付款,报偿 vt. 支付,付清,报偿,给予 vi. 债清,值得,承担后果 adj. 投币的,要钱的" - ], - "id": "q_vV-Q" - }, - { - "name": "separately", - "trans": [ - "adv. 分别地;分离地;个别地" - ], - "id": "Won6K9" - }, - { - "name": "classify", - "trans": [ - "v. 分类,归类,分等" - ], - "id": "oan71k" - }, - { - "name": "interfere", - "trans": [ - "vi. 妨碍,冲突,干涉" - ], - "id": "fkGGNx" - }, - { - "name": "mind", - "trans": [ - "n. 思想, 主意, 心意, 记忆, vt. 留心, 注意, 介意, 照顾 vi. 留心, 关心" - ], - "id": "v-qIe1" - }, - { - "name": "individually", - "trans": [ - "adv. 个别地,单独地,独特地" - ], - "id": "f-Pj5e" - }, - { - "name": "vertical", - "trans": [ - "adj. 垂直的,顶点的,纵向的 n. 垂直物, 垂直的位置" - ], - "id": "UBSzoR" - }, - { - "name": "undesirable", - "trans": [ - "adj. 不受欢迎的, 不良的,不合意的,讨厌的 n. 不受欢迎的人,不良分子" - ], - "id": "9NEtmf" - }, - { - "name": "lot", - "trans": [ - "adv. 很,非常 pron. 大量 n. 许多,量,小组,抽签,场地,命运 vt. 分配,划分" - ], - "id": "NP_bZf" - }, - { - "name": "piece", - "trans": [ - "n. 块,片,篇 vt. 修补,结合" - ], - "id": "v8oEN1" - }, - { - "name": "unavailable", - "trans": [ - "adj. 得不到的, 没空的, 不能利用的" - ], - "id": "bDO0Z0" - }, - { - "name": "unlike", - "trans": [ - "adj. 不同的, 不相似的 prep. 不像, 和...不同" - ], - "id": "eJO7AS" - }, - { - "name": "sit", - "trans": [ - "vt. 坐,担任,开会,孵 vi. 坐,孵 n. 坐" - ], - "id": "AN62L-" - }, - { - "name": "insufficient", - "trans": [ - "adj. 不足的" - ], - "id": "Ief_RT" - }, - { - "name": "map", - "trans": [ - "n. 地图 v. 映射,绘制...之地图,计划 [计算机] 存储区分配图" - ], - "id": "M6rpU_" - }, - { - "name": "figure", - "trans": [ - "n. 图形, 数字, 形状; 人物, 外形, 体型 v. 演算, 认为, 领会到" - ], - "id": "6qjioP" - }, - { - "name": "prepare", - "trans": [ - "vt.准备; 预备(饭菜); 配备; 使(自己)有准备 vt.& vi.筹备,进行各项准备工作; 做好思想准备; 作出,制订; 锻炼(身体等),训" - ], - "id": "ERMDHd" - }, - { - "name": "consider", - "trans": [ - "vt. 考虑, 思考, 认为" - ], - "id": "IU-dTX" - }, - { - "name": "detect", - "trans": [ - "vt. 发现,探测信息,侦查 vi. 当侦探" - ], - "id": "_NoUIZ" - }, - { - "name": "convenience", - "trans": [ - "n. 适宜,便利, 便利设施,方便的时间,舒适" - ], - "id": "s9cAiG" - }, - { - "name": "method", - "trans": [ - "n. 方法,办法,条理" - ], - "id": "fV0_Zg" - }, - { - "name": "mean", - "trans": [ - "n.平均值, 平均数; 中部 adj. 低劣的, 卑贱的; 卑鄙的; 吝啬的 adj. 平均的, 中等的 v. 意味, 想要, 意欲" - ], - "id": "7-7ReU" - }, - { - "name": "salary", - "trans": [ - "n. 薪水 vt. 给...薪水" - ], - "id": "0YzTAH" - }, - { - "name": "pacific", - "trans": [ - "adj. 太平洋的,(pacific)热爱和平的,求和的, 和解的 n. 太平洋" - ], - "id": "XxQs4l" - }, - { - "name": "strong", - "trans": [ - "adj. 强壮的, 牢固的, 坚定的, 坚强的, 强烈的, 浓的" - ], - "id": "KuyjvX" - }, - { - "name": "emphasize", - "trans": [ - "v. 强调,着重 vt. 强调" - ], - "id": "sFjCa8" - }, - { - "name": "department", - "trans": [ - "n. 部,部门,系" - ], - "id": "v3VfZ3" - }, - { - "name": "forced", - "trans": [ - "adj. 被迫的, 强迫的, 用力的,不自然的 force的过去式(分词)" - ], - "id": "L5MM_Q" - }, - { - "name": "ANSI", - "trans": [ - "abbr. 美国国家标准学会(=American National Standards Institute)" - ], - "id": "_Up6fQ" - }, - { - "name": "permanent", - "trans": [ - "adj. 永久的, 持久的 n. (口)烫发" - ], - "id": "ovnoPZ" - }, - { - "name": "remark", - "trans": [ - "n. 备注,评论,注意 vt. 评论,注意,述及" - ], - "id": "js4viZ" - }, - { - "name": "away", - "trans": [ - "adv. 远离,离开,出去,连续的,遥远地" - ], - "id": "66rMxH" - }, - { - "name": "concatenate", - "trans": [ - "v. 连结,连锁 adj. 连锁的" - ], - "id": "MQsNgq" - }, - { - "name": "lightning", - "trans": [ - "n. 闪电 adj. 闪电般的, 快速的 vi. 打闪" - ], - "id": "WpvGcd" - }, - { - "name": "additionally", - "trans": [ - "adv. 另外(加之, 又)" - ], - "id": "pIK616" - }, - { - "name": "emulate", - "trans": [ - "vt. 效法, 尽力赶上, 仿真 [计算机] 仿真" - ], - "id": "zNFl8q" - }, - { - "name": "tape", - "trans": [ - "n. 录像带, 录音带, 磁带, 胶带 vt. 用带子捆起, 给...录音 vi. 录音" - ], - "id": "cdokFA" - }, - { - "name": "concept", - "trans": [ - "n. 概念, 观念" - ], - "id": "6lmg7_" - }, - { - "name": "optimize", - "trans": [ - "v. 使...完美,乐观,使...完善 v.优化" - ], - "id": "pLHS4p" - }, - { - "name": "counter", - "trans": [ - "n. 计算器,计算者,柜台 [计算机] 计数器 adj. 相反的 adv. 与…相反地 vt. 反对,反击 vi. 反对,反击" - ], - "id": "OTWBw5" - }, - { - "name": "expect", - "trans": [ - "vt.期望; 预料; 要求; 认为(某事)会发生 vi.预期; 期待; 怀胎; 怀孕" - ], - "id": "cw5aH1" - }, - { - "name": "subsequently", - "trans": [ - "adv. 后来, 随后" - ], - "id": "U6pPeJ" - }, - { - "name": "registration", - "trans": [ - "n. 登记,注册,挂号" - ], - "id": "UPJPY8" - }, - { - "name": "city", - "trans": [ - "n. 城市" - ], - "id": "L5FUQJ" - }, - { - "name": "designate", - "trans": [ - "adj. 指定的 vt. 指定,选派,标明" - ], - "id": "e0uG6A" - }, - { - "name": "visible", - "trans": [ - "adj. 可见的, 看得见的" - ], - "id": "NY1UpT" - }, - { - "name": "consult", - "trans": [ - "v. 商讨,向...请教,查阅" - ], - "id": "W5r96g" - }, - { - "name": "completely", - "trans": [ - "adv. 完全地, 十分地, 全然" - ], - "id": "HruQq9" - }, - { - "name": "virtually", - "trans": [ - "adv. 几乎,实际上" - ], - "id": "LlAcUn" - }, - { - "name": "substantially", - "trans": [ - "adv. 实质上,本质上,大体上" - ], - "id": "DTRuTu" - }, - { - "name": "specialize", - "trans": [ - "vi.专门从事; 专攻; 详细说明; 特化 vt.使专门化; 使适应特殊情况; 详细说明; 列举" - ], - "id": "fsrZy-" - }, - { - "name": "fail", - "trans": [ - "vi. 衰退,失败,不及格 vt. 辜负,缺少,未能做 n. 不及格" - ], - "id": "_cSrj4" - }, - { - "name": "primarily", - "trans": [ - "adv. 首先, 主要地" - ], - "id": "qS5uGD" - }, - { - "name": "client", - "trans": [ - "n.顾客; 当事人; 诉讼委托人; [计算机]客户端" - ], - "id": "_IbH59" - }, - { - "name": "runtime", - "trans": [ - "[计] 运行时间" - ], - "id": "GAef6C" - }, - { - "name": "fix", - "trans": [ - "vt. &vi. 使...固定,修理,准备 n. 困境, (船只、飞机等的)定方位,贿赂" - ], - "id": "EvM5ps" - }, - { - "name": "author", - "trans": [ - "n. 作者,创造者 vt. 创造,写作" - ], - "id": "52mU2T" - }, - { - "name": "programmer", - "trans": [ - "n.程序员, 程序规划员 ,节目编排者 =programer(英)" - ], - "id": "YE11MD" - }, - { - "name": "commercial", - "trans": [ - "adj. 商业的 n. 商业广告" - ], - "id": "Y1gwQf" - }, - { - "name": "particularly", - "trans": [ - "adv. 特别, 尤其" - ], - "id": "pTFfKE" - }, - { - "name": "low", - "trans": [ - "n. 低,低点(价),深度,牛叫声 adj. 低的,消沉的,低等的,粗俗的,衰弱的 vi. 牛叫" - ], - "id": "CuT7dp" - }, - { - "name": "sheet", - "trans": [ - "n. 床单,张,片 vt. 盖上被单,遍布, 使成片状 vi. 成片落下或流动 adj. 片状的" - ], - "id": "0ksr7W" - }, - { - "name": "employee", - "trans": [ - "n. 雇员" - ], - "id": "ltT21B" - }, - { - "name": "legal", - "trans": [ - "adj. 法律的,合法的,法定的" - ], - "id": "V2u4p-" - }, - { - "name": "qualified", - "trans": [ - "adj. 有资格的 vbl. 取得资格" - ], - "id": "rCgtEi" - }, - { - "name": "context", - "trans": [ - "n. 上下文, 环境,背景" - ], - "id": "CFL4BE" - }, - { - "name": "involved", - "trans": [ - "v. 涉及(包含,遍及,占用,促成,自乘) adj. 所包含的(形式复杂的)" - ], - "id": "E4vsBQ" - }, - { - "name": "conditional", - "trans": [ - "adj. 有条件的, 假定的,假设的 n. [语]条件句" - ], - "id": "mB5fRH" - }, - { - "name": "halfway", - "trans": [ - "adj. 中途的, 不彻底的 adv. 半路地, 在中途" - ], - "id": "IDRW3R" - }, - { - "name": "oriented", - "trans": [ - "adj. 导向的,定向的" - ], - "id": "ETfKs3" - }, - { - "name": "pair", - "trans": [ - "n. 双,对,副 vt.& vi. 使...成对,配对" - ], - "id": "y-5iTY" - }, - { - "name": "week", - "trans": [ - "n. 星期, 周" - ], - "id": "prQVPc" - }, - { - "name": "subroutine", - "trans": [ - "n. [计算机]子程序" - ], - "id": "d307Ju" - }, - { - "name": "manually", - "trans": [ - "adv.用手" - ], - "id": "8rmQ-B" - }, - { - "name": "preset", - "trans": [ - "vt. 预先装置,事先调整" - ], - "id": "jNqEnm" - }, - { - "name": "autoindex", - "trans": [ - "adj.[计]自动索引,自动变址" - ], - "id": "APb-bF" - }, - { - "name": "restrict", - "trans": [ - "v. 限制,约束" - ], - "id": "Eai4zo" - }, - { - "name": "performance", - "trans": [ - "n.表演; 演技; 表现; 执行" - ], - "id": "lT2wJp" - }, - { - "name": "showing", - "trans": [ - "n. 显示, 放映 动词show的现在分词" - ], - "id": "hglGVH" - }, - { - "name": "ever", - "trans": [ - "adv. 曾经, 永远, 究竟" - ], - "id": "iwTZOa" - }, - { - "name": "distribution", - "trans": [ - "n. 分发, 分配, 散布, 分布" - ], - "id": "QNWSDf" - }, - { - "name": "denote", - "trans": [ - "vt. 象征,表示" - ], - "id": "LhLGZV" - }, - { - "name": "cash", - "trans": [ - "n. 现金 vt. 兑现,付现款 adj. 现金的" - ], - "id": "_z9SB_" - }, - { - "name": "repeatedly", - "trans": [ - "adv. 重复地, 再三地" - ], - "id": "zQPNzC" - }, - { - "name": "replicate", - "trans": [ - "vt. &vi. 折叠,复制,模写 n. 同样的样品 adj. 转折的" - ], - "id": "mURuYt" - }, - { - "name": "mega", - "trans": [ - "兆, 百万" - ], - "id": "pOHLRK" - }, - { - "name": "conform", - "trans": [ - "vt. 使一致,遵守,使顺从 vi. 一致,符合" - ], - "id": "is7mMf" - }, - { - "name": "rebuild", - "trans": [ - "v. 重建,改建,使复原" - ], - "id": "5GWZD3" - }, - { - "name": "certainty", - "trans": [ - "n. 确定, 确实的事情" - ], - "id": "pofrQB" - }, - { - "name": "controller", - "trans": [ - "n. 控制器, 管理者, 主计员" - ], - "id": "pfWlZT" - }, - { - "name": "pseudo", - "trans": [ - "adj. 假的, 冒充的" - ], - "id": "OA38uD" - }, - { - "name": "manage", - "trans": [ - "vt. 管理,处理,维持,达成,经营 vi. 管理,达成" - ], - "id": "OKzMMY" - }, - { - "name": "administrator", - "trans": [ - "n. 管理人,行政官" - ], - "id": "_uR_jh" - }, - { - "name": "ensemble", - "trans": [ - "n. 全体, 合唱曲, 女人的全套服装" - ], - "id": "IgKlHZ" - }, - { - "name": "bus", - "trans": [ - "n. 公共汽车" - ], - "id": "_MrwsO" - }, - { - "name": "allowable", - "trans": [ - "adj. 容许的, 承认的" - ], - "id": "nzdqAk" - }, - { - "name": "restriction", - "trans": [ - "n. 限制,约束 vi. 结果,(作为结果)发生" - ], - "id": "1Rtpds" - }, - { - "name": "height", - "trans": [ - "n. 高度,高处,身高, 最高峰, 极点" - ], - "id": "OFLTk4" - }, - { - "name": "remainder", - "trans": [ - "n. 剩余物, 其他的人, 残余 vt. 廉价出售 adj. 剩余的" - ], - "id": "rW65Uj" - }, - { - "name": "traverse", - "trans": [ - "n. 横贯, 横木 v. 横过, 铭刻" - ], - "id": "LXja_y" - }, - { - "name": "organization", - "trans": [ - "n. 机构,组织 adj. 有组织的" - ], - "id": "5C41Le" - }, - { - "name": "resulting", - "trans": [ - "adj.作为结果的,因而发生的" - ], - "id": "rTgUkl" - }, - { - "name": "solution", - "trans": [ - "n. 解答, 解决办法, 溶解, 溶液" - ], - "id": "GBLwz0" - }, - { - "name": "external", - "trans": [ - "n. 外部 adj. 外部的,外用的,客观的,表面的" - ], - "id": "snwd5X" - }, - { - "name": "adequate", - "trans": [ - "adj. 足够的, 充足的, 适当的, 能胜任的" - ], - "id": "Cf2ii6" - }, - { - "name": "vary", - "trans": [ - "vt. 改变,使多样化 vi. 变化,违背" - ], - "id": "fpVLac" - }, - { - "name": "gap", - "trans": [ - "n. (意见、个性等的)差异,缝隙,漏洞,缺口 vt. 制造缺口 嘉普(财富500强公司之一,总部所在地美国,主要经营服装零售)" - ], - "id": "Uuq3EI" - }, - { - "name": "indexing", - "trans": [ - "n. 指数(分度, 索引, 转位, 转换角度, 换档, 改址)" - ], - "id": "i7akpn" - }, - { - "name": "board", - "trans": [ - "n. 木板, 甲板, 董事会 n. 伙食; 舞台, 演员的职业; 船舷 vt. 登(飞机、车、船等); 有偿提供食宿; 用木板覆盖 vi. 搭伙" - ], - "id": "archjF" - }, - { - "name": "package", - "trans": [ - "n. 包裹,整批交易 vt. 把...打包,把...进行推销" - ], - "id": "mCRCc5" - }, - { - "name": "insertion", - "trans": [ - "n. 插入,刊载,插入物" - ], - "id": "wvStpg" - }, - { - "name": "intervene", - "trans": [ - "vi. 插入,介入,干涉,调停 [计算机] 介入" - ], - "id": "IlJmnm" - }, - { - "name": "conflict", - "trans": [ - "n.冲突; 战斗; 相互干扰; 矛盾 vi.抵触; 争斗; 战斗; 冲突" - ], - "id": "-Oo-DR" - }, - { - "name": "really", - "trans": [ - "adv. 真正地,实在,事实上" - ], - "id": "c23VbF" - }, - { - "name": "overflow", - "trans": [ - "n. 溢值,超值,泛滥 v. 泛滥,溢出,充溢 [计算机] 溢出" - ], - "id": "wkN7bx" - }, - { - "name": "charge", - "trans": [ - "n. 电荷, 指控, 费用; 照顾, 责任 vt. &vi 控诉, 加罪于, 要价, 赊帐, 充电, 管理" - ], - "id": "GrOVU2" - }, - { - "name": "phone", - "trans": [ - "n. 音位,电话,耳机 vt. &vi. 打电话" - ], - "id": "tjOpkb" - }, - { - "name": "virtual", - "trans": [ - "adj. 虚拟的;有效的;实质上的,事实上的" - ], - "id": "1rAKw9" - }, - { - "name": "compose", - "trans": [ - "vt. 组成, 写作, 作曲, 使镇静 vi. 创作" - ], - "id": "p0bB05" - }, - { - "name": "snapshot", - "trans": [ - "n. 快照,印象" - ], - "id": "yJVEc3" - }, - { - "name": "sensitivity", - "trans": [ - "n. 敏感, 多愁善感, 感受性" - ], - "id": "4GoXnQ" - }, - { - "name": "familiar", - "trans": [ - "adj. 熟悉的,熟知的,不拘礼节的 n. 熟人,熟悉某种事物的人" - ], - "id": "Tkw7wL" - }, - { - "name": "Mach", - "trans": [ - "n. [物]马赫(速度单位) n. 马赫(奥地利物理学家, 心理学家、哲学家) abbr. 机器(=machine)" - ], - "id": "qQbtf9" - }, - { - "name": "incorrect", - "trans": [ - "adj. 不正确的, 错误的" - ], - "id": "BQE3It" - }, - { - "name": "cut", - "trans": [ - "n. 切口,割伤,降低,份额,删节,割下的一块肉 vt. 切割,减少,停止,修剪 vi. 切割,快速移动 [计算机] 剪掉" - ], - "id": "vre78T" - }, - { - "name": "lowest", - "trans": [ - "adj.最低的,最底下的,最小的" - ], - "id": "f5eet_" - }, - { - "name": "simple", - "trans": [ - "adj. 简单的,无辜的,天真的,基本的,纯粹的 n. 平民,精神病人,草药" - ], - "id": "Xk96gl" - }, - { - "name": "subsequent", - "trans": [ - "adj. 随后的,后来的" - ], - "id": "nQf1X-" - }, - { - "name": "compact", - "trans": [ - "adj. 紧凑的,紧密的,简洁的 v. 使装满,使简洁" - ], - "id": "lEr978" - }, - { - "name": "plain", - "trans": [ - "n. 平原,草原 adj. 简单的,平坦的,平常的,家常的 adj.纯的,不掺杂的" - ], - "id": "BsTrXO" - }, - { - "name": "noted", - "trans": [ - "adj. 著名的,有声望的 动词note的过去式和过去分词形式" - ], - "id": "eovPlX" - }, - { - "name": "desirable", - "trans": [ - "adj. 值得有的,令人满意的,有吸引力的 n. 有吸引力的人" - ], - "id": "qxj_q7" - }, - { - "name": "substitution", - "trans": [ - "n. 代理,替换,交换" - ], - "id": "ft8yQV" - }, - { - "name": "consume", - "trans": [ - "vt. 消耗,毁灭,吃,喝, 挥霍 vi. 耗尽生命, 被烧毁" - ], - "id": "s3dty9" - }, - { - "name": "forget", - "trans": [ - "vt. &vi. 忘记,忽略" - ], - "id": "sDl3Pn" - }, - { - "name": "keyed", - "trans": [ - "v.键入 vbl.键入" - ], - "id": "Nzfh1C" - }, - { - "name": "tornado", - "trans": [ - "n. 飓风,旋风,龙卷风" - ], - "id": "-RtMWI" - }, - { - "name": "quotation", - "trans": [ - "n. 1.引语,语录 2.报价单 3.行情表" - ], - "id": "KlrRtu" - }, - { - "name": "parse", - "trans": [ - "v.&n. 从语法上分析" - ], - "id": "lH4-5y" - }, - { - "name": "experience", - "trans": [ - "n. 经历, 经验 vt. 经历, 体验" - ], - "id": "kZanCI" - }, - { - "name": "manufacture", - "trans": [ - "n. 产品,制造,制造业 vt. 制造,加工 vi. 参与制造" - ], - "id": "fVeDGf" - }, - { - "name": "hundred", - "trans": [ - "n. 百,百个东西 adj. 百,百个" - ], - "id": "jzzfir" - }, - { - "name": "thousand", - "trans": [ - "adj. 千,成千" - ], - "id": "ZSwUx4" - }, - { - "name": "twentieth", - "trans": [ - "n. 二十分之一 num.&adj. 第二十" - ], - "id": "3W7dsw" - }, - { - "name": "understanding", - "trans": [ - "n. 了解, 理解, 个人见解, 非正式协议, 谅解, 同情心, 洞察力 adj. 有同情心的" - ], - "id": "lxwU_u" - }, - { - "name": "hand", - "trans": [ - "n. 手,掌握,协助 vt. 帮助,给 adv. 手动地,人工地" - ], - "id": "0P8qOt" - }, - { - "name": "fancy", - "trans": [ - "n. 想像力, 幻想, 喜好, 爱 adj. 想像的, 时髦的, 华丽装饰的, 奢侈的, 技巧的 vt. 想象, 自认为, 喜好" - ], - "id": "tLXYam" - }, - { - "name": "wide", - "trans": [ - "adj. 广泛的,宽阔的 adv. 广大地,全部地" - ], - "id": "u_u_oc" - }, - { - "name": "fine", - "trans": [ - "n. 罚款,罚金,结尾 vt. 罚款 vi. 净化,细化 adj. 美好的, 优质的, 精致的,晴朗的, 健康的,纤细的,恭维的,辞藻华丽的 adv. 恰好地,合适地" - ], - "id": "uev9Wh" - }, - { - "name": "worry", - "trans": [ - "n. 烦恼,忧虑,苦恼 vt. 使...烦恼,使...焦虑, 叼住某物甩或拉 vi. 感到苦恼,感到焦虑" - ], - "id": "RyAh8P" - }, - { - "name": "quiet", - "trans": [ - "n. 安静,闲适,平静 adj. 安静的,静止的,宁静的 adv. 安静地 vt. &vi. 使...平静,使...安心" - ], - "id": "rY3Mew" - }, - { - "name": "purge", - "trans": [ - "n. 整肃,清除,泻药,净化 vt. 净化,清除,摆脱 vi. 清除,通便,腹泻,变得清洁" - ], - "id": "y4CyZ1" - }, - { - "name": "mod", - "trans": [ - "abbr. (=modern) 现代的,时髦的 abbr. (=modulus) 模数,绝对值" - ], - "id": "b35lCo" - }, - { - "name": "numeral", - "trans": [ - "adj. 数字的, 表示数字的 n. 数字, 数" - ], - "id": "FHPuk0" - }, - { - "name": "whichever", - "trans": [ - "adj. 无论哪个, 无论哪些 pron. 无论哪个" - ], - "id": "M-0lnn" - }, - { - "name": "purchase", - "trans": [ - "n. 购买, 购买的物品 n. 支点; 紧握, 抓紧 vt. 购买, 赢得; (用设备)举起, 移动" - ], - "id": "ECzWBY" - }, - { - "name": "care", - "trans": [ - "n. 小心,照料,忧虑,慎思,焦虑因素 vi. 关心,照顾,喜爱 vt. 介意,希望 abbr.=Cooperative for American Remittances to Europe 汇款到欧洲合作社" - ], - "id": "y5nIID" - }, - { - "name": "watch", - "trans": [ - "n. 手表,注视 vt. 观察,监视,注视,照顾,等待 vi. 留意,观察" - ], - "id": "ZiO-TJ" - }, - { - "name": "endeavor", - "trans": [ - "n. 努力, 尽力, 进取心 vt. 努力,尽力 vi. 企图, 谋求" - ], - "id": "6daHud" - }, - { - "name": "mismatch", - "trans": [ - "vt. 配错, 配合不当 n. 配错, 不相匹配" - ], - "id": "SHdxBf" - }, - { - "name": "printout", - "trans": [ - "n. (电脑)打印输出" - ], - "id": "6TAcRJ" - }, - { - "name": "ellipsis", - "trans": [ - "n. 省略" - ], - "id": "T4AhyX" - }, - { - "name": "ship", - "trans": [ - "n. 船,舰,船员,飞船 vt. 以船运送,乘船,运送,进水,在船上工作 vi. 上船,坐船,运送,在船上工作" - ], - "id": "JMpCm1" - }, - { - "name": "British", - "trans": [ - "adj. 英国的 n. 英国人, 英国英语" - ], - "id": "wdnX_3" - }, - { - "name": "parallel", - "trans": [ - "adj. 平行的,相同的,类似的,并联的 adv. 平行地 n. 平行线(面),相似物,对比 vt. 相比,相应,与...平行" - ], - "id": "n2gBQy" - }, - { - "name": "custom", - "trans": [ - "n. 习惯, 风俗, 海关" - ], - "id": "8pYqHZ" - }, - { - "name": "congratulation", - "trans": [ - "n. 祝贺" - ], - "id": "zsyiBZ" - }, - { - "name": "protection", - "trans": [ - "n. 保护,防卫" - ], - "id": "Tv6F6u" - }, - { - "name": "glass", - "trans": [ - "n. 玻璃, 玻璃器皿, 窗户, (复)眼镜,透镜 vt. 用玻璃把…盖(或罩、围)住,给...装上玻璃, 使成玻璃状, 反映, 反射, 审视 vi. 成为玻璃状, 用光学仪器眺望" - ], - "id": "b1sWnp" - }, - { - "name": "pattern", - "trans": [ - "n. 图案, 式样, 典范 v. 以图案装饰; 仿造, 模仿" - ], - "id": "2uRb4h" - }, - { - "name": "insure", - "trans": [ - "vt. 保险,确保 vi. 买保险" - ], - "id": "qLU1mc" - }, - { - "name": "factory", - "trans": [ - "n. 工厂, 制造场所" - ], - "id": "3eARDT" - }, - { - "name": "implement", - "trans": [ - "n. 工具, 器具; 当工具的物品 vt. 实施, 执行; 向...提供工具(或手段)" - ], - "id": "ENqrE4" - }, - { - "name": "effort", - "trans": [ - "n. 努力, 努力的成果" - ], - "id": "mdLUpj" - }, - { - "name": "worker", - "trans": [ - "n. 工人,工作者" - ], - "id": "7p9yac" - }, - { - "name": "ampersand", - "trans": [ - "n. 和,&(and 的符号)" - ], - "id": "zDaeL3" - }, - { - "name": "deal", - "trans": [ - "n. 交易,协定,份量 v. (dealt,dealt[delt])处理,应付,分配" - ], - "id": "Wnaa2v" - }, - { - "name": "power", - "trans": [ - "n. 力量, 权力,电力 vt. 供电,激励,全速前进 adj. 与力量有关的,与权力有关的,电力控制的" - ], - "id": "4_kYGY" - }, - { - "name": "difficulty", - "trans": [ - "n. 困难,争议,反对,麻烦" - ], - "id": "UABQhQ" - }, - { - "name": "lose", - "trans": [ - "vt. 遗失,损失,失败,摆脱 vi. 丢失,失败 [计算机] 失去" - ], - "id": "EJ48L2" - }, - { - "name": "magic", - "trans": [ - "adj. 有魔力的, 神奇的 n. 魔法, 魔术 vt. 使用魔(变出等)" - ], - "id": "pkUo8M" - }, - { - "name": "proprietary", - "trans": [ - "adj. 专利的, 所有权的 n. 所有权, 所有人" - ], - "id": "bbP6wK" - }, - { - "name": "aware", - "trans": [ - "adj. 知道的, 意识到的" - ], - "id": "XADM13" - }, - { - "name": "numerous", - "trans": [ - "adj. 为数众多的,许多" - ], - "id": "DFbNhk" - }, - { - "name": "vowel", - "trans": [ - "n. 母音, 元音" - ], - "id": "L-0CWa" - }, - { - "name": "closely", - "trans": [ - "adv. 紧密地,接近地,严密地" - ], - "id": "nr_Kwz" - }, - { - "name": "accuracy", - "trans": [ - "n. 准确(性), 精确度" - ], - "id": "3-OoM7" - }, - { - "name": "traditional", - "trans": [ - "adj. 传统的" - ], - "id": "Wj_4jN" - }, - { - "name": "synchronization", - "trans": [ - "n.同步化" - ], - "id": "JZUhOm" - }, - { - "name": "fragment", - "trans": [ - "n. 碎片 vt. &vi. 变成碎片 [计算机] 碎片" - ], - "id": "xWqGMH" - }, - { - "name": "primary", - "trans": [ - "n. 最主要者 adj. 主要的, 初期的, 根本的" - ], - "id": "uqlxhw" - }, - { - "name": "safely", - "trans": [ - "adv. 安全地" - ], - "id": "cXvSm_" - }, - { - "name": "habit", - "trans": [ - "n. 习惯,习性;嗜好 vt. 使穿衣" - ], - "id": "Fv2Df5" - }, - { - "name": "comprise", - "trans": [ - "vt. 包含,构成" - ], - "id": "rzuHVg" - }, - { - "name": "landler", - "trans": [ - "n.兰德勒舞(奥地利农村的民间舞),兰德勒舞曲" - ], - "id": "mAWYn1" - }, - { - "name": "absence", - "trans": [ - "n. 没有;缺乏;缺席;不注意" - ], - "id": "1eRSMc" - }, - { - "name": "revolutionize", - "trans": [ - "vt. 使革命化,使彻底变革 vi. 变革 =revolutionise(英)" - ], - "id": "DDXrFJ" - }, - { - "name": "constantly", - "trans": [ - "adv. 不断地,经常地" - ], - "id": "aLV_2O" - }, - { - "name": "seldom", - "trans": [ - "adv. 很少 adj. 很少的" - ], - "id": "MaeXVu" - }, - { - "name": "unfortunately", - "trans": [ - "adv. 不幸地" - ], - "id": "CCt_md" - }, - { - "name": "expunge", - "trans": [ - "v. 擦掉, 删掉, 除去" - ], - "id": "0o2mf5" - }, - { - "name": "security", - "trans": [ - "n.安全; 保证,担保; 保护,防护; 有价证券 adj.安全的,保安的,保密的" - ], - "id": "XHCIH6" - }, - { - "name": "touch", - "trans": [ - "n. 触觉,接触,少许, 痕迹, 修饰 vt. 触摸,吃,喝,触及,感动 vi. 接触, 联系" - ], - "id": "EeFwQe" - }, - { - "name": "contrast", - "trans": [ - "n.对比,对照; 差异; 对照物,对立面; [摄]反差" - ], - "id": "aESluh" - }, - { - "name": "invent", - "trans": [ - "v. 发明 vt. 发明,创造" - ], - "id": "sAIo0A" - }, - { - "name": "reflect", - "trans": [ - "v. 反映, 反射, 归咎" - ], - "id": "mrzVHG" - }, - { - "name": "undone", - "trans": [ - "adj. 未完成的,未做完的 动词undo的过去分词形式" - ], - "id": "GnT0zV" - }, - { - "name": "unshift", - "trans": [ - "vi. 松开打字机或键盘的字型变换键" - ], - "id": "gbsew-" - }, - { - "name": "complex", - "trans": [ - "adj. 复杂的 n. 复合体" - ], - "id": "hsqNDz" - }, - { - "name": "complexity", - "trans": [ - "n. 复杂,复杂性, 复杂的事物" - ], - "id": "G8YZsm" - }, - { - "name": "creation", - "trans": [ - "n. 创造, 创作" - ], - "id": "Kp381L" - }, - { - "name": "unknown", - "trans": [ - "adj. 未知的,不出名的" - ], - "id": "p6dLvP" - }, - { - "name": "greatly", - "trans": [ - "adv. 很, 非常" - ], - "id": "OZTtWo" - }, - { - "name": "cost", - "trans": [ - "n.价钱,代价; 花费,费用; 牺牲; [用复数][法律]诉讼费 vi.价钱为,花费; 估计成本 vt.付出代价; 估价; 使丧失; 使付出努力" - ], - "id": "3zBZLm" - }, - { - "name": "degrade", - "trans": [ - "vt. 贬低;使……丢脸;使……降级;使……降解 vi. 降级,降低;退化" - ], - "id": "A-Mgdb" - }, - { - "name": "suggestion", - "trans": [ - "n. 建议, 意见, 迹象, 暗示, 联想" - ], - "id": "HRTNA9" - }, - { - "name": "real", - "trans": [ - "adj. 实际的,现实的,真的,真实的 adv. 非常 n. 真实的事, 真实" - ], - "id": "GB_aRt" - }, - { - "name": "experimentation", - "trans": [ - "n. 实验, 试验" - ], - "id": "JA7_g_" - }, - { - "name": "experiment", - "trans": [ - "n. 实验,试验,尝试 vi. 做实验,尝试" - ], - "id": "hQS3H-" - }, - { - "name": "substantial", - "trans": [ - "n. 重要部份, 本质 adj. 大量的, 实质上的, 有内容的" - ], - "id": "D4IQuh" - }, - { - "name": "solely", - "trans": [ - "adv. 独自地,单独地" - ], - "id": "mbsUrR" - }, - { - "name": "announce", - "trans": [ - "vi.宣布参加竞选; 当播音员 vt.宣布; 述说; 声称; 预告" - ], - "id": "aMeYnX" - }, - { - "name": "squeeze", - "trans": [ - "n. 压榨,榨出的少量,佣金,经济拮据 vt. 紧握,挤压,使经济困难 vi. 让步,压迫,险胜" - ], - "id": "tseI_W" - }, - { - "name": "distribute", - "trans": [ - "vt. &vi. 分配,散布" - ], - "id": "bSrCWk" - }, - { - "name": "negate", - "trans": [ - "v. 否定, 否认, 打消" - ], - "id": "Xe2koA" - }, - { - "name": "capture", - "trans": [ - "n. 抓取,战利品,捕获之物 vt. 抓取,获得,迷住" - ], - "id": "zk28oW" - }, - { - "name": "father", - "trans": [ - "n. 父亲,鼻祖 vt. 作为父亲生育子女 vi. 像父亲般照顾" - ], - "id": "SSGrAM" - }, - { - "name": "reinstate", - "trans": [ - "v. 恢复(原职) vt. 使恢复原有的职位" - ], - "id": "TLG8-D" - }, - { - "name": "tutorial", - "trans": [ - "n. 个别指导 adj. 个别指导的" - ], - "id": "0aGebB" - }, - { - "name": "nicety", - "trans": [ - "n. 精确,谨慎,精细,细微的区别" - ], - "id": "OTtoYV" - }, - { - "name": "roll", - "trans": [ - "vt.辗; 使(眼球等)左右转动; (使)原地转圈; 滚动 vi.左右摇晃; 翻滚; 开始移动,启动 n.名册; 滚翻" - ], - "id": "9s8rKo" - }, - { - "name": "exponent", - "trans": [ - "n. 拥护者,说明者,楷模 n. 指数 n. 能手,大师 adj. 说明的" - ], - "id": "jRzg9u" - }, - { - "name": "exponential", - "trans": [ - "adj. 指数的 n. 指数" - ], - "id": "Y8uQ4N" - }, - { - "name": "prefer", - "trans": [ - "vt.更喜欢; 提升,提拔; 给予(债权人)优先权; 提出(控告) vi.更喜欢,宁愿" - ], - "id": "BK2rjq" - }, - { - "name": "complicated", - "trans": [ - "adj. 复杂的, 难懂的" - ], - "id": "Lzfh3j" - }, - { - "name": "reactivate", - "trans": [ - "v. 使重新活跃,恢复活动" - ], - "id": "JdUICP" - }, - { - "name": "spread", - "trans": [ - "n. 传布, 伸展 adj. 扩延的 v. 传布, 推广, 伸出" - ], - "id": "1Zp-3v" - }, - { - "name": "synchronize", - "trans": [ - "v. 使同时, 同时发生" - ], - "id": "mzVAkg" - }, - { - "name": "formation", - "trans": [ - "n. 构造,编队,形成" - ], - "id": "NGMU18" - }, - { - "name": "widely", - "trans": [ - "adv. 广泛地" - ], - "id": "-izsMy" - }, - { - "name": "comma", - "trans": [ - "n. 逗号,停顿,间歇 n. 银纹多角蛱蝶" - ], - "id": "pGCijW" - }, - { - "name": "very", - "trans": [ - "adj. 真正的,完全的,自己的,仅仅的,同一个,特别的 adv. 真的,非常" - ], - "id": "QkGzT3" - }, - { - "name": "unnecessary", - "trans": [ - "adj. 不必要的,多余的 n. 不必要的东西" - ], - "id": "7PqZrH" - }, - { - "name": "unchanged", - "trans": [ - "adj. 无变化的" - ], - "id": "00Q1M8" - }, - { - "name": "cross", - "trans": [ - "n. 十字架,十字架形物件,交叉,交叉路 adj. 生气的,交叉的 vt. 划叉剔除,画横线于 vi. 穿越 prep. 穿过" - ], - "id": "Xk0Rrt" - }, - { - "name": "yet", - "trans": [ - "adv. 还,仍然,即刻 conj. 尽管,然而" - ], - "id": "IKRuXf" - }, - { - "name": "slowly", - "trans": [ - "adj. 慢慢地 adv. 缓慢地" - ], - "id": "VbmJ30" - }, - { - "name": "inexperienced", - "trans": [ - "adj. 无经验的, 不熟练的" - ], - "id": "sXvCvv" - }, - { - "name": "unwanted", - "trans": [ - "adj. 不必要的, 空闲的" - ], - "id": "d7Si7a" - }, - { - "name": "unused", - "trans": [ - "adj. 未用过的,不习惯的" - ], - "id": "_byUyN" - }, - { - "name": "unmarked", - "trans": [ - "adj. 无记号的, 未被注意的" - ], - "id": "HSTJpQ" - }, - { - "name": "nothing", - "trans": [ - "adv. 毫不 n. 微不足道的人或事 pron. 什么也没有" - ], - "id": "yLuzk6" - }, - { - "name": "chart", - "trans": [ - "n. 图表 vt. 制成图表" - ], - "id": "LNM5vl" - }, - { - "name": "dearly", - "trans": [ - "adv. 深深地, 真挚地,昂贵地" - ], - "id": "6pbdIU" - }, - { - "name": "extremely", - "trans": [ - "adv. 极其, 非常" - ], - "id": "IiWjf2" - }, - { - "name": "hardly", - "trans": [ - "adv. 几乎不" - ], - "id": "Nxvvel" - }, - { - "name": "placement", - "trans": [ - "n. 方位,位置,找工作,安排" - ], - "id": "ugnnTs" - }, - { - "name": "think", - "trans": [ - "vt.想; 思索; 以为; 看待 vi.思辩; 考虑; 构想; 回忆 adj.深思的; 供思考的 n.想; 想法" - ], - "id": "p-IvFE" - }, - { - "name": "technical", - "trans": [ - "adj. 工艺的, 技术的" - ], - "id": "GpHGGH" - }, - { - "name": "idea", - "trans": [ - "n. 主意, 想法, 观念" - ], - "id": "KOVvRf" - }, - { - "name": "stamp", - "trans": [ - "n. 印,邮票,打印器 vt. 捺印,顿足,贴上邮票" - ], - "id": "EvQbnK" - }, - { - "name": "equation", - "trans": [ - "n. 相等,方程(式),等式,均衡" - ], - "id": "fcyDOU" - }, - { - "name": "smooth", - "trans": [ - "adj. 平稳的,流畅的,安祥的,圆滑的,搅拌均匀的 vt. 使光滑,磨光,安慰,理顺(羽毛) vi. 变光滑" - ], - "id": "dWJjRV" - }, - { - "name": "attached", - "trans": [ - "adj. 附加的, 固定的" - ], - "id": "RlheN3" - }, - { - "name": "average", - "trans": [ - "n. 平均数,平均水平 adj. 一般的,通常的,平均的 vt. &vi. 取平均值,达到平均水平" - ], - "id": "ppl2lO" - }, - { - "name": "quietly", - "trans": [ - "adj. 寂静地, 静止地 adv. 安静地, 平静地" - ], - "id": "bwzLL1" - }, - { - "name": "discard", - "trans": [ - "n. 丢牌,废牌 vt. 丢弃,抛弃 vi. 丢牌" - ], - "id": "JxnKHQ" - }, - { - "name": "never", - "trans": [ - "adv. 从不,绝不" - ], - "id": "9cFqgR" - }, - { - "name": "initiate", - "trans": [ - "n. 创始人 adj. 新加入的 vt. 开始,创始,启蒙,介绍加入" - ], - "id": "hS-fEh" - }, - { - "name": "powerful", - "trans": [ - "adj. 强有力的" - ], - "id": "kAK-96" - }, - { - "name": "purpose", - "trans": [ - "n. 目的, 意图; 意志, 决心; 议题 vt. 打算, 决意" - ], - "id": "IJ8U4n" - }, - { - "name": "regard", - "trans": [ - "vt.认为; 注视; 涉及; 尊敬 vi.凝视; 留意 n.凝视; 留意; 尊敬; 问候" - ], - "id": "DlpF_P" - }, - { - "name": "daily", - "trans": [ - "adj. 每日的, 按天计算的, 日常的 adv. 每日,天天 n. 日报, (复)工作样片" - ], - "id": "85zPle" - }, - { - "name": "possibly", - "trans": [ - "adv. 可能地, 也许" - ], - "id": "J7Kj9i" - }, - { - "name": "potentially", - "trans": [ - "adv. 潜在地" - ], - "id": "Hk7Z0Z" - }, - { - "name": "moreover", - "trans": [ - "adv.再者; 此外; 而且; 同时" - ], - "id": "TyVtF_" - }, - { - "name": "American", - "trans": [ - "adj. 美国的, 美式的 n. 美国人, 美式英语" - ], - "id": "_j09Xt" - }, - { - "name": "guard", - "trans": [ - "n. 守卫者,警戒, 护卫队, 保护 vt. &vi. 保卫,看守,警惕" - ], - "id": "peSRGd" - }, - { - "name": "world", - "trans": [ - "n. 世界(人),领域,俗世" - ], - "id": "Va_ArL" - }, - { - "name": "independent", - "trans": [ - "adj. 独立的, 自主的,私立的,无偏见的 n. 独立派人士, 无党派者" - ], - "id": "qFeEXW" - }, - { - "name": "independently", - "trans": [ - "adv.独立地,自立地" - ], - "id": "mw1lma" - }, - { - "name": "continuously", - "trans": [ - "adv.不断地,连续地" - ], - "id": "Oz-CP7" - }, - { - "name": "shield", - "trans": [ - "n. 盾,防卫物,盾状物 vt. 保护,遮蔽" - ], - "id": "hxXXRV" - }, - { - "name": "glance", - "trans": [ - "vi.一瞥; 闪微光; 掠过,擦过; 随便提到,简略地触及 n.浏览; 闪光; 歪斜,一掠" - ], - "id": "LhQEv-" - }, - { - "name": "happening", - "trans": [ - "n. 偶然发生的事 动词happen的现在分词形式" - ], - "id": "ZI8TqX" - }, - { - "name": "transaction", - "trans": [ - "n. 交易,处理,办理" - ], - "id": "rQmmdu" - }, - { - "name": "emulation", - "trans": [ - "n. 效法, 竞争,模仿" - ], - "id": "5r9QI8" - }, - { - "name": "strike", - "trans": [ - "n. 罢工, 打击, 殴打 v. 打, 撞, 罢工, 划燃" - ], - "id": "sBatLx" - }, - { - "name": "dump", - "trans": [ - "n. 垃圾场,堆放处 vt. 丢弃,抛售,导出 vi. 骤降,扔垃圾" - ], - "id": "ee0oBN" - }, - { - "name": "occasionally", - "trans": [ - "adv. 偶尔地" - ], - "id": "GwRBjO" - }, - { - "name": "tension", - "trans": [ - "n. 紧张,张力,拉力 vt. (使金属线、帆等)拉紧" - ], - "id": "1QNqvd" - }, - { - "name": "probable", - "trans": [ - "adj. 很可能的 n. 很可能的事" - ], - "id": "f541AK" - }, - { - "name": "talent", - "trans": [ - "n. 才能, 人才, 天资" - ], - "id": "9Glgst" - }, - { - "name": "financial", - "trans": [ - "adj. 金融的,财政的" - ], - "id": "s8nVnM" - }, - { - "name": "meter", - "trans": [ - "n. 公尺,韵律,计量器 vt. 用表测量[计量, 记录]" - ], - "id": "-JWfp-" - }, - { - "name": "logged", - "trans": [ - "adj. 记录的, 进水的, 锯成圆木的,沉重的 动词log的过去式及过去分词形式" - ], - "id": "UGY-Wk" - }, - { - "name": "ware", - "trans": [ - "n. 制品,器具,货物 vt. 留心,意识到 adj. 知道的,意识到的" - ], - "id": "O-Pqum" - }, - { - "name": "disregard", - "trans": [ - "n. 不理会, 漠视 vt. 忽视, 不顾" - ], - "id": "gn0kgq" - }, - { - "name": "waiting", - "trans": [ - "n. 等候 adj. 候补 动词wait的现在分词" - ], - "id": "Ilbypa" - }, - { - "name": "preceding", - "trans": [ - "adj. 在前的,在先的" - ], - "id": "b291zH" - }, - { - "name": "comparison", - "trans": [ - "n. 比较" - ], - "id": "gqap0f" - }, - { - "name": "advanced", - "trans": [ - "adj. 高级的, 先进的" - ], - "id": "5LiGzP" - }, - { - "name": "rate", - "trans": [ - "n. 比率, 等级, 价格 vt. 估价, 认为, 定等级; 责骂 vi. 受欢迎, 受推崇; 责骂" - ], - "id": "B_4_SX" - }, - { - "name": "fly", - "trans": [ - "n. 苍蝇,两翼昆虫,飞行,升高 vt. &vi. 飞,飞翔,逃走,飞逝,猛然移动" - ], - "id": "zW34b5" - }, - { - "name": "programmable", - "trans": [ - "adj. 可编程的" - ], - "id": "R8sRQT" - }, - { - "name": "definable", - "trans": [ - "adj. 可定义的, 可确定的" - ], - "id": "a-3k0f" - }, - { - "name": "readable", - "trans": [ - "adj. 字迹易辨认的 adj. 可读的, 易读的, 读起来津津有味的" - ], - "id": "LdH6Ud" - }, - { - "name": "recoverable", - "trans": [ - "adj. 可恢复的,可收回的" - ], - "id": "QVyX_b" - }, - { - "name": "possibility", - "trans": [ - "n. 可能性,可能的事情,潜在的价值" - ], - "id": "wLLZNQ" - }, - { - "name": "finisher", - "trans": [ - "n. 运动中最后一击者,修整机(精整工)" - ], - "id": "1oTBxj" - }, - { - "name": "applicable", - "trans": [ - "adj. 合适的,适用的" - ], - "id": "a3IDrQ" - }, - { - "name": "printable", - "trans": [ - "可印刷的" - ], - "id": "hdSUw4" - }, - { - "name": "executable", - "trans": [ - "adj.实行的,执行的" - ], - "id": "CA3j_i" - }, - { - "name": "essentially", - "trans": [ - "adv. 本质上,本来" - ], - "id": "UOGv41" - }, - { - "name": "confuse", - "trans": [ - "vt. 混乱,狼狈,困惑" - ], - "id": "-Wx8Kp" - }, - { - "name": "familiarize", - "trans": [ - "vt. 使熟悉" - ], - "id": "eTRmkm" - }, - { - "name": "employe", - "trans": [ - "(=employee) n.雇工,从业员" - ], - "id": "ZAUO5w" - }, - { - "name": "suitable", - "trans": [ - "adj. 合适的, 适宜的" - ], - "id": "fpM9WJ" - }, - { - "name": "generation", - "trans": [ - "n. 代, 一代" - ], - "id": "cOuoIk" - }, - { - "name": "quality", - "trans": [ - "n. 品质, 特质, 才能 adj. 高品质的" - ], - "id": "pYPG0P" - }, - { - "name": "defective", - "trans": [ - "adj. 有缺陷的,欠缺,不完全变化动词 n. 有缺陷的人,不完全变化动词" - ], - "id": "upLw7w" - }, - { - "name": "interpretable", - "trans": [ - "adj.能说明的,能翻译的,可判断的" - ], - "id": "fkwgah" - }, - { - "name": "interest", - "trans": [ - "n. 兴趣, 嗜好, 利息; 股份 vt. 使...感兴趣" - ], - "id": "Hf92H1" - }, - { - "name": "fourscore", - "trans": [ - "adj. 八十的 n. 八十" - ], - "id": "4A5jZj" - }, - { - "name": "teach", - "trans": [ - "vt. 教,教书,教导,教训 vi. 给予指导" - ], - "id": "P3S6t-" - }, - { - "name": "procedural", - "trans": [ - "adj. 程序的 n.警察疑案作品" - ], - "id": "z4Ddt5" - }, - { - "name": "phrase", - "trans": [ - "n. 短语,习语,个人风格,乐句 vt. 措词表达,将(乐曲)分成乐句(来演奏)" - ], - "id": "RnN1xT" - }, - { - "name": "specifically", - "trans": [ - "adv. 特定地,明确地" - ], - "id": "prUnVK" - }, - { - "name": "penalty", - "trans": [ - "n. 处罚,惩罚" - ], - "id": "AO1bba" - }, - { - "name": "violate", - "trans": [ - "vt. 违犯, 亵渎, 干扰, 侵犯, 强奸" - ], - "id": "2qX3DK" - }, - { - "name": "indefinitely", - "trans": [ - "adv. 无限地(在长时期内,无穷地)" - ], - "id": "mf4ycp" - }, - { - "name": "major", - "trans": [ - "n. 主修, 成年人, 陆军少校; 巨头 adj. 主要的, 较多的, 大部份的 vi. 主修" - ], - "id": "m1XLit" - }, - { - "name": "higher", - "trans": [ - "adj. 更高的" - ], - "id": "HNAYkh" - }, - { - "name": "wise", - "trans": [ - "adj. 明智的,有学问的,有智慧的,聪明的 n. 方式 vt. 引导 vi. 学" - ], - "id": "zsiau5" - }, - { - "name": "becoming", - "trans": [ - "adj. 合适的,适当的,好看的 动词become的现在分词形式" - ], - "id": "QLj-5A" - }, - { - "name": "equally", - "trans": [ - "adv. 相等地, 同样地, 平等地" - ], - "id": "pwJpVe" - }, - { - "name": "enjoy", - "trans": [ - "vt. &vi. 享受,喜欢" - ], - "id": "fDsm8i" - }, - { - "name": "forth", - "trans": [ - "adv.向前,向前方; 露着的,往外的; [废语]出外,离家 prep.出自,从…离开" - ], - "id": "qiXV_6" - }, - { - "name": "disappear", - "trans": [ - "vi. 消失,灭绝 vt. 引起消失" - ], - "id": "Bb90sK" - }, - { - "name": "crop", - "trans": [ - "n. 庄稼,收成, 一群,平头 vt. 割掉, 修剪, 剪短, 收割, 使谷物生长 vi. 啃青草, 种植谷物" - ], - "id": "Fj8_Gn" - }, - { - "name": "diagonally", - "trans": [ - "adv. 斜对地, 对角地" - ], - "id": "kZBbVu" - }, - { - "name": "decision", - "trans": [ - "n. 决定,决心" - ], - "id": "dB6sap" - }, - { - "name": "effective", - "trans": [ - "adj. 有效的,有影响的" - ], - "id": "QC68Zo" - }, - { - "name": "significant", - "trans": [ - "adj. 有意义的, 意味深长的; 相当数量的; 重要的, 重大的 n. (复)有意义的事物; 标志" - ], - "id": "ICiZtB" - }, - { - "name": "avail", - "trans": [ - "vi. 有利 vt. 有用 n. 益处" - ], - "id": "twJ7F9" - }, - { - "name": "hang", - "trans": [ - "vt.悬挂; (被)绞死; 贴,装饰; 使悬而未决 vi.悬垂; 被吊死; 附属,依靠; 悬而未决 n.悬挂的样子; (动作的)暂停; 〈口〉大意,要点; 〈口〉做法,诀窍" - ], - "id": "PzlhTv" - }, - { - "name": "craze", - "trans": [ - "n. 狂热, 大流行,(陶瓷器等表面的)裂纹 v. (使)发狂, (使)产生裂纹" - ], - "id": "0_nE_t" - }, - { - "name": "consequently", - "trans": [ - "adv. 所以, 因此" - ], - "id": "4YN8Ol" - }, - { - "name": "introduce", - "trans": [ - "vt. 介绍, 引进, 采用, 提出, 提倡, 放入" - ], - "id": "g1JN4s" - }, - { - "name": "team", - "trans": [ - "n. 队,组 vt. 协同工作 vi. 结成一队 adj. 团队的" - ], - "id": "nUCVnn" - }, - { - "name": "visual", - "trans": [ - "adj. 视觉的 n. 画面, 图象" - ], - "id": "W2gBpv" - }, - { - "name": "acknowledgment", - "trans": [ - "n. 承认, 承认书, 感谢 =acknowledgement" - ], - "id": "pUG9d2" - }, - { - "name": "efficiently", - "trans": [ - "adv.有效率地,有效地" - ], - "id": "6x4DfL" - }, - { - "name": "predict", - "trans": [ - "v. 预知, 预言, 预报" - ], - "id": "5hDm4j" - }, - { - "name": "anticipate", - "trans": [ - "vt. 预期,期望;占先,抢先;提前使用" - ], - "id": "J7jNHS" - }, - { - "name": "bypass", - "trans": [ - "vt. 绕开, 忽视 n. 支路,旁道" - ], - "id": "m2f2t4" - }, - { - "name": "nature", - "trans": [ - "n.自然,自然界,自然状态; 本性,天性,性质; 质; 性格; 性; 本质" - ], - "id": "D4-cIe" - }, - { - "name": "natural", - "trans": [ - "adj.自然的; 物质的; 天生的; 不做作的 n.自然的事情; (生来的)白痴; [乐](风琴等的)白键" - ], - "id": "lKoWW6" - }, - { - "name": "grant", - "trans": [ - "vt.承认; 同意; 准许; 授予 n.拨款; 补助金; 授给物(如财产、授地、专有权、补助、拨款等) vi.同意" - ], - "id": "2aR3fW" - }, - { - "name": "logarithm", - "trans": [ - "n. [数]对数" - ], - "id": "eBkwJZ" - }, - { - "name": "reload", - "trans": [ - "v. 再装入" - ], - "id": "PAAKwq" - }, - { - "name": "occupy", - "trans": [ - "vt. 占领,占,住进" - ], - "id": "_3X5cT" - }, - { - "name": "photograph", - "trans": [ - "n. 相片 vi. 照相,摄影 vt. 给...照相" - ], - "id": "lsutXT" - }, - { - "name": "resolve", - "trans": [ - "n. 决定之事,决心,坚决 vt. 决定,解决,分离,表决 vi. 分离,决定" - ], - "id": "SbI9kt" - }, - { - "name": "unsafe", - "trans": [ - "adj. 不安全的, 不安稳的, 危险的" - ], - "id": "NmIpDI" - }, - { - "name": "separator", - "trans": [ - "n. 分隔符,分离器" - ], - "id": "fUGbqQ" - }, - { - "name": "hierarchical", - "trans": [ - "adj. 按等级划分的" - ], - "id": "n4T-zo" - }, - { - "name": "assortment", - "trans": [ - "n. 分类, 配合, 各色俱备之物" - ], - "id": "iNW5Ls" - }, - { - "name": "growing", - "trans": [ - "adj. 发展的, 扩大的" - ], - "id": "4bAP21" - }, - { - "name": "discussion", - "trans": [ - "n. 讨论 v. 讨论,商议" - ], - "id": "crJRFN" - }, - { - "name": "alphabet", - "trans": [ - "n. 字母表,基本原理(元素),符号系统" - ], - "id": "WK7omq" - }, - { - "name": "scattered", - "trans": [ - "adj. 分散的,稀疏的" - ], - "id": "AjvhlK" - }, - { - "name": "eventually", - "trans": [ - "adv. 终于, 最后" - ], - "id": "Q6WCtE" - }, - { - "name": "finally", - "trans": [ - "adv. 最后, 最终" - ], - "id": "xHPFFg" - }, - { - "name": "subgroup", - "trans": [ - "n. 隶属组织" - ], - "id": "mrIM7J" - }, - { - "name": "superimpose", - "trans": [ - "vt. 重叠(安装,添加)" - ], - "id": "FVF_BT" - }, - { - "name": "reorganization", - "trans": [ - "n. 改组, 再编制, 改造" - ], - "id": "NJOrpp" - }, - { - "name": "rewrite", - "trans": [ - "n. 重写, 改写 vt. 改写, 重写 vi. 修改" - ], - "id": "iX-B4y" - }, - { - "name": "university", - "trans": [ - "n. 大学" - ], - "id": "Mn-jhn" - }, - { - "name": "deter", - "trans": [ - "v. 制止,使...断念" - ], - "id": "X6njse" - }, - { - "name": "pool", - "trans": [ - "n. 水塘(池),游泳池,撞球 vi. 形成池塘 vt. 集中,积累" - ], - "id": "5AY7Ti" - }, - { - "name": "moment", - "trans": [ - "n. 片刻,瞬间,准确时刻,非常重要的时机,力矩" - ], - "id": "sLcDJs" - }, - { - "name": "shut", - "trans": [ - "adj. 关闭的,合拢的,围绕的 vt. 关上,防止进入,禁闭,合上,停止或中止 vi. 关闭,停止或中止 n. 关闭" - ], - "id": "Ey5ETy" - }, - { - "name": "closed", - "trans": [ - "adj. 关闭的, 封闭的, 停业的 动词close的过去式和过去分词" - ], - "id": "e_bnFw" - }, - { - "name": "respond", - "trans": [ - "vi. &vt. 回复,反应,响应,应答 n. 拱柱" - ], - "id": "kWs-e5" - }, - { - "name": "repeating", - "trans": [ - "adj. 重复的, 反复的 动词repeat的现在分词形式" - ], - "id": "VIjR2u" - }, - { - "name": "repetitive", - "trans": [ - "adj. 重复的" - ], - "id": "30sMFT" - }, - { - "name": "reenter", - "trans": [ - "v. 重新进入" - ], - "id": "EPd0Sp" - }, - { - "name": "rearrange", - "trans": [ - "重新整理, 重新排序" - ], - "id": "IdCeO5" - }, - { - "name": "rectangular", - "trans": [ - "adj. 矩形的;成直角的" - ], - "id": "o0HHfN" - }, - { - "name": "tag", - "trans": [ - "n. 标签,附属物,名称,谚语 vt. 附以签条,尾随,添饰,指责,连接 vi. 紧随,尾随" - ], - "id": "_aKrDb" - }, - { - "name": "suppose", - "trans": [ - "vt.假定; 猜想,推测; 认为; 让(用于祈祷语气) vi.想象,猜想" - ], - "id": "Ns2l3p" - }, - { - "name": "supposed", - "trans": [ - "adj. 想象上的,假定的" - ], - "id": "ISx8gt" - }, - { - "name": "operator", - "trans": [ - "n. 操作员,管理者,技工,报务员" - ], - "id": "56OheV" - }, - { - "name": "masking", - "trans": [ - "n. 遮蔽 动词mask的现在分词形式" - ], - "id": "B7P_n6" - }, - { - "name": "price", - "trans": [ - "n. 价格,代价,价值 vt. 定格,标价,比较价格" - ], - "id": "rWe5LB" - }, - { - "name": "demonstrate", - "trans": [ - "vt. 示范, 演示, 证明 vi. 示威" - ], - "id": "T7SPf_" - }, - { - "name": "importance", - "trans": [ - "n. 重要,重要性" - ], - "id": "TVEdaF" - }, - { - "name": "pipe", - "trans": [ - "n. 管,烟斗,笛 vt. 以管输送,装管道,吹奏,尖声说,拷边 vi. 吹奏管乐,尖叫" - ], - "id": "iYYQD4" - }, - { - "name": "overall", - "trans": [ - "adj. 全部的, 全体的, 一切在内的 adv. 总的来说, 全部地 n. 防护服,罩衫" - ], - "id": "1PaCEj" - }, - { - "name": "turnkey", - "trans": [ - "n. 监狱的看守, 狱吏 adj. 即可使用的" - ], - "id": "5dhxS0" - }, - { - "name": "restricted", - "trans": [ - "vt. 限制,约束 adj. 受限制的,有限的,保密的" - ], - "id": "S1OSTu" - }, - { - "name": "suspension", - "trans": [ - "n. 悬挂,悬浮液,暂缓,未决,中止" - ], - "id": "cWGt0-" - }, - { - "name": "seamless", - "trans": [ - "无缝的" - ], - "id": "QozxSV" - }, - { - "name": "clipper", - "trans": [ - "n. 剪削者,大剪刀,理发剪 n. (十九世纪的)快速帆船 n. 快马" - ], - "id": "3NrFz8" - }, - { - "name": "unsigned", - "trans": [ - "adj. 未签署的,无符号的" - ], - "id": "tV0m40" - }, - { - "name": "unformatted", - "trans": [ - "adj. 无格式的" - ], - "id": "pKHwVG" - }, - { - "name": "infinite", - "trans": [ - "adj. 无限的,无穷的 n. 无限" - ], - "id": "X83WFu" - }, - { - "name": "useless", - "trans": [ - "adj. 无用的,无效的" - ], - "id": "ny4p8_" - }, - { - "name": "mountain", - "trans": [ - "n. 山,山脉,大量" - ], - "id": "odLvoa" - }, - { - "name": "redundant", - "trans": [ - "adj. 多余的,失业的" - ], - "id": "Vsr5WO" - }, - { - "name": "dependent", - "trans": [ - "adj. 附属的,依赖的,悬垂的 n. 受经济援助者" - ], - "id": "KXFH7b" - }, - { - "name": "background", - "trans": [ - "n. 背景,幕后,配音 vt. 提供背景" - ], - "id": "j9f4kM" - }, - { - "name": "product", - "trans": [ - "n. 产品,成果,乘积" - ], - "id": "YyvGig" - }, - { - "name": "assignment", - "trans": [ - "n. 分配,功课,任务,被指定的(课外)作业;(分派的)任务, 委派" - ], - "id": "L_2Atv" - }, - { - "name": "bad", - "trans": [ - "adj. 坏的,令人不满意的,有害的,有病的 n. 坏人,坏事" - ], - "id": "xfk9Yc" - }, - { - "name": "declare", - "trans": [ - "vt. &vi. 宣布,声明,申报" - ], - "id": "ZOhJay" - }, - { - "name": "adjust", - "trans": [ - "vt. 调整, 使...适于 vi. 适应" - ], - "id": "CEOHKH" - }, - { - "name": "recognize", - "trans": [ - "vt. 认出,认可,承认,意识到,表示感激" - ], - "id": "ZUzUpu" - }, - { - "name": "route", - "trans": [ - "n. 航线,路线,途径 vt. 按路线发送, 改变路线" - ], - "id": "IPrQTL" - }, - { - "name": "respectively", - "trans": [ - "adv. 各自地, 分别地" - ], - "id": "GNiAcx" - }, - { - "name": "unsuccessful", - "trans": [ - "adj. 不成功的, 失败的" - ], - "id": "7rPDfz" - }, - { - "name": "received", - "trans": [ - "adj. 被一般承认的,公认的" - ], - "id": "Dz_KQN" - }, - { - "name": "navigate", - "trans": [ - "vi. 航行,驾驶,操纵 vt. 航行,驾驶" - ], - "id": "SH5WvC" - }, - { - "name": "considered", - "trans": [ - "adj.考虑过的,被尊重的" - ], - "id": "T5LN82" - }, - { - "name": "due", - "trans": [ - "adj.由于; 适当的; 预定; 到期 n.应有的权利; 应得到的东西; 应缴款 adv.正向; 正对着" - ], - "id": "bJCNdb" - }, - { - "name": "recently", - "trans": [ - "adv. 最近" - ], - "id": "aQh_wD" - }, - { - "name": "room", - "trans": [ - "房间, 空间" - ], - "id": "6p4HmW" - }, - { - "name": "descend", - "trans": [ - "vt. &vi. 降,传,降临" - ], - "id": "H3ir23" - }, - { - "name": "contiguous", - "trans": [ - "adj. 邻近的,接触的,连续的" - ], - "id": "wSv8ms" - }, - { - "name": "consistent", - "trans": [ - "adj. 始终如一的, 一致的, 坚持的" - ], - "id": "EliCh2" - }, - { - "name": "multiprocessing", - "trans": [ - "n. 多重处理, 多处理技术" - ], - "id": "gONcm-" - }, - { - "name": "architecture", - "trans": [ - "n. 建筑学, 建筑业, 建筑物, 结构 [总称]建筑物, 建筑风格" - ], - "id": "LtoHH4" - }, - { - "name": "structural", - "trans": [ - "adj. 结构的, 构造的,建筑的,建筑用的" - ], - "id": "GhKCK6" - }, - { - "name": "outcome", - "trans": [ - "n. 结果" - ], - "id": "l0o1nu" - }, - { - "name": "association", - "trans": [ - "n. 联合,结合,交往,协会,社团,联想" - ], - "id": "cnFAha" - }, - { - "name": "opinion", - "trans": [ - "n. 看法,意见 v. 判断,意见,主张" - ], - "id": "gupjqx" - }, - { - "name": "interpret", - "trans": [ - "v. 解释, 演出, 翻译 [计算机] 解释" - ], - "id": "iwJJj7" - }, - { - "name": "explanatory", - "trans": [ - "adj. 说明的, 解释的" - ], - "id": "xiynA4" - }, - { - "name": "assemble", - "trans": [ - "vt. 聚集,集合,装配 vi. 集合, 聚集" - ], - "id": "sZRE9Z" - }, - { - "name": "assembler", - "trans": [ - "n. 装配工 n. [计]汇编程序" - ], - "id": "Ny6PCF" - }, - { - "name": "cad", - "trans": [ - "n. 卑鄙的男人,下流人 abbr. (=computer-aided design)计算机辅助设计" - ], - "id": "NGdHp2" - }, - { - "name": "arithmetic", - "trans": [ - "n. 算术" - ], - "id": "qrOfe5" - }, - { - "name": "representative", - "trans": [ - "adj. 代表性的, 代议制的, 典型的 n. 代表, 众议员, 典型" - ], - "id": "Bksuhi" - }, - { - "name": "typical", - "trans": [ - "adj. 典型的, 有代表性的" - ], - "id": "fP0lOZ" - }, - { - "name": "sufficient", - "trans": [ - "adj. 足够的, 充分的" - ], - "id": "c38qlf" - }, - { - "name": "blast", - "trans": [ - "n. 爆破,冲击波,气流,一阵,汽笛声 vi. 爆破,突然发出声音 vt. 喷射,炸掉" - ], - "id": "7lrKuu" - }, - { - "name": "clean", - "trans": [ - "adj. 干净的, 正当的, 纯洁的, 完全的, 精准的, 空的 adv. 完全地 n. 清洁 vt. &vi. 打扫,清扫" - ], - "id": "ZOmC2d" - }, - { - "name": "caret", - "trans": [ - "n. 脱字符号, ( 符号:^ 文章中插字使用)" - ], - "id": "nXQ2KJ" - }, - { - "name": "socket", - "trans": [ - "n. 插座,插口, 穴孔 vt. 装上或插入插座" - ], - "id": "r0afLA" - }, - { - "name": "stated", - "trans": [ - "adj. 决定了的, 一定的, 定期的 v. 陈述, 说明 vbl. 陈述, 说明" - ], - "id": "xhIgSh" - }, - { - "name": "protocol", - "trans": [ - "n. 草案, 协议,礼仪 vt 拟定议定书" - ], - "id": "fytfa0" - }, - { - "name": "presence", - "trans": [ - "n. 出席,在场者,举止" - ], - "id": "w0FVM_" - }, - { - "name": "telephone", - "trans": [ - "n.电话; 电话机; (电话机的)话筒; 受话器 vt.& vi.以电话传送(消息),给(某人)打电话; 用电话与(某人)交谈" - ], - "id": "uAzbgX" - }, - { - "name": "social", - "trans": [ - "adj. 社会的,群居的,社团的" - ], - "id": "5Fh0iA" - }, - { - "name": "equipment", - "trans": [ - "n. 设备,装备" - ], - "id": "lfh9P8" - }, - { - "name": "lending", - "trans": [ - "n. 借贷, 借贷物 动词lend的现在分词形式" - ], - "id": "IlScNS" - }, - { - "name": "book", - "trans": [ - "n. 书,本子 vt. 登记,预订 vi. 通过...预订" - ], - "id": "vIrcBH" - }, - { - "name": "situation", - "trans": [ - "n. 位置, 形势, 局面, 处境, 状况, 职位" - ], - "id": "jrs2KJ" - }, - { - "name": "desk", - "trans": [ - "n. 书桌" - ], - "id": "i9q-NC" - }, - { - "name": "please", - "trans": [ - "int. 请 vt. 取悦,请,合心意 vi. 取悦,愿意" - ], - "id": "dKqqpU" - }, - { - "name": "mixture", - "trans": [ - "n. 混合, 混合物" - ], - "id": "9RcjiQ" - }, - { - "name": "representation", - "trans": [ - "n. 表示法,表现,陈述,答辩" - ], - "id": "C2vy-3" - }, - { - "name": "esoteric", - "trans": [ - "adj. 秘传的,神秘的,难懂的" - ], - "id": "u7BaR-" - }, - { - "name": "depth", - "trans": [ - "n. 深度,强度,诚挚" - ], - "id": "1AtLhv" - }, - { - "name": "final", - "trans": [ - "adj. 最后的 决定了的 n. 决赛,期末考试" - ], - "id": "c3lF-w" - }, - { - "name": "physically", - "trans": [ - "adv. 身体上地" - ], - "id": "fhSc7z" - }, - { - "name": "aid", - "trans": [ - "n. 帮助,救护,辅助物 vt. &vi. 援助,帮助,救护 abbr.=Agency for International Development 国际开发署[美]" - ], - "id": "3zzcRU" - }, - { - "name": "successive", - "trans": [ - "adj. 接连的, 连续的, 接二连三的" - ], - "id": "10tXR_" - }, - { - "name": "succession", - "trans": [ - "n. 连续, 继承权, 继位" - ], - "id": "yQoOjP" - }, - { - "name": "unpack", - "trans": [ - "vt. 打开取出, 卸下" - ], - "id": "dbdrFD" - }, - { - "name": "chunk", - "trans": [ - "n. 厚块(片), 相当大的量,矮胖的人或物 vt. (高尔夫球)没击中 vi. 发出猛冲的声音" - ], - "id": "XDXvHA" - }, - { - "name": "alignment", - "trans": [ - "n. 队列,成直线;校准;结盟" - ], - "id": "5lfi5z" - }, - { - "name": "typewriter", - "trans": [ - "n. n. 打字机" - ], - "id": "C3PjKd" - }, - { - "name": "big", - "trans": [ - "adj. 大的,重要的 adv. 以郑重的方式,大数量 n. 杰出的组织和个人" - ], - "id": "WqDMRD" - }, - { - "name": "tone", - "trans": [ - "n. 音调,语气,品质,调子,色调 vt. 使更健壮,装腔作势地说, 定调, 调色 vi. 调和(颜色), 呈现悦目色调" - ], - "id": "ralNiK" - }, - { - "name": "sensitive", - "trans": [ - "adj. 敏感的,灵敏的,易受伤害的,感光的,善解人意的 n. 敏感的人" - ], - "id": "eAplha" - }, - { - "name": "reduction", - "trans": [ - "n. 减少,缩小, (化学)还原反应, (数学)约分" - ], - "id": "GTaty4" - }, - { - "name": "indentation", - "trans": [ - "n. 刻痕,印压, 缩进, (海岸线等)凹进处" - ], - "id": "ZR8oiw" - }, - { - "name": "terminology", - "trans": [ - "n. 术语,术语学" - ], - "id": "9O5Gr0" - }, - { - "name": "ascending", - "trans": [ - "adj. 上升的" - ], - "id": "9XfLLz" - }, - { - "name": "augment", - "trans": [ - "vt. 增加,补充 vi.扩大 n. 增加,补充物" - ], - "id": "2F-NY5" - }, - { - "name": "increment", - "trans": [ - "n. 增加(增加物, 增量, 余差)" - ], - "id": "2g5Iig" - }, - { - "name": "gain", - "trans": [ - "n. 增益, 获得, 利润 vt. 得到, 增进, 获利 vi. 增加, 得到, (钟, 表等)走得快" - ], - "id": "eM_4WT" - }, - { - "name": "stream", - "trans": [ - "n. (人,车,气)流,水流,组 vt. 流出,飘动 vi. 流动,飘动,接踵而来" - ], - "id": "4zzlDp" - }, - { - "name": "obsolete", - "trans": [ - "adj. 已废弃的, 过时的" - ], - "id": "KUsI0o" - }, - { - "name": "accommodate", - "trans": [ - "vi. 使自己适应 vt. 使一致,和解;提供方便;容纳;顾及" - ], - "id": "MgcQ1A" - }, - { - "name": "motif", - "trans": [ - "n. 主题, 意念, 动机" - ], - "id": "qg7QcH" - }, - { - "name": "subject", - "trans": [ - "n. 科目, 主题; 缘由 n. (君主国)国民; 实验对象 adj. 服从的, 易患的 vt. 使隶属, 使服从; 使遭遇" - ], - "id": "S4RlcQ" - }, - { - "name": "job", - "trans": [ - "n. 工作,职责,任务 vt. 投机买卖,营私舞弊,不公正地判罚,分包任务 vi. 工作,假公济私,做分销商或批发商 adj. 与工作有关的" - ], - "id": "Fv7EOP" - }, - { - "name": "differentiate", - "trans": [ - "vt. 识别, 使差异, 求导数, 区分, 区别对待 vi. 区别,变异" - ], - "id": "ALonVF" - }, - { - "name": "distinction", - "trans": [ - "n. 区别; 卓越; 殊荣" - ], - "id": "hX3aZk" - }, - { - "name": "distinguish", - "trans": [ - "vt. 区别,辨认,特别关注 vi. 区别" - ], - "id": "QbaXV7" - }, - { - "name": "locking", - "trans": [ - "n. 锁定 动词lock的现在分词形式" - ], - "id": "jtda5O" - }, - { - "name": "progress", - "trans": [ - "n. 进步, 发展, 前进 vi. 促进,进步, 进行" - ], - "id": "eYUOFq" - }, - { - "name": "fundamental", - "trans": [ - "adj. 基本的,根本的,重要的 n. 基本原理,基础" - ], - "id": "XDaEP4" - }, - { - "name": "basis", - "trans": [ - "n. 基础,根据,主要成分" - ], - "id": "plTL76" - }, - { - "name": "underlying", - "trans": [ - "adj. 在下面的, 基本的, 隐含的" - ], - "id": "r3fkAM" - }, - { - "name": "sound", - "trans": [ - "vt. 听(诊);测量,测…深;使发声;试探;宣告 n. 声音,语音;噪音;海峡;吵闹;听力范围;[医] 探条 adj. 健全的,健康的;合理的;可靠的;有效彻底的 adv. 彻底地,充分地 vi. 听起来;发出声音;回响;测深" - ], - "id": "EeqFOs" - }, - { - "name": "vital", - "trans": [ - "adj. 至关重要的, 生死攸关的, 有活力的, 充满生机的" - ], - "id": "_Tnb1H" - }, - { - "name": "national", - "trans": [ - "adj. 国家的,民族的 n. 国民" - ], - "id": "jY61vb" - }, - { - "name": "sale", - "trans": [ - "n. 销售(量),削价出售" - ], - "id": "onaSRa" - }, - { - "name": "agree", - "trans": [ - "vt. 同意,赞成,承认 vi. 同意,一致,符合" - ], - "id": "yAphLN" - }, - { - "name": "iterative", - "trans": [ - "adj. 迭代的, 重复的" - ], - "id": "xe0kTh" - }, - { - "name": "inclusive", - "trans": [ - "adj. 包含...在内的, 包罗广泛的, 包括端点的 [计算机] 包括的" - ], - "id": "s6rBxL" - }, - { - "name": "charm", - "trans": [ - "n. 魔力, 魅力, 护身符, 小饰物 vt. 吸引, 使...迷醉, 对...施以魔法" - ], - "id": "7363Fm" - }, - { - "name": "hit", - "trans": [ - "n. 打(击),冲撞,讽刺,成功.一次毒品的剂量,点击量 vt. 打(击),碰撞,偶然发现,要求,符合 vi. 打(击),袭击,达到" - ], - "id": "0CqPPI" - }, - { - "name": "course", - "trans": [ - "n. 课程, 讲座, 过程, 路线, 一道(菜)" - ], - "id": "094vFP" - }, - { - "name": "numerical", - "trans": [ - "adj. 数字的, 用数字表示的" - ], - "id": "cxatAX" - }, - { - "name": "digital", - "trans": [ - "adj. 手指的,数字的,数码的,电子的" - ], - "id": "hizabC" - }, - { - "name": "combo", - "trans": [ - "套餐,结合物" - ], - "id": "CY8KA5" - }, - { - "name": "cord", - "trans": [ - "n. 绳索,束缚 vt. 用绳索绑" - ], - "id": "Xzbj0I" - }, - { - "name": "organise", - "trans": [ - "vt.组织,创办" - ], - "id": "mnuImE" - }, - { - "name": "permit", - "trans": [ - "n. 许可证,执照 vt. &vi. 允许,许可" - ], - "id": "DqJXc9" - }, - { - "name": "still", - "trans": [ - "adj. 静止的, 不动的, 静寂的 adv. 仍然,更,静止地 conj. 然而,但是 vi. 变沉默 vt. 使冷静, 抓住, 使停止, 使放松 n. 沉默, 定格照, 酒厂" - ], - "id": "FXZ9AH" - }, - { - "name": "explicit", - "trans": [ - "adj. 明确的,详述的,明晰的,外在的" - ], - "id": "mtTfle" - }, - { - "name": "elapse", - "trans": [ - "v. 逝去, 过去" - ], - "id": "sghhqW" - }, - { - "name": "accidental", - "trans": [ - "adj. 意外的,偶然的,附属的 n. 偶然,不重要的东西,变调的临时符号" - ], - "id": "wZR0H1" - }, - { - "name": "sequential", - "trans": [ - "adj. 连续的(序贯的)" - ], - "id": "SvnSGx" - }, - { - "name": "indirect", - "trans": [ - "adj. 间接的, 迂回的,次要的,不坦率的,欺骗的" - ], - "id": "7HNDxm" - }, - { - "name": "reappear", - "trans": [ - "vi. 再出现" - ], - "id": "uVDdcF" - }, - { - "name": "circumstance", - "trans": [ - "n. 环境,(复数)境况,事件,详情" - ], - "id": "EFi7KA" - }, - { - "name": "mix", - "trans": [ - "n. 混合(物),融合 vt. &vi. 混合,掺入,合成,交往,联系 [计算机] 混合" - ], - "id": "z17ZTT" - }, - { - "name": "suppress", - "trans": [ - "vt. 镇压,使...止住,禁止" - ], - "id": "SFtCuC" - }, - { - "name": "E", - "trans": [ - "n.字母E" - ], - "id": "MNFYnv" - }, - { - "name": "recognition", - "trans": [ - "n. 认出,承认, 感知,知识" - ], - "id": "2Q3C80" - }, - { - "name": "arm", - "trans": [ - "n. 手臂, 港湾, 狭长地带, 扶手, 袖子, 枪 vt. 装备, 准备(炸弹) vi. 武装自己" - ], - "id": "QBf92Z" - }, - { - "name": "alphanumeric", - "trans": [ - "adj. 字母数字的" - ], - "id": "0cgJdb" - }, - { - "name": "analog", - "trans": [ - "n. (=analogue)类似(模拟量) adj. 类比的, 模拟的" - ], - "id": "m9SUrB" - }, - { - "name": "automation", - "trans": [ - "n. 自动化" - ], - "id": "LtfDm4" - }, - { - "name": "band", - "trans": [ - "n. 带;箍,队,乐队 vt. &vi. 联合,结合" - ], - "id": "-cG34D" - }, - { - "name": "batch", - "trans": [ - "n. 一次所烘的面包,一次所制之量,一组, 批, 分批 vi. 分批处理" - ], - "id": "QIJbjR" - }, - { - "name": "brush", - "trans": [ - "n. 刷子,画笔,轻擦,小冲突, 灌木丛 vt. 用刷子清洗,画,拭去,打发 vi. 轻擦,拂拭" - ], - "id": "oTmDmP" - }, - { - "name": "calculator", - "trans": [ - "n. 计算器" - ], - "id": "3Q81j1" - }, - { - "name": "punch", - "trans": [ - "n. 打洞器,钻孔机,殴打 n. 酒、水、糖等制成的鸡尾酒 vt. 以拳重击,开洞,剪票,按(键)" - ], - "id": "5LYBQY" - }, - { - "name": "reader", - "trans": [ - "n. 读者,读物, 读本" - ], - "id": "jVPfYH" - }, - { - "name": "cell", - "trans": [ - "n. 细胞, 电池, 小组, 小房间, 单人牢房, (蜂房的)巢室, 手机" - ], - "id": "DkSLJu" - }, - { - "name": "channel", - "trans": [ - "n. 通道,频道,海峡,方法 vt. 引导,开导,形成河道,输送" - ], - "id": "AzVn-b" - }, - { - "name": "circuit", - "trans": [ - "n. 电路,一圈,巡回 vt. &vi. 巡回" - ], - "id": "RhIKZN" - }, - { - "name": "to", - "trans": [ - "prep. (表示方向)到,向;(表示间接关系)给;离,对于,为了 adv. (表示方向)去,(门)关上" - ], - "id": "FA4sr4" - }, - { - "name": "coder", - "trans": [ - "n. 编码器" - ], - "id": "VEIfV2" - }, - { - "name": "unit", - "trans": [ - "n. 单位, 单元" - ], - "id": "Fkgotg" - }, - { - "name": "core", - "trans": [ - "n.中心,核心,精髓; 果心,果核; [地质学]地核; [计] 磁心 vt.去(果)核,挖去…的果心; 提取岩芯(样品)" - ], - "id": "ElKAwV" - }, - { - "name": "cybernetics", - "trans": [ - "n. 控制论" - ], - "id": "9621Vl" - }, - { - "name": "disc", - "trans": [ - "n. 圆盘,[电子] 唱片(等于disk) vt. 灌唱片" - ], - "id": "W1kaC2" - }, - { - "name": "drum", - "trans": [ - "n. 鼓, 鼓声, 鼓状物, 冰丘 vi. 击鼓, 作鼓声, 引起兴趣 vt. 召集入伍, 逐出, (经过努力)推动..., 连续击打" - ], - "id": "MoBOJQ" - }, - { - "name": "electronics", - "trans": [ - "n. 电子学,电子器件" - ], - "id": "TUQJA5" - }, - { - "name": "emitter", - "trans": [ - "n.发射器" - ], - "id": "6Abxzo" - }, - { - "name": "encode", - "trans": [ - "vt. 编码, 译码" - ], - "id": "sR0w40" - }, - { - "name": "feedback", - "trans": [ - "n. 反馈,成果" - ], - "id": "XPyQst" - }, - { - "name": "flow", - "trans": [ - "vi.流; 垂; 流出; (谈话、文体等)流畅 n.流动; 滔滔不绝; 涨潮; 连贯 vt.使泛滥; 淹没; 排出" - ], - "id": "bhYvsy" - }, - { - "name": "frame", - "trans": [ - "n. 框,结构,骨架 v. 构成,把...框起来,陷害 adj. 木结构的" - ], - "id": "TeXav-" - }, - { - "name": "identifier", - "trans": [ - "n. 标识符" - ], - "id": "uEj1e5" - }, - { - "name": "inquiry", - "trans": [ - "n. 打听, 询问, 调查, 查问 =enquiry(英)" - ], - "id": "FOM6aJ" - }, - { - "name": "integrated", - "trans": [ - "adj. 整合的,综合的 vt.&vi. 使整合(integrate的过去式及过去分词)" - ], - "id": "RiJShZ" - }, - { - "name": "latency", - "trans": [ - "n. 潜伏, 潜在" - ], - "id": "T58eSc" - }, - { - "name": "linkage", - "trans": [ - "n. 连合, 连锁, 结合" - ], - "id": "fLosrH" - }, - { - "name": "logger", - "trans": [ - "n. 伐木工, 记录器, 注册器" - ], - "id": "iWVYGh" - }, - { - "name": "magnetic", - "trans": [ - "adj. 有磁性的,有吸引力的,催眠术的" - ], - "id": "h2FheD" - }, - { - "name": "matrix", - "trans": [ - "n. 母体,子宫 细胞 脉石,字母 n.矩阵" - ], - "id": "OQcwz8" - }, - { - "name": "microcomputer", - "trans": [ - "n. 微电脑 [计算机] 微机计算机" - ], - "id": "YaSjjv" - }, - { - "name": "nanosecond", - "trans": [ - "n. 毫微秒,极短的时间" - ], - "id": "lok5z0" - }, - { - "name": "octet", - "trans": [ - "n. [音] 八重唱, 八重奏 n. 八位位组" - ], - "id": "GSlAYj" - }, - { - "name": "optical", - "trans": [ - "adj. 眼睛的, 视觉的, 光学的" - ], - "id": "Ki9oTC" - }, - { - "name": "panel", - "trans": [ - "n.镶板; 面; (门、墙等上面的)嵌板; 控制板 vt.选定(陪审团); 把…分格; 在…上置鞍垫; 把…镶入框架内" - ], - "id": "G7yeXi" - }, - { - "name": "perforator", - "trans": [ - "n.穿孔器,穿孔员" - ], - "id": "h8uOE_" - }, - { - "name": "peripheral", - "trans": [ - "adj. 不重要的,外围的 n. 外围设备" - ], - "id": "sAJtm0" - }, - { - "name": "pulse", - "trans": [ - "n. 脉冲,脉波,脉搏 vt. &vi. 跳动,脉跳" - ], - "id": "pBxWUo" - }, - { - "name": "redundancy", - "trans": [ - "n. 冗余,备份,多余信息" - ], - "id": "va5Iz7" - }, - { - "name": "selector", - "trans": [ - "n. 挑选者,选择器" - ], - "id": "NfWLto" - }, - { - "name": "sentinel", - "trans": [ - "n. 哨兵(标记,传送) vt 放哨(守卫)" - ], - "id": "roumtX" - }, - { - "name": "simulation", - "trans": [ - "n. 模拟,仿真,赝品" - ], - "id": "K3B6F9" - }, - { - "name": "simulator", - "trans": [ - "模拟程序" - ], - "id": "HV0VWH" - }, - { - "name": "sorter", - "trans": [ - "n.从事分类的人,把东西分类拣选的人" - ], - "id": "JfQlB5" - }, - { - "name": "symbolic", - "trans": [ - "n. 代号 adj. 象征的, 符号的" - ], - "id": "cwlxJG" - }, - { - "name": "tabulator", - "trans": [ - "n. 制表者, 制表机, 跳格键" - ], - "id": "Kz7vUm" - }, - { - "name": "teleprinter", - "trans": [ - "n. 电传打印机" - ], - "id": "dq8_23" - }, - { - "name": "timer", - "trans": [ - "n. 计时员,记时器, 跑表" - ], - "id": "JJP-kc" - }, - { - "name": "timing", - "trans": [ - "n. 时间的掌握(安排, 配合)" - ], - "id": "ypsCgc" - }, - { - "name": "transducer", - "trans": [ - "n. 转换器, 传感器" - ], - "id": "7Ji2nT" - }, - { - "name": "translator", - "trans": [ - "n. 翻译者" - ], - "id": "ReIhqc" - }, - { - "name": "Winchester", - "trans": [ - "n. 温彻斯特(英格兰南部城市)" - ], - "id": "dJ9GR1" - }, - { - "name": "multimedia", - "trans": [ - "adj. 多媒体的 n. 多媒体" - ], - "id": "HtkXnM" - }, - { - "name": "pentium", - "trans": [ - "Intel公司生产的CPU芯片,中文译名为\"奔腾\"" - ], - "id": "uyOow-" - }, - { - "name": "kilo", - "trans": [ - "pref. 表示“千” abbr. 千克,公斤(=kilogram/kilogramme)" - ], - "id": "wGBGMf" - }, - { - "name": "giga", - "trans": [ - "pref. 千兆" - ], - "id": "00Oneg" - }, - { - "name": "bracketed", - "trans": [ - "方括号;托架;括号" - ], - "id": "Q_jRC6" - }, - { - "name": "debugger", - "trans": [ - "调试器" - ], - "id": "rBneao" - } - ], - "words": [ - { - "name": "command", - "trans": [ - "n.命令,指挥; 司令部,指挥部; [计算机]指令; 控制力 vt.指挥,控制,命令; 命令; 应得,值得 vi.给出命令; 命令,指令 adj.指挥的,根据命令(或要求)而作的" - ], - "id": "_xC0Lc", - "checked": false - }, - { - "name": "use", - "trans": [ - "n. 运用,用法,使用权,适用 vt. 使用,利用,对待 vi. 吸毒" - ], - "id": "6ZScs6", - "checked": false - }, - { - "name": "program", - "trans": [ - "n. 节目(单),程序,计划 vt. 规划,拟定计划,制作节目" - ], - "id": "P1t4vf", - "checked": false - }, - { - "name": "line", - "trans": [ - "n. 行,线,航线,场界,皱纹,家族 vt. &vi. 用做衬里,排成一行,顺...排列 vi. 排成一行,顺...排列,划线于" - ], - "id": "SjMtee", - "checked": false - }, - { - "name": "if", - "trans": [ - "conj. 如果,是否,即使 n. 条件,设想" - ], - "id": "rdjNgj", - "checked": false - }, - { - "name": "display", - "trans": [ - "n. 显示,陈列,炫耀 vt. 显示,表现,夸示" - ], - "id": "iF7Xoe", - "checked": false - }, - { - "name": "set", - "trans": [ - "vt.放置,安置; 使处于某种状况; 设置; 摆放餐具 vi.落山; 出发; 凝结 n.一套,一副; 集合; 布景; 电视机 adj.固定的; 位于…的; 顽固的; 安排好的" - ], - "id": "hCBECj", - "checked": false - }, - { - "name": "key", - "trans": [ - "adj. 主要的,关键的 n. 钥匙,关键,答案,按键,音调 vt. 上锁,调节,提供解答,键入 vi. 使用钥匙" - ], - "id": "ViedIp", - "checked": false - }, - { - "name": "list", - "trans": [ - "n.清单,目录; 倾斜; 布边,布头; 狭条 vt.列出,列入; 把…编列成表; 记入名单内 vi.列于表上" - ], - "id": "64jLzW", - "checked": false - }, - { - "name": "by", - "trans": [ - "prep. 被, 经由, 在...之前, 根据 adv. 靠近, 经过, 放在一旁地 adj. 在旁边的, 附带的 n. 次要的事件" - ], - "id": "CZFA8A", - "checked": false - }, - { - "name": "press", - "trans": [ - "vt.压,按; 逼迫; 紧抱 vi.压; 逼迫; 重压 n.强迫征兵; 新闻报道,出版物; 压榨; 印刷机(厂)" - ], - "id": "TnOWwr", - "checked": false - }, - { - "name": "with", - "trans": [ - "prep. 和...一起,用, 随着, 包括" - ], - "id": "3LJY5_", - "checked": false - }, - { - "name": "format", - "trans": [ - "n. 设计,版式 n.[计算机]格式,DOS命令 : 格式化(磁盘),用于空盘或使用过的磁盘建立新空盘来存储数据 v. vt.使格式化,设计,安排" - ], - "id": "FVF5Eq", - "checked": false - }, - { - "name": "change", - "trans": [ - "n. 变化, 零钱 v. 改变" - ], - "id": "AUn5Xf", - "checked": false - }, - { - "name": "cursor", - "trans": [ - "光标" - ], - "id": "QlOWnW", - "checked": false - }, - { - "name": "directory", - "trans": [ - "n. 目录,工商名录,指南 [计算机] 目录 adj. 给予指导的" - ], - "id": "NfHmJF", - "checked": false - }, - { - "name": "from", - "trans": [ - "prep. 从,从...起" - ], - "id": "jJT8DT", - "checked": false - }, - { - "name": "menu", - "trans": [ - "n. 菜单" - ], - "id": "JTOpVm", - "checked": false - }, - { - "name": "option", - "trans": [ - "n.选择(的自由); 选项; 选择权; 选择能力 vt.得到或获准进行选择; 调动球员" - ], - "id": "pC_bVI", - "checked": false - }, - { - "name": "character", - "trans": [ - "n. 个性, 品质; 字符; 人物; 名誉; 地位" - ], - "id": "M5JSEa", - "checked": false - }, - { - "name": "current", - "trans": [ - "n. (水、气、电)流, 趋势 adj. 流通的, 现在的, 最近的" - ], - "id": "OVjk7U", - "checked": false - }, - { - "name": "type", - "trans": [ - "n.类型; 铅字; (印刷或打印的)文字; 于…类型的 vt.& vi.打字 vt.[医学]测定(血型); 按类型把…归类; 成为…的典型; [印刷]浇铸(铅字等)" - ], - "id": "0ephAl", - "checked": false - }, - { - "name": "screen", - "trans": [ - "n.屏幕; 银幕; 屏风 vt.筛(煤、矿石等); 拍摄; 放映(电影); 庇护" - ], - "id": "mnr3PV", - "checked": false - }, - { - "name": "specify", - "trans": [ - "vt. 明确说明,叙述,指定,详细说明" - ], - "id": "YQDUVI", - "checked": false - }, - { - "name": "move", - "trans": [ - "vt.& vi.移动,搬动 vi.搬家; 行动; 进展; (机器等)开动 vt.提议; 使感动; 摇动; 变化 n.改变; 迁移" - ], - "id": "AJqchB", - "checked": false - }, - { - "name": "disk", - "trans": [ - "n. 圆盘,唱片,花盘,盘形物,光盘 vt. 用圆盘耙耙地 [计算机] 磁盘" - ], - "id": "cjxuQi", - "checked": false - }, - { - "name": "text", - "trans": [ - "n. 本文, 文件, 正文, 课文 vt. &vi. 发短信" - ], - "id": "s9ZoMs", - "checked": false - }, - { - "name": "drive", - "trans": [ - "v. 开车, 驱使, 驾进力 n. 驾车, 快车道, 推进力, 驱使, 路, 街" - ], - "id": "QuwPd4", - "checked": false - }, - { - "name": "see", - "trans": [ - "vt. 看见,经历,明白,确保,视为,拜访,陪同 vi. 注意,想象,了解,调查 n. 主教教区,主角权限" - ], - "id": "XlUARW", - "checked": false - }, - { - "name": "name", - "trans": [ - "n. 名字, 名称, 姓名 vt. 命名, 称呼, 任命 adj. 有名的, 著名的" - ], - "id": "37EoJv", - "checked": false - }, - { - "name": "record", - "trans": [ - "n. 记录,纪录,唱片 vt. 记录,(将声音等)录下,表明 adj. 关于" - ], - "id": "WT9YhG", - "checked": false - }, - { - "name": "box", - "trans": [ - "n. 盒子,箱,专席,亭子,窘境 vt. 装...入盒中,限制住,调和,改变形状,用拳击... vi.参与拳击" - ], - "id": "I_fg8c", - "checked": false - }, - { - "name": "database", - "trans": [ - "n. 数据库" - ], - "id": "z6UXqf", - "checked": false - }, - { - "name": "help", - "trans": [ - "n. 帮助,援助 vt. &vi. 帮助,改善" - ], - "id": "FCkvNj", - "checked": false - }, - { - "name": "memory", - "trans": [ - "n. 记忆,内存,回忆" - ], - "id": "mRsZLr", - "checked": false - }, - { - "name": "all", - "trans": [ - "adj. 所有的,全部的 adv. 全部,非常,全然,所有 pron. 全部,所有 n. 全部" - ], - "id": "Os_ATX", - "checked": false - }, - { - "name": "on", - "trans": [ - "prep. 在...之上,由…支撑着,在(某一天),使用, 根据 [计算机] 开 adv.穿着,向前(移动),(表示持续性) adj. 表示已连接、处于工作状态或使用中,表示发生,值班 abbr.=Ontario" - ], - "id": "nEHJQV", - "checked": false - }, - { - "name": "copy", - "trans": [ - "n.复制品; 一份; (报刊等的)稿件; 准备排印的书面材料 vt.& vi.复制; 抄写; 容许复制的 vt.模仿; 仿造…的样式或图案; 抄写; 复制" - ], - "id": "ZX97gC", - "checked": false - }, - { - "name": "shell", - "trans": [ - "n. 贝壳,壳,外形 vt. &vi. 去壳,脱落,炮击,拾贝壳 n.[计算机] DOS命令 : 安装备用的COMMAND.COM文件, 并改变环境尺寸" - ], - "id": "F87qTY", - "checked": false - }, - { - "name": "delete", - "trans": [ - "vt. 删除" - ], - "id": "xLHsRg", - "checked": false - }, - { - "name": "enter", - "trans": [ - "vi. 进入,参加,开始,上台,进入角色 vt. 进入,报名,开始,加入,报价,提出 [计算机] 送入" - ], - "id": "nt0nEu", - "checked": false - }, - { - "name": "margin", - "trans": [ - "n. 差额,利润,页边空白,边缘 vt. 使围绕于,加边缘" - ], - "id": "Of1gCF", - "checked": false - }, - { - "name": "mark", - "trans": [ - "n. 污迹, 标记, 分数, 烙印, 纪录 vt. 做标记于, 留意, 打分数, 留下污痕, 使...明显 vi. 做标志, 记分, 留下印记" - ], - "id": "D8SfqJ", - "checked": false - }, - { - "name": "also", - "trans": [ - "adv. 也, 同样地, 而且" - ], - "id": "fL31aW", - "checked": false - }, - { - "name": "do", - "trans": [ - "aux. 助动词(无词意) v. 干,做" - ], - "id": "SpfQZH", - "checked": false - }, - { - "name": "information", - "trans": [ - "n. 信息, 情报, 新闻, 资料, 询问" - ], - "id": "H1Tqr8", - "checked": false - }, - { - "name": "choose", - "trans": [ - "vt. &vi. 选择" - ], - "id": "jsgHnk", - "checked": false - }, - { - "name": "select", - "trans": [ - "adj. 精选的 n. 被挑选出来的人或物 v. 选择 vi. 选择,挑选,选拔 vt. 选择,挑选" - ], - "id": "AZTXMg", - "checked": false - }, - { - "name": "group", - "trans": [ - "n. 团体,组,团 vt. &vi. 聚合,成群 [计算机] 成组" - ], - "id": "AUztCw", - "checked": false - }, - { - "name": "first", - "trans": [ - "adv. 首先,第一,优先 adj. 第一的, 最早的, 一流的 n. (序数词)第一, 第一个人或事物, (大学学位的)最优等, (汽车, 自行车等的)最低挡" - ], - "id": "Co9xyZ", - "checked": false - }, - { - "name": "field", - "trans": [ - "n. 领域;牧场;旷野;战场;运动场 vi. 担任场外队员 adj. 扫描场;田赛的;野生的 vt. 把暴晒于场上;使上场;(通常成功地)回答,处理(问题)" - ], - "id": "w6JaL8", - "checked": false - }, - { - "name": "procedure", - "trans": [ - "n. 程序, 手续, 步骤; 常规的做法" - ], - "id": "Lzve8t", - "checked": false - }, - { - "name": "print", - "trans": [ - "n. 版,印刷物,印迹 vt. &vi. 印刷,出版,打印 adj. 印刷的" - ], - "id": "6p7B8l", - "checked": false - }, - { - "name": "return", - "trans": [ - "n. 返回,归还,报答,报告 vt. &vi. 返回,归还,回来 adj. 返回的" - ], - "id": "lnC8LT", - "checked": false - }, - { - "name": "number", - "trans": [ - "n. 号码,数字 v. 编号,加号码,总计 vi. 总计 vt. 编号" - ], - "id": "p43w7F", - "checked": false - }, - { - "name": "selected", - "trans": [ - "adj. 选定的 动词select的过去式和过去分词" - ], - "id": "fo4Xiv", - "checked": false - }, - { - "name": "want", - "trans": [ - "n. 缺乏, 贫困, 欲望, 需要, 不足 vi. 要, 希望, 必须 vt. 缺少, 渴望, 喜欢, 应该" - ], - "id": "bvNu0v", - "checked": false - }, - { - "name": "window", - "trans": [ - "n. 窗户" - ], - "id": "SYgD9z", - "checked": false - }, - { - "name": "message", - "trans": [ - "n. 消息,信息,要点 vt. &vi. 传递信息, 通讯" - ], - "id": "bFwSNf", - "checked": false - }, - { - "name": "dialog", - "trans": [ - "n. 对话, 对白 (美)=dialogue" - ], - "id": "sAgvf4", - "checked": false - }, - { - "name": "example", - "trans": [ - "n. 榜样,例子 vt. 把...作为例子" - ], - "id": "Rkrj9T", - "checked": false - }, - { - "name": "create", - "trans": [ - "vt. 创造, 造成" - ], - "id": "cqTsZ-", - "checked": false - }, - { - "name": "insert", - "trans": [ - "n. 插入物 vt. &vi. 插入" - ], - "id": "Q37wsl", - "checked": false - }, - { - "name": "related", - "trans": [ - "adj. 有关系的,有关联的 v. 讲,有关系 vbl. 讲,有关系" - ], - "id": "N-w0va", - "checked": false - }, - { - "name": "item", - "trans": [ - "n. 项目,条款, 一件商品(或物品) adv. 也" - ], - "id": "HqF0WZ", - "checked": false - }, - { - "name": "edit", - "trans": [ - "vt. 编辑,编校,修订 n. 编辑工作" - ], - "id": "SQnVBX", - "checked": false - }, - { - "name": "marked", - "trans": [ - "adj. 有记号的,显著的,醒目的 v. 作记号,打分数,表示 vbl. 作记号,打分数,表示" - ], - "id": "4fGg8C", - "checked": false - }, - { - "name": "area", - "trans": [ - "n. 地区, 区域, 面积, 方面" - ], - "id": "gu1CDb", - "checked": false - }, - { - "name": "parameter", - "trans": [ - "n. 参数,参量,决定因素" - ], - "id": "6ItEuP", - "checked": false - }, - { - "name": "then", - "trans": [ - "adv. 那么, 当时,然后,于是 adj. 当时的" - ], - "id": "5b0neX", - "checked": false - }, - { - "name": "variable", - "trans": [ - "adj. 可变的,易变的 n. 变量, 易变的东西" - ], - "id": "Q0qcFp", - "checked": false - }, - { - "name": "tab", - "trans": [ - "n.(tabulate)制表, 标签, 垂饰, 拉环,账单 vt. 用标签或垂饰安装" - ], - "id": "8OjMmY", - "checked": false - }, - { - "name": "up", - "trans": [ - "adv. 向上,增加,用尽,完全,储存,靠近 adj. 向上的,直立的,完成的,高兴的,在进行的 prep. 向上,迎着 n. 上司,上坡,繁荣,上面 vt. 升起,增加 vi. 上升" - ], - "id": "R57vBZ", - "checked": false - }, - { - "name": "string", - "trans": [ - "n. 线,一串,字串 vt. 串起,成串,收紧, 悬挂;系;扎 vi. 给…装弦 adj. 线的" - ], - "id": "nxmqlQ", - "checked": false - }, - { - "name": "each", - "trans": [ - "adj. 每个, 每, 每一 adv. 每个 int. 每个, 个人, 个自" - ], - "id": "y0nUVN", - "checked": false - }, - { - "name": "active", - "trans": [ - "adj. 积极的;活跃的;主动的;有效的;现役的 n. 主动语态;积极分子" - ], - "id": "baLt2f", - "checked": false - }, - { - "name": "topic", - "trans": [ - "n. 题目, 话题, 主题" - ], - "id": "xm034d", - "checked": false - }, - { - "name": "start", - "trans": [ - "n.开始; 动身; 开动; 起点 vt.& vi.出发,启程 vt.起动; 提出(问题); 开办; 使开始 vi.起始; 突然出现; 突然跳起; 突然涌出" - ], - "id": "wgu4Vf", - "checked": false - }, - { - "name": "mode", - "trans": [ - "n. 方式,样式,模式,风格,时兴 [音乐] 调式" - ], - "id": "ZYEP2A", - "checked": false - }, - { - "name": "selection", - "trans": [ - "n. 选择,挑选,挑选出来的人或事" - ], - "id": "6REsMe", - "checked": false - }, - { - "name": "function", - "trans": [ - "n. 功能, 函数, 重大聚会 vi. 运行, 起作用" - ], - "id": "44uUNl", - "checked": false - }, - { - "name": "word", - "trans": [ - "n. 词, 单词, 消息, 诺言 vt. 用词语表达" - ], - "id": "dZtMAl", - "checked": false - }, - { - "name": "make", - "trans": [ - "vt.做,制造; 生产,制定; 使成为; 使产生 vi.开始; 尝试; 行进; 增大 n.制造; 生产量; 性格; 形状,样式" - ], - "id": "BPWazT", - "checked": false - }, - { - "name": "right", - "trans": [ - "adj. 正确的,正直的,合适的,垂直的,右面的,正常的,正面的 n. 权利,右,正义,实况 adv. 正好,恰当,径直地,正确地,立即,非常,向右边 vt. 纠正,扶直,公正对待,伸冤 vi. 复正" - ], - "id": "RwPISs", - "checked": false - }, - { - "name": "value", - "trans": [ - "n. 价值, 重要性, 价格, (pl)价值观 vt. 评价, 估价, 重视" - ], - "id": "gAP0EA", - "checked": false - }, - { - "name": "button", - "trans": [ - "n. 钮扣,徽章,像纽扣的东西,未成熟的蘑菇,按钮 vt. 用纽扣装饰,钉纽扣,闭嘴 vi. 扣上" - ], - "id": "DisZr7", - "checked": false - }, - { - "name": "index", - "trans": [ - "n.索引; <数>指数; 指示; 标志 vt.给…编索引; 把…编入索引; [经济学]按生活指数调整(工资、价格等) vi.[机械学]转位" - ], - "id": "1kl82e", - "checked": false - }, - { - "name": "without", - "trans": [ - "adv.在外部; 户外; 缺少; 没有或不显示某事物 prep.没有,缺乏; 在外面 conj.除非,如果不" - ], - "id": "McBlDr", - "checked": false - }, - { - "name": "appear", - "trans": [ - "vi. 出现,显得,出版,抵达" - ], - "id": "RUdh02", - "checked": false - }, - { - "name": "left", - "trans": [ - "adj.左边的,左侧的; 左派的 n.左,左面; [军]左翼; 左派,激进分子 adv.向左; 在左边 v.离开( leave的过去式和过去分词)" - ], - "id": "gBLG9m", - "checked": false - }, - { - "name": "save", - "trans": [ - "vt.节省; 保存; 储蓄; 解救 vi.节省; 挽救; 救球 prep.&conj.除…之外 n.救援,救援" - ], - "id": "C6W_Fz", - "checked": false - }, - { - "name": "next", - "trans": [ - "adj.紧接在后的; 次于的; 贴近的; 紧邻的 adv.接下去; 然后; 居后地; 依次的 n.下一位; 下一个 prep.靠近; 居于…之后; 在…的隔壁" - ], - "id": "ndA6b-", - "checked": false - }, - { - "name": "off", - "trans": [ - "adj. 远的,休假的,空闲的,落后懈怠的 adv. 离开,出发,距离隔断,分割,不继续运行,下台 prep. 离开,脱落,下班 vi. 离开, 走开" - ], - "id": "g8gF8x", - "checked": false - }, - { - "name": "following", - "trans": [ - "n. 下列各项,部下,党羽 adj. 下列的,其次的 prep. 在(某事)以后" - ], - "id": "svkaC_", - "checked": false - }, - { - "name": "control", - "trans": [ - "n. 克制,控制,管制,操作装置 vt. 控制,掌管,支配" - ], - "id": "JAlUZw", - "checked": false - }, - { - "name": "only", - "trans": [ - "adj. 最好的,唯一的,出众的 adv. 仅仅,只有,专门地,唯一地,刚才 conj. 除非, 但是, 然而, 毕竟" - ], - "id": "J93YCI", - "checked": false - }, - { - "name": "user", - "trans": [ - "n. 用户, 使用者" - ], - "id": "SEUjF6", - "checked": false - }, - { - "name": "end", - "trans": [ - "n. 结束,终点,目标,末端 vt.& vi. 结束,终结 adj. 最终的" - ], - "id": "Mt18VG", - "checked": false - }, - { - "name": "system", - "trans": [ - "n. 系统,体系,制度,体制" - ], - "id": "qgzPuR", - "checked": false - }, - { - "name": "contain", - "trans": [ - "vt. 包含,容纳,克制,抑制 vi. 自制" - ], - "id": "1VrX2i", - "checked": false - }, - { - "name": "time", - "trans": [ - "n.时间; 时刻; 时代; 次 vt.为…安排时间; 测定…的时间; 调准(机械的)速度; 拨准(钟、表)的快慢 vi.合拍; 和谐; 打拍子 adj.定时的; 定期的; [美国英语]分期(付款)的" - ], - "id": "Jqcb3Y", - "checked": false - }, - { - "name": "letter", - "trans": [ - "n.信; 证书,许可证; 字母,文字; 字面意义 vt.用字母标明; 写字母于; 加标题 vi.写印刷体字母" - ], - "id": "O0yzSJ", - "checked": false - }, - { - "name": "data", - "trans": [ - "n. (datum的复数)资料,数据" - ], - "id": "ToJ67P", - "checked": false - }, - { - "name": "setting", - "trans": [ - "n.镶嵌; 环境; 装置; (某事、戏剧、小说等的)背景 v.放( set的现在分词); 安插; 树立; 安排" - ], - "id": "yOZSqw", - "checked": false - }, - { - "name": "desire", - "trans": [ - "n. 愿望, 欲望, 情欲 v. 向往, 要求, 请求 vt. 渴望" - ], - "id": "XDn2Kt", - "checked": false - }, - { - "name": "position", - "trans": [ - "n. 位置, 职位; 状态, 立场 vt. 安置, 决定...的位置" - ], - "id": "5M2QXz", - "checked": false - }, - { - "name": "down", - "trans": [ - "adj. 向下的,降低的,情绪低落,停止运行 adv. 向下的,下跌,在南方 n. 绒毛,汗毛,轻视 prep. 沿着...而下" - ], - "id": "lu-Kd9", - "checked": false - }, - { - "name": "task", - "trans": [ - "n. 工作,任务 vt. 交给某人(任务)" - ], - "id": "MyqZBr", - "checked": false - }, - { - "name": "view", - "trans": [ - "n. 视野,风景,见解,方法,检查 vt. 把...视为,看,考虑" - ], - "id": "7PFkBu", - "checked": false - }, - { - "name": "switch", - "trans": [ - "n. 开关, 电门,闸,转换器, vt. &vi. 鞭打,转轨,交换,突然转变, 摆动,接通或切断…电流" - ], - "id": "TTc-O0", - "checked": false - }, - { - "name": "include", - "trans": [ - "v. 包括,包含,连...在内 [计算机] 包括" - ], - "id": "BQLTdV", - "checked": false - }, - { - "name": "get", - "trans": [ - "vt. 使得;获得;受到;变成 vi. 成为;变得;到达" - ], - "id": "O33phh", - "checked": false - }, - { - "name": "default", - "trans": [ - "n. 假设值,默认(值),不履行责任,缺席 v. 默认,不履行义务,缺席,拖欠 [计算机] 缺省" - ], - "id": "lRqH7v", - "checked": false - }, - { - "name": "structure", - "trans": [ - "n. 结构,构造,建筑物 v. 构成,建立,建造" - ], - "id": "_nt4_F", - "checked": false - }, - { - "name": "into", - "trans": [ - "prep. 到...里" - ], - "id": "MWl5X3", - "checked": false - }, - { - "name": "path", - "trans": [ - "n.小路,路; 路线,路程; 〈比喻〉(人生的)道路; (思想,行为,生活的)途径" - ], - "id": "HyCD9l", - "checked": false - }, - { - "name": "blank", - "trans": [ - "adj. 空白的, 茫然的, 全部的, 面无表情的, 未完工的 n. 空白(处), 空隙, 空虚, (有弹药而无弹头的)空弹 vi. 消失, 走神 vt. 使模糊不清, 删除, 封闭, (比赛时连续得分)使对手得零分" - ], - "id": "HvFY9Z", - "checked": false - }, - { - "name": "open", - "trans": [ - "n. 公开,户外,空旷 adj. 开着的,开放的,公开的 vt. 打开,公开,开放,开始 vi. 开, 通行,大叫" - ], - "id": "_SRPjq", - "checked": false - }, - { - "name": "add", - "trans": [ - "vt. &vi. 增加" - ], - "id": "07Orgm", - "checked": false - }, - { - "name": "enable", - "trans": [ - "vt. 使...能够,使可行 [计算机] 使能" - ], - "id": "pVBJCk", - "checked": false - }, - { - "name": "operation", - "trans": [ - "n. 手术, 行动,活动, 操作" - ], - "id": "iwSXLQ", - "checked": false - }, - { - "name": "erase", - "trans": [ - "v. 抹去,擦掉 [计算机] 擦除" - ], - "id": "psoAeZ", - "checked": false - }, - { - "name": "filename", - "trans": [ - "文件名" - ], - "id": "rNGSk5", - "checked": false - }, - { - "name": "search", - "trans": [ - "n. 搜寻, 探究 v. 搜寻, 探求, 调查" - ], - "id": "xnL61L", - "checked": false - }, - { - "name": "another", - "trans": [ - "adj. 另一,再一 pron.&prep. 另一个" - ], - "id": "wfuMCS", - "checked": false - }, - { - "name": "last", - "trans": [ - "adj. 最后的,末尾的,最近的,晚了,迟到了 adv. 最后,最新 n. 最后来的人(或发生的事) vi. &vt. 持续" - ], - "id": "X57GgH", - "checked": false - }, - { - "name": "column", - "trans": [ - "n.纵队,列; 圆柱; 专栏" - ], - "id": "k288aC", - "checked": false - }, - { - "name": "after", - "trans": [ - "adj. 以后的 adv. 以后, 后来 conj. 在...以后 prep. 在...之后" - ], - "id": "WQ8h5f", - "checked": false - }, - { - "name": "prompt", - "trans": [ - "adj. 迅速的, 敏捷的, 立刻的 vt. 激起, 促进, 推动; 提示 vi. 提示 n. 提示; 提示的内容 n. [商]付款期限" - ], - "id": "Nf8HeC", - "checked": false - }, - { - "name": "two", - "trans": [ - "num. 二,两个" - ], - "id": "XP_16q", - "checked": false - }, - { - "name": "execute", - "trans": [ - "vt. 执行,处决,实行,完成 [计算机] 执行" - ], - "id": "6Acjw8", - "checked": false - }, - { - "name": "about", - "trans": [ - "adj. 准备 adv. 大约 prep. 关于" - ], - "id": "brkMAf", - "checked": false - }, - { - "name": "escape", - "trans": [ - "n. 逃亡,避难设备 vt. &vi. 逃脱,避开 adj. 逃避的" - ], - "id": "JHjMyf", - "checked": false - }, - { - "name": "error", - "trans": [ - "n. 错误, 过失" - ], - "id": "cPzYjh", - "checked": false - }, - { - "name": "currently", - "trans": [ - "adv. 现在,现时,目前,当前" - ], - "id": "TDgNP7", - "checked": false - }, - { - "name": "extension", - "trans": [ - "n. 延长,扩充,范围,分机号码" - ], - "id": "1QRGQH", - "checked": false - }, - { - "name": "same", - "trans": [ - "adj. 同样的 adv. 同样地 pron. 同样的人或事" - ], - "id": "3ZRM3A", - "checked": false - }, - { - "name": "status", - "trans": [ - "n. 地位, 身份, 情形, 状况" - ], - "id": "Z6BZhL", - "checked": false - }, - { - "name": "run", - "trans": [ - "n. 奔跑,路程,趋向 vt. 跑,放牧,经营,走私,使运转,浇铸,使遭受 vi. 跑,竞赛,行驶,运转,遭遇,持续,熔化,褪色,流,蔓延,传播 adj. 熔化的,浇铸的,洄游的" - ], - "id": "RtWoEK", - "checked": false - }, - { - "name": "argument", - "trans": [ - "n. 辩论,争论,论点(据),理由" - ], - "id": "XGbPhT", - "checked": false - }, - { - "name": "statement", - "trans": [ - "n. 声明, 陈述" - ], - "id": "S4RW2L", - "checked": false - }, - { - "name": "shift", - "trans": [ - "n. 交换,变化,移动,接班者 vt. 更替,移转,变声 vi. 改变,定责,更衣" - ], - "id": "06TQ1x", - "checked": false - }, - { - "name": "store", - "trans": [ - "n. 商店,贮藏,仓库 vt. 储存,贮藏,供给,保存 adj. 储备的 (在计算机里)存贮;记忆" - ], - "id": "giMv1N", - "checked": false - }, - { - "name": "scroll", - "trans": [ - "n. 卷轴,目录 vt.& vi. 卷动" - ], - "id": "3Kdq80", - "checked": false - }, - { - "name": "replace", - "trans": [ - "vt. 取代,更换" - ], - "id": "MlyzaI", - "checked": false - }, - { - "name": "macro", - "trans": [ - "adj. 巨大的,大范围的,总的 n. [计算机]宏" - ], - "id": "VT38gw", - "checked": false - }, - { - "name": "page", - "trans": [ - "n. 页 v. (给...)当听差 vt. (通过扩音器、传呼机等)呼叫" - ], - "id": "vsxRip", - "checked": false - }, - { - "name": "quit", - "trans": [ - "v. 离开,辞职,停止" - ], - "id": "l0TbDO", - "checked": false - }, - { - "name": "define", - "trans": [ - "vt. 定义, 解释" - ], - "id": "3Faqqb", - "checked": false - }, - { - "name": "reference", - "trans": [ - "n. 参考, 出处, 参照 n. 推荐人, 推荐函 vt. 提供参考" - ], - "id": "BMT-M-", - "checked": false - }, - { - "name": "other", - "trans": [ - "adj. 别的,其他的 pron. 另一个人(或事) n. 其他人(或事)" - ], - "id": "Vqh9Ga", - "checked": false - }, - { - "name": "while", - "trans": [ - "conj. 当...的时候,然而 n. &adj. 一会儿 vt. 消磨" - ], - "id": "zCjHCt", - "checked": false - }, - { - "name": "pressing", - "trans": [ - "adj. 紧迫的,紧急的,切实的 vbl. 压迫" - ], - "id": "wh7Gd2", - "checked": false - }, - { - "name": "restore", - "trans": [ - "vt. 恢复,归还,翻新" - ], - "id": "DDnz5S", - "checked": false - }, - { - "name": "top", - "trans": [ - "n. 顶端, 极点, 盖子, (女式)上衣, 最高地位, 陀螺 adj. 最高的, 顶上的, 最一流的 vt. 高耸, 加以顶盖, 超越, 上升到顶端 vi. 得出结论, 到达顶峰" - ], - "id": "jfemUo", - "checked": false - }, - { - "name": "how", - "trans": [ - "adv. 如何,怎样,多么,多少 conj. 如何,怎样,以...方式 n. 方式" - ], - "id": "j4yF9L", - "checked": false - }, - { - "name": "color", - "trans": [ - "n. 颜色,气色,风格 vt. 把...涂颜色,粉饰 vi. 脸红" - ], - "id": "rb-ubi", - "checked": false - }, - { - "name": "allow", - "trans": [ - "vi. (for)考虑到,使可能 vt. 给予,承认,允许, 断定" - ], - "id": "tqVWYe", - "checked": false - }, - { - "name": "block", - "trans": [ - "n.块; 街区; <英>大楼,大厦; 障碍物,阻碍 vt.阻止; 阻塞; 限制" - ], - "id": "EW1NgO", - "checked": false - }, - { - "name": "decimal", - "trans": [ - "adj. 十进位的,小数的 n. 小数" - ], - "id": "Q0co8P", - "checked": false - }, - { - "name": "main", - "trans": [ - "adj. 主要的 n. 主要部分,干线,(水、煤气、电等的)供应系统,体力" - ], - "id": "bZuy4X", - "checked": false - }, - { - "name": "definition", - "trans": [ - "n. 定义, 阐释,清晰度" - ], - "id": "FzeVJ_", - "checked": false - }, - { - "name": "between", - "trans": [ - "adv. 在中间 prep. 在...之间" - ], - "id": "0qWFoW", - "checked": false - }, - { - "name": "optional", - "trans": [ - "adj. 可以任选的,非强制的" - ], - "id": "mEoLZ7", - "checked": false - }, - { - "name": "date", - "trans": [ - "n. 日期,约会,枣椰子 vt. 约会,定日期 vi. 追溯到 n.[计算机] DOS命令 : 显示或设置系统日期" - ], - "id": "W2tq8y", - "checked": false - }, - { - "name": "remove", - "trans": [ - "n. 间距, 移动 vt. 除去,开除, 移动, 取下, 拿走 vi. 迁徙,离开,搬迁" - ], - "id": "S0vg_X", - "checked": false - }, - { - "name": "arrow", - "trans": [ - "n. 箭,箭头 vi. 快且笔直的前进有如穿梭的箭" - ], - "id": "BAJvGg", - "checked": false - }, - { - "name": "label", - "trans": [ - "n.标签; 称标记,符号; [建] 门或窗户上面的线脚 vt.贴标签于; 把…称为; 把…列为; [化]用放射性元素使(元素或原子等)示踪" - ], - "id": "iVrRog", - "checked": false - }, - { - "name": "within", - "trans": [ - "adv. 在内 n. 里面 prep. 在...里面 adj. 在里面的" - ], - "id": "J3A0DK", - "checked": false - }, - { - "name": "issue", - "trans": [ - "n. 问题;流出;期号;发行物 vt. 发行,发布;发给;放出,排出 vi. 发行;流出;造成…结果;传下" - ], - "id": "74JoF3", - "checked": false - }, - { - "name": "different", - "trans": [ - "adj. 不同的,与众不同的" - ], - "id": "Nlq58K", - "checked": false - }, - { - "name": "available", - "trans": [ - "adj. 可用的,可得到的,有用的,有效的" - ], - "id": "-uygoB", - "checked": false - }, - { - "name": "returned", - "trans": [ - "adj.被送回的,归来的" - ], - "id": "XGIrvg", - "checked": false - }, - { - "name": "associate", - "trans": [ - "vt.(使)发生联系; (使)联合; 结交; 联想 vi.联盟; 陪伴同事 n.合伙人; 伴侣,同志; 非正式会员 adj.联合的; 合伙的; 非正式的; (性质上)有密切联系的" - ], - "id": "1cymum", - "checked": false - }, - { - "name": "attribute", - "trans": [ - "n. 属性, 特征; 标志, 象征 vt. 归于, 属于" - ], - "id": "3LyJ8V", - "checked": false - }, - { - "name": "DOS", - "trans": [ - "n. [计] 磁盘操作系统(=Disk Operating System)" - ], - "id": "Oqwquk", - "checked": false - }, - { - "name": "before", - "trans": [ - "prep.在…之前; 先于,优于; 当着…的面; 与其… conj.在…之前; 在…以前; 比…早些; 与其… adv.先前,从前; 在前,在前方" - ], - "id": "-Il3Bz", - "checked": false - }, - { - "name": "order", - "trans": [ - "n.命令; 秩序; 规则,制度; 次序 vt.命令; 订购; 整理 vi.下订单" - ], - "id": "oWNfWl", - "checked": false - }, - { - "name": "modify", - "trans": [ - "vt. 修改,调正,缓和 vi. 修改" - ], - "id": "_QEIHj", - "checked": false - }, - { - "name": "array", - "trans": [ - "n. 数组,(陈)排列,大批,一系列 vt. 排列,布署,打扮" - ], - "id": "Xq8i-H", - "checked": false - }, - { - "name": "mouse", - "trans": [ - "n. 老鼠,鼠标,胆小如鼠的人,乌青色的肿块 vi. 捕鼠,蹑手蹑脚行动 vt. 仔细寻找" - ], - "id": "P7kz3r", - "checked": false - }, - { - "name": "note", - "trans": [ - "n. 笔记, 注解, 备忘录, 音符, 音调, 票据, 便条, 纸币 vt. 记录, 注解, 注意" - ], - "id": "O_sWUA", - "checked": false - }, - { - "name": "locate", - "trans": [ - "vt. 找出,设于,位于,建立 vi. 建立" - ], - "id": "MoLXdY", - "checked": false - }, - { - "name": "video", - "trans": [ - "adj. 录像的 n. 录像(机) vt. 制作...的录像" - ], - "id": "ucFeqL", - "checked": false - }, - { - "name": "printer", - "trans": [ - "n. 打印机,印刷工" - ], - "id": "DEomeE", - "checked": false - }, - { - "name": "bar", - "trans": [ - "n. 条,棒,横木,酒吧 vt. 禁止,阻挠" - ], - "id": "QvOD80", - "checked": false - }, - { - "name": "bottom", - "trans": [ - "n. 底部;臀部;船身;水底;服装下面的部分;低洼地;底色;尽头 adj. 底部的 vt. 给...装底,建立基础,到达底部 vi. 到达底部,垫底,降到最低点" - ], - "id": "FL8zyW", - "checked": false - }, - { - "name": "carriage", - "trans": [ - "n. 四轮马车,车厢" - ], - "id": "6hUKQf", - "checked": false - }, - { - "name": "content", - "trans": [ - "n. 内容, 目录, 含量 adj. 满足的, 满意的 vt. 使...满足, 使...安心" - ], - "id": "4lr95M", - "checked": false - }, - { - "name": "either", - "trans": [ - "pron. 任一的 conj. 或, 也 adj. 任一, 两方的 adv. 也" - ], - "id": "kupSEk", - "checked": false - }, - { - "name": "OK", - "trans": [ - "adj. 好, 不错, 可以 adv. 好, 不错, 可以" - ], - "id": "8kFzuf", - "checked": false - }, - { - "name": "space", - "trans": [ - "n. 位置, 空间, 距离, 太空, 空地, 持续的一段时间 vt. &vi. 均匀隔开, 分隔" - ], - "id": "pLhjne", - "checked": false - }, - { - "name": "editor", - "trans": [ - "n. 编辑, 编者" - ], - "id": "L9sYzQ", - "checked": false - }, - { - "name": "exist", - "trans": [ - "v. 存在" - ], - "id": "3pXkl4", - "checked": false - }, - { - "name": "scope", - "trans": [ - "n. 能力,范围,眼界,机会,余地 vt. 仔细研究" - ], - "id": "DKn31-", - "checked": false - }, - { - "name": "paragraph", - "trans": [ - "n. 段落 vt. 将...分段,写短评 vi. 写短评" - ], - "id": "vv5PJg", - "checked": false - }, - { - "name": "multi", - "trans": [ - "n. 多种;多数" - ], - "id": "sQJoWS", - "checked": false - }, - { - "name": "clear", - "trans": [ - "adj. 清楚的,明确的,澄清的,头脑清醒的 vt. 澄清,清除障碍, 使明亮, 明确 vi. 变清晰, 消失, 放晴 adv. 清楚地, 一直 n. 间隙, 空地, 开旷的地方" - ], - "id": "L185kM", - "checked": false - }, - { - "name": "exit", - "trans": [ - "n. 出口,退场,离去 vi. 退出,死亡 vt. 离开" - ], - "id": "55a3wt", - "checked": false - }, - { - "name": "report", - "trans": [ - "n. 传闻,报告,成绩单,爆炸声 vt. 报告,报导,记录 vi. 叙述,报告" - ], - "id": "BEQRJJ", - "checked": false - }, - { - "name": "execution", - "trans": [ - "n. 实行,完成,执行" - ], - "id": "znxatP", - "checked": false - }, - { - "name": "backup", - "trans": [ - "n. 后备,后备" - ], - "id": "aZD2DO", - "checked": false - }, - { - "name": "version", - "trans": [ - "n. 版本, 说法,翻译" - ], - "id": "yNRzhX", - "checked": false - }, - { - "name": "find", - "trans": [ - "vt. &vi. 发现,感觉到,认为 n. 发现物" - ], - "id": "3itUVq", - "checked": false - }, - { - "name": "pointer", - "trans": [ - "n. 指针,教鞭,(能指出猎物位置的)猎犬,暗示 Pointer: 指极星" - ], - "id": "JVGgEX", - "checked": false - }, - { - "name": "subset", - "trans": [ - "n. 子集" - ], - "id": "CvSjFL", - "checked": false - }, - { - "name": "keyboard", - "trans": [ - "n. 键盘 vt. 用键盘输入(信息)" - ], - "id": "gZT-rc", - "checked": false - }, - { - "name": "full", - "trans": [ - "adj.满的,装满的; 完全的,完整的; 丰富的; 详尽的 adv.极其,十分; 充分地,完全地; 整整; 直接地 n.充分,完全; 全部; 完整; 极盛时 v.把衣服缝得宽大; 把裙子缝出皱褶; [印]蒸洗,漂洗" - ], - "id": "6Asxd5", - "checked": false - }, - { - "name": "check", - "trans": [ - "vt.检查,核对; 制止,抑制; 在…上打勾 vi.核实,查核; 中止; 打勾; [象棋]将一军 n.<美>支票; 制止,抑制; 检验,核对" - ], - "id": "4oVLjf", - "checked": false - }, - { - "name": "should", - "trans": [ - "verb auxiliary. 应该,竟然,可能" - ], - "id": "wVzSBy", - "checked": false - }, - { - "name": "single", - "trans": [ - "adj. 单身的,单纯的,单一的 n. 单程票,单曲,单人房,单身者 vt. 单独挑出 vi. (棒球)作一垒打" - ], - "id": "uYFehm", - "checked": false - }, - { - "name": "provide", - "trans": [ - "vi. 供给, 提供 vt. 提供; 规定; 准备" - ], - "id": "nehl4L", - "checked": false - }, - { - "name": "title", - "trans": [ - "n. 头衔,名称,标题,所有权,资格,冠军 vt. 赋予称号,加标题于 adj. 标题的" - ], - "id": "2a0CA8", - "checked": false - }, - { - "name": "expression", - "trans": [ - "n. 表达,表示,表现,表情,措辞,词句" - ], - "id": "rbQZI8", - "checked": false - }, - { - "name": "through", - "trans": [ - "adv. 穿越, 完全 prep. 经过, 穿过, 凭借 adj. 完成的, 完结的; 贯穿的, 直通的" - ], - "id": "eaDDNl", - "checked": false - }, - { - "name": "toggle", - "trans": [ - "n. 乒乓开关,触发器,套索钉,棒形纽扣 vt. 系纽扣,提供索钉 vi. 开开关" - ], - "id": "O_K7rV", - "checked": false - }, - { - "name": "code", - "trans": [ - "n. 码,密码,法规,准则 vt. 把...编码,制成法典" - ], - "id": "flrFuU", - "checked": false - }, - { - "name": "such", - "trans": [ - "adj. 如此的,这样的 pron. 这样的 adv. 如此地" - ], - "id": "5g9I5Y", - "checked": false - }, - { - "name": "beginning", - "trans": [ - "n. 开始,开端,起源,早期 adj. 刚开始的 动词begin的现在分词" - ], - "id": "oOBjDc", - "checked": false - }, - { - "name": "guide", - "trans": [ - "vt.引路; 指导; 操纵; 影响 n.指导者; 向导; 导游; 有指导意义的事物" - ], - "id": "I7n9_w", - "checked": false - }, - { - "name": "tree", - "trans": [ - "n. 树" - ], - "id": "8XCC5k", - "checked": false - }, - { - "name": "environment", - "trans": [ - "n. 环境,外界" - ], - "id": "5b75FD", - "checked": false - }, - { - "name": "but", - "trans": [ - "adv. 仅仅,只 conj. 但是 prep. 除...以外 pron. 只有" - ], - "id": "nYaEU_", - "checked": false - }, - { - "name": "device", - "trans": [ - "n. 装置, 设计, 策略, 设备" - ], - "id": "ezhWrZ", - "checked": false - }, - { - "name": "highlight", - "trans": [ - "n. 加亮区,精彩部分, 最重要的细节或事件, 闪光点 vt. 加亮,强调, 使...显得重要, 照亮 [计算机] 醒目" - ], - "id": "lto75g", - "checked": false - }, - { - "name": "call", - "trans": [ - "v.呼唤,喊叫; 召唤,叫来,召集; 下令,命令; 打电话给 n.喊叫,大声喊; 电话联络; 必要,理由; 要求" - ], - "id": "9Ejajk", - "checked": false - }, - { - "name": "continue", - "trans": [ - "vt. &vi. 继续, 连续, 维持" - ], - "id": "dmSTfS", - "checked": false - }, - { - "name": "indicate", - "trans": [ - "v.指明, 表明, 显示, 象征, 指示" - ], - "id": "-iYxKk", - "checked": false - }, - { - "name": "until", - "trans": [ - "prep. 直到...为止 conj. 直到...时才..." - ], - "id": "iEDupn", - "checked": false - }, - { - "name": "begin", - "trans": [ - "vt.& vi.开始; 着手; 创始; 创办 vi.(从…)开始; 起始; 起初是; 开始讲话" - ], - "id": "twZwqc", - "checked": false - }, - { - "name": "place", - "trans": [ - "n. 地方,职位,获奖的名次 vt. 放置,任命,安排 vi. 获得名次" - ], - "id": "WWgBTi", - "checked": false - }, - { - "name": "rename", - "trans": [ - "v. 重新命名, 改名 n. [计算机]DOS命令" - ], - "id": "g2Q_Fx", - "checked": false - }, - { - "name": "swap", - "trans": [ - "n. 交换 vt. &vi. 交换,用...作交易" - ], - "id": "_oRNBJ", - "checked": false - }, - { - "name": "work", - "trans": [ - "n. 工作,作用,成果,作品,善行,工艺,奏效,建筑工程,工厂,(机械)活动部件 adj. 工作的 vi. 创造, 实现, 有工作, 起作用, 操作, 正常运转, 成功, 产生影响, 逐渐进行, 处理 vt. 造成, 产生, 使运转, 锻造, 奋力达到, 利用" - ], - "id": "feXOsk", - "checked": false - }, - { - "name": "remain", - "trans": [ - "v. 保持, 依然, 剩余, 留下, 逗留 n. 遗迹, 剩余物, 残骸" - ], - "id": "LIkRv0", - "checked": false - }, - { - "name": "close", - "trans": [ - "n. 完结, 结论 adj. 靠近的,亲近的,几乎,密切的, 势均力敌的 vt. 关,结束,靠近 vi. 关,停业, 搏斗 adv. 紧挨着, 紧紧地" - ], - "id": "Kmd9xA", - "checked": false - }, - { - "name": "combination", - "trans": [ - "n. 结合,联合,联合体" - ], - "id": "2_XJSH", - "checked": false - }, - { - "name": "profile", - "trans": [ - "n.侧面,半面; 外形,轮廓; [航]翼型; 人物简介 vt.描…的轮廓; 给…画侧面图; 为(某人)写传略; [机]铣出…的轮廓" - ], - "id": "1w1SmH", - "checked": false - }, - { - "name": "unless", - "trans": [ - "conj. 除非 prep. 除...外" - ], - "id": "LKXmt5", - "checked": false - }, - { - "name": "except", - "trans": [ - "vt. 除,除外 prep.&conj. 除了...之外,若不是,除非" - ], - "id": "qoCT2c", - "checked": false - }, - { - "name": "turn", - "trans": [ - "vt.& vi.使转动; 旋转; 使改变方向; 使不适 vt.使变酸; 使变换; 使变为 n.翻转; (路线或方向的)改变; 机会" - ], - "id": "qLa9ec", - "checked": false - }, - { - "name": "back", - "trans": [ - "adj. 后面的,偏远的, 过时的, 积欠的, 向后的 adv. 向后地 n. 后背, 背脊,后面, 靠背 vt. 后退,支持 vi. 后退" - ], - "id": "KSzDqE", - "checked": false - }, - { - "name": "sure", - "trans": [ - "adj. 确信, 必然的, 必定的 adv. 当然, 确实地, 无疑地" - ], - "id": "AsaaAU", - "checked": false - }, - { - "name": "section", - "trans": [ - "n. 零件,部分,章节,区域,部门,路段,断面 vt. 划分,切开 vi. 划分" - ], - "id": "A7d5yK", - "checked": false - }, - { - "name": "follow", - "trans": [ - "vt. 跟随,沿行,遵循,听得懂 vi. 跟着做,之后是 n. 跟随" - ], - "id": "0W1hpr", - "checked": false - }, - { - "name": "split", - "trans": [ - "n. 劈开, 裂片, 裂口 adj. 分散的 v. 分离, 分开, 劈开" - ], - "id": "wSYePp", - "checked": false - }, - { - "name": "need", - "trans": [ - "n. 需要,必须,缺乏 v. 需要,必需 conj. 需要" - ], - "id": "RrZIWX", - "checked": false - }, - { - "name": "access", - "trans": [ - "n.入口,出口; 接近,进入; 增长; 爆发 vt.接近,进入; 使用,接近,获取" - ], - "id": "rZYUbd", - "checked": false - }, - { - "name": "additional", - "trans": [ - "adj. 附加的, 另外的" - ], - "id": "YJBFk_", - "checked": false - }, - { - "name": "cancel", - "trans": [ - "n. 取消,撤消 vt. 取消,删去, 约分 vi. 抵消" - ], - "id": "3Wi7lH", - "checked": false - }, - { - "name": "document", - "trans": [ - "n. 文件,公文 vt. 记载,用文件等证明 [计算机] 文档" - ], - "id": "vTh9aE", - "checked": false - }, - { - "name": "case", - "trans": [ - "n. 情况,实情,箱,案例 vt. 装箱,踩点" - ], - "id": "mVGsFy", - "checked": false - }, - { - "name": "numeric", - "trans": [ - "adj. 数字的,数值的 n. 数,数字" - ], - "id": "ob78Eu", - "checked": false - }, - { - "name": "go", - "trans": [ - "vi. 去, 走, 变得, 进行, 放, 通往, 消失 vt. 走过, 称重 [计算机] 执行" - ], - "id": "DcCB2h", - "checked": false - }, - { - "name": "load", - "trans": [ - "n. 负荷, 重担, 装载量 v. 装载, 装填, 担负, 给(枪)装子弹 [计算机] 装入" - ], - "id": "vzHM5s", - "checked": false - }, - { - "name": "try", - "trans": [ - "n. 尝试,试验 vt. 审理,尝试,试验 vi. 尝试" - ], - "id": "JeBiYG", - "checked": false - }, - { - "name": "size", - "trans": [ - "n. 尺寸, 大小 vt. 按大小排列(或分类) adj. 一定大小的 vt. 用...填充(某物)" - ], - "id": "wa_WCt", - "checked": false - }, - { - "name": "entire", - "trans": [ - "adj. 全部的,完整的,同性质的,纯正的,全面的" - ], - "id": "v6gI-e", - "checked": false - }, - { - "name": "leave", - "trans": [ - "离开, 告假, 遗留, 听任" - ], - "id": "2SGmd8", - "checked": false - }, - { - "name": "history", - "trans": [ - "n. 历史" - ], - "id": "Ux1bav", - "checked": false - }, - { - "name": "second", - "trans": [ - "n. vt. 支持 n. 第二,秒 adj. 第二的,次等的,另一个的" - ], - "id": "3tRDem", - "checked": false - }, - { - "name": "reflow", - "trans": [ - "vi. 回流" - ], - "id": "wdIPFk", - "checked": false - }, - { - "name": "output", - "trans": [ - "n. 产量,输出,输出功率,输出端 vt. 输出(信息等)" - ], - "id": "rr1OWW", - "checked": false - }, - { - "name": "out", - "trans": [ - "vt. adj. 外面的,向外的,落伍的,不做考虑的 adv. 向外,离岸,外出,出局,出去,用尽,完成,出现,结束 vt. 释放出,揭露 vi. 揭发 prep. 向外,通过 n. 外面,在野者,下台者,出局的一击" - ], - "id": "JPh6St", - "checked": false - }, - { - "name": "both", - "trans": [ - "adj.二者,两者都 pron.二者 adv.二者,二者都 conj.不仅…而且…,…和…都" - ], - "id": "PqS256", - "checked": false - }, - { - "name": "install", - "trans": [ - "v. 安装,安置,使...就职 n.[计算机] 安装,DOS命令 : 装入结束且驻留软件" - ], - "id": "WBXtAe", - "checked": false - }, - { - "name": "source", - "trans": [ - "n. 来源" - ], - "id": "Ra3hEy", - "checked": false - }, - { - "name": "way", - "trans": [ - "n. 方法,道路,方向,作风,(某)方面,程度,状态 adv. 非常,很多,很远 adj. 与路线的中间点相关的,路线的中间点" - ], - "id": "mRyXbr", - "checked": false - }, - { - "name": "assign", - "trans": [ - "v. 分配,指派 n.[计算机] DOS 命令将驱动器符重指向第二个驱动器符" - ], - "id": "Grv5NN", - "checked": false - }, - { - "name": "support", - "trans": [ - "n. 支持, 援助, 供养 vt. 支援, 帮助, 支持" - ], - "id": "LgteBr", - "checked": false - }, - { - "name": "specific", - "trans": [ - "adj. 特殊的, 明确的, 具有特效的 n. 特效药, 特性, 详情" - ], - "id": "huufUJ", - "checked": false - }, - { - "name": "join", - "trans": [ - "v. 参加, 结合, 联合, 加入" - ], - "id": "iH7gwr", - "checked": false - }, - { - "name": "expand", - "trans": [ - "vt. 增加,详述,扩展,使...膨胀 vi. 扩展,增加,详述" - ], - "id": "zdHVny", - "checked": false - }, - { - "name": "like", - "trans": [ - "adj. 相似的,同样的 vt. &vi. 喜欢,愿意,想 prep. 像,如同 n. 爱好,类似的人(或物) adv. 大概,和…一样 conj. 如同" - ], - "id": "ioCn_E", - "checked": false - }, - { - "name": "Diskette", - "trans": [ - "n. [计]软盘" - ], - "id": "3_lqPJ", - "checked": false - }, - { - "name": "skip", - "trans": [ - "n. 跳跃,跳读 vt. &vi. 跳越,蹦跳,略过,跳过" - ], - "id": "_UkYxl", - "checked": false - }, - { - "name": "application", - "trans": [ - "n.适用,应用,运用; 申请,请求,申请表格; 勤勉,用功; 敷用,敷用药" - ], - "id": "Bp5HGp", - "checked": false - }, - { - "name": "confirmation", - "trans": [ - "n. 确认, 证实, 基督教的坚信礼" - ], - "id": "ylAf00", - "checked": false - }, - { - "name": "whether", - "trans": [ - "conj.&adv. 是否" - ], - "id": "tOJ7Pb", - "checked": false - }, - { - "name": "hold", - "trans": [ - "vt.拿住,握住; 保留,保存; 扣留,拘押; 容纳 vi.拿住,握住; 同意,赞成; 保持不变; 有效 n.握住; 保留; 控制" - ], - "id": "q-rRpC", - "checked": false - }, - { - "name": "click", - "trans": [ - "n. 点击,滴答声,拍答声 vt. 点击,作滴答声,使...作拍答声 vi. 击打,完全符合,成功,以点击的方式选择" - ], - "id": "EGmb4c", - "checked": false - }, - { - "name": "write", - "trans": [ - "v. 写" - ], - "id": "a9XD4j", - "checked": false - }, - { - "name": "byte", - "trans": [ - "n. 字节, 8位元组" - ], - "id": "Bajhyr", - "checked": false - }, - { - "name": "abbreviate", - "trans": [ - "vt. 缩写,缩短,使...简略" - ], - "id": "Og_KTB", - "checked": false - }, - { - "name": "show", - "trans": [ - "n. 显示,表现,表演,事情 vt. &vi. 表示,显现,展现,指示" - ], - "id": "g31VuF", - "checked": false - }, - { - "name": "otherwise", - "trans": [ - "adv. 否则,不同地,在不同方面 pron. 其他 adj. 不同的" - ], - "id": "EqpOIp", - "checked": false - }, - { - "name": "working", - "trans": [ - "adj. 工人的, 劳动的" - ], - "id": "ixakFE", - "checked": false - }, - { - "name": "delimiter", - "trans": [ - "n. 定界符, 分隔符" - ], - "id": "6KN18F", - "checked": false - }, - { - "name": "location", - "trans": [ - "n. 地点,位置" - ], - "id": "WBUrRT", - "checked": false - }, - { - "name": "perform", - "trans": [ - "v. 执行, 表演, 做" - ], - "id": "rTZBWb", - "checked": false - }, - { - "name": "graphic", - "trans": [ - "adj. 生动的,图表的 n. 图表" - ], - "id": "21HHkg", - "checked": false - }, - { - "name": "read", - "trans": [ - "vt.& vi.阅读,朗读; 显示; 研究; 看得懂 vt.显示; 阅读; 读懂,理解 n.阅读; 读物; 读书; 里德(人名) adj.被朗读的; 博识的; 博览的; 有学问的" - ], - "id": "7Ao_IT", - "checked": false - }, - { - "name": "confirm", - "trans": [ - "v. 确定, 批准, 证实" - ], - "id": "tVKv5G", - "checked": false - }, - { - "name": "sort", - "trans": [ - "n. 种类,样子,态度 v. 分类,整理,排序 n.[计算机] DOS命令 : 在字符型文件中进行数据排序, 或者将DOS命令的输出进行排序" - ], - "id": "qL7v7-", - "checked": false - }, - { - "name": "clause", - "trans": [ - "n. 分句, 从句, 条款, 款项" - ], - "id": "seo3Lu", - "checked": false - }, - { - "name": "once", - "trans": [ - "adv. 一次, 曾经 conj. 一旦 n. 一次 adj. 曾经的" - ], - "id": "qLP_dg", - "checked": false - }, - { - "name": "however", - "trans": [ - "adv. 然而 conj. 然而, 可是, 不过" - ], - "id": "e6HjQt", - "checked": false - }, - { - "name": "extend", - "trans": [ - "v. 扩充, 延伸, 伸展, 扩展" - ], - "id": "93ykQb", - "checked": false - }, - { - "name": "look", - "trans": [ - "n. 看, 神色, 样子, 脸色 vi. 看, 注意, 朝着, 好象, 显得 vt. 打量, 注视, 用眼神或脸色表示, 期待" - ], - "id": "dKlaOq", - "checked": false - }, - { - "name": "now", - "trans": [ - "n. 现在,此刻 adj. 现存的, 目前的 adv. 现在,立刻 conj. 既然 abbr. =National Organization of Women 全国妇女组织" - ], - "id": "943en_", - "checked": false - }, - { - "name": "original", - "trans": [ - "adj. 最初的, 原始的; 有独创性的, 原版的 n. 原件, 原稿; 有独创性的人, 怪人" - ], - "id": "UJ9E9b", - "checked": false - }, - { - "name": "correspond", - "trans": [ - "vi. 符合,通信,相当" - ], - "id": "7IuF2K", - "checked": false - }, - { - "name": "property", - "trans": [ - "n. 财产; 性质; 道具" - ], - "id": "6QJ9Oq", - "checked": false - }, - { - "name": "several", - "trans": [ - "adj. 几个,各自的 pron. 若干" - ], - "id": "mFxsvf", - "checked": false - }, - { - "name": "learn", - "trans": [ - "vt. 学习,获悉 vi. 了解,习得" - ], - "id": "04kqxg", - "checked": false - }, - { - "name": "cause", - "trans": [ - "n. 原因;事业;目标 vt. 引起;使遭受" - ], - "id": "ZxM2Mv", - "checked": false - }, - { - "name": "bracket", - "trans": [ - "n. 支架, 括号, 档次 vt. 支撑, 放在括号内, 归入一类, 包含, 支持" - ], - "id": "dUWRyx", - "checked": false - }, - { - "name": "omit", - "trans": [ - "vt. 省略,疏忽,遗漏" - ], - "id": "0F_n3I", - "checked": false - }, - { - "name": "running", - "trans": [ - "n. 跑步;经营,管理 adj. 奔跑的;流动的;运转中的 adv. 连续地" - ], - "id": "7Ouago", - "checked": false - }, - { - "name": "edge", - "trans": [ - "n. 边,边缘,刀口 vt. 给...加上边,缓慢横过,使逐渐丧失 vi. 徐徐前进" - ], - "id": "6TyNKE", - "checked": false - }, - { - "name": "form", - "trans": [ - "n. 形式, 形状, 表格 v. 形成, 组成, 建立" - ], - "id": "x9Taye", - "checked": false - }, - { - "name": "instruction", - "trans": [ - "n. 说明,须知,指令,教学" - ], - "id": "wy4LJo", - "checked": false - }, - { - "name": "ASCII", - "trans": [ - "American Standard Code for Information Interchange,美国信息互换标准代码" - ], - "id": "jIZLxU", - "checked": false - }, - { - "name": "below", - "trans": [ - "adv.在下面,到下面 prep.(表示位置)在…下面; (表示状态)在…掩饰之下; (表示比较)不及; 低于" - ], - "id": "zxwqKl", - "checked": false - }, - { - "name": "standard", - "trans": [ - "n.标准,规格; 旗,军旗; 度量衡标准; 直立支柱 adj.标准的,合格的; 普遍的,一般的; 公认为优秀的" - ], - "id": "YpVTlo", - "checked": false - }, - { - "name": "occurrence", - "trans": [ - "n. 发生,事件,发现" - ], - "id": "Fas9Lv", - "checked": false - }, - { - "name": "lock", - "trans": [ - "n.锁; 水闸,船闸; (机器部件等的)锁定; 一把,一撮 vt.锁上; 锁好,关好; 使固定; 隐藏 vi.卡住,不动; 纠结; 僵硬不动" - ], - "id": "dUkKTM", - "checked": false - }, - { - "name": "append", - "trans": [ - "v. 附加,添加,悬挂 n.[计算机] DOS 命令建立数据文件的子目录搜索路经" - ], - "id": "Qlu5mS", - "checked": false - }, - { - "name": "destination", - "trans": [ - "n. 目的地,终点,景点" - ], - "id": "5VqwjE", - "checked": false - }, - { - "name": "password", - "trans": [ - "n. 口令,密码" - ], - "id": "Fj9PlD", - "checked": false - }, - { - "name": "point", - "trans": [ - "n. 点, 要点, 尖端,细节,目标 vt. &vi. 指出, 瞄准" - ], - "id": "_14qZg", - "checked": false - }, - { - "name": "variety", - "trans": [ - "n. 多样, 种类, 杂耍" - ], - "id": "VMcdCU", - "checked": false - }, - { - "name": "many", - "trans": [ - "n. 许多人,许多 adj. 许多的 pron. 许多人或物" - ], - "id": "OFfusm", - "checked": false - }, - { - "name": "buffer", - "trans": [ - "n. 缓冲,缓冲区 vt. 减轻,缓冲" - ], - "id": "vyfBGE", - "checked": false - }, - { - "name": "useful", - "trans": [ - "adj. 有用的" - ], - "id": "QlyYPT", - "checked": false - }, - { - "name": "object", - "trans": [ - "n. 物, 物体, 目标, 宾语 v. 反对,提出...作为反对的理由" - ], - "id": "j4zJAT", - "checked": false - }, - { - "name": "again", - "trans": [ - "adv. 又,再,另一方面" - ], - "id": "7msciG", - "checked": false - }, - { - "name": "carry", - "trans": [ - "n. 搬运, 射程, 投射, 联运 vt. 负载, 运输, 传送, 传播, 表达, 带有, 容纳, 承担, 怀孕, 延续, 推动, 赢得, 记录 vi. 负载, 被传达, 容许被运输, 被通过" - ], - "id": "tnugeE", - "checked": false - }, - { - "name": "update", - "trans": [ - "vt. &vi. 更新,补充最新资料 n. 更新" - ], - "id": "riZADJ", - "checked": false - }, - { - "name": "moving", - "trans": [ - "vbl.移动" - ], - "id": "XWX47_", - "checked": false - }, - { - "name": "coprocessor", - "trans": [ - "协处理器" - ], - "id": "FkyCCO", - "checked": false - }, - { - "name": "overlay", - "trans": [ - "覆盖" - ], - "id": "dVzZjH", - "checked": false - }, - { - "name": "practice", - "trans": [ - "n. 练习, 实行, 习惯; 业务 vt. &vi 练习, 实习, 开业" - ], - "id": "vw5B8G", - "checked": false - }, - { - "name": "navigation", - "trans": [ - "n. 航行, 航海, 导航" - ], - "id": "yLsucM", - "checked": false - }, - { - "name": "automatically", - "trans": [ - "adj. 不经思索的 adv. 自动地" - ], - "id": "pQiPoq", - "checked": false - }, - { - "name": "total", - "trans": [ - "adj.总计的(金额等); 全部的; 完全的; 绝对的 n.总计,总数; 全体数量 vt.& vi.总计达,计算…的总数" - ], - "id": "p8yehW", - "checked": false - }, - { - "name": "previous", - "trans": [ - "adj. 在...之前, 先, 前, 以前的" - ], - "id": "1lTNzb", - "checked": false - }, - { - "name": "software", - "trans": [ - "n. 软件" - ], - "id": "xBKY3H", - "checked": false - }, - { - "name": "shortcut", - "trans": [ - "n. 捷径 v. 抄近路,走捷径" - ], - "id": "3aHYH4", - "checked": false - }, - { - "name": "long", - "trans": [ - "adj. 长的,很久的,冗长的 vi. 渴望,热望,极想 adv. 长期地,远地 n. 长时间,长音节" - ], - "id": "u4iddp", - "checked": false - }, - { - "name": "unique", - "trans": [ - "adj. 独一无二的, 独特的, 稀罕的" - ], - "id": "2pB3hK", - "checked": false - }, - { - "name": "part", - "trans": [ - "n. 部份,零件,角色,部位 vt. 分开,分离,分配 vi. 分离,离开 adv. 部份地 adj. 分离的" - ], - "id": "JZTj0i", - "checked": false - }, - { - "name": "internal", - "trans": [ - "adj. 国内的, 内在的,身体内部的" - ], - "id": "1lYmRO", - "checked": false - }, - { - "name": "fill", - "trans": [ - "vt. 装满,填充,弥漫,担任 n. 足量" - ], - "id": "zF8DcL", - "checked": false - }, - { - "name": "basic", - "trans": [ - "adj.基本的; [化学]碱性的; [地质学]基性的; 首要的 n.基础,基本; 基本原则,基本原理,基本规律; 要素; 基础训练" - ], - "id": "TSBCil", - "checked": false - }, - { - "name": "math", - "trans": [ - "n. 数学" - ], - "id": "MRIaOw", - "checked": false - }, - { - "name": "since", - "trans": [ - "adv. 后来 conj. 既然,因为,自从 prep. 自从" - ], - "id": "O9VnaJ", - "checked": false - }, - { - "name": "determine", - "trans": [ - "vt.& vi.(使)下决心,(使)做出决定 vt.决定,确定; 判定,判决; 使决定; 限定 vi.[主用于法律]了结,终止,结束" - ], - "id": "ZL8M_9", - "checked": false - }, - { - "name": "making", - "trans": [ - "n. 制成 动词make的现在分词" - ], - "id": "OlOAIm", - "checked": false - }, - { - "name": "center", - "trans": [ - "n. 中心, 中间, 主角, 中锋, 重点 vi. 居中, 聚焦于... vt. 使集中, 放在中央" - ], - "id": "_9hhkZ", - "checked": false - }, - { - "name": "already", - "trans": [ - "adv. 已经" - ], - "id": "cHJ88f", - "checked": false - }, - { - "name": "keyword", - "trans": [ - "n. 关键字" - ], - "id": "BbUnmI", - "checked": false - }, - { - "name": "action", - "trans": [ - "n. 起诉,行为,作用,情节,活动" - ], - "id": "VX4J9F", - "checked": false - }, - { - "name": "condition", - "trans": [ - "n. 情况, 条件 v. 以...为条件, 决定, 支配, 训练" - ], - "id": "bn31lS", - "checked": false - }, - { - "name": "quick", - "trans": [ - "adj.快的,急速的; 聪明的,凌厉的; 灵活的; 短时间做成的 adv.迅速地,快速地 n.(指甲下的)活肉; 感情的中枢,感觉最敏锐的地方; 要害,核心" - ], - "id": "jL26ls", - "checked": false - }, - { - "name": "give", - "trans": [ - "vt.& vi.给予; 赠送; 作出 vt.供给; 产生; 举办; (为购买某物或做某事而)支付 vi.(物体)塌下; 让步 n.伸展性,弹性" - ], - "id": "aQy9p3", - "checked": false - }, - { - "name": "large", - "trans": [ - "adj. 广泛的,大的,强烈的 adv. 普遍地, 大量地" - ], - "id": "CuCtEd", - "checked": false - }, - { - "name": "chapter", - "trans": [ - "n. 章,回,篇,牧师的例行会议,地方分会" - ], - "id": "NAyU1R", - "checked": false - }, - { - "name": "computer", - "trans": [ - "n. 计算机" - ], - "id": "AJntzr", - "checked": false - }, - { - "name": "complete", - "trans": [ - "adj. 彻底的, 完整的, 已完成的 vt. 完成; 使圆满, 使完美" - ], - "id": "YVmXuY", - "checked": false - }, - { - "name": "past", - "trans": [ - "adj. 过去的 adv. 过 n. 过去 prep. 过,经过" - ], - "id": "x_Swa-", - "checked": false - }, - { - "name": "match", - "trans": [ - "n. 比赛, 火柴, 对手, 般配的人, 配偶 v. 使...相配, 与...竞争, 相配" - ], - "id": "P4Cf6X", - "checked": false - }, - { - "name": "recover", - "trans": [ - "vt.恢复; 重新获得; 找回; <正>恢复(适当的状态或位置) vi.恢复健康(体力、能力等) n.恢复开始时姿势" - ], - "id": "IpdJ4C", - "checked": false - }, - { - "name": "always", - "trans": [ - "adv. 总是" - ], - "id": "zeuMLx", - "checked": false - }, - { - "name": "require", - "trans": [ - "v. 需要, 要求" - ], - "id": "8Ha6ah", - "checked": false - }, - { - "name": "opening", - "trans": [ - "n. 开始, 口, 揭幕, 空缺的职务 vbl. 打开, 开放, 开始" - ], - "id": "ibVpk_", - "checked": false - }, - { - "name": "network", - "trans": [ - "n. 网络,系统,广播网 vt. 用网覆盖,联网 vi. 加入网络" - ], - "id": "OhDbez", - "checked": false - }, - { - "name": "sign", - "trans": [ - "n. 符号, 正负号, 手势, 迹象, 招牌 v. 签, 做手势, 做标记" - ], - "id": "Db7wKJ", - "checked": false - }, - { - "name": "release", - "trans": [ - "n. 释放, 让渡, 发行 vt. 释放, 让与, 准予发表, 发射" - ], - "id": "LpJ2zd", - "checked": false - }, - { - "name": "three", - "trans": [ - "num. 三 pron.&adj. 三(个,只...)" - ], - "id": "gUMV5S", - "checked": false - }, - { - "name": "recall", - "trans": [ - "vt. 召回;回想起,记起;取消 n. 召回;回忆;撤消" - ], - "id": "ala-QB", - "checked": false - }, - { - "name": "deletion", - "trans": [ - "n. 删除" - ], - "id": "oM0Dja", - "checked": false - }, - { - "name": "fixed", - "trans": [ - "adj. 固定的,不变的,准备好的 v. 修理,使...固定,决定 vbl. 修理,使...固定,决定 [计算机] 固定的" - ], - "id": "T7EsIF", - "checked": false - }, - { - "name": "amount", - "trans": [ - "n. 数量, 总额 vi. 总计, 等于" - ], - "id": "9ZCqLZ", - "checked": false - }, - { - "name": "alias", - "trans": [ - "n. 别名,化名 adv. 又被称为,另外地" - ], - "id": "HFIqZx", - "checked": false - }, - { - "name": "quote", - "trans": [ - "n. 引用 v. 引述, 举证, 报价" - ], - "id": "OJ9WP7", - "checked": false - }, - { - "name": "correct", - "trans": [ - "adj. 正确的 v. 改正,纠正 vt. 改正" - ], - "id": "onlXb5", - "checked": false - }, - { - "name": "else", - "trans": [ - "adj. 别的, 其他的 adv. 另外,否则" - ], - "id": "9wn7wT", - "checked": false - }, - { - "name": "maximum", - "trans": [ - "n. 极点, 最大量, 极大 adj. 最高的, 最大极限的" - ], - "id": "NlAQJT", - "checked": false - }, - { - "name": "under", - "trans": [ - "prep. 在...下,在...内,在...控制下,低于 adv. 在...下,在昏迷中,淹没地 adj. 下面的,从属的,少于的" - ], - "id": "h08Ezq", - "checked": false - }, - { - "name": "take", - "trans": [ - "vt.拿,取; 采取; 接受(礼物等); 耗费(时间等) vi.拿; 获得 n.镜头; 看法; 收入额; 场景" - ], - "id": "BGZCo5", - "checked": false - }, - { - "name": "element", - "trans": [ - "n. 成分,要素,元素,基本原理,(复数)恶劣天气" - ], - "id": "gKQ_LT", - "checked": false - }, - { - "name": "modification", - "trans": [ - "n. 修正, 修饰, 修改" - ], - "id": "59KP1g", - "checked": false - }, - { - "name": "input", - "trans": [ - "n. 输入" - ], - "id": "beKt0k", - "checked": false - }, - { - "name": "uppercase", - "trans": [ - "n. 大写字母 adj. 大写的 vt. 用大写字母排版或印刷" - ], - "id": "5pH1G8", - "checked": false - }, - { - "name": "plus", - "trans": [ - "prep.(表示运算)加; (表示包容)外加; [口语]和; (表示数目)在零(度)以上 n.加号; [数学]正量; 好处; 附加物 adj.加的; 正的; 附加的; 比所示数量多的" - ], - "id": "JRH8oW", - "checked": false - }, - { - "name": "found", - "trans": [ - "vt. 创立,建立;创办 v. 找到(find的过去分词)" - ], - "id": "vc3j9q", - "checked": false - }, - { - "name": "debug", - "trans": [ - "v.调试,驱除(某处的)害虫,排除障碍,纠正...的错误,寻出并拆除...内的窃听器" - ], - "id": "n52GJq", - "checked": false - }, - { - "name": "force", - "trans": [ - "n. 力量,武力,暴力,影响力 vt. 施暴,强迫,强夺,加压力 [计算机] 强制" - ], - "id": "Pbw-9E", - "checked": false - }, - { - "name": "lowercase", - "trans": [ - "adj. 小写体的 vt. 用小写字母书写,用小写字母打字 n. 小写体,小写字母" - ], - "id": "D5BJrf", - "checked": false - }, - { - "name": "just", - "trans": [ - "adj. 公正的,公平的,恰当的 adv. 正好,恰好" - ], - "id": "jV_fno", - "checked": false - }, - { - "name": "undo", - "trans": [ - "v. 解开,松开,取消" - ], - "id": "dCO6g2", - "checked": false - }, - { - "name": "environ", - "trans": [ - "vt. 包围, 环绕" - ], - "id": "HpF8gG", - "checked": false - }, - { - "name": "why", - "trans": [ - "adv. 为什么 conj. …的理由, 为什么 int. 咳, 哎呀 pron. 为何, 为什么" - ], - "id": "x6ecgl", - "checked": false - }, - { - "name": "temporary", - "trans": [ - "adj. 暂时的,临时的 n. 临时工" - ], - "id": "_mxbwb", - "checked": false - }, - { - "name": "put", - "trans": [ - "vt. 放,安置, 使处于 vi. 提交, 记下" - ], - "id": "sxlcff", - "checked": false - }, - { - "name": "instead", - "trans": [ - "adv. 代替, 反而" - ], - "id": "MpdT1z", - "checked": false - }, - { - "name": "encounter", - "trans": [ - "n. 意外的相见,遭遇 vt. &vi. 遇到,偶然碰到,遭遇" - ], - "id": "8Knioj", - "checked": false - }, - { - "name": "across", - "trans": [ - "adv. 横过, 使...被理解(或接受) prep. 穿过, 横过" - ], - "id": "eEylYG", - "checked": false - }, - { - "name": "matching", - "trans": [ - "adj. 匹配的, 相称的 动词match的现在分词" - ], - "id": "9ilR5t", - "checked": false - }, - { - "name": "wildcard", - "trans": [ - "n.[计]通配符" - ], - "id": "sBVzc0", - "checked": false - }, - { - "name": "spill", - "trans": [ - "vt.& vi.溢出; 泼出; 涌出; 蜂拥而出 n.洒出; 泼出; 溢出;小塞子" - ], - "id": "Ro0xWq", - "checked": false - }, - { - "name": "level", - "trans": [ - "n. 水平,等级,标准,层次 adj. 平坦的,齐平的,稳定的,合理的,满满的 vt. 压平,使同等,瞄准,夷为平地,推翻, 指责 vi. 趋向平稳, 瞄准, 诚恳待人, 使平等" - ], - "id": "jpu-rx", - "checked": false - }, - { - "name": "browse", - "trans": [ - "vt. &vi. 浏览, 随意观看, 吃草 n. 浏览, 嫩叶" - ], - "id": "r7-Vaf", - "checked": false - }, - { - "name": "speech", - "trans": [ - "n. 演讲,对话,话语,语言" - ], - "id": "JbpS6t", - "checked": false - }, - { - "name": "occur", - "trans": [ - "vi.发生; 出现; 闪现" - ], - "id": "VV5gGj", - "checked": false - }, - { - "name": "memo", - "trans": [ - "n. 备忘录" - ], - "id": "cdBuUT", - "checked": false - }, - { - "name": "prior", - "trans": [ - "adj. 更重要的, 较早的, 在先的 adv. 居先 n. 小修道院院长; 大修道院副院长" - ], - "id": "FkaCyH", - "checked": false - }, - { - "name": "loaded", - "trans": [ - "adj. 有负载的(装着货的, 装有弹药的, 加重的) v. 装载" - ], - "id": "ymD4m2", - "checked": false - }, - { - "name": "length", - "trans": [ - "n. 长度,篇幅" - ], - "id": "QOVJ3c", - "checked": false - }, - { - "name": "round", - "trans": [ - "n. 圆,(某种圆形)交谊舞,常规活动,一局(轮) adj. 圆的,微胖的,完整的,坦率的,圆满完成的 adv. 环形地 vt. 弄圆,绕行,使...完全,使成为整数 vi. 变圆(胖),弯曲 prp. 围绕,遍及" - ], - "id": "k9T5jj", - "checked": false - }, - { - "name": "variant", - "trans": [ - "n. 变体 adj. 不同的" - ], - "id": "nT4zGA", - "checked": false - }, - { - "name": "floppy", - "trans": [ - "adj. 叭塌叭塌响的,懒散的,邋遢的" - ], - "id": "Jx1frC", - "checked": false - }, - { - "name": "machine", - "trans": [ - "n.机器,机械; 机械般的人; 核心 vt.用机器制造,用机器加工 vi.被机器切削" - ], - "id": "ceuqtD", - "checked": false - }, - { - "name": "square", - "trans": [ - "n. 正方形,街区,平方,广场 adj. 正方形的,正直的,公正的,结实的 vt. 使...成方形,调整,一致 vi. 符合 adv. 成直角,直接的,正方形地" - ], - "id": "VzaQM1", - "checked": false - }, - { - "name": "supply", - "trans": [ - "n. 补给,供给,供应,贮备 vt. 补给,供给,提供,提供足够以满足" - ], - "id": "s_E_aC", - "checked": false - }, - { - "name": "home", - "trans": [ - "adj. 家(乡)的 adv. 回家, 在家, 正确的方向 n. 家, 住所, 国内的, 养老院 vt. 提供住处 vi. 回家, 移向" - ], - "id": "t3QD19", - "checked": false - }, - { - "name": "normal", - "trans": [ - "adj. 正常的,正规的 n. 常态, 标准" - ], - "id": "JbVrvi", - "checked": false - }, - { - "name": "onto", - "trans": [ - "prep. 到...上" - ], - "id": "eOCGz5", - "checked": false - }, - { - "name": "during", - "trans": [ - "prep. 在...期间" - ], - "id": "QtOMGO", - "checked": false - }, - { - "name": "module", - "trans": [ - "[计算机] 模块 n. 组件" - ], - "id": "Yjl35w", - "checked": false - }, - { - "name": "monochrome", - "trans": [ - "n. 单色画,单色画法 adj. 单色的,黑白的 [计算机] 单色的" - ], - "id": "nGu8fE", - "checked": false - }, - { - "name": "assistance", - "trans": [ - "n. 帮助, 援助" - ], - "id": "Oc0KNX", - "checked": false - }, - { - "name": "tell", - "trans": [ - "vt. 告诉,说,知道,认出,计数 vi. 讲述,告发,作证,产生效果" - ], - "id": "tnlVeP", - "checked": false - }, - { - "name": "library", - "trans": [ - "n. 图书馆, 藏书" - ], - "id": "banY4R", - "checked": false - }, - { - "name": "demonstration", - "trans": [ - "n. 示范,实证,表达,集会" - ], - "id": "VL7MJe", - "checked": false - }, - { - "name": "stack", - "trans": [ - "n. 堆叠,堆 vt. 堆积,成叠放在 vi. 堆成一堆" - ], - "id": "1SDyZi", - "checked": false - }, - { - "name": "even", - "trans": [ - "adj. 平坦的, 偶数的, 相等的 adv. 甚至, 恰好, 正当 v. 使平坦, 相等" - ], - "id": "pCp8-m", - "checked": false - }, - { - "name": "evaluate", - "trans": [ - "vt. 评估,评价" - ], - "id": "9TVp4P", - "checked": false - }, - { - "name": "times", - "trans": [ - "n. 时间,期限,次数,乘 vt. 为...安排时间,计时,定时,乘 [计算机] DOS命令 : 显示并允许改变系统时间 adj. 根据时间的, 时间上的" - ], - "id": "DZ4USr", - "checked": false - }, - { - "name": "previously", - "trans": [ - "adv. 以前(预先)" - ], - "id": "jDV9eN", - "checked": false - }, - { - "name": "directly", - "trans": [ - "adv. 直接地(立即,完全)" - ], - "id": "yqUpOM", - "checked": false - }, - { - "name": "logical", - "trans": [ - "adj. 符合逻辑的,逻辑上的,有推理能力的" - ], - "id": "-Bmddj", - "checked": false - }, - { - "name": "template", - "trans": [ - "n. 模板,样板" - ], - "id": "FyresN", - "checked": false - }, - { - "name": "calling", - "trans": [ - "n. 职业, 行业, 邀请 召集" - ], - "id": "z-WxcO", - "checked": false - }, - { - "name": "later", - "trans": [ - "adj. 更迟的,后面的 adv. 稍后,后来, 迟到地" - ], - "id": "PcNDdq", - "checked": false - }, - { - "name": "driver", - "trans": [ - "n. 驾驶员, 司机" - ], - "id": "Yv-78F", - "checked": false - }, - { - "name": "therefore", - "trans": [ - "adv. 因此, 所以" - ], - "id": "EeTZUF", - "checked": false - }, - { - "name": "saving", - "trans": [ - "n. n. 节约,挽救 (复数)savings:储蓄金,存款" - ], - "id": "nI3v5V", - "checked": false - }, - { - "name": "detail", - "trans": [ - "n. 细节,详情,部分,分派 vt. 详述,选派,用小元素装饰 vi. 画细节" - ], - "id": "hKj2vB", - "checked": false - }, - { - "name": "linker", - "trans": [ - "[计] (目标代码)连接器" - ], - "id": "dvrNJg", - "checked": false - }, - { - "name": "loop", - "trans": [ - "n. 环,圈,弯曲部份,回路 vt. 使...成环,以圈结,以环连结 vi. 形成环,环形地行动" - ], - "id": "w95uu1", - "checked": false - }, - { - "name": "process", - "trans": [ - "n.过程; 工序; 做事方法; 工艺流程 vt.加工; 处理; 审阅; 审核 vi.列队行进 adj.经过特殊加工(或处理)的" - ], - "id": "hXfEOj", - "checked": false - }, - { - "name": "scheme", - "trans": [ - "n. 方案, 计划, 阴谋 v. 计画, 设计, 体系, 结构, 图谋" - ], - "id": "OV4ohS", - "checked": false - }, - { - "name": "every", - "trans": [ - "adj. 每,每个,每隔...的" - ], - "id": "kKOdeA", - "checked": false - }, - { - "name": "refer", - "trans": [ - "vt. 把…提交; 把...归因, 归类为 vi. 谈及, 咨询, 参考" - ], - "id": "RCIQoq", - "checked": false - }, - { - "name": "possible", - "trans": [ - "adj. 可能的" - ], - "id": "zIgciz", - "checked": false - }, - { - "name": "above", - "trans": [ - "adj. 上面的 adv. 在上面, 超过 n. 上面的东西 prep. 在...上面, 超过" - ], - "id": "bBI9pD", - "checked": false - }, - { - "name": "overview", - "trans": [ - "n. 概观(况),总结 [计算机] 概貌" - ], - "id": "urlEzt", - "checked": false - }, - { - "name": "result", - "trans": [ - "n. 结果,成绩,答案 v. 产生,起于,致使" - ], - "id": "SGNsoB", - "checked": false - }, - { - "name": "syntax", - "trans": [ - "n. 句法" - ], - "id": "fRU84M", - "checked": false - }, - { - "name": "abbreviation", - "trans": [ - "n. 缩写" - ], - "id": "iysWRe", - "checked": false - }, - { - "name": "BIOS", - "trans": [ - "abbr. (=Basic Input Output System)基本输入输出系统" - ], - "id": "AM-Ckf", - "checked": false - }, - { - "name": "hidden", - "trans": [ - "adj. 隐藏的, 秘密的 vbl. 藏着, 隐藏, 躲藏 [计算机] 隐藏的" - ], - "id": "UXXb7a", - "checked": false - }, - { - "name": "null", - "trans": [ - "adj. 无效力的,无效的,无价值的 n. 零 [计算机] 空 vt. 使无效" - ], - "id": "__stDO", - "checked": false - }, - { - "name": "send", - "trans": [ - "vt. 送给,传,寄,发射 vi. 放送 n. 波浪的推力" - ], - "id": "5YI_Tw", - "checked": false - }, - { - "name": "private", - "trans": [ - "adj. 私人的,隐蔽的 n. 士兵,列兵" - ], - "id": "p2EsZ3", - "checked": false - }, - { - "name": "hard", - "trans": [ - "adj. 坚硬的;艰难的,苛刻的 adv. 努力地,猛烈地,坚定地" - ], - "id": "MfZWKx", - "checked": false - }, - { - "name": "hardware", - "trans": [ - "n. 五金器具 n. (计算机) 硬件" - ], - "id": "YI0VD3", - "checked": false - }, - { - "name": "say", - "trans": [ - "vt. 说,讲,表达,假设,,指示 vi. 说 n. 发言权 adv. 大约" - ], - "id": "sJ4dFE", - "checked": false - }, - { - "name": "equal", - "trans": [ - "adj. 相等的,平等的,胜任的 n. 对手,匹敌,同辈 vt. 等于,比得上" - ], - "id": "DT8lrf", - "checked": false - }, - { - "name": "pack", - "trans": [ - "n. 包裹,一群,一副,一帮,一群 vt. 包装,捆扎,塞满, 收拾行李, 佩戴 vi. 包装,(用某物)保存,保藏 ,塞进" - ], - "id": "oaSI4F", - "checked": false - }, - { - "name": "minus", - "trans": [ - "adj. 负的,减的 n. 减号,负数,缺点 prep. 减去" - ], - "id": "Hh2kNd", - "checked": false - }, - { - "name": "alternate", - "trans": [ - "adj. 交替的, 轮流的, 间隔的 vt. &vi. 交替, 轮流" - ], - "id": "CYzuza", - "checked": false - }, - { - "name": "collapse", - "trans": [ - "n. 崩溃,倒塌,暴跌 vi. 倒塌,崩溃,瓦解,折叠 vt. 倒塌,缩减" - ], - "id": "nv12lc", - "checked": false - }, - { - "name": "linux", - "trans": [ - "一种可免费使用的类UNIX操作系统" - ], - "id": "KDTdE-", - "checked": false - }, - { - "name": "corner", - "trans": [ - "n.角落,角; 拐角; 困境; [商]囤积 vi.驾车转弯; 聚于角落 vt.垄断; 逼入困境 adj.位于角落的" - ], - "id": "gePFc8", - "checked": false - }, - { - "name": "present", - "trans": [ - "n. 礼物, 现在 adj. 当面的, 出席的, 现在的 v. 赠送, 提出, 呈现" - ], - "id": "tcn0ye", - "checked": false - }, - { - "name": "interpreter", - "trans": [ - "n. 译员,口译者,解释程序" - ], - "id": "WBSX4W", - "checked": false - }, - { - "name": "advance", - "trans": [ - "n. 前进,进步,预支 vt. 前进,增涨,预先 vi. 前进,提升 adj. 预先的,提前的" - ], - "id": "wn-PPY", - "checked": false - }, - { - "name": "forward", - "trans": [ - "adv.前进地; 向前; 至将来; 提前地 adj.向前方的; 迅速的; (社会、政治)进步的; 早熟的 vt.促进,助长; (按新地址)转寄; 发送 n.前锋" - ], - "id": "xbCrUe", - "checked": false - }, - { - "name": "fast", - "trans": [ - "adj.快的; 走得快; 感光快的; 紧的 adv.(比准确的时间或宣布的时间)快; 迅速地; 紧紧地; 彻底地 vi.禁食,(尤指)斋戒 n.禁食期,斋戒期; 断食,节食" - ], - "id": "4VqF5z", - "checked": false - }, - { - "name": "special", - "trans": [ - "n. 专辑,专车,特色菜,特价,特刊 adj. 特别的,专门的" - ], - "id": "N5YYGZ", - "checked": false - }, - { - "name": "slash", - "trans": [ - "vi. 大幅度削减 vt. 猛砍,尖锐抨击,大幅减少 n. 猛砍,斜线,长切口,衣衩" - ], - "id": "MLR9WN", - "checked": false - }, - { - "name": "utility", - "trans": [ - "n. 公共设施,效用,公用程序,实用品,实用 adj. 多效用的,多功能的" - ], - "id": "nJOs4S", - "checked": false - }, - { - "name": "regardless", - "trans": [ - "adj. 不注意的, 粗心的 adv. 不顾" - ], - "id": "BosCxq", - "checked": false - }, - { - "name": "disable", - "trans": [ - "v. 使...失去能力" - ], - "id": "drmSMq", - "checked": false - }, - { - "name": "compatible", - "trans": [ - "adj. 能共处的,可并立的,适合的, 兼容的 n. 兼容" - ], - "id": "hmzvyc", - "checked": false - }, - { - "name": "depend", - "trans": [ - "vi. 依靠,相信,指望" - ], - "id": "kWuC3h", - "checked": false - }, - { - "name": "empty", - "trans": [ - "adj. 空的,空虚的,空腹的 n. 空物 vt. 使...空 vi. 变空,流入" - ], - "id": "zIbaKl", - "checked": false - }, - { - "name": "alphabetical", - "trans": [ - "adj. 按字母表顺序的" - ], - "id": "uqe6yW", - "checked": false - }, - { - "name": "branch", - "trans": [ - "n. 分支,树枝 vt &vi. 分支, 分岔" - ], - "id": "_f1DYM", - "checked": false - }, - { - "name": "resume", - "trans": [ - "v. 再继续, 重新开始 n. 简历, 履历; 摘要" - ], - "id": "RlgwlX", - "checked": false - }, - { - "name": "multiple", - "trans": [ - "adj. 许多,多种多样的 n. 倍数,并联" - ], - "id": "-h1p2N", - "checked": false - }, - { - "name": "monitor", - "trans": [ - "n. 监督器, 班长, 监听员, [计算机]显示器, 监视器 v. 监视, 监听, 监督" - ], - "id": "rleRxR", - "checked": false - }, - { - "name": "configuration", - "trans": [ - "n. 结构,布局,形态,格式塔心理完形 [计算机] 配置" - ], - "id": "xjmchx", - "checked": false - }, - { - "name": "replacement", - "trans": [ - "n. 交换,更换,代替者" - ], - "id": "YkO1ye", - "checked": false - }, - { - "name": "required", - "trans": [ - "adj. 必需的" - ], - "id": "b7IuEw", - "checked": false - }, - { - "name": "table", - "trans": [ - "n. 桌子, 平地层, 石板, 表格 vt. 搁置, 嵌合, 制表 adj. 桌子的" - ], - "id": "9CQeL1", - "checked": false - }, - { - "name": "loss", - "trans": [ - "n. 丧失, 损耗, 亏损" - ], - "id": "6Y58QF", - "checked": false - }, - { - "name": "exact", - "trans": [ - "adj. 精确的 vt. 强求,要求,索取" - ], - "id": "TU1aZw", - "checked": false - }, - { - "name": "aboveboard", - "trans": [ - "adv. 光明正大地, 率直地 adj. 光明正大的, 率直的" - ], - "id": "NnCeCB", - "checked": false - }, - { - "name": "activate", - "trans": [ - "v. 刺激,使...活动,创设" - ], - "id": "IL9q7N", - "checked": false - }, - { - "name": "around", - "trans": [ - "adj. 大约, 在现存范围内 adv. 大约,到处,在周围 prep. 在...附近, 到处" - ], - "id": "TPexv5", - "checked": false - }, - { - "name": "slow", - "trans": [ - "adj. 慢的 adv. 慢慢地 vt.& vi. 放慢,减速" - ], - "id": "dT8aFR", - "checked": false - }, - { - "name": "floating", - "trans": [ - "adj.浮动的,流动性的,不固定的 动词float的现在分词形式" - ], - "id": "utinEo", - "checked": false - }, - { - "name": "refresh", - "trans": [ - "vt.& vi. 使...生气蓬勃,提起精神,恢复精神" - ], - "id": "H9KUnn", - "checked": false - }, - { - "name": "stop", - "trans": [ - "n. 停止,车站,滞留,阻挡 vt. 停止,制止,塞住 vi. 停止,停留,结束" - ], - "id": "p7beb1", - "checked": false - }, - { - "name": "pass", - "trans": [ - "vt.& vi.走过; 通过; 批准; 度过 vt.传球; 及格; 发生; 不要 n.通道; 通行证; 关口; 越过" - ], - "id": "XikViR", - "checked": false - }, - { - "name": "public", - "trans": [ - "adj. 公开的,众所周知的,公众的 n. 公共场合,公众,同好者" - ], - "id": "fInto8", - "checked": false - }, - { - "name": "eject", - "trans": [ - "vt.喷出; 驱逐; 强制离开 vi.弹射出" - ], - "id": "4Y10bH", - "checked": false - }, - { - "name": "ignore", - "trans": [ - "vt. 不顾,不理,忽视" - ], - "id": "UXD-1T", - "checked": false - }, - { - "name": "share", - "trans": [ - "n. 部份,股份,分担,犁头 vt. 分享,共有,分配 vi. 分享" - ], - "id": "BaID4k", - "checked": false - }, - { - "name": "sequence", - "trans": [ - "n. 序列, 一系列, 顺序, 一组镜头 vt. 安排顺序" - ], - "id": "PDzHUt", - "checked": false - }, - { - "name": "consist", - "trans": [ - "n. 组成 vi. 组成,存在,一致" - ], - "id": "8_2rB0", - "checked": false - }, - { - "name": "step", - "trans": [ - "n. 步骤,步伐,踏级 vt. 踏,以步测量" - ], - "id": "97Gulj", - "checked": false - }, - { - "name": "double", - "trans": [ - "n. 两倍,复制品,替身,双重角色的演员,反转,双人房 adj. 两倍的,双重的,骗人的,加量的 adv. 两倍地,双人地,翻来覆去地,对折地 vt. 使加倍,对折,握紧,做替身 vi. 加倍,转身,兼任,替代演出" - ], - "id": "SJLl_3", - "checked": false - }, - { - "name": "come", - "trans": [ - "vt. 接近,扮演 vi. 来,发生,达到,进入" - ], - "id": "7iooth", - "checked": false - }, - { - "name": "lower", - "trans": [ - "adj. 低的, 下级的, 下层的 vt. 降低, 跌落, 减弱, 贬低 vi. 皱眉, 降低, 阴沉, 变少 n. 皱眉, 下级, 阴沉的样子, 前兆" - ], - "id": "53Ith7", - "checked": false - }, - { - "name": "describe", - "trans": [ - "vt. 描述, 画(尤指几何图形)" - ], - "id": "jwC4y2", - "checked": false - }, - { - "name": "count", - "trans": [ - "v. 计算, 视为, 依赖 n. 计数" - ], - "id": "VxHchb", - "checked": false - }, - { - "name": "pop", - "trans": [ - "n. 取出,砰然声,流行乐曲,流行文化艺术,(尤用作称呼)爸 adj. 流行的,热门的,通俗的 vt. 取出,发出爆裂声,突然伸出,击打,开火 vi. 发出砰的一声,(因激动、惊奇)张大 adv. 突然间地, 暴发地 POP abbr.=point of purchase POP abbr.=population 人口" - ], - "id": "okFlky", - "checked": false - }, - { - "name": "valid", - "trans": [ - "adj. 有确实根据的; 有效的; 正当的, 合法的" - ], - "id": "I90RWc", - "checked": false - }, - { - "name": "suspend", - "trans": [ - "v. 推迟,悬(浮),挂,暂停,取消 vi. 吊,悬浮 vt. 悬,挂,吊,暂停,中止" - ], - "id": "NQUqn8", - "checked": false - }, - { - "name": "enhance", - "trans": [ - "vt. 提高,加强,增加" - ], - "id": "LGxtZN", - "checked": false - }, - { - "name": "separate", - "trans": [ - "n. 分开, 抽印本 adj. 分开的, 各自的, 单独的 v. 分开, 隔开, 分居" - ], - "id": "hTAz5d", - "checked": false - }, - { - "name": "echo", - "trans": [ - "n. 回声,回音,回波,反响,共鸣 vt. 发回声,回响, 重复, 仿效 vi. 回响, 回荡 n.[计算机] DOS命令 :禁止(或允许)批处理命令行显示屏幕上" - ], - "id": "FFvasa", - "checked": false - }, - { - "name": "necessary", - "trans": [ - "adj. 必需的,必要的,必然的 n. [pl.]必需品" - ], - "id": "xcf_mb", - "checked": false - }, - { - "name": "able", - "trans": [ - "adj. 能干的, 有能力的" - ], - "id": "5r3NUN", - "checked": false - }, - { - "name": "marking", - "trans": [ - "n. 印记, 作记号,打分 动词mark的现在分词" - ], - "id": "SnDfZI", - "checked": false - }, - { - "name": "ask", - "trans": [ - "vt. 询问, 请求,要求,开价 vi. 询问,恳求" - ], - "id": "bd7M5d", - "checked": false - }, - { - "name": "term", - "trans": [ - "n.学期; 条款; 术语; 期限 vt.把…称为; 把…叫做" - ], - "id": "6bVPNi", - "checked": false - }, - { - "name": "bring", - "trans": [ - "vt. 带来, 引起, 促使, 劝诱 vi. 产生" - ], - "id": "mSJd9s", - "checked": false - }, - { - "name": "warning", - "trans": [ - "n. 警告, 预告, 通知 vbl. 警告, 注意, 通知" - ], - "id": "PgLyZj", - "checked": false - }, - { - "name": "less", - "trans": [ - "adj. 更少的,更小的 adv. 更少地,更小地 n. 少量, 次要 prep. 减" - ], - "id": "XtD8i8", - "checked": false - }, - { - "name": "comment", - "trans": [ - "n. 注释, 评论; 闲话 v. 注释, 评论" - ], - "id": "maunTp", - "checked": false - }, - { - "name": "effect", - "trans": [ - "n. 结果, 影响, 效果; 要旨 vt. 招致, 引起; 实现, 达到" - ], - "id": "I9Fxab", - "checked": false - }, - { - "name": "expanding", - "trans": [ - "adj.展开的,扩大的" - ], - "id": "QwJEHJ", - "checked": false - }, - { - "name": "on-line", - "trans": [ - "adj.在线的,即时的" - ], - "id": "HwxoWC", - "checked": false - }, - { - "name": "reorder", - "trans": [ - "重新排序, 再定购" - ], - "id": "xjgKMB", - "checked": false - }, - { - "name": "direct", - "trans": [ - "adj. 笔直的,直接的,坦白的 vt. 指挥,命令,负责 vi. 指导,指出" - ], - "id": "io-jdv", - "checked": false - }, - { - "name": "enclose", - "trans": [ - "vt. 围绕, 圈起, 放入封套, 附上 [计算机] 括入" - ], - "id": "zSAMEQ", - "checked": false - }, - { - "name": "reset", - "trans": [ - "n. 重新设定, 重新组合 v. 重新设定, 重新放置, 重新组合" - ], - "id": "zFNPuC", - "checked": false - }, - { - "name": "various", - "trans": [ - "adj. 各种各样的" - ], - "id": "oHIiAk", - "checked": false - }, - { - "name": "paper", - "trans": [ - "n. 纸,文件,论文,报纸,票据 vt. 用纸包,供纸,仓促完成 vi. 贴壁纸 adj.纸制的,文书的,理论上的" - ], - "id": "anKLNs", - "checked": false - }, - { - "name": "prevent", - "trans": [ - "v. 预防, 防止" - ], - "id": "Z4c_oS", - "checked": false - }, - { - "name": "side", - "trans": [ - "n. 旁边,侧,方面 adj. 旁的,侧的 vt. 支持,同意 vi. 支持" - ], - "id": "TkxPmQ", - "checked": false - }, - { - "name": "push", - "trans": [ - "n. 推,奋力,决心 vt. &vi. 推,挤,逼迫" - ], - "id": "HVKXEC", - "checked": false - }, - { - "name": "programming", - "trans": [ - "n. 程序设计, 编程 动词program的现在分词" - ], - "id": "oT_AAI", - "checked": false - }, - { - "name": "upper", - "trans": [ - "adj. 上部的,地位较高的,上面的,北方的 n. 鞋帮,上牙,兴奋剂,令人愉快的经历" - ], - "id": "5FQ8FC", - "checked": false - }, - { - "name": "row", - "trans": [ - "n. 排,船游,吵闹 vt. 划船,成排 vi. 划船,吵架" - ], - "id": "Y5nrIV", - "checked": false - }, - { - "name": "pressed", - "trans": [ - "adj. 被压迫的,压缩的 动词press的过去式和过去分词" - ], - "id": "rWOjjy", - "checked": false - }, - { - "name": "temporarily", - "trans": [ - "adj. 临时的 adv. 暂时地,临时地" - ], - "id": "pW5TnZ", - "checked": false - }, - { - "name": "day", - "trans": [ - "n. 白天,一天" - ], - "id": "sBZy5U", - "checked": false - }, - { - "name": "repaint", - "trans": [ - "v.重漆,重画 v.重新绘制" - ], - "id": "euKh1F", - "checked": false - }, - { - "name": "redefine", - "trans": [ - "vt. 重新定义" - ], - "id": "moA8z3", - "checked": false - }, - { - "name": "relation", - "trans": [ - "n. 关系,家人,亲戚,叙述,陈述" - ], - "id": "mAOfLu", - "checked": false - }, - { - "name": "dimension", - "trans": [ - "n. 尺寸, 次元, 容积, 维度 n. 范围; 方面 vt. 标尺寸; 形成...尺寸" - ], - "id": "SaT-lT", - "checked": false - }, - { - "name": "boundary", - "trans": [ - "n. 分界线, 边界" - ], - "id": "GMe81h", - "checked": false - }, - { - "name": "zoom", - "trans": [ - "vi.嗡嗡作响; 急速上升 n.嗡嗡声; 隆隆声; (车辆等)疾驰的声音; 变焦 vt.使急速上升; 使猛增" - ], - "id": "lt4zHs", - "checked": false - }, - { - "name": "initialize", - "trans": [ - "vt. 初始化" - ], - "id": "0SVX-_", - "checked": false - }, - { - "name": "personal", - "trans": [ - "adj. 私人的,个人的 n. (报刊的)私人专栏" - ], - "id": "nnXEDd", - "checked": false - }, - { - "name": "true", - "trans": [ - "adj. 确切的,可靠的,真实的,正确的,正式的 adv. 笔直地,事实地 n. 真相,精确 vt. 使...平衡" - ], - "id": "H8w28W", - "checked": false - }, - { - "name": "wish", - "trans": [ - "n. 渴望,愿望,(复数)祝颂,命令 vt. &vi. 想要,希望" - ], - "id": "jbsUYi", - "checked": false - }, - { - "name": "font", - "trans": [ - "n.字体; 字形; 圣洗池(设于教堂中,常为石造)" - ], - "id": "kWEhlF", - "checked": false - }, - { - "name": "know", - "trans": [ - "vt. &vi.知道,了解,认识" - ], - "id": "y3KfJ7", - "checked": false - }, - { - "name": "convert", - "trans": [ - "v. 使转变, 使...改变信仰, 倒置 n. 皈依者, 改宗者" - ], - "id": "CL0xbh", - "checked": false - }, - { - "name": "global", - "trans": [ - "adj. 全球性的, 全局的" - ], - "id": "tDEjgC", - "checked": false - }, - { - "name": "installation", - "trans": [ - "n. 安装,装置, 军事驻地" - ], - "id": "oHXIhQ", - "checked": false - }, - { - "name": "invoke", - "trans": [ - "vt. 求助,用咒语召唤,请求,应用,引起 [计算机] 调用" - ], - "id": "oNs4OG", - "checked": false - }, - { - "name": "interactive", - "trans": [ - "adj. 相互作用的 [计算机] 交互的" - ], - "id": "KSFi2r", - "checked": false - }, - { - "name": "century", - "trans": [ - "n. 世纪,一百年,成百的东西" - ], - "id": "IMobou", - "checked": false - }, - { - "name": "literal", - "trans": [ - "adj. 逐字的, 字面上的, 文字的 [计算机] 文字的" - ], - "id": "hL9e63", - "checked": false - }, - { - "name": "rather", - "trans": [ - "adv. 宁可,宁愿,有些,相当,反而" - ], - "id": "BHpjyH", - "checked": false - }, - { - "name": "exclusive", - "trans": [ - "adj. 独占的, 唯一的, 排外的; 高价的, 时髦的 [计算机] 互斥的 n. 独家新闻, 独权" - ], - "id": "lqr2OI", - "checked": false - }, - { - "name": "marker", - "trans": [ - "n. 标记,做记号的工具,做记号的人,记分员" - ], - "id": "ONVphz", - "checked": false - }, - { - "name": "wait", - "trans": [ - "vt.& vi.等候; 等待; (尤指长期地)希望; 盼望 vi.准备妥; 在手边; 可得到; 可使用 vt.推迟,搁置,延缓" - ], - "id": "wtL39x", - "checked": false - }, - { - "name": "appropriate", - "trans": [ - "adj. 适当的, 相称的 vt. 拨出(款项); 占用" - ], - "id": "nCPBwL", - "checked": false - }, - { - "name": "fit", - "trans": [ - "adj. 适宜的,对的,准备好的 v. 适合,安装 n. 适宜,发作,一阵" - ], - "id": "3MAzSD", - "checked": false - }, - { - "name": "adapter", - "trans": [ - "n. 适配器 n. 改编者" - ], - "id": "XfvGu5", - "checked": false - }, - { - "name": "filter", - "trans": [ - "n. 筛选,滤波器,过滤器,滤色镜 vt. &vi. 过滤,渗透 [计算机] 过滤" - ], - "id": "4ZzEL8", - "checked": false - }, - { - "name": "break", - "trans": [ - "n. 休息,中断,破裂 v. 打破,弄破,弄坏" - ], - "id": "8WVSb_", - "checked": false - }, - { - "name": "backward", - "trans": [ - "adj. 向后的 adv. 向后" - ], - "id": "A6-ie2", - "checked": false - }, - { - "name": "searching", - "trans": [ - "adj. 探寻的,洞察的 动词search的现在分词" - ], - "id": "YMYAZi", - "checked": false - }, - { - "name": "receive", - "trans": [ - "vt. 收到,接受,迎接,容纳,遭受,相信 vi. 接到,获得" - ], - "id": "PfIGoW", - "checked": false - }, - { - "name": "dual", - "trans": [ - "adj. 双重的, 成双的 n. 双数" - ], - "id": "4al0Iz", - "checked": false - }, - { - "name": "retry", - "trans": [ - "vt. 重试" - ], - "id": "cQ_eEQ", - "checked": false - }, - { - "name": "normally", - "trans": [ - "adv. 正常地,通常地" - ], - "id": "dC2xFt", - "checked": false - }, - { - "name": "exactly", - "trans": [ - "adj. 完全的 adv. 恰好地,正好地,正确地,精确地,正是" - ], - "id": "pVXkJB", - "checked": false - }, - { - "name": "immediately", - "trans": [ - "adv. 立即,直接地 conj. 一...(就)" - ], - "id": "b1WnSA", - "checked": false - }, - { - "name": "separated", - "trans": [ - "adj. 分开的 动词separate的过去式和过去分词" - ], - "id": "TY6vK7", - "checked": false - }, - { - "name": "high", - "trans": [ - "adj.高的,轻微变质的,高尚的,严重的,强的 adv. 高,好 n. 高地,天堂,高气压,高度,兴奋" - ], - "id": "ViWnc-", - "checked": false - }, - { - "name": "equivalent", - "trans": [ - "adj. 等价的, 相等的 n. 相等物" - ], - "id": "_Fz8Vv", - "checked": false - }, - { - "name": "light", - "trans": [ - "n. 光,光线,灯,启发,众所周知的,通光口,眼光 adj. 轻的,不重要的,容易的,明亮的,淡色的 vi. 点燃,着火,变亮,下马,落下,碰巧发生 vt. 点燃,照亮 adv. 轻地,轻便的" - ], - "id": "iplyqx", - "checked": false - }, - { - "name": "zero", - "trans": [ - "num.&n. 零" - ], - "id": "2sqiGy", - "checked": false - }, - { - "name": "storage", - "trans": [ - "n. 储存体, 储藏, 仓库, 保管费" - ], - "id": "nI6itU", - "checked": false - }, - { - "name": "width", - "trans": [ - "n. 宽度,广度,某一宽度的材料" - ], - "id": "qUkvRx", - "checked": false - }, - { - "name": "language", - "trans": [ - "n. 语言" - ], - "id": "raCGtf", - "checked": false - }, - { - "name": "startup", - "trans": [ - "n. 开动, 出发" - ], - "id": "aJwnP9", - "checked": false - }, - { - "name": "much", - "trans": [ - "adj. 许多的 adv. 很,非常 pron.&n. 许多" - ], - "id": "LpQB1F", - "checked": false - }, - { - "name": "per", - "trans": [ - "prep. 每,每一 adv.每人" - ], - "id": "Y0x1nt", - "checked": false - }, - { - "name": "over", - "trans": [ - "prep.(表示方向)越过; (部份或全部覆盖)在…上面; 由于; (表示论及)关于 adv.结束; 再; (倒)下; 从一边至另一边 adj.过去的; 外面的; 在上的; 上级的 n.额外; 剩余; 剩余(或多余)的量; 剩余物" - ], - "id": "GYPs42", - "checked": false - }, - { - "name": "mirror", - "trans": [ - "n. 镜子 vt. 反映,反射" - ], - "id": "F62Wsb", - "checked": false - }, - { - "name": "request", - "trans": [ - "n. 要求, 请求 vt. 请求, 要求" - ], - "id": "U6yW8y", - "checked": false - }, - { - "name": "keypad", - "trans": [ - "n. [计算机]小键盘" - ], - "id": "MqEjq2", - "checked": false - }, - { - "name": "keep", - "trans": [ - "vt.保持; 保留; 遵守; 阻止 vi.(食品)保持新; 保持健康 n.保持,保养; 供养,抚养; 生活,生计; 饲料;牧草" - ], - "id": "QBTvlx", - "checked": false - }, - { - "name": "resident", - "trans": [ - "adj. 居住的 n. 居民,旅客" - ], - "id": "PEq-7F", - "checked": false - }, - { - "name": "learning", - "trans": [ - "n. 学问, 学识, 学习 动词learn的现在分词" - ], - "id": "aCH3tk", - "checked": false - }, - { - "name": "talk", - "trans": [ - "n. 谈话,会谈,讲话, 闲话 vt. 说, 谈论, 商讨 vi. 说闲话, 招供, 开口说话, 闲聊" - ], - "id": "LDEXJc", - "checked": false - }, - { - "name": "summary", - "trans": [ - "n. 摘要,概要 adj. 摘要的,简略的" - ], - "id": "UA-Fh3", - "checked": false - }, - { - "name": "well", - "trans": [ - "n. 井,源泉,楼梯井 adj. 健康的,良好的,适宜的 adv. 很好地,适当地 vi. 涌出 interj. 好吧,啊" - ], - "id": "qAU5dY", - "checked": false - }, - { - "name": "link", - "trans": [ - "n. 环节,联系, (链的)环, 圈 vt. &vi. 连接,联系" - ], - "id": "xmcCMJ", - "checked": false - }, - { - "name": "identify", - "trans": [ - "vt.识别,认出; 确定; 使参与; 把…看成一样 vi.确定; 认同" - ], - "id": "qRxOdJ", - "checked": false - }, - { - "name": "pertain", - "trans": [ - "vi. 从属, 关于" - ], - "id": "xbPrsq", - "checked": false - }, - { - "name": "expansion", - "trans": [ - "n. 扩大,膨胀,扩充" - ], - "id": "-fcZJx", - "checked": false - }, - { - "name": "incompatible", - "trans": [ - "adj. 不相容的, 不能并存的, 矛盾的" - ], - "id": "S7hn8i", - "checked": false - }, - { - "name": "blinking", - "trans": [ - "adj. 闪烁的 adj. 该死的, 讨厌的, 十足的 动词blink的现在分词" - ], - "id": "GYJSDS", - "checked": false - }, - { - "name": "month", - "trans": [ - "n. 月" - ], - "id": "bm37VK", - "checked": false - }, - { - "name": "precede", - "trans": [ - "vt. &vi. 在...之前,优于,较...优先" - ], - "id": "wb_9md", - "checked": false - }, - { - "name": "readily", - "trans": [ - "adv. 不迟疑地,迅速地,轻易地" - ], - "id": "sSvrvD", - "checked": false - }, - { - "name": "transportable", - "trans": [ - "便携式计算机, 可传送的" - ], - "id": "0tKMrf", - "checked": false - }, - { - "name": "routine", - "trans": [ - "n. 例行公事, 常规,无聊 adj. 常规的, 例行的,乏味的" - ], - "id": "otUrPU", - "checked": false - }, - { - "name": "ready", - "trans": [ - "adj. 准备好的,乐意的,情愿的,现成的 vt. 做好…的准备" - ], - "id": "NrWuvA", - "checked": false - }, - { - "name": "listing", - "trans": [ - "[计算机] 清单" - ], - "id": "k6cPks", - "checked": false - }, - { - "name": "newly", - "trans": [ - "adv. 崭新,新改,以新方法" - ], - "id": "jOtnJf", - "checked": false - }, - { - "name": "year", - "trans": [ - "n.年; 年纪; 一年的期间; 某年级的学生" - ], - "id": "4iL7CB", - "checked": false - }, - { - "name": "contact", - "trans": [ - "v. (与)联系, (与)接触 n. 接触, 联系; 联系人" - ], - "id": "DXB0bg", - "checked": false - }, - { - "name": "session", - "trans": [ - "n.开会,会议;(法庭的)开庭; 会期,学期; (进行某活动连续的)一段时间" - ], - "id": "dNMN5e", - "checked": false - }, - { - "name": "own", - "trans": [ - "adj. 自己的, 嫡亲的 pron. 自己的 vi. 承认 vt. 拥有, 承认" - ], - "id": "cdnuVZ", - "checked": false - }, - { - "name": "redraw", - "trans": [ - "v. 重划" - ], - "id": "dX5pGh", - "checked": false - }, - { - "name": "here", - "trans": [ - "adv.在这里; 这时; 在这一点上; (给某人东西或指出某物时说) n.这里 int.喂; 嗨" - ], - "id": "FbmCBd", - "checked": false - }, - { - "name": "manual", - "trans": [ - "adj. 手工的,体力的 n. 手册,指南,键盘" - ], - "id": "tDi7um", - "checked": false - }, - { - "name": "particular", - "trans": [ - "n. 个别项目, 详细说明 adj. 特别的, 独有的; 挑剔的; 详细的" - ], - "id": "B5PULl", - "checked": false - }, - { - "name": "rectangle", - "trans": [ - "n. 长方形,矩形" - ], - "id": "QbDVHW", - "checked": false - }, - { - "name": "additive", - "trans": [ - "n. 附加物(加法) adj. 加添的" - ], - "id": "1h_Wrc", - "checked": false - }, - { - "name": "similar", - "trans": [ - "adj. 相似的,类似的,相同,一样" - ], - "id": "MrYuXZ", - "checked": false - }, - { - "name": "assembly", - "trans": [ - "n. 集合, 集会, 装配" - ], - "id": "AAEtRK", - "checked": false - }, - { - "name": "copyright", - "trans": [ - "adj. 版权(的) n. 版权,著作权" - ], - "id": "9v6xZq", - "checked": false - }, - { - "name": "description", - "trans": [ - "n. 描写, 描述, 说明书, 作图 n. 类型" - ], - "id": "3b-9u7", - "checked": false - }, - { - "name": "retrieve", - "trans": [ - "vt. 挽回,恢复,回忆,补偿 vi. 找回猎物 n. 取回,恢复" - ], - "id": "h59zfZ", - "checked": false - }, - { - "name": "mistake", - "trans": [ - "n. 错误,误会 vt. 弄错,误认 vi. 犯错" - ], - "id": "6Pk5hd", - "checked": false - }, - { - "name": "produce", - "trans": [ - "n. 产品, 农作物 vt. 生产, 提出, 引起, 分娩, 制片 vi. 生产, 制造" - ], - "id": "WzxlfP", - "checked": false - }, - { - "name": "ram", - "trans": [ - "abbr. 随机存取存储器(random access memory的缩写);随机访问内存(random-access memory的缩写) n. 公羊;撞锤;撞击装置;有撞角的军舰;(水压机的)[机] 活塞 v. 撞击;填塞;强迫通过或接受" - ], - "id": "mPLDY0", - "checked": false - }, - { - "name": "exception", - "trans": [ - "n. 除外,例外" - ], - "id": "nylhbu", - "checked": false - }, - { - "name": "digit", - "trans": [ - "n. 数字,位数,指头" - ], - "id": "Mg3xUR", - "checked": false - }, - { - "name": "reverse", - "trans": [ - "n. 相反; 背面; 失败, 挫折 adj. 反面的, 相反的, 颠倒的 v. 颠倒, 逆转, 倒退" - ], - "id": "tOc66G", - "checked": false - }, - { - "name": "minimum", - "trans": [ - "adj. 最低的, 最小的 n. 最小量, 最低限度" - ], - "id": "PCt5mD", - "checked": false - }, - { - "name": "enough", - "trans": [ - "adj. 足够的 adv. 足够地 n. 充足,足够 pron. 足够(的)" - ], - "id": "1HRpGx", - "checked": false - }, - { - "name": "although", - "trans": [ - "conj. 尽管, 虽然" - ], - "id": "Sz6enI", - "checked": false - }, - { - "name": "third", - "trans": [ - "adj. 第三(的) n. 三分之一 num. 第三" - ], - "id": "31Pt7o", - "checked": false - }, - { - "name": "red", - "trans": [ - "adj. 红色的 n. 红色" - ], - "id": "xQoVRW", - "checked": false - }, - { - "name": "along", - "trans": [ - "adv. 向前,(与某人)一道 prep. 沿着" - ], - "id": "l9De0R", - "checked": false - }, - { - "name": "test", - "trans": [ - "n. 测试, 试验 vt. 测试, 试验, 接受测验, 测得... adj. 测试的" - ], - "id": "roYWTl", - "checked": false - }, - { - "name": "small", - "trans": [ - "adj. 小的,少的 adv. 些许地 n. 狭小部分" - ], - "id": "--st5l", - "checked": false - }, - { - "name": "feed", - "trans": [ - "vt.喂养; 满足(欲望等); 向…提供; 供…作食物 vi.吃,以…为食; 流入,注入,进入(如油流入机器); [电子学]馈入 n.饲料(尤指粗饲料),施肥; 喂送; 草料" - ], - "id": "OWtSyV", - "checked": false - }, - { - "name": "company", - "trans": [ - "n. 同伴,客人,一群,连队,公司 vt. 陪伴 vi. 联合" - ], - "id": "Q2EVPF", - "checked": false - }, - { - "name": "movie", - "trans": [ - "n. 电影" - ], - "id": "YnHTaZ", - "checked": false - }, - { - "name": "compile", - "trans": [ - "v. 编译,编辑,编纂 [计算机] 编译" - ], - "id": "DUI23a", - "checked": false - }, - { - "name": "frequently", - "trans": [ - "adv. 经常地, 频繁地" - ], - "id": "aTrPb_", - "checked": false - }, - { - "name": "undefined", - "trans": [ - "adj. 未定义的" - ], - "id": "WcMd7k", - "checked": false - }, - { - "name": "state", - "trans": [ - "n. 州, 国, 情形 adj. 国家的, 州的, 正式的 vt. 说, 陈述, 声明, 规定" - ], - "id": "m2_k7R", - "checked": false - }, - { - "name": "accept", - "trans": [ - "vi.承认; 同意; 承兑 vt.接受; 承认; 承担; 承兑" - ], - "id": "ZCzvCY", - "checked": false - }, - { - "name": "intense", - "trans": [ - "adj. 非常的,强烈的,紧张的,热情的" - ], - "id": "2UwYkg", - "checked": false - }, - { - "name": "documentation", - "trans": [ - "n. 文件" - ], - "id": "ISKzs5", - "checked": false - }, - { - "name": "asterisk", - "trans": [ - "n. 星号(*)" - ], - "id": "yuhv8X", - "checked": false - }, - { - "name": "easily", - "trans": [ - "adj. 容易地,不费力地 adv. 容易地" - ], - "id": "FoJZEb", - "checked": false - }, - { - "name": "become", - "trans": [ - "vt. 变得 vi. 存在,变得,经历改变或发展" - ], - "id": "fUjM4d", - "checked": false - }, - { - "name": "address", - "trans": [ - "n. n.地址; 通信处; 演说; 称呼" - ], - "id": "8MyDeF", - "checked": false - }, - { - "name": "interface", - "trans": [ - "n. 界面,接触面 vt. 连接,作接口 vi. 连接" - ], - "id": "AdQTlj", - "checked": false - }, - { - "name": "pause", - "trans": [ - "n. 暂停,中止,犹豫不决 vi. 停顿,中止 vt. 使停顿" - ], - "id": "2bh-0v", - "checked": false - }, - { - "name": "repeat", - "trans": [ - "n. 重复,反复 vt. 重复,复述 vi. 重复 adj. 重复的,反复的" - ], - "id": "itKfDU", - "checked": false - }, - { - "name": "restart", - "trans": [ - "重新启动" - ], - "id": "Gt7kw1", - "checked": false - }, - { - "name": "assumed", - "trans": [ - "adj.假定的, 假装的 动词assume的过去式和过去分词" - ], - "id": "IEnSq8", - "checked": false - }, - { - "name": "speed", - "trans": [ - "n. 速度,迅速,感光度,超速 vt. 加速,催促,促进 vi. 超速,加速,进展" - ], - "id": "G-SC1l", - "checked": false - }, - { - "name": "entry", - "trans": [ - "n. 进入,入口,登记,项目" - ], - "id": "kR7tEi", - "checked": false - }, - { - "name": "combine", - "trans": [ - "n. 集团,联合收割机 v. 化合,结合,联合 vi. 结合,联合 vt. 使结合,使联合" - ], - "id": "PepIUr", - "checked": false - }, - { - "name": "root", - "trans": [ - "n. 根,根源,祖先 vt. &vi. 生根,扎根,翻寻,起源于" - ], - "id": "x7nSTi", - "checked": false - }, - { - "name": "symbol", - "trans": [ - "n. 符号, 标志, 象征" - ], - "id": "ImDyVL", - "checked": false - }, - { - "name": "binary", - "trans": [ - "adj. 二进位的,二元的 n. 二进制,二元" - ], - "id": "hHWI0B", - "checked": false - }, - { - "name": "whenever", - "trans": [ - "adv. 无论何时 conj. 每当, 无论何时, 随时" - ], - "id": "EhczkX", - "checked": false - }, - { - "name": "reach", - "trans": [ - "n. 延伸,范围,河段 vt. 到达,伸出,延伸,取得联系 vi. 延伸" - ], - "id": "KwiDOm", - "checked": false - }, - { - "name": "caution", - "trans": [ - "n. 警告,戒备措施,慎重,吸引人眼球的物品或人 vt. 警告" - ], - "id": "1mUZyc", - "checked": false - }, - { - "name": "subtotal", - "trans": [ - "n. 小计 adj. 不完全的" - ], - "id": "DN8CzI", - "checked": false - }, - { - "name": "card", - "trans": [ - "n. 卡片,纸牌,名片,打牌,节目单 vt. 附上或提供卡片,印卡,在卡片上列出,检查资格" - ], - "id": "cWhKQw", - "checked": false - }, - { - "name": "general", - "trans": [ - "n. 一般,将军,大体 adj. 一般的,普遍的 v. 指挥,作...将军" - ], - "id": "2cSlUK", - "checked": false - }, - { - "name": "associated", - "trans": [ - "adj. 联合的,相关的" - ], - "id": "x9cCrk", - "checked": false - }, - { - "name": "transfer", - "trans": [ - "n. 迁移, 移动, 换车 v. 转移, 调转, 调任" - ], - "id": "xyVLe2", - "checked": false - }, - { - "name": "connect", - "trans": [ - "vt. 连接,联通,使有联系 vi. 连接,接通" - ], - "id": "7UT9iF", - "checked": false - }, - { - "name": "partition", - "trans": [ - "n. 分割,隔离物,隔墙 v. 区分,隔开,分割" - ], - "id": "J0i_6m", - "checked": false - }, - { - "name": "hexadecimal", - "trans": [ - "adj. 十六的, 十六进制的 n. 十六进制" - ], - "id": "RQXJxC", - "checked": false - }, - { - "name": "generate", - "trans": [ - "vt. 产生,发生,引起 [计算机] 产生" - ], - "id": "sdumXS", - "checked": false - }, - { - "name": "specification", - "trans": [ - "n. 规格,详述,详细说明书" - ], - "id": "tFNmVe", - "checked": false - }, - { - "name": "customize", - "trans": [ - "vt. 定制 [计算机] 用户化" - ], - "id": "csBlsj", - "checked": false - }, - { - "name": "far", - "trans": [ - "adv.&adj. 远的(地) n. 远处" - ], - "id": "KCtx2t", - "checked": false - }, - { - "name": "nest", - "trans": [ - "n. 巢, 窝 vt. 嵌入 vi. 筑巢" - ], - "id": "jywgcg", - "checked": false - }, - { - "name": "duplicate", - "trans": [ - "n. 副本,复制品 adj. 复制的,二重的 vt. 复制,重复 vi. 重复 [计算机] 复制" - ], - "id": "2Z67VG", - "checked": false - }, - { - "name": "compression", - "trans": [ - "n. 压缩, 压榨, 缩小" - ], - "id": "AyxzRg", - "checked": false - }, - { - "name": "unable", - "trans": [ - "adj. 不能的,不会的 v. 不能,不会" - ], - "id": "HYKzCZ", - "checked": false - }, - { - "name": "means", - "trans": [ - "n. 方法,手段,折中点,物质财富" - ], - "id": "xLNS2Y", - "checked": false - }, - { - "name": "intensity", - "trans": [ - "n. 激烈,强度,强烈,剧烈" - ], - "id": "O6qcEt", - "checked": false - }, - { - "name": "reading", - "trans": [ - "adj. 阅读的 n. 阅读" - ], - "id": "uZDu3w", - "checked": false - }, - { - "name": "let", - "trans": [ - "vt. 让,容许,释放 vi. 出租,承包 n. 障碍,擦网球" - ], - "id": "pra5e5", - "checked": false - }, - { - "name": "compare", - "trans": [ - "vt.&vi. 比较,比喻,对照 n. 比较,对照" - ], - "id": "AqJ-W3", - "checked": false - }, - { - "name": "sector", - "trans": [ - "n. 扇形,扇区,部门,区域 vt. 分区" - ], - "id": "KBy-af", - "checked": false - }, - { - "name": "problem", - "trans": [ - "adj. 成问题的, 难对付的 n. 问题" - ], - "id": "w-y_RY", - "checked": false - }, - { - "name": "backspace", - "trans": [ - "vi. 按退格键 n. 退格键" - ], - "id": "xa7DS3", - "checked": false - }, - { - "name": "terminate", - "trans": [ - "adj. 有结尾的,有限的 vt. 结束,终止,满期 vi. 达到终点" - ], - "id": "ntGs2S", - "checked": false - }, - { - "name": "people", - "trans": [ - "n. 民族,人,人们,人民,家人 vt. 居住于" - ], - "id": "5yhMAl", - "checked": false - }, - { - "name": "short", - "trans": [ - "adj. 短的,矮的,短暂的 n. 短裤 adv. 短暂地;突然地" - ], - "id": "q0i0p9", - "checked": false - }, - { - "name": "drag", - "trans": [ - "n. 用来拖拉的东西,拖,拖累 vt. 拖累,拖拉(动) vi. 拖拉(动),缓慢地行走" - ], - "id": "yOHLjI", - "checked": false - }, - { - "name": "preview", - "trans": [ - "n. 预审,查阅,预习,预告 vt. 事先查看,查阅,预审,预习" - ], - "id": "c_tQiN", - "checked": false - }, - { - "name": "underscore", - "trans": [ - "vt. 划线于,强调,提供伴奏乐 n. 下划线,影片伴奏乐" - ], - "id": "zt_wLL", - "checked": false - }, - { - "name": "correctly", - "trans": [ - "adv.恰当地,正确地" - ], - "id": "-qmAYi", - "checked": false - }, - { - "name": "initially", - "trans": [ - "adv. 最初, 开头" - ], - "id": "doRsLy", - "checked": false - }, - { - "name": "reformat", - "trans": [ - "vt. 重定格式, 重新格式化" - ], - "id": "q33olC", - "checked": false - }, - { - "name": "inside", - "trans": [ - "adj. 里面的 adv. 在里面 n. 内部 prep. 在...里面" - ], - "id": "EGzuDX", - "checked": false - }, - { - "name": "integrate", - "trans": [ - "v. 整合, 使...成整体" - ], - "id": "DYrpF7", - "checked": false - }, - { - "name": "controlled", - "trans": [ - "adj. 受控制的, 受约束的 动词control的过去式和过去分词形式" - ], - "id": "IiuYTQ", - "checked": false - }, - { - "name": "period", - "trans": [ - "n. 学时, 课时; 一段时间, 时期, 周期; 句号" - ], - "id": "bv2hpq", - "checked": false - }, - { - "name": "huge", - "trans": [ - "adj. 巨大的,程度高的" - ], - "id": "sPk5vl", - "checked": false - }, - { - "name": "determined", - "trans": [ - "adj. 坚毅的,下定决心的" - ], - "id": "cI7ztp", - "checked": false - }, - { - "name": "trailing", - "trans": [ - "adj. 牵引的 n. 拖尾 动词trail的现在分词形式" - ], - "id": "a_CaLD", - "checked": false - }, - { - "name": "seek", - "trans": [ - "n. 找寻 v. 寻求,寻找,搜索" - ], - "id": "YBiZHD", - "checked": false - }, - { - "name": "introduction", - "trans": [ - "n. 介绍, 引进, 导论, 序言" - ], - "id": "CedttS", - "checked": false - }, - { - "name": "indent", - "trans": [ - "n. 契约, 订货单 v. 切割成锯齿状, 缩排, 定货 [计算机] 缩排, 缩进" - ], - "id": "59sB_V", - "checked": false - }, - { - "name": "base", - "trans": [ - "n. 基底,(支持、收入、力量等的)基础 vt. 以...作基础 adj. 卑鄙的;不道德的" - ], - "id": "AkAnhm", - "checked": false - }, - { - "name": "integer", - "trans": [ - "n. 完整的事物,整体,整数 [计算机] 整数" - ], - "id": "XXKR-M", - "checked": false - }, - { - "name": "attempt", - "trans": [ - "vt.试图; 尝试 n.进攻; 尝试,冲击" - ], - "id": "atiyca", - "checked": false - }, - { - "name": "twice", - "trans": [ - "adv. 两倍, 两次" - ], - "id": "zoS-_W", - "checked": false - }, - { - "name": "formed", - "trans": [ - "adj. 成形的 动词form的过去式和过去分词" - ], - "id": "Lc8Dny", - "checked": false - }, - { - "name": "subscript", - "trans": [ - "n. 下标 adj. 写在下方的" - ], - "id": "_57XpL", - "checked": false - }, - { - "name": "tiny", - "trans": [ - "adj. 极小的,微小的" - ], - "id": "739I7O", - "checked": false - }, - { - "name": "model", - "trans": [ - "n. 模型, 模范, 模特儿 adj. 模范的, 作模型用的 v. 做模型, 塑造, 模仿" - ], - "id": "pyK3Vx", - "checked": false - }, - { - "name": "correction", - "trans": [ - "n. 订正, 改正, 改正的地方" - ], - "id": "PLPOsc", - "checked": false - }, - { - "name": "rating", - "trans": [ - "n. 等级,评定,收视率" - ], - "id": "fTiG3o", - "checked": false - }, - { - "name": "secondary", - "trans": [ - "adj. 中级的,中等的,次要的 n. 次要位置, 副手" - ], - "id": "M0pDi7", - "checked": false - }, - { - "name": "limit", - "trans": [ - "n.限制; 限量,限度; 界限 vt.限制,限定" - ], - "id": "N_h0As", - "checked": false - }, - { - "name": "sun", - "trans": [ - "n. 太阳,阳光,中心人物,像太阳般的东西 vt.& vi. 晒太阳" - ], - "id": "irQ768", - "checked": false - }, - { - "name": "translate", - "trans": [ - "vt. 翻译;转化;解释;转变为;调动 vi. 翻译" - ], - "id": "IuahEl", - "checked": false - }, - { - "name": "reason", - "trans": [ - "n. 理由,原因,理智,理性 vt. 说服,总结 vi. 规劝,下判断" - ], - "id": "bfFjre", - "checked": false - }, - { - "name": "colon", - "trans": [ - "n. 冒号, 结肠, 科朗(哥斯达黎加和萨尔瓦多的货币单位) (Colon)科隆(巴拿马港市)" - ], - "id": "YucB7B", - "checked": false - }, - { - "name": "avoid", - "trans": [ - "v. 避免 vt. 避免,逃避" - ], - "id": "1pJhoC", - "checked": false - }, - { - "name": "range", - "trans": [ - "n.范围; 射程; 类别; (山脉,房屋等的)排列 vi.搜索; 变化; 延伸; 漫游 vt.排列; (按一定位置或顺序)排序; 把…分类; 徘徊 adj.牧场的,放牧区的" - ], - "id": "7SLyoG", - "checked": false - }, - { - "name": "allocate", - "trans": [ - "v. 分派, 分配, 分配额" - ], - "id": "Ztn_xP", - "checked": false - }, - { - "name": "simply", - "trans": [ - "adv.&adj. 简单地,仅仅" - ], - "id": "NEdJl6", - "checked": false - }, - { - "name": "verify", - "trans": [ - "v. 查证,核实 n.[计算机] DOS命令 : 打开关闭在 DOS操作期间的写文件校验开关" - ], - "id": "Sc1N7R", - "checked": false - }, - { - "name": "manner", - "trans": [ - "n. 样子,礼貌,风格,方式" - ], - "id": "Beu67h", - "checked": false - }, - { - "name": "direction", - "trans": [ - "n. 方向,指导,用法说明,趋势" - ], - "id": "ERZ8Zs", - "checked": false - }, - { - "name": "portion", - "trans": [ - "n. 部分,份,命运 v. 将...分配,分配" - ], - "id": "8E_CW9", - "checked": false - }, - { - "name": "emulator", - "trans": [ - "n. 仿真器" - ], - "id": "QsjCNj", - "checked": false - }, - { - "name": "successful", - "trans": [ - "adj. 成功的,达到目的的" - ], - "id": "MuTcyQ", - "checked": false - }, - { - "name": "applied", - "trans": [ - "adj. 应用的 v. 应用, 适用 vbl. 应用" - ], - "id": "lJie89", - "checked": false - }, - { - "name": "sum", - "trans": [ - "n. 总数(计),金额,顶点,概略,一笔钱 vt. 总计,概括 vi. 总计" - ], - "id": "_cP55j", - "checked": false - }, - { - "name": "achieve", - "trans": [ - "vt. 完成,达到,实现 vi. 达到目的" - ], - "id": "pKuE-G", - "checked": false - }, - { - "name": "together", - "trans": [ - "adv. 一起,共同,相结合,同时地,协调地 adj. 头脑清楚的,镇定的" - ], - "id": "n04LeZ", - "checked": false - }, - { - "name": "affect", - "trans": [ - "vt. 影响, 作用, 感动" - ], - "id": "HCwu1p", - "checked": false - }, - { - "name": "delay", - "trans": [ - "n. 耽搁,迟滞 vt. 耽搁,延迟 vi. 耽搁" - ], - "id": "E9qUxG", - "checked": false - }, - { - "name": "free", - "trans": [ - "adj. 自由的,大方的,免费的 vt. 释放,解放 adv. 自由地,免费地" - ], - "id": "vYNv0d", - "checked": false - }, - { - "name": "properly", - "trans": [ - "adv. 适当地, 相当地, 当然地" - ], - "id": "cSjW4w", - "checked": false - }, - { - "name": "kind", - "trans": [ - "adj. 仁慈的,友好的 n. 种类,本质" - ], - "id": "4O2dd4", - "checked": false - }, - { - "name": "splitting", - "trans": [ - "爆裂式的" - ], - "id": "WsdTFK", - "checked": false - }, - { - "name": "feature", - "trans": [ - "n. 特征, 容貌 vt. 以...为特色 vi. 起重要作用" - ], - "id": "pQxezp", - "checked": false - }, - { - "name": "console", - "trans": [ - "vt. 安慰,慰藉 n. 仪表盘,操控台,(游戏)平台" - ], - "id": "pDNVXm", - "checked": false - }, - { - "name": "operate", - "trans": [ - "vi. 操作, 运转 vt. 起作用, 动手术" - ], - "id": "acEaJI", - "checked": false - }, - { - "name": "kernel", - "trans": [ - "n. 核心, 中心, 精髓 [计算机] 核心" - ], - "id": "R_zzbp", - "checked": false - }, - { - "name": "easy", - "trans": [ - "adj. 容易的,安逸的,不费力的 adv. 慢慢地, 当心地" - ], - "id": "ub4itk", - "checked": false - }, - { - "name": "modifier", - "trans": [ - "n. 修正的人, 修饰语" - ], - "id": "dGKqFv", - "checked": false - }, - { - "name": "invalid", - "trans": [ - "adj. 无效的,伤残的 n. 病人,残疾者 vt. 失去健康" - ], - "id": "iot7KW", - "checked": false - }, - { - "name": "compiler", - "trans": [ - "n. 编辑者,[计算机]编译器, 编译程序" - ], - "id": "LsN82c", - "checked": false - }, - { - "name": "dot", - "trans": [ - "n. 小圆点,少量,小东西 vt. 作小点记号,点缀 vi. 作小点记号 [计算机] 点" - ], - "id": "hHCr4y", - "checked": false - }, - { - "name": "beep", - "trans": [ - "n. 哔哔声 vt. 产生(如号角)声音 vi. 吹号,发出哔哔声" - ], - "id": "UD0DTf", - "checked": false - }, - { - "name": "face", - "trans": [ - "n. 脸, 神情, 面子, 表面 vt. 面对, 朝 vi. 朝, 向" - ], - "id": "lX36a9", - "checked": false - }, - { - "name": "random", - "trans": [ - "n. 随意,任意 adj. 任意的,随便的,胡乱的 adv. 随机地" - ], - "id": "UPloML", - "checked": false - }, - { - "name": "facility", - "trans": [ - "n.设备; 容易; 能力; 灵巧" - ], - "id": "Cp80be", - "checked": false - }, - { - "name": "heading", - "trans": [ - "n. 标题,题目,航向 动词head的现在分词" - ], - "id": "FQ4WXF", - "checked": false - }, - { - "name": "asynchronous", - "trans": [ - "adj. 异步的" - ], - "id": "nzeFMr", - "checked": false - }, - { - "name": "series", - "trans": [ - "n. 系列,连续" - ], - "id": "x5ybbD", - "checked": false - }, - { - "name": "individual", - "trans": [ - "adj. 个别的; 独有的 n. 个人, 个体" - ], - "id": "xXvGh6", - "checked": false - }, - { - "name": "explain", - "trans": [ - "vt. &vi. 解释,说明" - ], - "id": "yPmkJL", - "checked": false - }, - { - "name": "paste", - "trans": [ - "n. 糊,浆糊,铅制玻璃 vt. 粘贴,覆盖,猛击" - ], - "id": "ocOS18", - "checked": false - }, - { - "name": "welcome", - "trans": [ - "vt.欢迎; 乐于接受 adj.受欢迎的; 令人愉悦的; 表示感谢的 n.欢迎,迎接" - ], - "id": "f8zc2-", - "checked": false - }, - { - "name": "six", - "trans": [ - "n.六;六个;六岁;六点 num.六;六个" - ], - "id": "NgYUUa", - "checked": false - }, - { - "name": "early", - "trans": [ - "adv.&adj. 早" - ], - "id": "WvmBnh", - "checked": false - }, - { - "name": "wrap", - "trans": [ - "vt.包; 缠绕; 用…包裹(或包扎、覆盖等); 掩护 n.膝毯,披肩,围巾,围脖,头巾,罩衫,外套,大衣; 包装纸; 〈俚〉机密 vi.缠绕,盘绕(通常与 over, around 等连用); 包上,裹上; 穿上(衣服等)" - ], - "id": "fEhYRL", - "checked": false - }, - { - "name": "blue", - "trans": [ - "adj. 蓝色的,沮丧的,忧郁的,(女人)有学问的 n. 蓝色 vt. 使...变蓝 vi. 变蓝" - ], - "id": "QhZ5FA", - "checked": false - }, - { - "name": "queue", - "trans": [ - "n. 行列,长队 v. 排队 vi. 排长队" - ], - "id": "KtfF0y", - "checked": false - }, - { - "name": "interrupt", - "trans": [ - "n. 中断 vt. 打断,妨碍 vi. 插嘴 [计算机] 中断" - ], - "id": "tfpHAz", - "checked": false - }, - { - "name": "respect", - "trans": [ - "n. 尊敬, 敬重; 关系, 方面 vt. 尊敬, 尊重; 关于, 涉及" - ], - "id": "d7eRqU", - "checked": false - }, - { - "name": "common", - "trans": [ - "adj. 共同的, 平常的, 普通的 n. 平民, 普通, 公地, 公园" - ], - "id": "0-6bwH", - "checked": false - }, - { - "name": "hyphen", - "trans": [ - "n. 连字号 v. 以连字号连接" - ], - "id": "xq3oMQ", - "checked": false - }, - { - "name": "serial", - "trans": [ - "n. 序列,串列 adj. 连续的,一连串的" - ], - "id": "Q_dAlI", - "checked": false - }, - { - "name": "loading", - "trans": [ - "n.装载,装填" - ], - "id": "3yYeZ-", - "checked": false - }, - { - "name": "retain", - "trans": [ - "vt. 保持, 保留; 记住" - ], - "id": "Iat4Ls", - "checked": false - }, - { - "name": "setup", - "trans": [ - "n. 装备, 组织, 计划" - ], - "id": "zQv6ZG", - "checked": false - }, - { - "name": "freeze", - "trans": [ - "v. 冻结, 冷冻, 僵硬" - ], - "id": "9KSITf", - "checked": false - }, - { - "name": "intend", - "trans": [ - "v. 打算 vt. 想要,打算,计划" - ], - "id": "MqVCdL", - "checked": false - }, - { - "name": "explanation", - "trans": [ - "n. 解释, 说明" - ], - "id": "iQuro4", - "checked": false - }, - { - "name": "certain", - "trans": [ - "adj. 一定的 pron. 某几个,某些 肯定的,无疑的,必然发生的" - ], - "id": "jwPugG", - "checked": false - }, - { - "name": "zap", - "trans": [ - "vt. 击溃,射杀 vi. 快速移动 int. 嚓(表示枪声等)" - ], - "id": "D1Twop", - "checked": false - }, - { - "name": "archive", - "trans": [ - "n. 档案,档案馆 vt. 存档" - ], - "id": "lie0ia", - "checked": false - }, - { - "name": "negative", - "trans": [ - "adj. 否定的,负的,消极的 n. 底片,负数,否定 vt. 否定" - ], - "id": "zTQnve", - "checked": false - }, - { - "name": "image", - "trans": [ - "n. 图像,影像,肖像,想像,形象 vt. 想像,描绘,反映" - ], - "id": "0B93QL", - "checked": false - }, - { - "name": "platform", - "trans": [ - "n. 平台,月台,讲台,坛,计划" - ], - "id": "_GZkA6", - "checked": false - }, - { - "name": "often", - "trans": [ - "adv. 经常" - ], - "id": "BF9202", - "checked": false - }, - { - "name": "signal", - "trans": [ - "n. 信号,导火线,动机 vt. 发信号,标志 vi. 发信号 adj. 显著的" - ], - "id": "MYyC3g", - "checked": false - }, - { - "name": "CPU", - "trans": [ - "abbr. [计算机]中央处理器(=central processing unit)" - ], - "id": "OcYV-Y", - "checked": false - }, - { - "name": "bit", - "trans": [ - "n. 一点儿,少量 n. 钻头,马嚼子,辅币 n. 位,比特(二进位制信息单位) v. 控制" - ], - "id": "9UZltv", - "checked": false - }, - { - "name": "fully", - "trans": [ - "adv. 十分地, 完全地, 全" - ], - "id": "CvSgc0", - "checked": false - }, - { - "name": "deactivate", - "trans": [ - "vt. 使无效,使不活动,解散部队" - ], - "id": "OsIRV7", - "checked": false - }, - { - "name": "especially", - "trans": [ - "adv. 特别,尤其" - ], - "id": "ypZscK", - "checked": false - }, - { - "name": "usually", - "trans": [ - "adv. 通常" - ], - "id": "LWCePi", - "checked": false - }, - { - "name": "recommend", - "trans": [ - "vt. 建议, 推荐, 劝告 vt. 使成为可取, 使受欢迎" - ], - "id": "az_1TC", - "checked": false - }, - { - "name": "maintain", - "trans": [ - "vt. 维持; 维修, 保养; 坚持; 断言" - ], - "id": "t5G-Ef", - "checked": false - }, - { - "name": "important", - "trans": [ - "adj. 重要的,影响很大的" - ], - "id": "yCr0YF", - "checked": false - }, - { - "name": "central", - "trans": [ - "adj. 中心的,基本的,折中的,中枢的 n. 电话交流,中央办公室,中心" - ], - "id": "1d18gx", - "checked": false - }, - { - "name": "addition", - "trans": [ - "n. 增加,附加物,加,加法" - ], - "id": "KJb0gE", - "checked": false - }, - { - "name": "anytime", - "trans": [ - "adv. 任何时候;无例外地" - ], - "id": "AEQ8r1", - "checked": false - }, - { - "name": "analyst", - "trans": [ - "n. 分析家" - ], - "id": "06HBgN", - "checked": false - }, - { - "name": "false", - "trans": [ - "adj. 不真实的,错误的,人造的,假的,虚伪的 adv. 不真诚地,虚伪地" - ], - "id": "bwK_sm", - "checked": false - }, - { - "name": "black", - "trans": [ - "adj.黑(色)的; 黑色人种的; 黑暗的 n.黑色; 黑人; 黑颜料; 黑暗 v.使变黑; 抵制; 拒绝; 使变黑暗" - ], - "id": "ChQanu", - "checked": false - }, - { - "name": "gather", - "trans": [ - "vt.收集; 聚集,搜集; 收紧,收缩; 采集 vi.逐渐增加,积聚 n.聚集; 衣褶" - ], - "id": "9daLnO", - "checked": false - }, - { - "name": "cycle", - "trans": [ - "n. 循环,周期,长期,圈,套曲,自行车, vt. 环行,骑自行车 vi. 使环行" - ], - "id": "zv-cuQ", - "checked": false - }, - { - "name": "relative", - "trans": [ - "adj. 相对的,比较的,涉及到的 n. 亲属,同类事物,相关物" - ], - "id": "QjWIFQ", - "checked": false - }, - { - "name": "offer", - "trans": [ - "n. 出价, 提议 vt. 提供, 出价; 贡献, 奉献 vi. 提议; 出现; 求婚" - ], - "id": "kTVgd0", - "checked": false - }, - { - "name": "ending", - "trans": [ - "n. 结尾, 结局" - ], - "id": "mYh0oc", - "checked": false - }, - { - "name": "rent", - "trans": [ - "n. 租金 v. 租 vi. 出租 vt. 出租,租用" - ], - "id": "ymmp61", - "checked": false - }, - { - "name": "sentence", - "trans": [ - "n. 句子,意见,宣判,刑罚,命题 vt. 宣判,判决,使遭受" - ], - "id": "2h5E5f", - "checked": false - }, - { - "name": "remember", - "trans": [ - "vt. &vi. 记得,记忆" - ], - "id": "pmT3_a", - "checked": false - }, - { - "name": "proper", - "trans": [ - "adj. 适当的,正确的,合适的,正当的,规矩的" - ], - "id": "1RfM85", - "checked": false - }, - { - "name": "design", - "trans": [ - "vt.& vi.设计; 绘制 vt.设计; 计划; 企图; 决意(做) n.设计; 图案; 结构; 计划 vi.设计略图; (为工艺品、装潢项目等)设计; 当设计师; 构思" - ], - "id": "XgFZAS", - "checked": false - }, - { - "name": "examine", - "trans": [ - "vt.检查,调查; 考试; 诊察; 审问 vi.检查; 调查" - ], - "id": "nr2LAv", - "checked": false - }, - { - "name": "initial", - "trans": [ - "n. (词)首字母 adj. 开始的, 最初的, 字首的 vt. 签姓名的首字母于" - ], - "id": "mPD-m1", - "checked": false - }, - { - "name": "corrupt", - "trans": [ - "adj. 腐败的,堕落的 vt. 使...恶化,贿赂,使...腐烂 vi. 腐烂,堕落" - ], - "id": "kiN3Gd", - "checked": false - }, - { - "name": "buy", - "trans": [ - "n. 合理的价格,购买 vt. 买,换得,收买,接受 vi. 购买" - ], - "id": "TQ2ITb", - "checked": false - }, - { - "name": "increase", - "trans": [ - "v. 增加, 提高 n. 增加, 增强, 提高" - ], - "id": "y4bpT5", - "checked": false - }, - { - "name": "host", - "trans": [ - "n.[计算机]主机; 主人,东道主; 节目主持人; 酒店业主 vt.当主人; 主办宴会,主持节目; 款待,做东 vi.做主人,做东道主" - ], - "id": "9iAu-d", - "checked": false - }, - { - "name": "sample", - "trans": [ - "n. 样品,标本 vt. 采样,品尝 adj. 样例的" - ], - "id": "Q8ID8z", - "checked": false - }, - { - "name": "pending", - "trans": [ - "adj. 待定的,即将发生或来临的 prep. 直到,等待...的时候,在...期间" - ], - "id": "j_icPp", - "checked": false - }, - { - "name": "divide", - "trans": [ - "vt.& vi.分; 划分; 分离; (使)产生分歧 n.分水岭,分界线; 分配" - ], - "id": "8FMB48", - "checked": false - }, - { - "name": "boot", - "trans": [ - "n. 靴子,[英]汽车行李箱,猛踢, 锁扣 vt. 踢, 穿靴子,锁车 vi. 启动(计算机),在(通常为非法停放的汽车)车轮上装制动装置, 利用, 帮助" - ], - "id": "y2tS3R", - "checked": false - }, - { - "name": "hide", - "trans": [ - "vt.隐藏; 躲避,隐匿,躲藏; 遮蔽,覆盖 vi.隐瞒; 遮住; 遮挡; 掩盖 n.兽皮; <口>生命; <口>人的皮肤; (观看野生动物的)隐蔽处" - ], - "id": "jffkUm", - "checked": false - }, - { - "name": "half", - "trans": [ - "adj. 一半的, 不完全的 adv. 一半地 n. 半, 一半" - ], - "id": "iC48AO", - "checked": false - }, - { - "name": "magenta", - "trans": [ - "n.&adj. 紫红色(的染料)" - ], - "id": "O_Nmnp", - "checked": false - }, - { - "name": "leading", - "trans": [ - "n. 领导, 疏导, 铅板 adj. 领导的, 主要的, 在前的 vbl. 领导, 引领, 以铅接合 [计算机] 行间空白" - ], - "id": "Kk0wqf", - "checked": false - }, - { - "name": "wrong", - "trans": [ - "adj. 错误的,不正当的,失常的 adv. 错误地 n. 错误,不公正 vt. 伤害,亏待,欺骗,中伤" - ], - "id": "dPAsXF", - "checked": false - }, - { - "name": "today", - "trans": [ - "n.&adv. 今天" - ], - "id": "-CHYt4", - "checked": false - }, - { - "name": "least", - "trans": [ - "adj. 最少的,最小的 n.&adv. 最少,最小" - ], - "id": "wLZOPw", - "checked": false - }, - { - "name": "opposite", - "trans": [ - "adj. 相对的, 相反的, 对面的 n. 对立物,对立者,对手 adv. 在对面地,处于相反位置地 prep. 在...对面" - ], - "id": "eTGJOg", - "checked": false - }, - { - "name": "white", - "trans": [ - "adj. 白色的,白种的,纯洁的,幸运的 n. 白色,白种人" - ], - "id": "gH2zhm", - "checked": false - }, - { - "name": "override", - "trans": [ - "vt. 弃绝,渺视,凌驾,过度负重 n. 给代理人的佣金,滥用 [计算机] 废除" - ], - "id": "AUYbGa", - "checked": false - }, - { - "name": "brown", - "trans": [ - "adj. 褐色的,棕色的 n. 褐色,棕色 (姓)布朗" - ], - "id": "Iuk5nj", - "checked": false - }, - { - "name": "hex", - "trans": [ - "v. 施法,诅咒 n. 施法的人 abbr. (=hexagon) 六边形 abbr. (=hexadecimal) 十六进制" - ], - "id": "av6Uor", - "checked": false - }, - { - "name": "rest", - "trans": [ - "n.休息; 剩余部分; 支持物; 宁静,安宁 vt.& vi.(使)休息; (使)倚靠[支撑] vi.休息; 静止; 停止; 安心 vt.使休息; 使轻松; 使长眠; 使依赖" - ], - "id": "NrJwmc", - "checked": false - }, - { - "name": "damage", - "trans": [ - "n. (pl.)赔偿金,损坏,毁坏 vt. 损害,毁坏" - ], - "id": "yII3K7", - "checked": false - }, - { - "name": "instant", - "trans": [ - "n. 立即, 瞬间 adj. 立即的, 即时的" - ], - "id": "tOqeu6", - "checked": false - }, - { - "name": "reserved", - "trans": [ - "v. 保留(预定,推迟) adj. 保留的(预订的,冷淡的,缄默)" - ], - "id": "m6sV4x", - "checked": false - }, - { - "name": "technology", - "trans": [ - "n. 技术,工艺(学)" - ], - "id": "ANZyQl", - "checked": false - }, - { - "name": "handle", - "trans": [ - "n. 柄,把手 vt. 买卖,处理,操作 vi. 驾驭" - ], - "id": "4fM1mF", - "checked": false - }, - { - "name": "apply", - "trans": [ - "vt. 应用, 申请; 涂 vt. 使专心从事 vi.申请; 有关联" - ], - "id": "J9rR2m", - "checked": false - }, - { - "name": "stand", - "trans": [ - "n. 站立,停顿,楼台,货摊 vi. 站立,位于,停滞 vt. 忍受,使站立" - ], - "id": "Y02EwZ", - "checked": false - }, - { - "name": "payment", - "trans": [ - "n. 支付, 付款" - ], - "id": "WTFFE0", - "checked": false - }, - { - "name": "kilobyte", - "trans": [ - "n. [计]千字节(1024字节)" - ], - "id": "vUfDfR", - "checked": false - }, - { - "name": "parenthesis", - "trans": [ - "n. 圆括号, 插入语, 插曲,间歇,停歇" - ], - "id": "Ms2JWf", - "checked": false - }, - { - "name": "scan", - "trans": [ - "vt. 扫描;浏览;细看;详细调查;标出格律 vi. 扫描;扫掠 n. 扫描;浏览;审视;细看" - ], - "id": "uBIw6z", - "checked": false - }, - { - "name": "developer", - "trans": [ - "n. 开发者,显影剂" - ], - "id": "yQZJzh", - "checked": false - }, - { - "name": "murder", - "trans": [ - "n. 谋杀,危险物 vt. 谋杀,折磨,损坏 vi. 谋杀" - ], - "id": "bgJgKR", - "checked": false - }, - { - "name": "flush", - "trans": [ - "n. 流溢, 面红, 旺盛, 冲水(尤指冲马桶), 突然萌发, (纸牌)同花顺, 清一色 [计算机] 冲洗 vi. 脸发红, 冲刷, 旺盛成长 vt. 用水冲洗, 惊起(一群鸟), 抄...老窝, 使兴奋 adj. 丰足的,齐平的,满盈的 adv. 正直地, 羞涩地" - ], - "id": "gGRJkq", - "checked": false - }, - { - "name": "unlock", - "trans": [ - "vt. 开启, 显露, 放开" - ], - "id": "t8ZFfE", - "checked": false - }, - { - "name": "movement", - "trans": [ - "n. 活动,运动,动作,移动" - ], - "id": "XZ_WBu", - "checked": false - }, - { - "name": "consecutive", - "trans": [ - "adj. 连续的,连贯的" - ], - "id": "04RAVz", - "checked": false - }, - { - "name": "collection", - "trans": [ - "n. 收藏品,收集物,小组,集合" - ], - "id": "pJafqp", - "checked": false - }, - { - "name": "front", - "trans": [ - "n.前面; 正面; 身体前部; 前线 adj.前面的; 正面的; 舌前的 v.面向; 在…前面; 用…作正面; 领导" - ], - "id": "Catlt2", - "checked": false - }, - { - "name": "prefix", - "trans": [ - "n. 前缀 vt. 加...作为前缀,置于前面 adj. 前缀的" - ], - "id": "5K5MeP", - "checked": false - }, - { - "name": "carousel", - "trans": [ - "n. 旋转木马, (机场的)行李传送带 =carrousel" - ], - "id": "WshXda", - "checked": false - }, - { - "name": "safety", - "trans": [ - "n.安全; 安全性; 安全处所; 中卫 adj.保障安全的" - ], - "id": "6YkClN", - "checked": false - }, - { - "name": "static", - "trans": [ - "n. 静电, 静电干扰, 噪声, 阻碍, 抨击 adj. 静态的,静电的,固态的" - ], - "id": "haSzaB", - "checked": false - }, - { - "name": "fact", - "trans": [ - "n. 实际, 事实" - ], - "id": "hnsC8X", - "checked": false - }, - { - "name": "alter", - "trans": [ - "v. 改变" - ], - "id": "h01pG4", - "checked": false - }, - { - "name": "track", - "trans": [ - "n. 小路, 跑道, 轨道, 踪迹; 惯例, 常规 v. 跟踪, 追踪" - ], - "id": "rZS6Vl", - "checked": false - }, - { - "name": "precedence", - "trans": [ - "n. 优先, 居先" - ], - "id": "sNvjJ_", - "checked": false - }, - { - "name": "skeleton", - "trans": [ - "n. 骨架,纲要,骨骼,骨瘦如柴的人或动物,家丑 adj. 骨骼的" - ], - "id": "xYT8a7", - "checked": false - }, - { - "name": "log", - "trans": [ - "n. 记录,圆木,日志,计程仪 vt. 伐木,切,记录,航行,度过(时间) vi. 采伐" - ], - "id": "aQbKTX", - "checked": false - }, - { - "name": "star", - "trans": [ - "n. 星, 明星 v. 以星状物装饰, 变成演员" - ], - "id": "TzgCrC", - "checked": false - }, - { - "name": "hot", - "trans": [ - "adj. 热的,热情的,辣的,性感的 adv. 激动地,快速地 n. 最高温度,滚烫的东西" - ], - "id": "LuOBVT", - "checked": false - }, - { - "name": "replaceable", - "trans": [ - "adj. 可置换的,可代替的" - ], - "id": "0mwgee", - "checked": false - }, - { - "name": "accessible", - "trans": [ - "adj. 可得到的, 易接近的, 可进入的" - ], - "id": "_yGQaJ", - "checked": false - }, - { - "name": "involve", - "trans": [ - "vt. 包含, 使陷入, 使忙于, 使卷入, 牵涉" - ], - "id": "kCJnNX", - "checked": false - }, - { - "name": "configure", - "trans": [ - "v. 配置" - ], - "id": "GxhAHT", - "checked": false - }, - { - "name": "question", - "trans": [ - "n. 问题,询问,争论点 vt. 询问,怀疑 vi. 问问题" - ], - "id": "ZyGbC6", - "checked": false - }, - { - "name": "green", - "trans": [ - "adj.绿色的; 未熟的,青春的; 未成熟的; 主张保护环境的 n.绿色蔬菜; 绿色的衣服; 植物 vi.绿化,使重视环境保护问题" - ], - "id": "6TATwB", - "checked": false - }, - { - "name": "entirely", - "trans": [ - "adv. 完全地" - ], - "id": "HbxxaB", - "checked": false - }, - { - "name": "helpful", - "trans": [ - "adj. 有帮助的, 有益的" - ], - "id": "7K8jW9", - "checked": false - }, - { - "name": "middle", - "trans": [ - "n.中部,中间; 腰部; 中央; 正中 adj.中部的; 中央的; 正中的; 中间的 vt.把…放在中间; 把…对折 vi.放在中间; 对折" - ], - "id": "nPWwVI", - "checked": false - }, - { - "name": "declared", - "trans": [ - "adj. 承认的, 公告的 动词declare的过去式和过去分词" - ], - "id": "yjkgF5", - "checked": false - }, - { - "name": "compress", - "trans": [ - "vt. 压缩, 压榨 n. [医]敷布" - ], - "id": "EjANau", - "checked": false - }, - { - "name": "graphically", - "trans": [ - "adv. 用图表表示地" - ], - "id": "rsYp2u", - "checked": false - }, - { - "name": "auto", - "trans": [ - "n. autos=automobile 自动汽车 pref. 自动的,自己的" - ], - "id": "Y7l61G", - "checked": false - }, - { - "name": "automatic", - "trans": [ - "n. 自动装置, 半自动武器 adj. 自动的,机械的,半自动化的" - ], - "id": "kOkoMn", - "checked": false - }, - { - "name": "anywhere", - "trans": [ - "adv. 任何地方 pron. 任何(一个)地方" - ], - "id": "rsIXgP", - "checked": false - }, - { - "name": "terminal", - "trans": [ - "n. n. 终端机,终点,末端 adj. 终点的,晚期的,致死的" - ], - "id": "XCHXXD", - "checked": false - }, - { - "name": "door", - "trans": [ - "n. 门" - ], - "id": "AB5xzz", - "checked": false - }, - { - "name": "expire", - "trans": [ - "vi. 期满,失效,终止,断气 vt. 呼气" - ], - "id": "i8zG8Q", - "checked": false - }, - { - "name": "resolution", - "trans": [ - "n.决心; 解决; 坚决; 分辨率" - ], - "id": "MgQZUa", - "checked": false - }, - { - "name": "local", - "trans": [ - "adj. 地方性的,当地的,局部的 [计算机] 局部的" - ], - "id": "SiOI0K", - "checked": false - }, - { - "name": "semicolon", - "trans": [ - "n. 分号" - ], - "id": "N1zsDL", - "checked": false - }, - { - "name": "reread", - "trans": [ - "vt.重读,再读" - ], - "id": "z084_j", - "checked": false - }, - { - "name": "overwrite", - "trans": [ - "v. 重写, 写得过多, 描述过分" - ], - "id": "9w7YQa", - "checked": false - }, - { - "name": "critical", - "trans": [ - "adj.批评的,爱挑剔的; 危险的,危急的; 决定性的; [物]临界的" - ], - "id": "SKu_mi", - "checked": false - }, - { - "name": "manager", - "trans": [ - "n. 经理" - ], - "id": "JcdjG-", - "checked": false - }, - { - "name": "capability", - "trans": [ - "n. 能力,才能,性能,容量" - ], - "id": "PO9DQ4", - "checked": false - }, - { - "name": "affected", - "trans": [ - "adj. 受到影响的;做作的;假装的 vt. 影响;假装;使…感动(affect的过去式和过去分词)" - ], - "id": "v6v6Ts", - "checked": false - }, - { - "name": "border", - "trans": [ - "n. 边缘 vt. 作...之疆界,加边" - ], - "id": "O3Bgo9", - "checked": false - }, - { - "name": "cache", - "trans": [ - "n. 电脑高速缓冲存储器;贮存物;隐藏处 vt. 隐藏;窖藏 vi. 躲藏" - ], - "id": "uzXdmr", - "checked": false - }, - { - "name": "bell", - "trans": [ - "n. 钟,铃,花冠,吼叫声 vt. 敲钟,使象钟状地张开 vi. 使呈钟状,张开" - ], - "id": "i-OjcU", - "checked": false - }, - { - "name": "play", - "trans": [ - "n. 游戏,游玩,剧本,比赛,比赛中的动作,影响 vt. &vi. 玩,进行比赛,演奏,播放,捉弄,假装" - ], - "id": "r-BpW1", - "checked": false - }, - { - "name": "quickly", - "trans": [ - "adv. 快, 迅速" - ], - "id": "uRRvjY", - "checked": false - }, - { - "name": "fastback", - "trans": [ - "快速返回" - ], - "id": "id6xVy", - "checked": false - }, - { - "name": "answer", - "trans": [ - "vt.& vi.答复; 解答; 答辩; 适应 n.回答; 答案; 反应; 足以媲美的人" - ], - "id": "3pqbvb", - "checked": false - }, - { - "name": "represent", - "trans": [ - "vt. 表现, 表示, 描绘, 代表 vi. 提出异议" - ], - "id": "vHLHjY", - "checked": false - }, - { - "name": "difference", - "trans": [ - "n. 差异,分歧 vt. 引起区别" - ], - "id": "J2m4wa", - "checked": false - }, - { - "name": "project", - "trans": [ - "n. 工程,项目,计划,事业 v. 计划,设计,表达 v. 投射,放映,凸出" - ], - "id": "YfrKzE", - "checked": false - }, - { - "name": "physical", - "trans": [ - "adj. 身体的,物理的,物质的 n. 体检" - ], - "id": "RudbJs", - "checked": false - }, - { - "name": "matter", - "trans": [ - "n. 事件, 物质, 原因 vi. 有关系" - ], - "id": "ilMEaq", - "checked": false - }, - { - "name": "hercules", - "trans": [ - "n.大力英雄,力士,武仙座" - ], - "id": "T-wy_q", - "checked": false - }, - { - "name": "reduce", - "trans": [ - "vt.换算; 约束; 使变为; 使变弱 vi.减少; 减轻体重; [生物学](细胞)减数分裂; (液体)浓缩变稠" - ], - "id": "Ij20Rh", - "checked": false - }, - { - "name": "publisher", - "trans": [ - "n. 出版者, 发行人" - ], - "id": "r2ep0u", - "checked": false - }, - { - "name": "trim", - "trans": [ - "n. 整齐,装饰,修剪下来的部分 adj. 整洁的,匀称的 adv. 整齐地 vt. 修除,削剪,装备,痛打,击败, 使整洁 vi. 保持平衡, 见风使舵" - ], - "id": "OMKuJ5", - "checked": false - }, - { - "name": "substitute", - "trans": [ - "n. 代替者,代用品 v. 代替 vi. (for)代替 vt. 用...代替,代以" - ], - "id": "r0oWKU", - "checked": false - }, - { - "name": "disabled", - "trans": [ - "adj. 残废的 n. 残疾人" - ], - "id": "nJzi_l", - "checked": false - }, - { - "name": "recent", - "trans": [ - "adj. 近来的, 新近的" - ], - "id": "uTlPAa", - "checked": false - }, - { - "name": "positive", - "trans": [ - "adj. 肯定的, 积极的, 绝对的 adj. 正面的, 正数的, 阳性的" - ], - "id": "L4_Zr2", - "checked": false - }, - { - "name": "upgrade", - "trans": [ - "vt. 提高(上升,浓集,加强) n. 提高(上升,浓集,加强)" - ], - "id": "nuNLSc", - "checked": false - }, - { - "name": "instance", - "trans": [ - "n.例子,实例; 情况; 要求,建议; [法]诉讼手续 vt.举…为例" - ], - "id": "nZpKGg", - "checked": false - }, - { - "name": "happen", - "trans": [ - "vi. 发生,碰巧,出现,偶然遇到" - ], - "id": "DoJvuZ", - "checked": false - }, - { - "name": "future", - "trans": [ - "adj. 将来的 n. 将来,未来 n. 期货" - ], - "id": "F11Bgf", - "checked": false - }, - { - "name": "midnight", - "trans": [ - "n. 午夜,漆黑" - ], - "id": "i_0KCe", - "checked": false - }, - { - "name": "though", - "trans": [ - "adv. 可是,然而,不过 conj. 尽管,虽然 prep. 但." - ], - "id": "q-hZ5-", - "checked": false - }, - { - "name": "nor", - "trans": [ - "conj.&adv. 也不,也没有 [计]\"或非\",\"非或\" abbr. 诺曼人(=Norman) abbr. 北方(=North) abbr. 挪威(= Norway) abbr. 挪威人(=Norwegian)" - ], - "id": "wq3m7p", - "checked": false - }, - { - "name": "mono", - "trans": [ - "pref. 表示“一”“单一” adj. (唱片等)单声道的 n. 单声道唱片 n. (=infectious mononucleosis) 传染性单核细胞增多症" - ], - "id": "c0jQFV", - "checked": false - }, - { - "name": "slide", - "trans": [ - "n. 滑,幻灯片,雪崩,山崩,滑坡,滑梯 vt. 使滑 vi. 滑,跌落" - ], - "id": "j3SQ0t", - "checked": false - }, - { - "name": "abort", - "trans": [ - "v. 流产, 打胎, 堕胎" - ], - "id": "h1hJjv", - "checked": false - }, - { - "name": "jump", - "trans": [ - "n. 跳跃,跳动,上涨 vt. &vi. 跳越,突升,惊跳" - ], - "id": "_6wj8T", - "checked": false - }, - { - "name": "toward", - "trans": [ - "prep. 对于,关于,接近,将近,向,朝 adj. 有希望的,有利的,逼近的" - ], - "id": "-f08Tw", - "checked": false - }, - { - "name": "throughout", - "trans": [ - "adv. 到处, 自始至终 prep. 遍及, 贯穿" - ], - "id": "N-Ul6j", - "checked": false - }, - { - "name": "via", - "trans": [ - "prep. 经由" - ], - "id": "PCalKV", - "checked": false - }, - { - "name": "among", - "trans": [ - "prep. 在...之中" - ], - "id": "z-Z9bE", - "checked": false - }, - { - "name": "neither", - "trans": [ - "adj. 皆不,两者都不 int. 两者都不 conj. 既非,既不" - ], - "id": "wC60UP", - "checked": false - }, - { - "name": "layer", - "trans": [ - "n.层,层次; 膜; [植]压条; 放置者,计划者 vt.把…分层堆放; 借助压条法; 生根繁殖; 将(头发)剪成不同层次 vi.形成或分成层次; [植]通过压条法而生根" - ], - "id": "Mjxuep", - "checked": false - }, - { - "name": "scatter", - "trans": [ - "n. 散布, 零星少量 vt. 驱散, 散播 vi. 分散, 消散" - ], - "id": "c6rUhN", - "checked": false - }, - { - "name": "attention", - "trans": [ - "n. 注意(力),关心,立正" - ], - "id": "bykWgU", - "checked": false - }, - { - "name": "convention", - "trans": [ - "n.会议; 全体与会者; 国际公约; 惯例,习俗,规矩" - ], - "id": "TXCR9z", - "checked": false - }, - { - "name": "conventional", - "trans": [ - "adj. 普通的,常见的,习惯的,常规的" - ], - "id": "jwSA_w", - "checked": false - }, - { - "name": "tool", - "trans": [ - "n. 工具,用具,受人利用的人,印压的图案 vt. 驾驶,用工具加工,印压图案于 vi. 驾驶,用工具加工" - ], - "id": "rLImzc", - "checked": false - }, - { - "name": "processor", - "trans": [ - "n. 加工者,处理器" - ], - "id": "94Cpme", - "checked": false - }, - { - "name": "desktop", - "trans": [ - "n. 桌面,台式电脑 adj. 台式的,桌上用的" - ], - "id": "9G-F_-", - "checked": false - }, - { - "name": "build", - "trans": [ - "vt. &vi. 建造,创建,开发,逐渐增强 n. 体格,身材" - ], - "id": "hx8qn0", - "checked": false - }, - { - "name": "development", - "trans": [ - "n. 发展,显影, 开发区, 开发" - ], - "id": "1vzrhx", - "checked": false - }, - { - "name": "exceed", - "trans": [ - "vt. 超过, 胜过, 超出界限 vi. 领先" - ], - "id": "KhgStx", - "checked": false - }, - { - "name": "understand", - "trans": [ - "vt. 理解, 闻知 vi. 理解, 相信, 表示同情" - ], - "id": "38b_bK", - "checked": false - }, - { - "name": "horizontal", - "trans": [ - "adj. 水平的,横的 n. 水平线,水平面" - ], - "id": "1nvRsr", - "checked": false - }, - { - "name": "meet", - "trans": [ - "n. 集会,比赛, 运动会 adj. 适宜的,合适的 vt. 遇见,引见,经历,结识,对付,满足,支付 vi. 相遇,集合,交锋,相交" - ], - "id": "RT-0mg", - "checked": false - }, - { - "name": "protect", - "trans": [ - "vt. 保护,投保 vi. 提供保护" - ], - "id": "GyLAIU", - "checked": false - }, - { - "name": "reserve", - "trans": [ - "n. 预备品, 贮存, 候补 n. 克制, 含蓄 vt. 保留, 预订, 延期" - ], - "id": "qMA2Tt", - "checked": false - }, - { - "name": "clock", - "trans": [ - "n. 时钟, 计时器" - ], - "id": "K_eoEx", - "checked": false - }, - { - "name": "manifest", - "trans": [ - "n. 载货单,运货单,旅客名单 adj. 显然的,明白的 vt. 显示, 证实, 出示" - ], - "id": "w__KlP", - "checked": false - }, - { - "name": "safe", - "trans": [ - "adj. 安全的 n. 保险箱" - ], - "id": "NxJJMk", - "checked": false - }, - { - "name": "disconnect", - "trans": [ - "vt. 使分离 vi. 断开,拆开" - ], - "id": "RhT0QW", - "checked": false - }, - { - "name": "clockwise", - "trans": [ - "adj. 顺时针方向的 adv. 顺时针方向地" - ], - "id": "hmAN6f", - "checked": false - }, - { - "name": "eliminate", - "trans": [ - "v. 除去,排除,剔除 [计算机] 消除" - ], - "id": "RuXj_e", - "checked": false - }, - { - "name": "actual", - "trans": [ - "adj. 实际的,真实的" - ], - "id": "ZVl2Gr", - "checked": false - }, - { - "name": "declaration", - "trans": [ - "n. 宣布, 宣言" - ], - "id": "hEjY-2", - "checked": false - }, - { - "name": "probably", - "trans": [ - "adv. 大概,或许" - ], - "id": "Kc3Py2", - "checked": false - }, - { - "name": "ring", - "trans": [ - "n. 环, 戒指, 铃声, 圈 vt. 包围, 挂铃铛 vi. 鸣响, 回响, 在空气中螺旋上扬, 形成圈" - ], - "id": "wOjjnz", - "checked": false - }, - { - "name": "cover", - "trans": [ - "n. 封面, 盖子, 表面 v. 覆盖, 涉及, 包含" - ], - "id": "1snCwV", - "checked": false - }, - { - "name": "indicator", - "trans": [ - "n. 指示器, 指示剂 [计算机] 指示符" - ], - "id": "DnSPI0", - "checked": false - }, - { - "name": "apple", - "trans": [ - "n. 苹果" - ], - "id": "OvttAc", - "checked": false - }, - { - "name": "icon", - "trans": [ - "n. 肖像, 偶像, 象征, 图符 [计算机] 图标,图符" - ], - "id": "rZXTe7", - "checked": false - }, - { - "name": "consideration", - "trans": [ - "n. 考虑, 体贴, 考虑因素, 敬重, 意见" - ], - "id": "XBh7pL", - "checked": false - }, - { - "name": "skill", - "trans": [ - "n. 技能, 技巧" - ], - "id": "Bilotp", - "checked": false - }, - { - "name": "picture", - "trans": [ - "n. 图画,照片,景色 vt. 画,描写,想像" - ], - "id": "ExyWnK", - "checked": false - }, - { - "name": "layout", - "trans": [ - "n. 布局, 安排, 设计" - ], - "id": "SUwR5o", - "checked": false - }, - { - "name": "suggest", - "trans": [ - "vt. 建议,暗示,要求" - ], - "id": "ZdphD3", - "checked": false - }, - { - "name": "convenient", - "trans": [ - "adj. 方便的" - ], - "id": "87E57C", - "checked": false - }, - { - "name": "instruct", - "trans": [ - "v. 教, 命令, 指导 [计算机] 指示" - ], - "id": "NohoZm", - "checked": false - }, - { - "name": "appendix", - "trans": [ - "n. 附录,阑尾" - ], - "id": "ogvPtT", - "checked": false - }, - { - "name": "medium", - "trans": [ - "n. 媒体, 方法, 媒介 adj. 适中的, 中等的" - ], - "id": "iLKH7q", - "checked": false - }, - { - "name": "truncate", - "trans": [ - "vt. 切去头端,缩短,截棱成平面 adj. 切去了头,缩短了的,截形的" - ], - "id": "zr2NB0", - "checked": false - }, - { - "name": "inhibit", - "trans": [ - "vt. &vi. 禁止,抑制 [计算机] 禁止" - ], - "id": "j5_HUF", - "checked": false - }, - { - "name": "nearly", - "trans": [ - "adv. 几乎, 差不多" - ], - "id": "11tJ6F", - "checked": false - }, - { - "name": "warn", - "trans": [ - "vt. 警告,注意,远离 vi. 提醒" - ], - "id": "m1PMO4", - "checked": false - }, - { - "name": "underline", - "trans": [ - "v. 在...下面划线" - ], - "id": "_doAwW", - "checked": false - }, - { - "name": "register", - "trans": [ - "v. 记录, 登记, 注册, 挂号 n. 暂存器, 记录, 登记簿 n. (语)语域; 通风调节设备" - ], - "id": "mMVGdA", - "checked": false - }, - { - "name": "stuff", - "trans": [ - "n. 材料, 原料, 东西 n. 素质, 本质; 废物 vt. 填满, 塞满" - ], - "id": "my2i6i", - "checked": false - }, - { - "name": "exclude", - "trans": [ - "vt. 除外,排除,拒绝 [计算机] 排除" - ], - "id": "SuVfOa", - "checked": false - }, - { - "name": "destroy", - "trans": [ - "vt. &vi. 破坏,毁坏 [计算机] 撤消" - ], - "id": "xuFLjo", - "checked": false - }, - { - "name": "calculation", - "trans": [ - "n. 计算" - ], - "id": "JlFuTR", - "checked": false - }, - { - "name": "angle", - "trans": [ - "n. 角(度),角落 vt. 斜移,转变角度 vi. 钓鱼,谋取,转变角度 n. (Angle)盎格鲁人" - ], - "id": "URXo-Q", - "checked": false - }, - { - "name": "lexical", - "trans": [ - "adj. 字典的, 语句的" - ], - "id": "qzUHFu", - "checked": false - }, - { - "name": "decide", - "trans": [ - "vt. &vi. 决定,作出抉择" - ], - "id": "fsBwWb", - "checked": false - }, - { - "name": "trouble", - "trans": [ - "n. 困扰,麻烦,困难,故障 vt.& vi. 困扰,麻烦" - ], - "id": "NCkL8y", - "checked": false - }, - { - "name": "customer", - "trans": [ - "n. 顾客,家伙" - ], - "id": "qEv8x4", - "checked": false - }, - { - "name": "port", - "trans": [ - "n.港口; (事情的)意义; (计算机与其他设备的)接口; (船、飞机等的)左舷 vt.举枪; 持枪; 左转舵 vi.转向左舷 adj.左舷的,左侧的 vt.& vi.转舵(向左),把(舵)转向左边 adv.向左舷,向左" - ], - "id": "5X2mDQ", - "checked": false - }, - { - "name": "discuss", - "trans": [ - "vt. 讨论" - ], - "id": "KypLs8", - "checked": false - }, - { - "name": "segment", - "trans": [ - "n. 部分 v. 部分,段,分割 vt. 分割" - ], - "id": "e5l2B3", - "checked": false - }, - { - "name": "filing", - "trans": [ - "n. 锉(文件的整理汇集)" - ], - "id": "5nt4uy", - "checked": false - }, - { - "name": "market", - "trans": [ - "n. 市场,交易,推销地区 vt. 在市场上交易,使...上市 vi. 在市场上买卖" - ], - "id": "Rog5ZK", - "checked": false - }, - { - "name": "valuable", - "trans": [ - "adj. 贵重的, 有价值的 n. (pl.)贵重物品" - ], - "id": "rLFgTo", - "checked": false - }, - { - "name": "limited", - "trans": [ - "adj. 有限的" - ], - "id": "XG_ZAI", - "checked": false - }, - { - "name": "trying", - "trans": [ - "vbl. 试验,尝试 adj. 难受的, 费劲的, 令人厌烦的" - ], - "id": "DZKysq", - "checked": false - }, - { - "name": "heap", - "trans": [ - "n. 堆,许多,累积 vt. 使成堆,装满 [计算机] 堆" - ], - "id": "KU_AIu", - "checked": false - }, - { - "name": "grey", - "trans": [ - "adj. 灰色的 n. 灰色(的) v. 变成灰色 [=gray] vi. 变成灰色" - ], - "id": "4w3ltC", - "checked": false - }, - { - "name": "permanently", - "trans": [ - "adv. 永久地" - ], - "id": "Di5f7x", - "checked": false - }, - { - "name": "accelerator", - "trans": [ - "n. 加速器, 油门,[化学]加速剂,促进剂" - ], - "id": "M2M8Ir", - "checked": false - }, - { - "name": "originally", - "trans": [ - "adv. 本来,原来,最初 重要的" - ], - "id": "eLwt-O", - "checked": false - }, - { - "name": "ability", - "trans": [ - "n. 才能, 能力" - ], - "id": "vNfPkB", - "checked": false - }, - { - "name": "internally", - "trans": [ - "adv.在内,在中心" - ], - "id": "9kahWC", - "checked": false - }, - { - "name": "derelict", - "trans": [ - "adj. 被抛弃了的,无主的,玩忽职守的 n. 遗弃物,被遗弃的人,玩忽职守者" - ], - "id": "rchYeL", - "checked": false - }, - { - "name": "redirect", - "trans": [ - "adj. 再直接的 v. 重新传入, 重新寄送" - ], - "id": "Xg9Ccc", - "checked": false - }, - { - "name": "reside", - "trans": [ - "v. 住,居留,属于" - ], - "id": "BWwhoa", - "checked": false - }, - { - "name": "header", - "trans": [ - "n. 装盖者,割穗机,顶梁,集管 n.[体]头球,头先入水的跳水姿势 n.[计]页眉" - ], - "id": "dzdkwD", - "checked": false - }, - { - "name": "extra", - "trans": [ - "adj. 额外的 adv. 特别地 n. 额外的事物,另外收费的" - ], - "id": "PB7eKb", - "checked": false - }, - { - "name": "repeated", - "trans": [ - "adj. 重复的, 再之的 动词repeat的过去式和过去分词形式" - ], - "id": "QX530E", - "checked": false - }, - { - "name": "death", - "trans": [ - "n. 死,死亡,死神,毁灭" - ], - "id": "puKdHL", - "checked": false - }, - { - "name": "observe", - "trans": [ - "v. 观察, 遵守, 注意到" - ], - "id": "cTyRh7", - "checked": false - }, - { - "name": "density", - "trans": [ - "n. 密集,密度,透明度" - ], - "id": "0DWRaa", - "checked": false - }, - { - "name": "management", - "trans": [ - "n. 管理(层),经营,处理" - ], - "id": "n7G5V5", - "checked": false - }, - { - "name": "environmental", - "trans": [ - "adj. 环境的" - ], - "id": "tXv9Z1", - "checked": false - }, - { - "name": "surrounding", - "trans": [ - "adj. 周围的 n. 环境, 周围的事物" - ], - "id": "f78dKb", - "checked": false - }, - { - "name": "master", - "trans": [ - "n. 主人, 硕士, 母机 adj. 主人的, 主要的 v. 征服, 控制, 精通" - ], - "id": "_49-80", - "checked": false - }, - { - "name": "recursive", - "trans": [ - "adj. 递归的,循环的" - ], - "id": "0y2jSi", - "checked": false - }, - { - "name": "trap", - "trans": [ - "n. 圈套,陷阱,困境,双轮轻便马车 vt. &vi. 设圈套,设陷阱" - ], - "id": "0vHqkz", - "checked": false - }, - { - "name": "dimensional", - "trans": [ - "adj.空间的" - ], - "id": "XbBq2P", - "checked": false - }, - { - "name": "logic", - "trans": [ - "n. 逻辑(学),逻辑性,合理的推理" - ], - "id": "WGjU0m", - "checked": false - }, - { - "name": "conjunction", - "trans": [ - "n. 连词, 结合, 关联,(事件等的)同时发生" - ], - "id": "NSp2p-", - "checked": false - }, - { - "name": "identical", - "trans": [ - "adj. 相同的,同一的" - ], - "id": "aw1OWn", - "checked": false - }, - { - "name": "advice", - "trans": [ - "n. 忠告,建议,劝告" - ], - "id": "rZ-Z6E", - "checked": false - }, - { - "name": "meaning", - "trans": [ - "n. 意义,意思,含义 adj. 意味深长的" - ], - "id": "FlueCg", - "checked": false - }, - { - "name": "fall", - "trans": [ - "n. 秋天, 落下, 瀑布 v. 倒下, 落下, 来临" - ], - "id": "dmnsad", - "checked": false - }, - { - "name": "interval", - "trans": [ - "n. 间隔,休息时间, (数学)区间, (音乐)音程" - ], - "id": "r6QbVX", - "checked": false - }, - { - "name": "compatibility", - "trans": [ - "n. 和谐共处, 兼容" - ], - "id": "HGshph", - "checked": false - }, - { - "name": "rule", - "trans": [ - "n. 惯例,规则,统治 v. 裁定,统治,支配 vi. 裁决,统治 vt. 统治" - ], - "id": "w2BSoO", - "checked": false - }, - { - "name": "flag", - "trans": [ - "n. 旗标,旗子,信号旗 vt. 打旗号 vi. 无力地下垂,减退" - ], - "id": "vxGEt_", - "checked": false - }, - { - "name": "criterion", - "trans": [ - "n. 标准, 准则" - ], - "id": "fzrXMd", - "checked": false - }, - { - "name": "office", - "trans": [ - "n. 办公室,职务,事务" - ], - "id": "xeJcyU", - "checked": false - }, - { - "name": "express", - "trans": [ - "n. 快车, 快递, 专使 adj. 急速的, 明确的, 直接的 adv. 用快递; 特意地 vt. 表达, 表示; 挤压出; 快递" - ], - "id": "7ijo9l", - "checked": false - }, - { - "name": "volume", - "trans": [ - "n. 体积, 容量, 音量 n. 卷, 册" - ], - "id": "VnyY-R", - "checked": false - }, - { - "name": "soft", - "trans": [ - "adj. 柔软的,温和的,不强烈的,细腻的,轻的 adv. 柔软地,温和地 n. 柔软的东西" - ], - "id": "NGYogb", - "checked": false - }, - { - "name": "activity", - "trans": [ - "n. 活动;行动;活跃" - ], - "id": "qDfrjE", - "checked": false - }, - { - "name": "odometer", - "trans": [ - "n. 里程表" - ], - "id": "V5iZJN", - "checked": false - }, - { - "name": "phoenix", - "trans": [ - "n. 凤凰, 长生(不死)鸟 引申为重生" - ], - "id": "w1k1kJ", - "checked": false - }, - { - "name": "obtain", - "trans": [ - "vt. 获得, 得到 vi. 通用, 流行, 存在" - ], - "id": "D_QkF2", - "checked": false - }, - { - "name": "easel", - "trans": [ - "n. 画架" - ], - "id": "9OIzov", - "checked": false - }, - { - "name": "latter", - "trans": [ - "adj. 后面的,后者的 pron.&n. 后者" - ], - "id": "NOj-YN", - "checked": false - }, - { - "name": "decrease", - "trans": [ - "n. 减少(量),降低 vt.& vi. 减少,降低" - ], - "id": "zAQC2y", - "checked": false - }, - { - "name": "mainframe", - "trans": [ - "n. 主机,大型计算机" - ], - "id": "iZvUY-", - "checked": false - }, - { - "name": "diacritical", - "trans": [ - "adj. 可区分的 =diacritic" - ], - "id": "lvHreP", - "checked": false - }, - { - "name": "confidential", - "trans": [ - "adj. 机密的,获他人信赖的,易于信任他人的" - ], - "id": "VhRIFF", - "checked": false - }, - { - "name": "trace", - "trans": [ - "n. 痕迹,踪迹,微量 vt. 追踪,找出根源,描绘 vi. 追踪" - ], - "id": "IwXGeo", - "checked": false - }, - { - "name": "division", - "trans": [ - "n. 区分,分开,除法,公司,部门,师(军队里)" - ], - "id": "M3uY6y", - "checked": false - }, - { - "name": "regular", - "trans": [ - "adj. 有规律的,有规则的,整齐的,正规的" - ], - "id": "pkp0E4", - "checked": false - }, - { - "name": "implicit", - "trans": [ - "adj. 暗示的,盲从的 [计算机] 隐式" - ], - "id": "raHxGa", - "checked": false - }, - { - "name": "mention", - "trans": [ - "vt.提到,说起; 提名表扬 n.提及" - ], - "id": "4g59RT", - "checked": false - }, - { - "name": "near", - "trans": [ - "adj. 接近的,近亲的,亲近的,勉强的,直接的,小气的,近似的 adv. 接近,几乎,亲近 prep. 靠近 vt. 靠拢,接近 vi. 接近" - ], - "id": "IO-ykO", - "checked": false - }, - { - "name": "fifth", - "trans": [ - "num. 第五 n.五分之一" - ], - "id": "DLwot5", - "checked": false - }, - { - "name": "seven", - "trans": [ - "num. 七" - ], - "id": "fMTUQ2", - "checked": false - }, - { - "name": "whereas", - "trans": [ - "conj.&adv. 然而,却,反之" - ], - "id": "jvgdQH", - "checked": false - }, - { - "name": "review", - "trans": [ - "n. 检讨, 复习, 回顾, 评审 vt. 温习, 检讨, 评论, 检阅 vi. 写评论" - ], - "id": "XTXnr2", - "checked": false - }, - { - "name": "transform", - "trans": [ - "vt. 转换,变形 vi. 改变 n. 变形" - ], - "id": "8_rLtR", - "checked": false - }, - { - "name": "align", - "trans": [ - "vt. 使成一行, 使一致, 使结盟, 调整, 排列 vi. 成一条线" - ], - "id": "rpCg-o", - "checked": false - }, - { - "name": "yellow", - "trans": [ - "adj. 黄色的 n. 黄色" - ], - "id": "51Xyss", - "checked": false - }, - { - "name": "assist", - "trans": [ - "n. 帮助,协助,协助的器械 vt. 帮助,协助 vi. 帮助,协助,出席" - ], - "id": "2OyUtk", - "checked": false - }, - { - "name": "finish", - "trans": [ - "n. 完成,最后加工,结局,完美 vt. 结束,获...第几名 vi. 终结,完成" - ], - "id": "GsugQr", - "checked": false - }, - { - "name": "micro", - "trans": [ - "adj. 微小的 n. 微米(百万分之一, 测微计)" - ], - "id": "VCvdIs", - "checked": false - }, - { - "name": "beyond", - "trans": [ - "adv. 在更远处,另外 n. 远处, 来世 prep. 超出, 越过,另外" - ], - "id": "OwUmvj", - "checked": false - }, - { - "name": "against", - "trans": [ - "prep. 反对,倚靠,违背,防御,相比,相对" - ], - "id": "RZVMD_", - "checked": false - }, - { - "name": "upon", - "trans": [ - "prep. 在...上" - ], - "id": "n6P3AU", - "checked": false - }, - { - "name": "service", - "trans": [ - "n. 服务, 公务部门, 服役, 发球, 发球方式 vt. 维护, 保养" - ], - "id": "5zK_O8", - "checked": false - }, - { - "name": "little", - "trans": [ - "adj. 小的 adv. 毫不,少量地 n. 几乎没有(指数量或程度等)" - ], - "id": "lV2u_x", - "checked": false - }, - { - "name": "exhaust", - "trans": [ - "n. 排气,排气装置 v. 用尽,耗尽,使...精疲力尽 [计算机] 排除" - ], - "id": "6cQl0l", - "checked": false - }, - { - "name": "choice", - "trans": [ - "adj. 上等的,精选的 n. 选择,挑选" - ], - "id": "CZYJl8", - "checked": false - }, - { - "name": "sounding", - "trans": [ - "n. 探测水的深度, 试探 adj. 发声的, 夸大的 动词sound的现在分词形式" - ], - "id": "f9fNzV", - "checked": false - }, - { - "name": "develop", - "trans": [ - "vt. 发展,开发,冲洗照片 vi. 进步" - ], - "id": "DpVRJ-", - "checked": false - }, - { - "name": "holding", - "trans": [ - "n. 把持, 支持, 保持 vbl. 握住, 把持, 举行" - ], - "id": "-d9FUX", - "checked": false - }, - { - "name": "alpha", - "trans": [ - "n. 希腊字母的第一个字母,最初,开端 adj. [化]阿尔法位的,主导的,首要的,按字母顺序的" - ], - "id": "_6H1T2", - "checked": false - }, - { - "name": "constant", - "trans": [ - "adj. 经常的, 不变的 n. 常数, 恒量" - ], - "id": "MPVT7x", - "checked": false - }, - { - "name": "warranty", - "trans": [ - "n. 担保,保证,根据" - ], - "id": "dAA5FE", - "checked": false - }, - { - "name": "stay", - "trans": [ - "n. 停留,停止;依靠,忍耐力;撑条 vt. 等待,坚持到底 vi. 保持,停留,留宿" - ], - "id": "JrK89V", - "checked": false - }, - { - "name": "industry", - "trans": [ - "n. 工业,产业,勤勉,刻苦" - ], - "id": "VMaef4", - "checked": false - }, - { - "name": "trigger", - "trans": [ - "vt. 引发,引起;触发 vi. 松开扳柄 n. 扳机;[电子] 触发器;制滑机" - ], - "id": "ZYoXuA", - "checked": false - }, - { - "name": "lesson", - "trans": [ - "n. 课,教训 vt. 给...上课,教训" - ], - "id": "EjkUCv", - "checked": false - }, - { - "name": "treat", - "trans": [ - "v. 对待, 治疗,处理,请客,视为 n. 款待,宴飨" - ], - "id": "Fdk139", - "checked": false - }, - { - "name": "busy", - "trans": [ - "adj. 忙的,杂乱的 vt. 使忙于 vi. 忙" - ], - "id": "lfSujl", - "checked": false - }, - { - "name": "usage", - "trans": [ - "n. 惯用法,使用,用法" - ], - "id": "Y0mHjk", - "checked": false - }, - { - "name": "difficult", - "trans": [ - "adj. 困难的, (人)难取悦的, 难相处的" - ], - "id": "NOQQ7p", - "checked": false - }, - { - "name": "failure", - "trans": [ - "n. 失败,失败的人或事" - ], - "id": "XyNYYt", - "checked": false - }, - { - "name": "communication", - "trans": [ - "n. 沟通,交通" - ], - "id": "RFIJxx", - "checked": false - }, - { - "name": "building", - "trans": [ - "n. 建筑物" - ], - "id": "6nZ0el", - "checked": false - }, - { - "name": "ally", - "trans": [ - "n. 盟友,同盟国 vt. &vi. 联盟,联合,同盟" - ], - "id": "cWxiKJ", - "checked": false - }, - { - "name": "exclamation", - "trans": [ - "n. 惊呼, 惊叹词" - ], - "id": "-M7y4d", - "checked": false - }, - { - "name": "turning", - "trans": [ - "n. 旋转, 回转, 转向" - ], - "id": "BKI2gs", - "checked": false - }, - { - "name": "whole", - "trans": [ - "adj. 整个的, 完全的, 未受损的, (人)全面发展的 n. 全部, 通常情况 adv. 完全地, 统一地" - ], - "id": "f8Za83", - "checked": false - }, - { - "name": "parent", - "trans": [ - "n. 父母,根源 vt. &vi. 抚养,产生" - ], - "id": "sXRC_3", - "checked": false - }, - { - "name": "connection", - "trans": [ - "n. 联系,关系,连接,亲戚" - ], - "id": "WgBaWF", - "checked": false - }, - { - "name": "connectivity", - "trans": [ - "n. [计算机] 连通性" - ], - "id": "ZkZFzL", - "checked": false - }, - { - "name": "translation", - "trans": [ - "n. 翻译, 译文" - ], - "id": "TsCQ2q", - "checked": false - }, - { - "name": "dynamic", - "trans": [ - "adj. 动态的, (有)动力的, (有)力的; 有活力的 n. 动力; 力学" - ], - "id": "GMcCHp", - "checked": false - }, - { - "name": "foreground", - "trans": [ - "n. 前景, 最显著的位置" - ], - "id": "RZruqn", - "checked": false - }, - { - "name": "preserve", - "trans": [ - "vt.保护; 保持,保存; 腌制食物; 防腐处理 vi.保鲜; 保持原状; 做蜜饯; 禁猎 n.蜜饯; 防护用品; 禁猎地; 独占的事物(或范围)" - ], - "id": "-NODDu", - "checked": false - }, - { - "name": "vice", - "trans": [ - "n. 恶习,恶行,罪恶,缺陷,恶癖,老虎钳 vt. 钳住 prep. 代替,副,次" - ], - "id": "hM1_Zp", - "checked": false - }, - { - "name": "necessarily", - "trans": [ - "adv. 必然地,必定地,必需地" - ], - "id": "wTmkeL", - "checked": false - }, - { - "name": "circle", - "trans": [ - "n. 圆周,社交圈,循环 vt. &vi. 包围,盘旋,环绕" - ], - "id": "n1BDof", - "checked": false - }, - { - "name": "differ", - "trans": [ - "vi. 不一致,不同(意见)" - ], - "id": "zEohhd", - "checked": false - }, - { - "name": "stationary", - "trans": [ - "adj. 不动的(稳定的) n. 固定物(驻军)" - ], - "id": "61DZIP", - "checked": false - }, - { - "name": "extract", - "trans": [ - "n. 榨出物,精华,摘录 vt. 拔出,榨出,摘录,提取,选取 [计算机] 提取" - ], - "id": "QKpFSC", - "checked": false - }, - { - "name": "unrecognized", - "trans": [ - "adj. 未被承认的, 未被认出的" - ], - "id": "jjDKfY", - "checked": false - }, - { - "name": "thereafter", - "trans": [ - "adv. 其后, 从那时以后" - ], - "id": "0V-4ps", - "checked": false - }, - { - "name": "inverse", - "trans": [ - "adj. 相反的,倒转的 n. 相反的事物,(数学)逆反函数, 倒数, 负数" - ], - "id": "9iC627", - "checked": false - }, - { - "name": "spell", - "trans": [ - "v. 拼写,缓慢地或吃力地读 n. 魅力,符咒 vt. 用符咒镇住(某人) n. 一段时间,轮班 v. 轮班,休息" - ], - "id": "9fsvPp", - "checked": false - }, - { - "name": "limiting", - "trans": [ - "adj. 限制的 动词limit的现在分词" - ], - "id": "TB0dhj", - "checked": false - }, - { - "name": "restructure", - "trans": [ - "v. 更改结构, 重建构造" - ], - "id": "9Y9gRj", - "checked": false - }, - { - "name": "delimit", - "trans": [ - "vt. 定界限, 划界" - ], - "id": "syf3fN", - "checked": false - }, - { - "name": "pay", - "trans": [ - "n. 薪资,付款,报偿 vt. 支付,付清,报偿,给予 vi. 债清,值得,承担后果 adj. 投币的,要钱的" - ], - "id": "q_vV-Q", - "checked": false - }, - { - "name": "separately", - "trans": [ - "adv. 分别地;分离地;个别地" - ], - "id": "Won6K9", - "checked": false - }, - { - "name": "classify", - "trans": [ - "v. 分类,归类,分等" - ], - "id": "oan71k", - "checked": false - }, - { - "name": "interfere", - "trans": [ - "vi. 妨碍,冲突,干涉" - ], - "id": "fkGGNx", - "checked": false - }, - { - "name": "mind", - "trans": [ - "n. 思想, 主意, 心意, 记忆, vt. 留心, 注意, 介意, 照顾 vi. 留心, 关心" - ], - "id": "v-qIe1", - "checked": false - }, - { - "name": "individually", - "trans": [ - "adv. 个别地,单独地,独特地" - ], - "id": "f-Pj5e", - "checked": false - }, - { - "name": "vertical", - "trans": [ - "adj. 垂直的,顶点的,纵向的 n. 垂直物, 垂直的位置" - ], - "id": "UBSzoR", - "checked": false - }, - { - "name": "undesirable", - "trans": [ - "adj. 不受欢迎的, 不良的,不合意的,讨厌的 n. 不受欢迎的人,不良分子" - ], - "id": "9NEtmf", - "checked": false - }, - { - "name": "lot", - "trans": [ - "adv. 很,非常 pron. 大量 n. 许多,量,小组,抽签,场地,命运 vt. 分配,划分" - ], - "id": "NP_bZf", - "checked": false - }, - { - "name": "piece", - "trans": [ - "n. 块,片,篇 vt. 修补,结合" - ], - "id": "v8oEN1", - "checked": false - }, - { - "name": "unavailable", - "trans": [ - "adj. 得不到的, 没空的, 不能利用的" - ], - "id": "bDO0Z0", - "checked": false - }, - { - "name": "unlike", - "trans": [ - "adj. 不同的, 不相似的 prep. 不像, 和...不同" - ], - "id": "eJO7AS", - "checked": false - }, - { - "name": "sit", - "trans": [ - "vt. 坐,担任,开会,孵 vi. 坐,孵 n. 坐" - ], - "id": "AN62L-", - "checked": false - }, - { - "name": "insufficient", - "trans": [ - "adj. 不足的" - ], - "id": "Ief_RT", - "checked": false - }, - { - "name": "map", - "trans": [ - "n. 地图 v. 映射,绘制...之地图,计划 [计算机] 存储区分配图" - ], - "id": "M6rpU_", - "checked": false - }, - { - "name": "figure", - "trans": [ - "n. 图形, 数字, 形状; 人物, 外形, 体型 v. 演算, 认为, 领会到" - ], - "id": "6qjioP", - "checked": false - }, - { - "name": "prepare", - "trans": [ - "vt.准备; 预备(饭菜); 配备; 使(自己)有准备 vt.& vi.筹备,进行各项准备工作; 做好思想准备; 作出,制订; 锻炼(身体等),训" - ], - "id": "ERMDHd", - "checked": false - }, - { - "name": "consider", - "trans": [ - "vt. 考虑, 思考, 认为" - ], - "id": "IU-dTX", - "checked": false - }, - { - "name": "detect", - "trans": [ - "vt. 发现,探测信息,侦查 vi. 当侦探" - ], - "id": "_NoUIZ", - "checked": false - }, - { - "name": "convenience", - "trans": [ - "n. 适宜,便利, 便利设施,方便的时间,舒适" - ], - "id": "s9cAiG", - "checked": false - }, - { - "name": "method", - "trans": [ - "n. 方法,办法,条理" - ], - "id": "fV0_Zg", - "checked": false - }, - { - "name": "mean", - "trans": [ - "n.平均值, 平均数; 中部 adj. 低劣的, 卑贱的; 卑鄙的; 吝啬的 adj. 平均的, 中等的 v. 意味, 想要, 意欲" - ], - "id": "7-7ReU", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n. 薪水 vt. 给...薪水" - ], - "id": "0YzTAH", - "checked": false - }, - { - "name": "pacific", - "trans": [ - "adj. 太平洋的,(pacific)热爱和平的,求和的, 和解的 n. 太平洋" - ], - "id": "XxQs4l", - "checked": false - }, - { - "name": "strong", - "trans": [ - "adj. 强壮的, 牢固的, 坚定的, 坚强的, 强烈的, 浓的" - ], - "id": "KuyjvX", - "checked": false - }, - { - "name": "emphasize", - "trans": [ - "v. 强调,着重 vt. 强调" - ], - "id": "sFjCa8", - "checked": false - }, - { - "name": "department", - "trans": [ - "n. 部,部门,系" - ], - "id": "v3VfZ3", - "checked": false - }, - { - "name": "forced", - "trans": [ - "adj. 被迫的, 强迫的, 用力的,不自然的 force的过去式(分词)" - ], - "id": "L5MM_Q", - "checked": false - }, - { - "name": "ANSI", - "trans": [ - "abbr. 美国国家标准学会(=American National Standards Institute)" - ], - "id": "_Up6fQ", - "checked": false - }, - { - "name": "permanent", - "trans": [ - "adj. 永久的, 持久的 n. (口)烫发" - ], - "id": "ovnoPZ", - "checked": false - }, - { - "name": "remark", - "trans": [ - "n. 备注,评论,注意 vt. 评论,注意,述及" - ], - "id": "js4viZ", - "checked": false - }, - { - "name": "away", - "trans": [ - "adv. 远离,离开,出去,连续的,遥远地" - ], - "id": "66rMxH", - "checked": false - }, - { - "name": "concatenate", - "trans": [ - "v. 连结,连锁 adj. 连锁的" - ], - "id": "MQsNgq", - "checked": false - }, - { - "name": "lightning", - "trans": [ - "n. 闪电 adj. 闪电般的, 快速的 vi. 打闪" - ], - "id": "WpvGcd", - "checked": false - }, - { - "name": "additionally", - "trans": [ - "adv. 另外(加之, 又)" - ], - "id": "pIK616", - "checked": false - }, - { - "name": "emulate", - "trans": [ - "vt. 效法, 尽力赶上, 仿真 [计算机] 仿真" - ], - "id": "zNFl8q", - "checked": false - }, - { - "name": "tape", - "trans": [ - "n. 录像带, 录音带, 磁带, 胶带 vt. 用带子捆起, 给...录音 vi. 录音" - ], - "id": "cdokFA", - "checked": false - }, - { - "name": "concept", - "trans": [ - "n. 概念, 观念" - ], - "id": "6lmg7_", - "checked": false - }, - { - "name": "optimize", - "trans": [ - "v. 使...完美,乐观,使...完善 v.优化" - ], - "id": "pLHS4p", - "checked": false - }, - { - "name": "counter", - "trans": [ - "n. 计算器,计算者,柜台 [计算机] 计数器 adj. 相反的 adv. 与…相反地 vt. 反对,反击 vi. 反对,反击" - ], - "id": "OTWBw5", - "checked": false - }, - { - "name": "expect", - "trans": [ - "vt.期望; 预料; 要求; 认为(某事)会发生 vi.预期; 期待; 怀胎; 怀孕" - ], - "id": "cw5aH1", - "checked": false - }, - { - "name": "subsequently", - "trans": [ - "adv. 后来, 随后" - ], - "id": "U6pPeJ", - "checked": false - }, - { - "name": "registration", - "trans": [ - "n. 登记,注册,挂号" - ], - "id": "UPJPY8", - "checked": false - }, - { - "name": "city", - "trans": [ - "n. 城市" - ], - "id": "L5FUQJ", - "checked": false - }, - { - "name": "designate", - "trans": [ - "adj. 指定的 vt. 指定,选派,标明" - ], - "id": "e0uG6A", - "checked": false - }, - { - "name": "visible", - "trans": [ - "adj. 可见的, 看得见的" - ], - "id": "NY1UpT", - "checked": false - }, - { - "name": "consult", - "trans": [ - "v. 商讨,向...请教,查阅" - ], - "id": "W5r96g", - "checked": false - }, - { - "name": "completely", - "trans": [ - "adv. 完全地, 十分地, 全然" - ], - "id": "HruQq9", - "checked": false - }, - { - "name": "virtually", - "trans": [ - "adv. 几乎,实际上" - ], - "id": "LlAcUn", - "checked": false - }, - { - "name": "substantially", - "trans": [ - "adv. 实质上,本质上,大体上" - ], - "id": "DTRuTu", - "checked": false - }, - { - "name": "specialize", - "trans": [ - "vi.专门从事; 专攻; 详细说明; 特化 vt.使专门化; 使适应特殊情况; 详细说明; 列举" - ], - "id": "fsrZy-", - "checked": false - }, - { - "name": "fail", - "trans": [ - "vi. 衰退,失败,不及格 vt. 辜负,缺少,未能做 n. 不及格" - ], - "id": "_cSrj4", - "checked": false - }, - { - "name": "primarily", - "trans": [ - "adv. 首先, 主要地" - ], - "id": "qS5uGD", - "checked": false - }, - { - "name": "client", - "trans": [ - "n.顾客; 当事人; 诉讼委托人; [计算机]客户端" - ], - "id": "_IbH59", - "checked": false - }, - { - "name": "runtime", - "trans": [ - "[计] 运行时间" - ], - "id": "GAef6C", - "checked": false - }, - { - "name": "fix", - "trans": [ - "vt. &vi. 使...固定,修理,准备 n. 困境, (船只、飞机等的)定方位,贿赂" - ], - "id": "EvM5ps", - "checked": false - }, - { - "name": "author", - "trans": [ - "n. 作者,创造者 vt. 创造,写作" - ], - "id": "52mU2T", - "checked": false - }, - { - "name": "programmer", - "trans": [ - "n.程序员, 程序规划员 ,节目编排者 =programer(英)" - ], - "id": "YE11MD", - "checked": false - }, - { - "name": "commercial", - "trans": [ - "adj. 商业的 n. 商业广告" - ], - "id": "Y1gwQf", - "checked": false - }, - { - "name": "particularly", - "trans": [ - "adv. 特别, 尤其" - ], - "id": "pTFfKE", - "checked": false - }, - { - "name": "low", - "trans": [ - "n. 低,低点(价),深度,牛叫声 adj. 低的,消沉的,低等的,粗俗的,衰弱的 vi. 牛叫" - ], - "id": "CuT7dp", - "checked": false - }, - { - "name": "sheet", - "trans": [ - "n. 床单,张,片 vt. 盖上被单,遍布, 使成片状 vi. 成片落下或流动 adj. 片状的" - ], - "id": "0ksr7W", - "checked": false - }, - { - "name": "employee", - "trans": [ - "n. 雇员" - ], - "id": "ltT21B", - "checked": false - }, - { - "name": "legal", - "trans": [ - "adj. 法律的,合法的,法定的" - ], - "id": "V2u4p-", - "checked": false - }, - { - "name": "qualified", - "trans": [ - "adj. 有资格的 vbl. 取得资格" - ], - "id": "rCgtEi", - "checked": false - }, - { - "name": "context", - "trans": [ - "n. 上下文, 环境,背景" - ], - "id": "CFL4BE", - "checked": false - }, - { - "name": "involved", - "trans": [ - "v. 涉及(包含,遍及,占用,促成,自乘) adj. 所包含的(形式复杂的)" - ], - "id": "E4vsBQ", - "checked": false - }, - { - "name": "conditional", - "trans": [ - "adj. 有条件的, 假定的,假设的 n. [语]条件句" - ], - "id": "mB5fRH", - "checked": false - }, - { - "name": "halfway", - "trans": [ - "adj. 中途的, 不彻底的 adv. 半路地, 在中途" - ], - "id": "IDRW3R", - "checked": false - }, - { - "name": "oriented", - "trans": [ - "adj. 导向的,定向的" - ], - "id": "ETfKs3", - "checked": false - }, - { - "name": "pair", - "trans": [ - "n. 双,对,副 vt.& vi. 使...成对,配对" - ], - "id": "y-5iTY", - "checked": false - }, - { - "name": "week", - "trans": [ - "n. 星期, 周" - ], - "id": "prQVPc", - "checked": false - }, - { - "name": "subroutine", - "trans": [ - "n. [计算机]子程序" - ], - "id": "d307Ju", - "checked": false - }, - { - "name": "manually", - "trans": [ - "adv.用手" - ], - "id": "8rmQ-B", - "checked": false - }, - { - "name": "preset", - "trans": [ - "vt. 预先装置,事先调整" - ], - "id": "jNqEnm", - "checked": false - }, - { - "name": "autoindex", - "trans": [ - "adj.[计]自动索引,自动变址" - ], - "id": "APb-bF", - "checked": false - }, - { - "name": "restrict", - "trans": [ - "v. 限制,约束" - ], - "id": "Eai4zo", - "checked": false - }, - { - "name": "performance", - "trans": [ - "n.表演; 演技; 表现; 执行" - ], - "id": "lT2wJp", - "checked": false - }, - { - "name": "showing", - "trans": [ - "n. 显示, 放映 动词show的现在分词" - ], - "id": "hglGVH", - "checked": false - }, - { - "name": "ever", - "trans": [ - "adv. 曾经, 永远, 究竟" - ], - "id": "iwTZOa", - "checked": false - }, - { - "name": "distribution", - "trans": [ - "n. 分发, 分配, 散布, 分布" - ], - "id": "QNWSDf", - "checked": false - }, - { - "name": "denote", - "trans": [ - "vt. 象征,表示" - ], - "id": "LhLGZV", - "checked": false - }, - { - "name": "cash", - "trans": [ - "n. 现金 vt. 兑现,付现款 adj. 现金的" - ], - "id": "_z9SB_", - "checked": false - }, - { - "name": "repeatedly", - "trans": [ - "adv. 重复地, 再三地" - ], - "id": "zQPNzC", - "checked": false - }, - { - "name": "replicate", - "trans": [ - "vt. &vi. 折叠,复制,模写 n. 同样的样品 adj. 转折的" - ], - "id": "mURuYt", - "checked": false - }, - { - "name": "mega", - "trans": [ - "兆, 百万" - ], - "id": "pOHLRK", - "checked": false - }, - { - "name": "conform", - "trans": [ - "vt. 使一致,遵守,使顺从 vi. 一致,符合" - ], - "id": "is7mMf", - "checked": false - }, - { - "name": "rebuild", - "trans": [ - "v. 重建,改建,使复原" - ], - "id": "5GWZD3", - "checked": false - }, - { - "name": "certainty", - "trans": [ - "n. 确定, 确实的事情" - ], - "id": "pofrQB", - "checked": false - }, - { - "name": "controller", - "trans": [ - "n. 控制器, 管理者, 主计员" - ], - "id": "pfWlZT", - "checked": false - }, - { - "name": "pseudo", - "trans": [ - "adj. 假的, 冒充的" - ], - "id": "OA38uD", - "checked": false - }, - { - "name": "manage", - "trans": [ - "vt. 管理,处理,维持,达成,经营 vi. 管理,达成" - ], - "id": "OKzMMY", - "checked": false - }, - { - "name": "administrator", - "trans": [ - "n. 管理人,行政官" - ], - "id": "_uR_jh", - "checked": false - }, - { - "name": "ensemble", - "trans": [ - "n. 全体, 合唱曲, 女人的全套服装" - ], - "id": "IgKlHZ", - "checked": false - }, - { - "name": "bus", - "trans": [ - "n. 公共汽车" - ], - "id": "_MrwsO", - "checked": false - }, - { - "name": "allowable", - "trans": [ - "adj. 容许的, 承认的" - ], - "id": "nzdqAk", - "checked": false - }, - { - "name": "restriction", - "trans": [ - "n. 限制,约束 vi. 结果,(作为结果)发生" - ], - "id": "1Rtpds", - "checked": false - }, - { - "name": "height", - "trans": [ - "n. 高度,高处,身高, 最高峰, 极点" - ], - "id": "OFLTk4", - "checked": false - }, - { - "name": "remainder", - "trans": [ - "n. 剩余物, 其他的人, 残余 vt. 廉价出售 adj. 剩余的" - ], - "id": "rW65Uj", - "checked": false - }, - { - "name": "traverse", - "trans": [ - "n. 横贯, 横木 v. 横过, 铭刻" - ], - "id": "LXja_y", - "checked": false - }, - { - "name": "organization", - "trans": [ - "n. 机构,组织 adj. 有组织的" - ], - "id": "5C41Le", - "checked": false - }, - { - "name": "resulting", - "trans": [ - "adj.作为结果的,因而发生的" - ], - "id": "rTgUkl", - "checked": false - }, - { - "name": "solution", - "trans": [ - "n. 解答, 解决办法, 溶解, 溶液" - ], - "id": "GBLwz0", - "checked": false - }, - { - "name": "external", - "trans": [ - "n. 外部 adj. 外部的,外用的,客观的,表面的" - ], - "id": "snwd5X", - "checked": false - }, - { - "name": "adequate", - "trans": [ - "adj. 足够的, 充足的, 适当的, 能胜任的" - ], - "id": "Cf2ii6", - "checked": false - }, - { - "name": "vary", - "trans": [ - "vt. 改变,使多样化 vi. 变化,违背" - ], - "id": "fpVLac", - "checked": false - }, - { - "name": "gap", - "trans": [ - "n. (意见、个性等的)差异,缝隙,漏洞,缺口 vt. 制造缺口 嘉普(财富500强公司之一,总部所在地美国,主要经营服装零售)" - ], - "id": "Uuq3EI", - "checked": false - }, - { - "name": "indexing", - "trans": [ - "n. 指数(分度, 索引, 转位, 转换角度, 换档, 改址)" - ], - "id": "i7akpn", - "checked": false - }, - { - "name": "board", - "trans": [ - "n. 木板, 甲板, 董事会 n. 伙食; 舞台, 演员的职业; 船舷 vt. 登(飞机、车、船等); 有偿提供食宿; 用木板覆盖 vi. 搭伙" - ], - "id": "archjF", - "checked": false - }, - { - "name": "package", - "trans": [ - "n. 包裹,整批交易 vt. 把...打包,把...进行推销" - ], - "id": "mCRCc5", - "checked": false - }, - { - "name": "insertion", - "trans": [ - "n. 插入,刊载,插入物" - ], - "id": "wvStpg", - "checked": false - }, - { - "name": "intervene", - "trans": [ - "vi. 插入,介入,干涉,调停 [计算机] 介入" - ], - "id": "IlJmnm", - "checked": false - }, - { - "name": "conflict", - "trans": [ - "n.冲突; 战斗; 相互干扰; 矛盾 vi.抵触; 争斗; 战斗; 冲突" - ], - "id": "-Oo-DR", - "checked": false - }, - { - "name": "really", - "trans": [ - "adv. 真正地,实在,事实上" - ], - "id": "c23VbF", - "checked": false - }, - { - "name": "overflow", - "trans": [ - "n. 溢值,超值,泛滥 v. 泛滥,溢出,充溢 [计算机] 溢出" - ], - "id": "wkN7bx", - "checked": false - }, - { - "name": "charge", - "trans": [ - "n. 电荷, 指控, 费用; 照顾, 责任 vt. &vi 控诉, 加罪于, 要价, 赊帐, 充电, 管理" - ], - "id": "GrOVU2", - "checked": false - }, - { - "name": "phone", - "trans": [ - "n. 音位,电话,耳机 vt. &vi. 打电话" - ], - "id": "tjOpkb", - "checked": false - }, - { - "name": "virtual", - "trans": [ - "adj. 虚拟的;有效的;实质上的,事实上的" - ], - "id": "1rAKw9", - "checked": false - }, - { - "name": "compose", - "trans": [ - "vt. 组成, 写作, 作曲, 使镇静 vi. 创作" - ], - "id": "p0bB05", - "checked": false - }, - { - "name": "snapshot", - "trans": [ - "n. 快照,印象" - ], - "id": "yJVEc3", - "checked": false - }, - { - "name": "sensitivity", - "trans": [ - "n. 敏感, 多愁善感, 感受性" - ], - "id": "4GoXnQ", - "checked": false - }, - { - "name": "familiar", - "trans": [ - "adj. 熟悉的,熟知的,不拘礼节的 n. 熟人,熟悉某种事物的人" - ], - "id": "Tkw7wL", - "checked": false - }, - { - "name": "Mach", - "trans": [ - "n. [物]马赫(速度单位) n. 马赫(奥地利物理学家, 心理学家、哲学家) abbr. 机器(=machine)" - ], - "id": "qQbtf9", - "checked": false - }, - { - "name": "incorrect", - "trans": [ - "adj. 不正确的, 错误的" - ], - "id": "BQE3It", - "checked": false - }, - { - "name": "cut", - "trans": [ - "n. 切口,割伤,降低,份额,删节,割下的一块肉 vt. 切割,减少,停止,修剪 vi. 切割,快速移动 [计算机] 剪掉" - ], - "id": "vre78T", - "checked": false - }, - { - "name": "lowest", - "trans": [ - "adj.最低的,最底下的,最小的" - ], - "id": "f5eet_", - "checked": false - }, - { - "name": "simple", - "trans": [ - "adj. 简单的,无辜的,天真的,基本的,纯粹的 n. 平民,精神病人,草药" - ], - "id": "Xk96gl", - "checked": false - }, - { - "name": "subsequent", - "trans": [ - "adj. 随后的,后来的" - ], - "id": "nQf1X-", - "checked": false - }, - { - "name": "compact", - "trans": [ - "adj. 紧凑的,紧密的,简洁的 v. 使装满,使简洁" - ], - "id": "lEr978", - "checked": false - }, - { - "name": "plain", - "trans": [ - "n. 平原,草原 adj. 简单的,平坦的,平常的,家常的 adj.纯的,不掺杂的" - ], - "id": "BsTrXO", - "checked": false - }, - { - "name": "noted", - "trans": [ - "adj. 著名的,有声望的 动词note的过去式和过去分词形式" - ], - "id": "eovPlX", - "checked": false - }, - { - "name": "desirable", - "trans": [ - "adj. 值得有的,令人满意的,有吸引力的 n. 有吸引力的人" - ], - "id": "qxj_q7", - "checked": false - }, - { - "name": "substitution", - "trans": [ - "n. 代理,替换,交换" - ], - "id": "ft8yQV", - "checked": false - }, - { - "name": "consume", - "trans": [ - "vt. 消耗,毁灭,吃,喝, 挥霍 vi. 耗尽生命, 被烧毁" - ], - "id": "s3dty9", - "checked": false - }, - { - "name": "forget", - "trans": [ - "vt. &vi. 忘记,忽略" - ], - "id": "sDl3Pn", - "checked": false - }, - { - "name": "keyed", - "trans": [ - "v.键入 vbl.键入" - ], - "id": "Nzfh1C", - "checked": false - }, - { - "name": "tornado", - "trans": [ - "n. 飓风,旋风,龙卷风" - ], - "id": "-RtMWI", - "checked": false - }, - { - "name": "quotation", - "trans": [ - "n. 1.引语,语录 2.报价单 3.行情表" - ], - "id": "KlrRtu", - "checked": false - }, - { - "name": "parse", - "trans": [ - "v.&n. 从语法上分析" - ], - "id": "lH4-5y", - "checked": false - }, - { - "name": "experience", - "trans": [ - "n. 经历, 经验 vt. 经历, 体验" - ], - "id": "kZanCI", - "checked": false - }, - { - "name": "manufacture", - "trans": [ - "n. 产品,制造,制造业 vt. 制造,加工 vi. 参与制造" - ], - "id": "fVeDGf", - "checked": false - }, - { - "name": "hundred", - "trans": [ - "n. 百,百个东西 adj. 百,百个" - ], - "id": "jzzfir", - "checked": false - }, - { - "name": "thousand", - "trans": [ - "adj. 千,成千" - ], - "id": "ZSwUx4", - "checked": false - }, - { - "name": "twentieth", - "trans": [ - "n. 二十分之一 num.&adj. 第二十" - ], - "id": "3W7dsw", - "checked": false - }, - { - "name": "understanding", - "trans": [ - "n. 了解, 理解, 个人见解, 非正式协议, 谅解, 同情心, 洞察力 adj. 有同情心的" - ], - "id": "lxwU_u", - "checked": false - }, - { - "name": "hand", - "trans": [ - "n. 手,掌握,协助 vt. 帮助,给 adv. 手动地,人工地" - ], - "id": "0P8qOt", - "checked": false - }, - { - "name": "fancy", - "trans": [ - "n. 想像力, 幻想, 喜好, 爱 adj. 想像的, 时髦的, 华丽装饰的, 奢侈的, 技巧的 vt. 想象, 自认为, 喜好" - ], - "id": "tLXYam", - "checked": false - }, - { - "name": "wide", - "trans": [ - "adj. 广泛的,宽阔的 adv. 广大地,全部地" - ], - "id": "u_u_oc", - "checked": false - }, - { - "name": "fine", - "trans": [ - "n. 罚款,罚金,结尾 vt. 罚款 vi. 净化,细化 adj. 美好的, 优质的, 精致的,晴朗的, 健康的,纤细的,恭维的,辞藻华丽的 adv. 恰好地,合适地" - ], - "id": "uev9Wh", - "checked": false - }, - { - "name": "worry", - "trans": [ - "n. 烦恼,忧虑,苦恼 vt. 使...烦恼,使...焦虑, 叼住某物甩或拉 vi. 感到苦恼,感到焦虑" - ], - "id": "RyAh8P", - "checked": false - }, - { - "name": "quiet", - "trans": [ - "n. 安静,闲适,平静 adj. 安静的,静止的,宁静的 adv. 安静地 vt. &vi. 使...平静,使...安心" - ], - "id": "rY3Mew", - "checked": false - }, - { - "name": "purge", - "trans": [ - "n. 整肃,清除,泻药,净化 vt. 净化,清除,摆脱 vi. 清除,通便,腹泻,变得清洁" - ], - "id": "y4CyZ1", - "checked": false - }, - { - "name": "mod", - "trans": [ - "abbr. (=modern) 现代的,时髦的 abbr. (=modulus) 模数,绝对值" - ], - "id": "b35lCo", - "checked": false - }, - { - "name": "numeral", - "trans": [ - "adj. 数字的, 表示数字的 n. 数字, 数" - ], - "id": "FHPuk0", - "checked": false - }, - { - "name": "whichever", - "trans": [ - "adj. 无论哪个, 无论哪些 pron. 无论哪个" - ], - "id": "M-0lnn", - "checked": false - }, - { - "name": "purchase", - "trans": [ - "n. 购买, 购买的物品 n. 支点; 紧握, 抓紧 vt. 购买, 赢得; (用设备)举起, 移动" - ], - "id": "ECzWBY", - "checked": false - }, - { - "name": "care", - "trans": [ - "n. 小心,照料,忧虑,慎思,焦虑因素 vi. 关心,照顾,喜爱 vt. 介意,希望 abbr.=Cooperative for American Remittances to Europe 汇款到欧洲合作社" - ], - "id": "y5nIID", - "checked": false - }, - { - "name": "watch", - "trans": [ - "n. 手表,注视 vt. 观察,监视,注视,照顾,等待 vi. 留意,观察" - ], - "id": "ZiO-TJ", - "checked": false - }, - { - "name": "endeavor", - "trans": [ - "n. 努力, 尽力, 进取心 vt. 努力,尽力 vi. 企图, 谋求" - ], - "id": "6daHud", - "checked": false - }, - { - "name": "mismatch", - "trans": [ - "vt. 配错, 配合不当 n. 配错, 不相匹配" - ], - "id": "SHdxBf", - "checked": false - }, - { - "name": "printout", - "trans": [ - "n. (电脑)打印输出" - ], - "id": "6TAcRJ", - "checked": false - }, - { - "name": "ellipsis", - "trans": [ - "n. 省略" - ], - "id": "T4AhyX", - "checked": false - }, - { - "name": "ship", - "trans": [ - "n. 船,舰,船员,飞船 vt. 以船运送,乘船,运送,进水,在船上工作 vi. 上船,坐船,运送,在船上工作" - ], - "id": "JMpCm1", - "checked": false - }, - { - "name": "British", - "trans": [ - "adj. 英国的 n. 英国人, 英国英语" - ], - "id": "wdnX_3", - "checked": false - }, - { - "name": "parallel", - "trans": [ - "adj. 平行的,相同的,类似的,并联的 adv. 平行地 n. 平行线(面),相似物,对比 vt. 相比,相应,与...平行" - ], - "id": "n2gBQy", - "checked": false - }, - { - "name": "custom", - "trans": [ - "n. 习惯, 风俗, 海关" - ], - "id": "8pYqHZ", - "checked": false - }, - { - "name": "congratulation", - "trans": [ - "n. 祝贺" - ], - "id": "zsyiBZ", - "checked": false - }, - { - "name": "protection", - "trans": [ - "n. 保护,防卫" - ], - "id": "Tv6F6u", - "checked": false - }, - { - "name": "glass", - "trans": [ - "n. 玻璃, 玻璃器皿, 窗户, (复)眼镜,透镜 vt. 用玻璃把…盖(或罩、围)住,给...装上玻璃, 使成玻璃状, 反映, 反射, 审视 vi. 成为玻璃状, 用光学仪器眺望" - ], - "id": "b1sWnp", - "checked": false - }, - { - "name": "pattern", - "trans": [ - "n. 图案, 式样, 典范 v. 以图案装饰; 仿造, 模仿" - ], - "id": "2uRb4h", - "checked": false - }, - { - "name": "insure", - "trans": [ - "vt. 保险,确保 vi. 买保险" - ], - "id": "qLU1mc", - "checked": false - }, - { - "name": "factory", - "trans": [ - "n. 工厂, 制造场所" - ], - "id": "3eARDT", - "checked": false - }, - { - "name": "implement", - "trans": [ - "n. 工具, 器具; 当工具的物品 vt. 实施, 执行; 向...提供工具(或手段)" - ], - "id": "ENqrE4", - "checked": false - }, - { - "name": "effort", - "trans": [ - "n. 努力, 努力的成果" - ], - "id": "mdLUpj", - "checked": false - }, - { - "name": "worker", - "trans": [ - "n. 工人,工作者" - ], - "id": "7p9yac", - "checked": false - }, - { - "name": "ampersand", - "trans": [ - "n. 和,&(and 的符号)" - ], - "id": "zDaeL3", - "checked": false - }, - { - "name": "deal", - "trans": [ - "n. 交易,协定,份量 v. (dealt,dealt[delt])处理,应付,分配" - ], - "id": "Wnaa2v", - "checked": false - }, - { - "name": "power", - "trans": [ - "n. 力量, 权力,电力 vt. 供电,激励,全速前进 adj. 与力量有关的,与权力有关的,电力控制的" - ], - "id": "4_kYGY", - "checked": false - }, - { - "name": "difficulty", - "trans": [ - "n. 困难,争议,反对,麻烦" - ], - "id": "UABQhQ", - "checked": false - }, - { - "name": "lose", - "trans": [ - "vt. 遗失,损失,失败,摆脱 vi. 丢失,失败 [计算机] 失去" - ], - "id": "EJ48L2", - "checked": false - }, - { - "name": "magic", - "trans": [ - "adj. 有魔力的, 神奇的 n. 魔法, 魔术 vt. 使用魔(变出等)" - ], - "id": "pkUo8M", - "checked": false - }, - { - "name": "proprietary", - "trans": [ - "adj. 专利的, 所有权的 n. 所有权, 所有人" - ], - "id": "bbP6wK", - "checked": false - }, - { - "name": "aware", - "trans": [ - "adj. 知道的, 意识到的" - ], - "id": "XADM13", - "checked": false - }, - { - "name": "numerous", - "trans": [ - "adj. 为数众多的,许多" - ], - "id": "DFbNhk", - "checked": false - }, - { - "name": "vowel", - "trans": [ - "n. 母音, 元音" - ], - "id": "L-0CWa", - "checked": false - }, - { - "name": "closely", - "trans": [ - "adv. 紧密地,接近地,严密地" - ], - "id": "nr_Kwz", - "checked": false - }, - { - "name": "accuracy", - "trans": [ - "n. 准确(性), 精确度" - ], - "id": "3-OoM7", - "checked": false - }, - { - "name": "traditional", - "trans": [ - "adj. 传统的" - ], - "id": "Wj_4jN", - "checked": false - }, - { - "name": "synchronization", - "trans": [ - "n.同步化" - ], - "id": "JZUhOm", - "checked": false - }, - { - "name": "fragment", - "trans": [ - "n. 碎片 vt. &vi. 变成碎片 [计算机] 碎片" - ], - "id": "xWqGMH", - "checked": false - }, - { - "name": "primary", - "trans": [ - "n. 最主要者 adj. 主要的, 初期的, 根本的" - ], - "id": "uqlxhw", - "checked": false - }, - { - "name": "safely", - "trans": [ - "adv. 安全地" - ], - "id": "cXvSm_", - "checked": false - }, - { - "name": "habit", - "trans": [ - "n. 习惯,习性;嗜好 vt. 使穿衣" - ], - "id": "Fv2Df5", - "checked": false - }, - { - "name": "comprise", - "trans": [ - "vt. 包含,构成" - ], - "id": "rzuHVg", - "checked": false - }, - { - "name": "landler", - "trans": [ - "n.兰德勒舞(奥地利农村的民间舞),兰德勒舞曲" - ], - "id": "mAWYn1", - "checked": false - }, - { - "name": "absence", - "trans": [ - "n. 没有;缺乏;缺席;不注意" - ], - "id": "1eRSMc", - "checked": false - }, - { - "name": "revolutionize", - "trans": [ - "vt. 使革命化,使彻底变革 vi. 变革 =revolutionise(英)" - ], - "id": "DDXrFJ", - "checked": false - }, - { - "name": "constantly", - "trans": [ - "adv. 不断地,经常地" - ], - "id": "aLV_2O", - "checked": false - }, - { - "name": "seldom", - "trans": [ - "adv. 很少 adj. 很少的" - ], - "id": "MaeXVu", - "checked": false - }, - { - "name": "unfortunately", - "trans": [ - "adv. 不幸地" - ], - "id": "CCt_md", - "checked": false - }, - { - "name": "expunge", - "trans": [ - "v. 擦掉, 删掉, 除去" - ], - "id": "0o2mf5", - "checked": false - }, - { - "name": "security", - "trans": [ - "n.安全; 保证,担保; 保护,防护; 有价证券 adj.安全的,保安的,保密的" - ], - "id": "XHCIH6", - "checked": false - }, - { - "name": "touch", - "trans": [ - "n. 触觉,接触,少许, 痕迹, 修饰 vt. 触摸,吃,喝,触及,感动 vi. 接触, 联系" - ], - "id": "EeFwQe", - "checked": false - }, - { - "name": "contrast", - "trans": [ - "n.对比,对照; 差异; 对照物,对立面; [摄]反差" - ], - "id": "aESluh", - "checked": false - }, - { - "name": "invent", - "trans": [ - "v. 发明 vt. 发明,创造" - ], - "id": "sAIo0A", - "checked": false - }, - { - "name": "reflect", - "trans": [ - "v. 反映, 反射, 归咎" - ], - "id": "mrzVHG", - "checked": false - }, - { - "name": "undone", - "trans": [ - "adj. 未完成的,未做完的 动词undo的过去分词形式" - ], - "id": "GnT0zV", - "checked": false - }, - { - "name": "unshift", - "trans": [ - "vi. 松开打字机或键盘的字型变换键" - ], - "id": "gbsew-", - "checked": false - }, - { - "name": "complex", - "trans": [ - "adj. 复杂的 n. 复合体" - ], - "id": "hsqNDz", - "checked": false - }, - { - "name": "complexity", - "trans": [ - "n. 复杂,复杂性, 复杂的事物" - ], - "id": "G8YZsm", - "checked": false - }, - { - "name": "creation", - "trans": [ - "n. 创造, 创作" - ], - "id": "Kp381L", - "checked": false - }, - { - "name": "unknown", - "trans": [ - "adj. 未知的,不出名的" - ], - "id": "p6dLvP", - "checked": false - }, - { - "name": "greatly", - "trans": [ - "adv. 很, 非常" - ], - "id": "OZTtWo", - "checked": false - }, - { - "name": "cost", - "trans": [ - "n.价钱,代价; 花费,费用; 牺牲; [用复数][法律]诉讼费 vi.价钱为,花费; 估计成本 vt.付出代价; 估价; 使丧失; 使付出努力" - ], - "id": "3zBZLm", - "checked": false - }, - { - "name": "degrade", - "trans": [ - "vt. 贬低;使……丢脸;使……降级;使……降解 vi. 降级,降低;退化" - ], - "id": "A-Mgdb", - "checked": false - }, - { - "name": "suggestion", - "trans": [ - "n. 建议, 意见, 迹象, 暗示, 联想" - ], - "id": "HRTNA9", - "checked": false - }, - { - "name": "real", - "trans": [ - "adj. 实际的,现实的,真的,真实的 adv. 非常 n. 真实的事, 真实" - ], - "id": "GB_aRt", - "checked": false - }, - { - "name": "experimentation", - "trans": [ - "n. 实验, 试验" - ], - "id": "JA7_g_", - "checked": false - }, - { - "name": "experiment", - "trans": [ - "n. 实验,试验,尝试 vi. 做实验,尝试" - ], - "id": "hQS3H-", - "checked": false - }, - { - "name": "substantial", - "trans": [ - "n. 重要部份, 本质 adj. 大量的, 实质上的, 有内容的" - ], - "id": "D4IQuh", - "checked": false - }, - { - "name": "solely", - "trans": [ - "adv. 独自地,单独地" - ], - "id": "mbsUrR", - "checked": false - }, - { - "name": "announce", - "trans": [ - "vi.宣布参加竞选; 当播音员 vt.宣布; 述说; 声称; 预告" - ], - "id": "aMeYnX", - "checked": false - }, - { - "name": "squeeze", - "trans": [ - "n. 压榨,榨出的少量,佣金,经济拮据 vt. 紧握,挤压,使经济困难 vi. 让步,压迫,险胜" - ], - "id": "tseI_W", - "checked": false - }, - { - "name": "distribute", - "trans": [ - "vt. &vi. 分配,散布" - ], - "id": "bSrCWk", - "checked": false - }, - { - "name": "negate", - "trans": [ - "v. 否定, 否认, 打消" - ], - "id": "Xe2koA", - "checked": false - }, - { - "name": "capture", - "trans": [ - "n. 抓取,战利品,捕获之物 vt. 抓取,获得,迷住" - ], - "id": "zk28oW", - "checked": false - }, - { - "name": "father", - "trans": [ - "n. 父亲,鼻祖 vt. 作为父亲生育子女 vi. 像父亲般照顾" - ], - "id": "SSGrAM", - "checked": false - }, - { - "name": "reinstate", - "trans": [ - "v. 恢复(原职) vt. 使恢复原有的职位" - ], - "id": "TLG8-D", - "checked": false - }, - { - "name": "tutorial", - "trans": [ - "n. 个别指导 adj. 个别指导的" - ], - "id": "0aGebB", - "checked": false - }, - { - "name": "nicety", - "trans": [ - "n. 精确,谨慎,精细,细微的区别" - ], - "id": "OTtoYV", - "checked": false - }, - { - "name": "roll", - "trans": [ - "vt.辗; 使(眼球等)左右转动; (使)原地转圈; 滚动 vi.左右摇晃; 翻滚; 开始移动,启动 n.名册; 滚翻" - ], - "id": "9s8rKo", - "checked": false - }, - { - "name": "exponent", - "trans": [ - "n. 拥护者,说明者,楷模 n. 指数 n. 能手,大师 adj. 说明的" - ], - "id": "jRzg9u", - "checked": false - }, - { - "name": "exponential", - "trans": [ - "adj. 指数的 n. 指数" - ], - "id": "Y8uQ4N", - "checked": false - }, - { - "name": "prefer", - "trans": [ - "vt.更喜欢; 提升,提拔; 给予(债权人)优先权; 提出(控告) vi.更喜欢,宁愿" - ], - "id": "BK2rjq", - "checked": false - }, - { - "name": "complicated", - "trans": [ - "adj. 复杂的, 难懂的" - ], - "id": "Lzfh3j", - "checked": false - }, - { - "name": "reactivate", - "trans": [ - "v. 使重新活跃,恢复活动" - ], - "id": "JdUICP", - "checked": false - }, - { - "name": "spread", - "trans": [ - "n. 传布, 伸展 adj. 扩延的 v. 传布, 推广, 伸出" - ], - "id": "1Zp-3v", - "checked": false - }, - { - "name": "synchronize", - "trans": [ - "v. 使同时, 同时发生" - ], - "id": "mzVAkg", - "checked": false - }, - { - "name": "formation", - "trans": [ - "n. 构造,编队,形成" - ], - "id": "NGMU18", - "checked": false - }, - { - "name": "widely", - "trans": [ - "adv. 广泛地" - ], - "id": "-izsMy", - "checked": false - }, - { - "name": "comma", - "trans": [ - "n. 逗号,停顿,间歇 n. 银纹多角蛱蝶" - ], - "id": "pGCijW", - "checked": false - }, - { - "name": "very", - "trans": [ - "adj. 真正的,完全的,自己的,仅仅的,同一个,特别的 adv. 真的,非常" - ], - "id": "QkGzT3", - "checked": false - }, - { - "name": "unnecessary", - "trans": [ - "adj. 不必要的,多余的 n. 不必要的东西" - ], - "id": "7PqZrH", - "checked": false - }, - { - "name": "unchanged", - "trans": [ - "adj. 无变化的" - ], - "id": "00Q1M8", - "checked": false - }, - { - "name": "cross", - "trans": [ - "n. 十字架,十字架形物件,交叉,交叉路 adj. 生气的,交叉的 vt. 划叉剔除,画横线于 vi. 穿越 prep. 穿过" - ], - "id": "Xk0Rrt", - "checked": false - }, - { - "name": "yet", - "trans": [ - "adv. 还,仍然,即刻 conj. 尽管,然而" - ], - "id": "IKRuXf", - "checked": false - }, - { - "name": "slowly", - "trans": [ - "adj. 慢慢地 adv. 缓慢地" - ], - "id": "VbmJ30", - "checked": false - }, - { - "name": "inexperienced", - "trans": [ - "adj. 无经验的, 不熟练的" - ], - "id": "sXvCvv", - "checked": false - }, - { - "name": "unwanted", - "trans": [ - "adj. 不必要的, 空闲的" - ], - "id": "d7Si7a", - "checked": false - }, - { - "name": "unused", - "trans": [ - "adj. 未用过的,不习惯的" - ], - "id": "_byUyN", - "checked": false - }, - { - "name": "unmarked", - "trans": [ - "adj. 无记号的, 未被注意的" - ], - "id": "HSTJpQ", - "checked": false - }, - { - "name": "nothing", - "trans": [ - "adv. 毫不 n. 微不足道的人或事 pron. 什么也没有" - ], - "id": "yLuzk6", - "checked": false - }, - { - "name": "chart", - "trans": [ - "n. 图表 vt. 制成图表" - ], - "id": "LNM5vl", - "checked": false - }, - { - "name": "dearly", - "trans": [ - "adv. 深深地, 真挚地,昂贵地" - ], - "id": "6pbdIU", - "checked": false - }, - { - "name": "extremely", - "trans": [ - "adv. 极其, 非常" - ], - "id": "IiWjf2", - "checked": false - }, - { - "name": "hardly", - "trans": [ - "adv. 几乎不" - ], - "id": "Nxvvel", - "checked": false - }, - { - "name": "placement", - "trans": [ - "n. 方位,位置,找工作,安排" - ], - "id": "ugnnTs", - "checked": false - }, - { - "name": "think", - "trans": [ - "vt.想; 思索; 以为; 看待 vi.思辩; 考虑; 构想; 回忆 adj.深思的; 供思考的 n.想; 想法" - ], - "id": "p-IvFE", - "checked": false - }, - { - "name": "technical", - "trans": [ - "adj. 工艺的, 技术的" - ], - "id": "GpHGGH", - "checked": false - }, - { - "name": "idea", - "trans": [ - "n. 主意, 想法, 观念" - ], - "id": "KOVvRf", - "checked": false - }, - { - "name": "stamp", - "trans": [ - "n. 印,邮票,打印器 vt. 捺印,顿足,贴上邮票" - ], - "id": "EvQbnK", - "checked": false - }, - { - "name": "equation", - "trans": [ - "n. 相等,方程(式),等式,均衡" - ], - "id": "fcyDOU", - "checked": false - }, - { - "name": "smooth", - "trans": [ - "adj. 平稳的,流畅的,安祥的,圆滑的,搅拌均匀的 vt. 使光滑,磨光,安慰,理顺(羽毛) vi. 变光滑" - ], - "id": "dWJjRV", - "checked": false - }, - { - "name": "attached", - "trans": [ - "adj. 附加的, 固定的" - ], - "id": "RlheN3", - "checked": false - }, - { - "name": "average", - "trans": [ - "n. 平均数,平均水平 adj. 一般的,通常的,平均的 vt. &vi. 取平均值,达到平均水平" - ], - "id": "ppl2lO", - "checked": false - }, - { - "name": "quietly", - "trans": [ - "adj. 寂静地, 静止地 adv. 安静地, 平静地" - ], - "id": "bwzLL1", - "checked": false - }, - { - "name": "discard", - "trans": [ - "n. 丢牌,废牌 vt. 丢弃,抛弃 vi. 丢牌" - ], - "id": "JxnKHQ", - "checked": false - }, - { - "name": "never", - "trans": [ - "adv. 从不,绝不" - ], - "id": "9cFqgR", - "checked": false - }, - { - "name": "initiate", - "trans": [ - "n. 创始人 adj. 新加入的 vt. 开始,创始,启蒙,介绍加入" - ], - "id": "hS-fEh", - "checked": false - }, - { - "name": "powerful", - "trans": [ - "adj. 强有力的" - ], - "id": "kAK-96", - "checked": false - }, - { - "name": "purpose", - "trans": [ - "n. 目的, 意图; 意志, 决心; 议题 vt. 打算, 决意" - ], - "id": "IJ8U4n", - "checked": false - }, - { - "name": "regard", - "trans": [ - "vt.认为; 注视; 涉及; 尊敬 vi.凝视; 留意 n.凝视; 留意; 尊敬; 问候" - ], - "id": "DlpF_P", - "checked": false - }, - { - "name": "daily", - "trans": [ - "adj. 每日的, 按天计算的, 日常的 adv. 每日,天天 n. 日报, (复)工作样片" - ], - "id": "85zPle", - "checked": false - }, - { - "name": "possibly", - "trans": [ - "adv. 可能地, 也许" - ], - "id": "J7Kj9i", - "checked": false - }, - { - "name": "potentially", - "trans": [ - "adv. 潜在地" - ], - "id": "Hk7Z0Z", - "checked": false - }, - { - "name": "moreover", - "trans": [ - "adv.再者; 此外; 而且; 同时" - ], - "id": "TyVtF_", - "checked": false - }, - { - "name": "American", - "trans": [ - "adj. 美国的, 美式的 n. 美国人, 美式英语" - ], - "id": "_j09Xt", - "checked": false - }, - { - "name": "guard", - "trans": [ - "n. 守卫者,警戒, 护卫队, 保护 vt. &vi. 保卫,看守,警惕" - ], - "id": "peSRGd", - "checked": false - }, - { - "name": "world", - "trans": [ - "n. 世界(人),领域,俗世" - ], - "id": "Va_ArL", - "checked": false - }, - { - "name": "independent", - "trans": [ - "adj. 独立的, 自主的,私立的,无偏见的 n. 独立派人士, 无党派者" - ], - "id": "qFeEXW", - "checked": false - }, - { - "name": "independently", - "trans": [ - "adv.独立地,自立地" - ], - "id": "mw1lma", - "checked": false - }, - { - "name": "continuously", - "trans": [ - "adv.不断地,连续地" - ], - "id": "Oz-CP7", - "checked": false - }, - { - "name": "shield", - "trans": [ - "n. 盾,防卫物,盾状物 vt. 保护,遮蔽" - ], - "id": "hxXXRV", - "checked": false - }, - { - "name": "glance", - "trans": [ - "vi.一瞥; 闪微光; 掠过,擦过; 随便提到,简略地触及 n.浏览; 闪光; 歪斜,一掠" - ], - "id": "LhQEv-", - "checked": false - }, - { - "name": "happening", - "trans": [ - "n. 偶然发生的事 动词happen的现在分词形式" - ], - "id": "ZI8TqX", - "checked": false - }, - { - "name": "transaction", - "trans": [ - "n. 交易,处理,办理" - ], - "id": "rQmmdu", - "checked": false - }, - { - "name": "emulation", - "trans": [ - "n. 效法, 竞争,模仿" - ], - "id": "5r9QI8", - "checked": false - }, - { - "name": "strike", - "trans": [ - "n. 罢工, 打击, 殴打 v. 打, 撞, 罢工, 划燃" - ], - "id": "sBatLx", - "checked": false - }, - { - "name": "dump", - "trans": [ - "n. 垃圾场,堆放处 vt. 丢弃,抛售,导出 vi. 骤降,扔垃圾" - ], - "id": "ee0oBN", - "checked": false - }, - { - "name": "occasionally", - "trans": [ - "adv. 偶尔地" - ], - "id": "GwRBjO", - "checked": false - }, - { - "name": "tension", - "trans": [ - "n. 紧张,张力,拉力 vt. (使金属线、帆等)拉紧" - ], - "id": "1QNqvd", - "checked": false - }, - { - "name": "probable", - "trans": [ - "adj. 很可能的 n. 很可能的事" - ], - "id": "f541AK", - "checked": false - }, - { - "name": "talent", - "trans": [ - "n. 才能, 人才, 天资" - ], - "id": "9Glgst", - "checked": false - }, - { - "name": "financial", - "trans": [ - "adj. 金融的,财政的" - ], - "id": "s8nVnM", - "checked": false - }, - { - "name": "meter", - "trans": [ - "n. 公尺,韵律,计量器 vt. 用表测量[计量, 记录]" - ], - "id": "-JWfp-", - "checked": false - }, - { - "name": "logged", - "trans": [ - "adj. 记录的, 进水的, 锯成圆木的,沉重的 动词log的过去式及过去分词形式" - ], - "id": "UGY-Wk", - "checked": false - }, - { - "name": "ware", - "trans": [ - "n. 制品,器具,货物 vt. 留心,意识到 adj. 知道的,意识到的" - ], - "id": "O-Pqum", - "checked": false - }, - { - "name": "disregard", - "trans": [ - "n. 不理会, 漠视 vt. 忽视, 不顾" - ], - "id": "gn0kgq", - "checked": false - }, - { - "name": "waiting", - "trans": [ - "n. 等候 adj. 候补 动词wait的现在分词" - ], - "id": "Ilbypa", - "checked": false - }, - { - "name": "preceding", - "trans": [ - "adj. 在前的,在先的" - ], - "id": "b291zH", - "checked": false - }, - { - "name": "comparison", - "trans": [ - "n. 比较" - ], - "id": "gqap0f", - "checked": false - }, - { - "name": "advanced", - "trans": [ - "adj. 高级的, 先进的" - ], - "id": "5LiGzP", - "checked": false - }, - { - "name": "rate", - "trans": [ - "n. 比率, 等级, 价格 vt. 估价, 认为, 定等级; 责骂 vi. 受欢迎, 受推崇; 责骂" - ], - "id": "B_4_SX", - "checked": false - }, - { - "name": "fly", - "trans": [ - "n. 苍蝇,两翼昆虫,飞行,升高 vt. &vi. 飞,飞翔,逃走,飞逝,猛然移动" - ], - "id": "zW34b5", - "checked": false - }, - { - "name": "programmable", - "trans": [ - "adj. 可编程的" - ], - "id": "R8sRQT", - "checked": false - }, - { - "name": "definable", - "trans": [ - "adj. 可定义的, 可确定的" - ], - "id": "a-3k0f", - "checked": false - }, - { - "name": "readable", - "trans": [ - "adj. 字迹易辨认的 adj. 可读的, 易读的, 读起来津津有味的" - ], - "id": "LdH6Ud", - "checked": false - }, - { - "name": "recoverable", - "trans": [ - "adj. 可恢复的,可收回的" - ], - "id": "QVyX_b", - "checked": false - }, - { - "name": "possibility", - "trans": [ - "n. 可能性,可能的事情,潜在的价值" - ], - "id": "wLLZNQ", - "checked": false - }, - { - "name": "finisher", - "trans": [ - "n. 运动中最后一击者,修整机(精整工)" - ], - "id": "1oTBxj", - "checked": false - }, - { - "name": "applicable", - "trans": [ - "adj. 合适的,适用的" - ], - "id": "a3IDrQ", - "checked": false - }, - { - "name": "printable", - "trans": [ - "可印刷的" - ], - "id": "hdSUw4", - "checked": false - }, - { - "name": "executable", - "trans": [ - "adj.实行的,执行的" - ], - "id": "CA3j_i", - "checked": false - }, - { - "name": "essentially", - "trans": [ - "adv. 本质上,本来" - ], - "id": "UOGv41", - "checked": false - }, - { - "name": "confuse", - "trans": [ - "vt. 混乱,狼狈,困惑" - ], - "id": "-Wx8Kp", - "checked": false - }, - { - "name": "familiarize", - "trans": [ - "vt. 使熟悉" - ], - "id": "eTRmkm", - "checked": false - }, - { - "name": "employe", - "trans": [ - "(=employee) n.雇工,从业员" - ], - "id": "ZAUO5w", - "checked": false - }, - { - "name": "suitable", - "trans": [ - "adj. 合适的, 适宜的" - ], - "id": "fpM9WJ", - "checked": false - }, - { - "name": "generation", - "trans": [ - "n. 代, 一代" - ], - "id": "cOuoIk", - "checked": false - }, - { - "name": "quality", - "trans": [ - "n. 品质, 特质, 才能 adj. 高品质的" - ], - "id": "pYPG0P", - "checked": false - }, - { - "name": "defective", - "trans": [ - "adj. 有缺陷的,欠缺,不完全变化动词 n. 有缺陷的人,不完全变化动词" - ], - "id": "upLw7w", - "checked": false - }, - { - "name": "interpretable", - "trans": [ - "adj.能说明的,能翻译的,可判断的" - ], - "id": "fkwgah", - "checked": false - }, - { - "name": "interest", - "trans": [ - "n. 兴趣, 嗜好, 利息; 股份 vt. 使...感兴趣" - ], - "id": "Hf92H1", - "checked": false - }, - { - "name": "fourscore", - "trans": [ - "adj. 八十的 n. 八十" - ], - "id": "4A5jZj", - "checked": false - }, - { - "name": "teach", - "trans": [ - "vt. 教,教书,教导,教训 vi. 给予指导" - ], - "id": "P3S6t-", - "checked": false - }, - { - "name": "procedural", - "trans": [ - "adj. 程序的 n.警察疑案作品" - ], - "id": "z4Ddt5", - "checked": false - }, - { - "name": "phrase", - "trans": [ - "n. 短语,习语,个人风格,乐句 vt. 措词表达,将(乐曲)分成乐句(来演奏)" - ], - "id": "RnN1xT", - "checked": false - }, - { - "name": "specifically", - "trans": [ - "adv. 特定地,明确地" - ], - "id": "prUnVK", - "checked": false - }, - { - "name": "penalty", - "trans": [ - "n. 处罚,惩罚" - ], - "id": "AO1bba", - "checked": false - }, - { - "name": "violate", - "trans": [ - "vt. 违犯, 亵渎, 干扰, 侵犯, 强奸" - ], - "id": "2qX3DK", - "checked": false - }, - { - "name": "indefinitely", - "trans": [ - "adv. 无限地(在长时期内,无穷地)" - ], - "id": "mf4ycp", - "checked": false - }, - { - "name": "major", - "trans": [ - "n. 主修, 成年人, 陆军少校; 巨头 adj. 主要的, 较多的, 大部份的 vi. 主修" - ], - "id": "m1XLit", - "checked": false - }, - { - "name": "higher", - "trans": [ - "adj. 更高的" - ], - "id": "HNAYkh", - "checked": false - }, - { - "name": "wise", - "trans": [ - "adj. 明智的,有学问的,有智慧的,聪明的 n. 方式 vt. 引导 vi. 学" - ], - "id": "zsiau5", - "checked": false - }, - { - "name": "becoming", - "trans": [ - "adj. 合适的,适当的,好看的 动词become的现在分词形式" - ], - "id": "QLj-5A", - "checked": false - }, - { - "name": "equally", - "trans": [ - "adv. 相等地, 同样地, 平等地" - ], - "id": "pwJpVe", - "checked": false - }, - { - "name": "enjoy", - "trans": [ - "vt. &vi. 享受,喜欢" - ], - "id": "fDsm8i", - "checked": false - }, - { - "name": "forth", - "trans": [ - "adv.向前,向前方; 露着的,往外的; [废语]出外,离家 prep.出自,从…离开" - ], - "id": "qiXV_6", - "checked": false - }, - { - "name": "disappear", - "trans": [ - "vi. 消失,灭绝 vt. 引起消失" - ], - "id": "Bb90sK", - "checked": false - }, - { - "name": "crop", - "trans": [ - "n. 庄稼,收成, 一群,平头 vt. 割掉, 修剪, 剪短, 收割, 使谷物生长 vi. 啃青草, 种植谷物" - ], - "id": "Fj8_Gn", - "checked": false - }, - { - "name": "diagonally", - "trans": [ - "adv. 斜对地, 对角地" - ], - "id": "kZBbVu", - "checked": false - }, - { - "name": "decision", - "trans": [ - "n. 决定,决心" - ], - "id": "dB6sap", - "checked": false - }, - { - "name": "effective", - "trans": [ - "adj. 有效的,有影响的" - ], - "id": "QC68Zo", - "checked": false - }, - { - "name": "significant", - "trans": [ - "adj. 有意义的, 意味深长的; 相当数量的; 重要的, 重大的 n. (复)有意义的事物; 标志" - ], - "id": "ICiZtB", - "checked": false - }, - { - "name": "avail", - "trans": [ - "vi. 有利 vt. 有用 n. 益处" - ], - "id": "twJ7F9", - "checked": false - }, - { - "name": "hang", - "trans": [ - "vt.悬挂; (被)绞死; 贴,装饰; 使悬而未决 vi.悬垂; 被吊死; 附属,依靠; 悬而未决 n.悬挂的样子; (动作的)暂停; 〈口〉大意,要点; 〈口〉做法,诀窍" - ], - "id": "PzlhTv", - "checked": false - }, - { - "name": "craze", - "trans": [ - "n. 狂热, 大流行,(陶瓷器等表面的)裂纹 v. (使)发狂, (使)产生裂纹" - ], - "id": "0_nE_t", - "checked": false - }, - { - "name": "consequently", - "trans": [ - "adv. 所以, 因此" - ], - "id": "4YN8Ol", - "checked": false - }, - { - "name": "introduce", - "trans": [ - "vt. 介绍, 引进, 采用, 提出, 提倡, 放入" - ], - "id": "g1JN4s", - "checked": false - }, - { - "name": "team", - "trans": [ - "n. 队,组 vt. 协同工作 vi. 结成一队 adj. 团队的" - ], - "id": "nUCVnn", - "checked": false - }, - { - "name": "visual", - "trans": [ - "adj. 视觉的 n. 画面, 图象" - ], - "id": "W2gBpv", - "checked": false - }, - { - "name": "acknowledgment", - "trans": [ - "n. 承认, 承认书, 感谢 =acknowledgement" - ], - "id": "pUG9d2", - "checked": false - }, - { - "name": "efficiently", - "trans": [ - "adv.有效率地,有效地" - ], - "id": "6x4DfL", - "checked": false - }, - { - "name": "predict", - "trans": [ - "v. 预知, 预言, 预报" - ], - "id": "5hDm4j", - "checked": false - }, - { - "name": "anticipate", - "trans": [ - "vt. 预期,期望;占先,抢先;提前使用" - ], - "id": "J7jNHS", - "checked": false - }, - { - "name": "bypass", - "trans": [ - "vt. 绕开, 忽视 n. 支路,旁道" - ], - "id": "m2f2t4", - "checked": false - }, - { - "name": "nature", - "trans": [ - "n.自然,自然界,自然状态; 本性,天性,性质; 质; 性格; 性; 本质" - ], - "id": "D4-cIe", - "checked": false - }, - { - "name": "natural", - "trans": [ - "adj.自然的; 物质的; 天生的; 不做作的 n.自然的事情; (生来的)白痴; [乐](风琴等的)白键" - ], - "id": "lKoWW6", - "checked": false - }, - { - "name": "grant", - "trans": [ - "vt.承认; 同意; 准许; 授予 n.拨款; 补助金; 授给物(如财产、授地、专有权、补助、拨款等) vi.同意" - ], - "id": "2aR3fW", - "checked": false - }, - { - "name": "logarithm", - "trans": [ - "n. [数]对数" - ], - "id": "eBkwJZ", - "checked": false - }, - { - "name": "reload", - "trans": [ - "v. 再装入" - ], - "id": "PAAKwq", - "checked": false - }, - { - "name": "occupy", - "trans": [ - "vt. 占领,占,住进" - ], - "id": "_3X5cT", - "checked": false - }, - { - "name": "photograph", - "trans": [ - "n. 相片 vi. 照相,摄影 vt. 给...照相" - ], - "id": "lsutXT", - "checked": false - }, - { - "name": "resolve", - "trans": [ - "n. 决定之事,决心,坚决 vt. 决定,解决,分离,表决 vi. 分离,决定" - ], - "id": "SbI9kt", - "checked": false - }, - { - "name": "unsafe", - "trans": [ - "adj. 不安全的, 不安稳的, 危险的" - ], - "id": "NmIpDI", - "checked": false - }, - { - "name": "separator", - "trans": [ - "n. 分隔符,分离器" - ], - "id": "fUGbqQ", - "checked": false - }, - { - "name": "hierarchical", - "trans": [ - "adj. 按等级划分的" - ], - "id": "n4T-zo", - "checked": false - }, - { - "name": "assortment", - "trans": [ - "n. 分类, 配合, 各色俱备之物" - ], - "id": "iNW5Ls", - "checked": false - }, - { - "name": "growing", - "trans": [ - "adj. 发展的, 扩大的" - ], - "id": "4bAP21", - "checked": false - }, - { - "name": "discussion", - "trans": [ - "n. 讨论 v. 讨论,商议" - ], - "id": "crJRFN", - "checked": false - }, - { - "name": "alphabet", - "trans": [ - "n. 字母表,基本原理(元素),符号系统" - ], - "id": "WK7omq", - "checked": false - }, - { - "name": "scattered", - "trans": [ - "adj. 分散的,稀疏的" - ], - "id": "AjvhlK", - "checked": false - }, - { - "name": "eventually", - "trans": [ - "adv. 终于, 最后" - ], - "id": "Q6WCtE", - "checked": false - }, - { - "name": "finally", - "trans": [ - "adv. 最后, 最终" - ], - "id": "xHPFFg", - "checked": false - }, - { - "name": "subgroup", - "trans": [ - "n. 隶属组织" - ], - "id": "mrIM7J", - "checked": false - }, - { - "name": "superimpose", - "trans": [ - "vt. 重叠(安装,添加)" - ], - "id": "FVF_BT", - "checked": false - }, - { - "name": "reorganization", - "trans": [ - "n. 改组, 再编制, 改造" - ], - "id": "NJOrpp", - "checked": false - }, - { - "name": "rewrite", - "trans": [ - "n. 重写, 改写 vt. 改写, 重写 vi. 修改" - ], - "id": "iX-B4y", - "checked": false - }, - { - "name": "university", - "trans": [ - "n. 大学" - ], - "id": "Mn-jhn", - "checked": false - }, - { - "name": "deter", - "trans": [ - "v. 制止,使...断念" - ], - "id": "X6njse", - "checked": false - }, - { - "name": "pool", - "trans": [ - "n. 水塘(池),游泳池,撞球 vi. 形成池塘 vt. 集中,积累" - ], - "id": "5AY7Ti", - "checked": false - }, - { - "name": "moment", - "trans": [ - "n. 片刻,瞬间,准确时刻,非常重要的时机,力矩" - ], - "id": "sLcDJs", - "checked": false - }, - { - "name": "shut", - "trans": [ - "adj. 关闭的,合拢的,围绕的 vt. 关上,防止进入,禁闭,合上,停止或中止 vi. 关闭,停止或中止 n. 关闭" - ], - "id": "Ey5ETy", - "checked": false - }, - { - "name": "closed", - "trans": [ - "adj. 关闭的, 封闭的, 停业的 动词close的过去式和过去分词" - ], - "id": "e_bnFw", - "checked": false - }, - { - "name": "respond", - "trans": [ - "vi. &vt. 回复,反应,响应,应答 n. 拱柱" - ], - "id": "kWs-e5", - "checked": false - }, - { - "name": "repeating", - "trans": [ - "adj. 重复的, 反复的 动词repeat的现在分词形式" - ], - "id": "VIjR2u", - "checked": false - }, - { - "name": "repetitive", - "trans": [ - "adj. 重复的" - ], - "id": "30sMFT", - "checked": false - }, - { - "name": "reenter", - "trans": [ - "v. 重新进入" - ], - "id": "EPd0Sp", - "checked": false - }, - { - "name": "rearrange", - "trans": [ - "重新整理, 重新排序" - ], - "id": "IdCeO5", - "checked": false - }, - { - "name": "rectangular", - "trans": [ - "adj. 矩形的;成直角的" - ], - "id": "o0HHfN", - "checked": false - }, - { - "name": "tag", - "trans": [ - "n. 标签,附属物,名称,谚语 vt. 附以签条,尾随,添饰,指责,连接 vi. 紧随,尾随" - ], - "id": "_aKrDb", - "checked": false - }, - { - "name": "suppose", - "trans": [ - "vt.假定; 猜想,推测; 认为; 让(用于祈祷语气) vi.想象,猜想" - ], - "id": "Ns2l3p", - "checked": false - }, - { - "name": "supposed", - "trans": [ - "adj. 想象上的,假定的" - ], - "id": "ISx8gt", - "checked": false - }, - { - "name": "operator", - "trans": [ - "n. 操作员,管理者,技工,报务员" - ], - "id": "56OheV", - "checked": false - }, - { - "name": "masking", - "trans": [ - "n. 遮蔽 动词mask的现在分词形式" - ], - "id": "B7P_n6", - "checked": false - }, - { - "name": "price", - "trans": [ - "n. 价格,代价,价值 vt. 定格,标价,比较价格" - ], - "id": "rWe5LB", - "checked": false - }, - { - "name": "demonstrate", - "trans": [ - "vt. 示范, 演示, 证明 vi. 示威" - ], - "id": "T7SPf_", - "checked": false - }, - { - "name": "importance", - "trans": [ - "n. 重要,重要性" - ], - "id": "TVEdaF", - "checked": false - }, - { - "name": "pipe", - "trans": [ - "n. 管,烟斗,笛 vt. 以管输送,装管道,吹奏,尖声说,拷边 vi. 吹奏管乐,尖叫" - ], - "id": "iYYQD4", - "checked": false - }, - { - "name": "overall", - "trans": [ - "adj. 全部的, 全体的, 一切在内的 adv. 总的来说, 全部地 n. 防护服,罩衫" - ], - "id": "1PaCEj", - "checked": false - }, - { - "name": "turnkey", - "trans": [ - "n. 监狱的看守, 狱吏 adj. 即可使用的" - ], - "id": "5dhxS0", - "checked": false - }, - { - "name": "restricted", - "trans": [ - "vt. 限制,约束 adj. 受限制的,有限的,保密的" - ], - "id": "S1OSTu", - "checked": false - }, - { - "name": "suspension", - "trans": [ - "n. 悬挂,悬浮液,暂缓,未决,中止" - ], - "id": "cWGt0-", - "checked": false - }, - { - "name": "seamless", - "trans": [ - "无缝的" - ], - "id": "QozxSV", - "checked": false - }, - { - "name": "clipper", - "trans": [ - "n. 剪削者,大剪刀,理发剪 n. (十九世纪的)快速帆船 n. 快马" - ], - "id": "3NrFz8", - "checked": false - }, - { - "name": "unsigned", - "trans": [ - "adj. 未签署的,无符号的" - ], - "id": "tV0m40", - "checked": false - }, - { - "name": "unformatted", - "trans": [ - "adj. 无格式的" - ], - "id": "pKHwVG", - "checked": false - }, - { - "name": "infinite", - "trans": [ - "adj. 无限的,无穷的 n. 无限" - ], - "id": "X83WFu", - "checked": false - }, - { - "name": "useless", - "trans": [ - "adj. 无用的,无效的" - ], - "id": "ny4p8_", - "checked": false - }, - { - "name": "mountain", - "trans": [ - "n. 山,山脉,大量" - ], - "id": "odLvoa", - "checked": false - }, - { - "name": "redundant", - "trans": [ - "adj. 多余的,失业的" - ], - "id": "Vsr5WO", - "checked": false - }, - { - "name": "dependent", - "trans": [ - "adj. 附属的,依赖的,悬垂的 n. 受经济援助者" - ], - "id": "KXFH7b", - "checked": false - }, - { - "name": "background", - "trans": [ - "n. 背景,幕后,配音 vt. 提供背景" - ], - "id": "j9f4kM", - "checked": false - }, - { - "name": "product", - "trans": [ - "n. 产品,成果,乘积" - ], - "id": "YyvGig", - "checked": false - }, - { - "name": "assignment", - "trans": [ - "n. 分配,功课,任务,被指定的(课外)作业;(分派的)任务, 委派" - ], - "id": "L_2Atv", - "checked": false - }, - { - "name": "bad", - "trans": [ - "adj. 坏的,令人不满意的,有害的,有病的 n. 坏人,坏事" - ], - "id": "xfk9Yc", - "checked": false - }, - { - "name": "declare", - "trans": [ - "vt. &vi. 宣布,声明,申报" - ], - "id": "ZOhJay", - "checked": false - }, - { - "name": "adjust", - "trans": [ - "vt. 调整, 使...适于 vi. 适应" - ], - "id": "CEOHKH", - "checked": false - }, - { - "name": "recognize", - "trans": [ - "vt. 认出,认可,承认,意识到,表示感激" - ], - "id": "ZUzUpu", - "checked": false - }, - { - "name": "route", - "trans": [ - "n. 航线,路线,途径 vt. 按路线发送, 改变路线" - ], - "id": "IPrQTL", - "checked": false - }, - { - "name": "respectively", - "trans": [ - "adv. 各自地, 分别地" - ], - "id": "GNiAcx", - "checked": false - }, - { - "name": "unsuccessful", - "trans": [ - "adj. 不成功的, 失败的" - ], - "id": "7rPDfz", - "checked": false - }, - { - "name": "received", - "trans": [ - "adj. 被一般承认的,公认的" - ], - "id": "Dz_KQN", - "checked": false - }, - { - "name": "navigate", - "trans": [ - "vi. 航行,驾驶,操纵 vt. 航行,驾驶" - ], - "id": "SH5WvC", - "checked": false - }, - { - "name": "considered", - "trans": [ - "adj.考虑过的,被尊重的" - ], - "id": "T5LN82", - "checked": false - }, - { - "name": "due", - "trans": [ - "adj.由于; 适当的; 预定; 到期 n.应有的权利; 应得到的东西; 应缴款 adv.正向; 正对着" - ], - "id": "bJCNdb", - "checked": false - }, - { - "name": "recently", - "trans": [ - "adv. 最近" - ], - "id": "aQh_wD", - "checked": false - }, - { - "name": "room", - "trans": [ - "房间, 空间" - ], - "id": "6p4HmW", - "checked": false - }, - { - "name": "descend", - "trans": [ - "vt. &vi. 降,传,降临" - ], - "id": "H3ir23", - "checked": false - }, - { - "name": "contiguous", - "trans": [ - "adj. 邻近的,接触的,连续的" - ], - "id": "wSv8ms", - "checked": false - }, - { - "name": "consistent", - "trans": [ - "adj. 始终如一的, 一致的, 坚持的" - ], - "id": "EliCh2", - "checked": false - }, - { - "name": "multiprocessing", - "trans": [ - "n. 多重处理, 多处理技术" - ], - "id": "gONcm-", - "checked": false - }, - { - "name": "architecture", - "trans": [ - "n. 建筑学, 建筑业, 建筑物, 结构 [总称]建筑物, 建筑风格" - ], - "id": "LtoHH4", - "checked": false - }, - { - "name": "structural", - "trans": [ - "adj. 结构的, 构造的,建筑的,建筑用的" - ], - "id": "GhKCK6", - "checked": false - }, - { - "name": "outcome", - "trans": [ - "n. 结果" - ], - "id": "l0o1nu", - "checked": false - }, - { - "name": "association", - "trans": [ - "n. 联合,结合,交往,协会,社团,联想" - ], - "id": "cnFAha", - "checked": false - }, - { - "name": "opinion", - "trans": [ - "n. 看法,意见 v. 判断,意见,主张" - ], - "id": "gupjqx", - "checked": false - }, - { - "name": "interpret", - "trans": [ - "v. 解释, 演出, 翻译 [计算机] 解释" - ], - "id": "iwJJj7", - "checked": false - }, - { - "name": "explanatory", - "trans": [ - "adj. 说明的, 解释的" - ], - "id": "xiynA4", - "checked": false - }, - { - "name": "assemble", - "trans": [ - "vt. 聚集,集合,装配 vi. 集合, 聚集" - ], - "id": "sZRE9Z", - "checked": false - }, - { - "name": "assembler", - "trans": [ - "n. 装配工 n. [计]汇编程序" - ], - "id": "Ny6PCF", - "checked": false - }, - { - "name": "cad", - "trans": [ - "n. 卑鄙的男人,下流人 abbr. (=computer-aided design)计算机辅助设计" - ], - "id": "NGdHp2", - "checked": false - }, - { - "name": "arithmetic", - "trans": [ - "n. 算术" - ], - "id": "qrOfe5", - "checked": false - }, - { - "name": "representative", - "trans": [ - "adj. 代表性的, 代议制的, 典型的 n. 代表, 众议员, 典型" - ], - "id": "Bksuhi", - "checked": false - }, - { - "name": "typical", - "trans": [ - "adj. 典型的, 有代表性的" - ], - "id": "fP0lOZ", - "checked": false - }, - { - "name": "sufficient", - "trans": [ - "adj. 足够的, 充分的" - ], - "id": "c38qlf", - "checked": false - }, - { - "name": "blast", - "trans": [ - "n. 爆破,冲击波,气流,一阵,汽笛声 vi. 爆破,突然发出声音 vt. 喷射,炸掉" - ], - "id": "7lrKuu", - "checked": false - }, - { - "name": "clean", - "trans": [ - "adj. 干净的, 正当的, 纯洁的, 完全的, 精准的, 空的 adv. 完全地 n. 清洁 vt. &vi. 打扫,清扫" - ], - "id": "ZOmC2d", - "checked": false - }, - { - "name": "caret", - "trans": [ - "n. 脱字符号, ( 符号:^ 文章中插字使用)" - ], - "id": "nXQ2KJ", - "checked": false - }, - { - "name": "socket", - "trans": [ - "n. 插座,插口, 穴孔 vt. 装上或插入插座" - ], - "id": "r0afLA", - "checked": false - }, - { - "name": "stated", - "trans": [ - "adj. 决定了的, 一定的, 定期的 v. 陈述, 说明 vbl. 陈述, 说明" - ], - "id": "xhIgSh", - "checked": false - }, - { - "name": "protocol", - "trans": [ - "n. 草案, 协议,礼仪 vt 拟定议定书" - ], - "id": "fytfa0", - "checked": false - }, - { - "name": "presence", - "trans": [ - "n. 出席,在场者,举止" - ], - "id": "w0FVM_", - "checked": false - }, - { - "name": "telephone", - "trans": [ - "n.电话; 电话机; (电话机的)话筒; 受话器 vt.& vi.以电话传送(消息),给(某人)打电话; 用电话与(某人)交谈" - ], - "id": "uAzbgX", - "checked": false - }, - { - "name": "social", - "trans": [ - "adj. 社会的,群居的,社团的" - ], - "id": "5Fh0iA", - "checked": false - }, - { - "name": "equipment", - "trans": [ - "n. 设备,装备" - ], - "id": "lfh9P8", - "checked": false - }, - { - "name": "lending", - "trans": [ - "n. 借贷, 借贷物 动词lend的现在分词形式" - ], - "id": "IlScNS", - "checked": false - }, - { - "name": "book", - "trans": [ - "n. 书,本子 vt. 登记,预订 vi. 通过...预订" - ], - "id": "vIrcBH", - "checked": false - }, - { - "name": "situation", - "trans": [ - "n. 位置, 形势, 局面, 处境, 状况, 职位" - ], - "id": "jrs2KJ", - "checked": false - }, - { - "name": "desk", - "trans": [ - "n. 书桌" - ], - "id": "i9q-NC", - "checked": false - }, - { - "name": "please", - "trans": [ - "int. 请 vt. 取悦,请,合心意 vi. 取悦,愿意" - ], - "id": "dKqqpU", - "checked": false - }, - { - "name": "mixture", - "trans": [ - "n. 混合, 混合物" - ], - "id": "9RcjiQ", - "checked": false - }, - { - "name": "representation", - "trans": [ - "n. 表示法,表现,陈述,答辩" - ], - "id": "C2vy-3", - "checked": false - }, - { - "name": "esoteric", - "trans": [ - "adj. 秘传的,神秘的,难懂的" - ], - "id": "u7BaR-", - "checked": false - }, - { - "name": "depth", - "trans": [ - "n. 深度,强度,诚挚" - ], - "id": "1AtLhv", - "checked": false - }, - { - "name": "final", - "trans": [ - "adj. 最后的 决定了的 n. 决赛,期末考试" - ], - "id": "c3lF-w", - "checked": false - }, - { - "name": "physically", - "trans": [ - "adv. 身体上地" - ], - "id": "fhSc7z", - "checked": false - }, - { - "name": "aid", - "trans": [ - "n. 帮助,救护,辅助物 vt. &vi. 援助,帮助,救护 abbr.=Agency for International Development 国际开发署[美]" - ], - "id": "3zzcRU", - "checked": false - }, - { - "name": "successive", - "trans": [ - "adj. 接连的, 连续的, 接二连三的" - ], - "id": "10tXR_", - "checked": false - }, - { - "name": "succession", - "trans": [ - "n. 连续, 继承权, 继位" - ], - "id": "yQoOjP", - "checked": false - }, - { - "name": "unpack", - "trans": [ - "vt. 打开取出, 卸下" - ], - "id": "dbdrFD", - "checked": false - }, - { - "name": "chunk", - "trans": [ - "n. 厚块(片), 相当大的量,矮胖的人或物 vt. (高尔夫球)没击中 vi. 发出猛冲的声音" - ], - "id": "XDXvHA", - "checked": false - }, - { - "name": "alignment", - "trans": [ - "n. 队列,成直线;校准;结盟" - ], - "id": "5lfi5z", - "checked": false - }, - { - "name": "typewriter", - "trans": [ - "n. n. 打字机" - ], - "id": "C3PjKd", - "checked": false - }, - { - "name": "big", - "trans": [ - "adj. 大的,重要的 adv. 以郑重的方式,大数量 n. 杰出的组织和个人" - ], - "id": "WqDMRD", - "checked": false - }, - { - "name": "tone", - "trans": [ - "n. 音调,语气,品质,调子,色调 vt. 使更健壮,装腔作势地说, 定调, 调色 vi. 调和(颜色), 呈现悦目色调" - ], - "id": "ralNiK", - "checked": false - }, - { - "name": "sensitive", - "trans": [ - "adj. 敏感的,灵敏的,易受伤害的,感光的,善解人意的 n. 敏感的人" - ], - "id": "eAplha", - "checked": false - }, - { - "name": "reduction", - "trans": [ - "n. 减少,缩小, (化学)还原反应, (数学)约分" - ], - "id": "GTaty4", - "checked": false - }, - { - "name": "indentation", - "trans": [ - "n. 刻痕,印压, 缩进, (海岸线等)凹进处" - ], - "id": "ZR8oiw", - "checked": false - }, - { - "name": "terminology", - "trans": [ - "n. 术语,术语学" - ], - "id": "9O5Gr0", - "checked": false - }, - { - "name": "ascending", - "trans": [ - "adj. 上升的" - ], - "id": "9XfLLz", - "checked": false - }, - { - "name": "augment", - "trans": [ - "vt. 增加,补充 vi.扩大 n. 增加,补充物" - ], - "id": "2F-NY5", - "checked": false - }, - { - "name": "increment", - "trans": [ - "n. 增加(增加物, 增量, 余差)" - ], - "id": "2g5Iig", - "checked": false - }, - { - "name": "gain", - "trans": [ - "n. 增益, 获得, 利润 vt. 得到, 增进, 获利 vi. 增加, 得到, (钟, 表等)走得快" - ], - "id": "eM_4WT", - "checked": false - }, - { - "name": "stream", - "trans": [ - "n. (人,车,气)流,水流,组 vt. 流出,飘动 vi. 流动,飘动,接踵而来" - ], - "id": "4zzlDp", - "checked": false - }, - { - "name": "obsolete", - "trans": [ - "adj. 已废弃的, 过时的" - ], - "id": "KUsI0o", - "checked": false - }, - { - "name": "accommodate", - "trans": [ - "vi. 使自己适应 vt. 使一致,和解;提供方便;容纳;顾及" - ], - "id": "MgcQ1A", - "checked": false - }, - { - "name": "motif", - "trans": [ - "n. 主题, 意念, 动机" - ], - "id": "qg7QcH", - "checked": false - }, - { - "name": "subject", - "trans": [ - "n. 科目, 主题; 缘由 n. (君主国)国民; 实验对象 adj. 服从的, 易患的 vt. 使隶属, 使服从; 使遭遇" - ], - "id": "S4RlcQ", - "checked": false - }, - { - "name": "job", - "trans": [ - "n. 工作,职责,任务 vt. 投机买卖,营私舞弊,不公正地判罚,分包任务 vi. 工作,假公济私,做分销商或批发商 adj. 与工作有关的" - ], - "id": "Fv7EOP", - "checked": false - }, - { - "name": "differentiate", - "trans": [ - "vt. 识别, 使差异, 求导数, 区分, 区别对待 vi. 区别,变异" - ], - "id": "ALonVF", - "checked": false - }, - { - "name": "distinction", - "trans": [ - "n. 区别; 卓越; 殊荣" - ], - "id": "hX3aZk", - "checked": false - }, - { - "name": "distinguish", - "trans": [ - "vt. 区别,辨认,特别关注 vi. 区别" - ], - "id": "QbaXV7", - "checked": false - }, - { - "name": "locking", - "trans": [ - "n. 锁定 动词lock的现在分词形式" - ], - "id": "jtda5O", - "checked": false - }, - { - "name": "progress", - "trans": [ - "n. 进步, 发展, 前进 vi. 促进,进步, 进行" - ], - "id": "eYUOFq", - "checked": false - }, - { - "name": "fundamental", - "trans": [ - "adj. 基本的,根本的,重要的 n. 基本原理,基础" - ], - "id": "XDaEP4", - "checked": false - }, - { - "name": "basis", - "trans": [ - "n. 基础,根据,主要成分" - ], - "id": "plTL76", - "checked": false - }, - { - "name": "underlying", - "trans": [ - "adj. 在下面的, 基本的, 隐含的" - ], - "id": "r3fkAM", - "checked": false - }, - { - "name": "sound", - "trans": [ - "vt. 听(诊);测量,测…深;使发声;试探;宣告 n. 声音,语音;噪音;海峡;吵闹;听力范围;[医] 探条 adj. 健全的,健康的;合理的;可靠的;有效彻底的 adv. 彻底地,充分地 vi. 听起来;发出声音;回响;测深" - ], - "id": "EeqFOs", - "checked": false - }, - { - "name": "vital", - "trans": [ - "adj. 至关重要的, 生死攸关的, 有活力的, 充满生机的" - ], - "id": "_Tnb1H", - "checked": false - }, - { - "name": "national", - "trans": [ - "adj. 国家的,民族的 n. 国民" - ], - "id": "jY61vb", - "checked": false - }, - { - "name": "sale", - "trans": [ - "n. 销售(量),削价出售" - ], - "id": "onaSRa", - "checked": false - }, - { - "name": "agree", - "trans": [ - "vt. 同意,赞成,承认 vi. 同意,一致,符合" - ], - "id": "yAphLN", - "checked": false - }, - { - "name": "iterative", - "trans": [ - "adj. 迭代的, 重复的" - ], - "id": "xe0kTh", - "checked": false - }, - { - "name": "inclusive", - "trans": [ - "adj. 包含...在内的, 包罗广泛的, 包括端点的 [计算机] 包括的" - ], - "id": "s6rBxL", - "checked": false - }, - { - "name": "charm", - "trans": [ - "n. 魔力, 魅力, 护身符, 小饰物 vt. 吸引, 使...迷醉, 对...施以魔法" - ], - "id": "7363Fm", - "checked": false - }, - { - "name": "hit", - "trans": [ - "n. 打(击),冲撞,讽刺,成功.一次毒品的剂量,点击量 vt. 打(击),碰撞,偶然发现,要求,符合 vi. 打(击),袭击,达到" - ], - "id": "0CqPPI", - "checked": false - }, - { - "name": "course", - "trans": [ - "n. 课程, 讲座, 过程, 路线, 一道(菜)" - ], - "id": "094vFP", - "checked": false - }, - { - "name": "numerical", - "trans": [ - "adj. 数字的, 用数字表示的" - ], - "id": "cxatAX", - "checked": false - }, - { - "name": "digital", - "trans": [ - "adj. 手指的,数字的,数码的,电子的" - ], - "id": "hizabC", - "checked": false - }, - { - "name": "combo", - "trans": [ - "套餐,结合物" - ], - "id": "CY8KA5", - "checked": false - }, - { - "name": "cord", - "trans": [ - "n. 绳索,束缚 vt. 用绳索绑" - ], - "id": "Xzbj0I", - "checked": false - }, - { - "name": "organise", - "trans": [ - "vt.组织,创办" - ], - "id": "mnuImE", - "checked": false - }, - { - "name": "permit", - "trans": [ - "n. 许可证,执照 vt. &vi. 允许,许可" - ], - "id": "DqJXc9", - "checked": false - }, - { - "name": "still", - "trans": [ - "adj. 静止的, 不动的, 静寂的 adv. 仍然,更,静止地 conj. 然而,但是 vi. 变沉默 vt. 使冷静, 抓住, 使停止, 使放松 n. 沉默, 定格照, 酒厂" - ], - "id": "FXZ9AH", - "checked": false - }, - { - "name": "explicit", - "trans": [ - "adj. 明确的,详述的,明晰的,外在的" - ], - "id": "mtTfle", - "checked": false - }, - { - "name": "elapse", - "trans": [ - "v. 逝去, 过去" - ], - "id": "sghhqW", - "checked": false - }, - { - "name": "accidental", - "trans": [ - "adj. 意外的,偶然的,附属的 n. 偶然,不重要的东西,变调的临时符号" - ], - "id": "wZR0H1", - "checked": false - }, - { - "name": "sequential", - "trans": [ - "adj. 连续的(序贯的)" - ], - "id": "SvnSGx", - "checked": false - }, - { - "name": "indirect", - "trans": [ - "adj. 间接的, 迂回的,次要的,不坦率的,欺骗的" - ], - "id": "7HNDxm", - "checked": false - }, - { - "name": "reappear", - "trans": [ - "vi. 再出现" - ], - "id": "uVDdcF", - "checked": false - }, - { - "name": "circumstance", - "trans": [ - "n. 环境,(复数)境况,事件,详情" - ], - "id": "EFi7KA", - "checked": false - }, - { - "name": "mix", - "trans": [ - "n. 混合(物),融合 vt. &vi. 混合,掺入,合成,交往,联系 [计算机] 混合" - ], - "id": "z17ZTT", - "checked": false - }, - { - "name": "suppress", - "trans": [ - "vt. 镇压,使...止住,禁止" - ], - "id": "SFtCuC", - "checked": false - }, - { - "name": "E", - "trans": [ - "n.字母E" - ], - "id": "MNFYnv", - "checked": false - }, - { - "name": "recognition", - "trans": [ - "n. 认出,承认, 感知,知识" - ], - "id": "2Q3C80", - "checked": false - }, - { - "name": "arm", - "trans": [ - "n. 手臂, 港湾, 狭长地带, 扶手, 袖子, 枪 vt. 装备, 准备(炸弹) vi. 武装自己" - ], - "id": "QBf92Z", - "checked": false - }, - { - "name": "alphanumeric", - "trans": [ - "adj. 字母数字的" - ], - "id": "0cgJdb", - "checked": false - }, - { - "name": "analog", - "trans": [ - "n. (=analogue)类似(模拟量) adj. 类比的, 模拟的" - ], - "id": "m9SUrB", - "checked": false - }, - { - "name": "automation", - "trans": [ - "n. 自动化" - ], - "id": "LtfDm4", - "checked": false - }, - { - "name": "band", - "trans": [ - "n. 带;箍,队,乐队 vt. &vi. 联合,结合" - ], - "id": "-cG34D", - "checked": false - }, - { - "name": "batch", - "trans": [ - "n. 一次所烘的面包,一次所制之量,一组, 批, 分批 vi. 分批处理" - ], - "id": "QIJbjR", - "checked": false - }, - { - "name": "brush", - "trans": [ - "n. 刷子,画笔,轻擦,小冲突, 灌木丛 vt. 用刷子清洗,画,拭去,打发 vi. 轻擦,拂拭" - ], - "id": "oTmDmP", - "checked": false - }, - { - "name": "calculator", - "trans": [ - "n. 计算器" - ], - "id": "3Q81j1", - "checked": false - }, - { - "name": "punch", - "trans": [ - "n. 打洞器,钻孔机,殴打 n. 酒、水、糖等制成的鸡尾酒 vt. 以拳重击,开洞,剪票,按(键)" - ], - "id": "5LYBQY", - "checked": false - }, - { - "name": "reader", - "trans": [ - "n. 读者,读物, 读本" - ], - "id": "jVPfYH", - "checked": false - }, - { - "name": "cell", - "trans": [ - "n. 细胞, 电池, 小组, 小房间, 单人牢房, (蜂房的)巢室, 手机" - ], - "id": "DkSLJu", - "checked": false - }, - { - "name": "channel", - "trans": [ - "n. 通道,频道,海峡,方法 vt. 引导,开导,形成河道,输送" - ], - "id": "AzVn-b", - "checked": false - }, - { - "name": "circuit", - "trans": [ - "n. 电路,一圈,巡回 vt. &vi. 巡回" - ], - "id": "RhIKZN", - "checked": false - }, - { - "name": "to", - "trans": [ - "prep. (表示方向)到,向;(表示间接关系)给;离,对于,为了 adv. (表示方向)去,(门)关上" - ], - "id": "FA4sr4", - "checked": false - }, - { - "name": "coder", - "trans": [ - "n. 编码器" - ], - "id": "VEIfV2", - "checked": false - }, - { - "name": "unit", - "trans": [ - "n. 单位, 单元" - ], - "id": "Fkgotg", - "checked": false - }, - { - "name": "core", - "trans": [ - "n.中心,核心,精髓; 果心,果核; [地质学]地核; [计] 磁心 vt.去(果)核,挖去…的果心; 提取岩芯(样品)" - ], - "id": "ElKAwV", - "checked": false - }, - { - "name": "cybernetics", - "trans": [ - "n. 控制论" - ], - "id": "9621Vl", - "checked": false - }, - { - "name": "disc", - "trans": [ - "n. 圆盘,[电子] 唱片(等于disk) vt. 灌唱片" - ], - "id": "W1kaC2", - "checked": false - }, - { - "name": "drum", - "trans": [ - "n. 鼓, 鼓声, 鼓状物, 冰丘 vi. 击鼓, 作鼓声, 引起兴趣 vt. 召集入伍, 逐出, (经过努力)推动..., 连续击打" - ], - "id": "MoBOJQ", - "checked": false - }, - { - "name": "electronics", - "trans": [ - "n. 电子学,电子器件" - ], - "id": "TUQJA5", - "checked": false - }, - { - "name": "emitter", - "trans": [ - "n.发射器" - ], - "id": "6Abxzo", - "checked": false - }, - { - "name": "encode", - "trans": [ - "vt. 编码, 译码" - ], - "id": "sR0w40", - "checked": false - }, - { - "name": "feedback", - "trans": [ - "n. 反馈,成果" - ], - "id": "XPyQst", - "checked": false - }, - { - "name": "flow", - "trans": [ - "vi.流; 垂; 流出; (谈话、文体等)流畅 n.流动; 滔滔不绝; 涨潮; 连贯 vt.使泛滥; 淹没; 排出" - ], - "id": "bhYvsy", - "checked": false - }, - { - "name": "frame", - "trans": [ - "n. 框,结构,骨架 v. 构成,把...框起来,陷害 adj. 木结构的" - ], - "id": "TeXav-", - "checked": false - }, - { - "name": "identifier", - "trans": [ - "n. 标识符" - ], - "id": "uEj1e5", - "checked": false - }, - { - "name": "inquiry", - "trans": [ - "n. 打听, 询问, 调查, 查问 =enquiry(英)" - ], - "id": "FOM6aJ", - "checked": false - }, - { - "name": "integrated", - "trans": [ - "adj. 整合的,综合的 vt.&vi. 使整合(integrate的过去式及过去分词)" - ], - "id": "RiJShZ", - "checked": false - }, - { - "name": "latency", - "trans": [ - "n. 潜伏, 潜在" - ], - "id": "T58eSc", - "checked": false - }, - { - "name": "linkage", - "trans": [ - "n. 连合, 连锁, 结合" - ], - "id": "fLosrH", - "checked": false - }, - { - "name": "logger", - "trans": [ - "n. 伐木工, 记录器, 注册器" - ], - "id": "iWVYGh", - "checked": false - }, - { - "name": "magnetic", - "trans": [ - "adj. 有磁性的,有吸引力的,催眠术的" - ], - "id": "h2FheD", - "checked": false - }, - { - "name": "matrix", - "trans": [ - "n. 母体,子宫 细胞 脉石,字母 n.矩阵" - ], - "id": "OQcwz8", - "checked": false - }, - { - "name": "microcomputer", - "trans": [ - "n. 微电脑 [计算机] 微机计算机" - ], - "id": "YaSjjv", - "checked": false - }, - { - "name": "nanosecond", - "trans": [ - "n. 毫微秒,极短的时间" - ], - "id": "lok5z0", - "checked": false - }, - { - "name": "octet", - "trans": [ - "n. [音] 八重唱, 八重奏 n. 八位位组" - ], - "id": "GSlAYj", - "checked": false - }, - { - "name": "optical", - "trans": [ - "adj. 眼睛的, 视觉的, 光学的" - ], - "id": "Ki9oTC", - "checked": false - }, - { - "name": "panel", - "trans": [ - "n.镶板; 面; (门、墙等上面的)嵌板; 控制板 vt.选定(陪审团); 把…分格; 在…上置鞍垫; 把…镶入框架内" - ], - "id": "G7yeXi", - "checked": false - }, - { - "name": "perforator", - "trans": [ - "n.穿孔器,穿孔员" - ], - "id": "h8uOE_", - "checked": false - }, - { - "name": "peripheral", - "trans": [ - "adj. 不重要的,外围的 n. 外围设备" - ], - "id": "sAJtm0", - "checked": false - }, - { - "name": "pulse", - "trans": [ - "n. 脉冲,脉波,脉搏 vt. &vi. 跳动,脉跳" - ], - "id": "pBxWUo", - "checked": false - }, - { - "name": "redundancy", - "trans": [ - "n. 冗余,备份,多余信息" - ], - "id": "va5Iz7", - "checked": false - }, - { - "name": "selector", - "trans": [ - "n. 挑选者,选择器" - ], - "id": "NfWLto", - "checked": false - }, - { - "name": "sentinel", - "trans": [ - "n. 哨兵(标记,传送) vt 放哨(守卫)" - ], - "id": "roumtX", - "checked": false - }, - { - "name": "simulation", - "trans": [ - "n. 模拟,仿真,赝品" - ], - "id": "K3B6F9", - "checked": false - }, - { - "name": "simulator", - "trans": [ - "模拟程序" - ], - "id": "HV0VWH", - "checked": false - }, - { - "name": "sorter", - "trans": [ - "n.从事分类的人,把东西分类拣选的人" - ], - "id": "JfQlB5", - "checked": false - }, - { - "name": "symbolic", - "trans": [ - "n. 代号 adj. 象征的, 符号的" - ], - "id": "cwlxJG", - "checked": false - }, - { - "name": "tabulator", - "trans": [ - "n. 制表者, 制表机, 跳格键" - ], - "id": "Kz7vUm", - "checked": false - }, - { - "name": "teleprinter", - "trans": [ - "n. 电传打印机" - ], - "id": "dq8_23", - "checked": false - }, - { - "name": "timer", - "trans": [ - "n. 计时员,记时器, 跑表" - ], - "id": "JJP-kc", - "checked": false - }, - { - "name": "timing", - "trans": [ - "n. 时间的掌握(安排, 配合)" - ], - "id": "ypsCgc", - "checked": false - }, - { - "name": "transducer", - "trans": [ - "n. 转换器, 传感器" - ], - "id": "7Ji2nT", - "checked": false - }, - { - "name": "translator", - "trans": [ - "n. 翻译者" - ], - "id": "ReIhqc", - "checked": false - }, - { - "name": "Winchester", - "trans": [ - "n. 温彻斯特(英格兰南部城市)" - ], - "id": "dJ9GR1", - "checked": false - }, - { - "name": "multimedia", - "trans": [ - "adj. 多媒体的 n. 多媒体" - ], - "id": "HtkXnM", - "checked": false - }, - { - "name": "pentium", - "trans": [ - "Intel公司生产的CPU芯片,中文译名为\"奔腾\"" - ], - "id": "uyOow-", - "checked": false - }, - { - "name": "kilo", - "trans": [ - "pref. 表示“千” abbr. 千克,公斤(=kilogram/kilogramme)" - ], - "id": "wGBGMf", - "checked": false - }, - { - "name": "giga", - "trans": [ - "pref. 千兆" - ], - "id": "00Oneg", - "checked": false - }, - { - "name": "bracketed", - "trans": [ - "方括号;托架;括号" - ], - "id": "Q_jRC6", - "checked": false - }, - { - "name": "debugger", - "trans": [ - "调试器" - ], - "id": "rBneao", - "checked": false - } - ], - "chapterWordNumber": 30, - "chapterWords": [ - [ - { - "name": "command", - "trans": [ - "n.命令,指挥; 司令部,指挥部; [计算机]指令; 控制力 vt.指挥,控制,命令; 命令; 应得,值得 vi.给出命令; 命令,指令 adj.指挥的,根据命令(或要求)而作的" - ], - "id": "_xC0Lc", - "checked": false - }, - { - "name": "use", - "trans": [ - "n. 运用,用法,使用权,适用 vt. 使用,利用,对待 vi. 吸毒" - ], - "id": "6ZScs6", - "checked": false - }, - { - "name": "program", - "trans": [ - "n. 节目(单),程序,计划 vt. 规划,拟定计划,制作节目" - ], - "id": "P1t4vf", - "checked": false - }, - { - "name": "line", - "trans": [ - "n. 行,线,航线,场界,皱纹,家族 vt. &vi. 用做衬里,排成一行,顺...排列 vi. 排成一行,顺...排列,划线于" - ], - "id": "SjMtee", - "checked": false - }, - { - "name": "if", - "trans": [ - "conj. 如果,是否,即使 n. 条件,设想" - ], - "id": "rdjNgj", - "checked": false - }, - { - "name": "display", - "trans": [ - "n. 显示,陈列,炫耀 vt. 显示,表现,夸示" - ], - "id": "iF7Xoe", - "checked": false - }, - { - "name": "set", - "trans": [ - "vt.放置,安置; 使处于某种状况; 设置; 摆放餐具 vi.落山; 出发; 凝结 n.一套,一副; 集合; 布景; 电视机 adj.固定的; 位于…的; 顽固的; 安排好的" - ], - "id": "hCBECj", - "checked": false - }, - { - "name": "key", - "trans": [ - "adj. 主要的,关键的 n. 钥匙,关键,答案,按键,音调 vt. 上锁,调节,提供解答,键入 vi. 使用钥匙" - ], - "id": "ViedIp", - "checked": false - }, - { - "name": "list", - "trans": [ - "n.清单,目录; 倾斜; 布边,布头; 狭条 vt.列出,列入; 把…编列成表; 记入名单内 vi.列于表上" - ], - "id": "64jLzW", - "checked": false - }, - { - "name": "by", - "trans": [ - "prep. 被, 经由, 在...之前, 根据 adv. 靠近, 经过, 放在一旁地 adj. 在旁边的, 附带的 n. 次要的事件" - ], - "id": "CZFA8A", - "checked": false - }, - { - "name": "press", - "trans": [ - "vt.压,按; 逼迫; 紧抱 vi.压; 逼迫; 重压 n.强迫征兵; 新闻报道,出版物; 压榨; 印刷机(厂)" - ], - "id": "TnOWwr", - "checked": false - }, - { - "name": "with", - "trans": [ - "prep. 和...一起,用, 随着, 包括" - ], - "id": "3LJY5_", - "checked": false - }, - { - "name": "format", - "trans": [ - "n. 设计,版式 n.[计算机]格式,DOS命令 : 格式化(磁盘),用于空盘或使用过的磁盘建立新空盘来存储数据 v. vt.使格式化,设计,安排" - ], - "id": "FVF5Eq", - "checked": false - }, - { - "name": "change", - "trans": [ - "n. 变化, 零钱 v. 改变" - ], - "id": "AUn5Xf", - "checked": false - }, - { - "name": "cursor", - "trans": [ - "光标" - ], - "id": "QlOWnW", - "checked": false - }, - { - "name": "directory", - "trans": [ - "n. 目录,工商名录,指南 [计算机] 目录 adj. 给予指导的" - ], - "id": "NfHmJF", - "checked": false - }, - { - "name": "from", - "trans": [ - "prep. 从,从...起" - ], - "id": "jJT8DT", - "checked": false - }, - { - "name": "menu", - "trans": [ - "n. 菜单" - ], - "id": "JTOpVm", - "checked": false - }, - { - "name": "option", - "trans": [ - "n.选择(的自由); 选项; 选择权; 选择能力 vt.得到或获准进行选择; 调动球员" - ], - "id": "pC_bVI", - "checked": false - }, - { - "name": "character", - "trans": [ - "n. 个性, 品质; 字符; 人物; 名誉; 地位" - ], - "id": "M5JSEa", - "checked": false - }, - { - "name": "current", - "trans": [ - "n. (水、气、电)流, 趋势 adj. 流通的, 现在的, 最近的" - ], - "id": "OVjk7U", - "checked": false - }, - { - "name": "type", - "trans": [ - "n.类型; 铅字; (印刷或打印的)文字; 于…类型的 vt.& vi.打字 vt.[医学]测定(血型); 按类型把…归类; 成为…的典型; [印刷]浇铸(铅字等)" - ], - "id": "0ephAl", - "checked": false - }, - { - "name": "screen", - "trans": [ - "n.屏幕; 银幕; 屏风 vt.筛(煤、矿石等); 拍摄; 放映(电影); 庇护" - ], - "id": "mnr3PV", - "checked": false - }, - { - "name": "specify", - "trans": [ - "vt. 明确说明,叙述,指定,详细说明" - ], - "id": "YQDUVI", - "checked": false - }, - { - "name": "move", - "trans": [ - "vt.& vi.移动,搬动 vi.搬家; 行动; 进展; (机器等)开动 vt.提议; 使感动; 摇动; 变化 n.改变; 迁移" - ], - "id": "AJqchB", - "checked": false - }, - { - "name": "disk", - "trans": [ - "n. 圆盘,唱片,花盘,盘形物,光盘 vt. 用圆盘耙耙地 [计算机] 磁盘" - ], - "id": "cjxuQi", - "checked": false - }, - { - "name": "text", - "trans": [ - "n. 本文, 文件, 正文, 课文 vt. &vi. 发短信" - ], - "id": "s9ZoMs", - "checked": false - }, - { - "name": "drive", - "trans": [ - "v. 开车, 驱使, 驾进力 n. 驾车, 快车道, 推进力, 驱使, 路, 街" - ], - "id": "QuwPd4", - "checked": false - }, - { - "name": "see", - "trans": [ - "vt. 看见,经历,明白,确保,视为,拜访,陪同 vi. 注意,想象,了解,调查 n. 主教教区,主角权限" - ], - "id": "XlUARW", - "checked": false - } - ], - [ - { - "name": "name", - "trans": [ - "n. 名字, 名称, 姓名 vt. 命名, 称呼, 任命 adj. 有名的, 著名的" - ], - "id": "37EoJv", - "checked": false - }, - { - "name": "record", - "trans": [ - "n. 记录,纪录,唱片 vt. 记录,(将声音等)录下,表明 adj. 关于" - ], - "id": "WT9YhG", - "checked": false - }, - { - "name": "box", - "trans": [ - "n. 盒子,箱,专席,亭子,窘境 vt. 装...入盒中,限制住,调和,改变形状,用拳击... vi.参与拳击" - ], - "id": "I_fg8c", - "checked": false - }, - { - "name": "database", - "trans": [ - "n. 数据库" - ], - "id": "z6UXqf", - "checked": false - }, - { - "name": "help", - "trans": [ - "n. 帮助,援助 vt. &vi. 帮助,改善" - ], - "id": "FCkvNj", - "checked": false - }, - { - "name": "memory", - "trans": [ - "n. 记忆,内存,回忆" - ], - "id": "mRsZLr", - "checked": false - }, - { - "name": "all", - "trans": [ - "adj. 所有的,全部的 adv. 全部,非常,全然,所有 pron. 全部,所有 n. 全部" - ], - "id": "Os_ATX", - "checked": false - }, - { - "name": "on", - "trans": [ - "prep. 在...之上,由…支撑着,在(某一天),使用, 根据 [计算机] 开 adv.穿着,向前(移动),(表示持续性) adj. 表示已连接、处于工作状态或使用中,表示发生,值班 abbr.=Ontario" - ], - "id": "nEHJQV", - "checked": false - }, - { - "name": "copy", - "trans": [ - "n.复制品; 一份; (报刊等的)稿件; 准备排印的书面材料 vt.& vi.复制; 抄写; 容许复制的 vt.模仿; 仿造…的样式或图案; 抄写; 复制" - ], - "id": "ZX97gC", - "checked": false - }, - { - "name": "shell", - "trans": [ - "n. 贝壳,壳,外形 vt. &vi. 去壳,脱落,炮击,拾贝壳 n.[计算机] DOS命令 : 安装备用的COMMAND.COM文件, 并改变环境尺寸" - ], - "id": "F87qTY", - "checked": false - }, - { - "name": "delete", - "trans": [ - "vt. 删除" - ], - "id": "xLHsRg", - "checked": false - }, - { - "name": "enter", - "trans": [ - "vi. 进入,参加,开始,上台,进入角色 vt. 进入,报名,开始,加入,报价,提出 [计算机] 送入" - ], - "id": "nt0nEu", - "checked": false - }, - { - "name": "margin", - "trans": [ - "n. 差额,利润,页边空白,边缘 vt. 使围绕于,加边缘" - ], - "id": "Of1gCF", - "checked": false - }, - { - "name": "mark", - "trans": [ - "n. 污迹, 标记, 分数, 烙印, 纪录 vt. 做标记于, 留意, 打分数, 留下污痕, 使...明显 vi. 做标志, 记分, 留下印记" - ], - "id": "D8SfqJ", - "checked": false - }, - { - "name": "also", - "trans": [ - "adv. 也, 同样地, 而且" - ], - "id": "fL31aW", - "checked": false - }, - { - "name": "do", - "trans": [ - "aux. 助动词(无词意) v. 干,做" - ], - "id": "SpfQZH", - "checked": false - }, - { - "name": "information", - "trans": [ - "n. 信息, 情报, 新闻, 资料, 询问" - ], - "id": "H1Tqr8", - "checked": false - }, - { - "name": "choose", - "trans": [ - "vt. &vi. 选择" - ], - "id": "jsgHnk", - "checked": false - }, - { - "name": "select", - "trans": [ - "adj. 精选的 n. 被挑选出来的人或物 v. 选择 vi. 选择,挑选,选拔 vt. 选择,挑选" - ], - "id": "AZTXMg", - "checked": false - }, - { - "name": "group", - "trans": [ - "n. 团体,组,团 vt. &vi. 聚合,成群 [计算机] 成组" - ], - "id": "AUztCw", - "checked": false - }, - { - "name": "first", - "trans": [ - "adv. 首先,第一,优先 adj. 第一的, 最早的, 一流的 n. (序数词)第一, 第一个人或事物, (大学学位的)最优等, (汽车, 自行车等的)最低挡" - ], - "id": "Co9xyZ", - "checked": false - }, - { - "name": "field", - "trans": [ - "n. 领域;牧场;旷野;战场;运动场 vi. 担任场外队员 adj. 扫描场;田赛的;野生的 vt. 把暴晒于场上;使上场;(通常成功地)回答,处理(问题)" - ], - "id": "w6JaL8", - "checked": false - }, - { - "name": "procedure", - "trans": [ - "n. 程序, 手续, 步骤; 常规的做法" - ], - "id": "Lzve8t", - "checked": false - }, - { - "name": "print", - "trans": [ - "n. 版,印刷物,印迹 vt. &vi. 印刷,出版,打印 adj. 印刷的" - ], - "id": "6p7B8l", - "checked": false - }, - { - "name": "return", - "trans": [ - "n. 返回,归还,报答,报告 vt. &vi. 返回,归还,回来 adj. 返回的" - ], - "id": "lnC8LT", - "checked": false - }, - { - "name": "number", - "trans": [ - "n. 号码,数字 v. 编号,加号码,总计 vi. 总计 vt. 编号" - ], - "id": "p43w7F", - "checked": false - }, - { - "name": "selected", - "trans": [ - "adj. 选定的 动词select的过去式和过去分词" - ], - "id": "fo4Xiv", - "checked": false - }, - { - "name": "want", - "trans": [ - "n. 缺乏, 贫困, 欲望, 需要, 不足 vi. 要, 希望, 必须 vt. 缺少, 渴望, 喜欢, 应该" - ], - "id": "bvNu0v", - "checked": false - }, - { - "name": "window", - "trans": [ - "n. 窗户" - ], - "id": "SYgD9z", - "checked": false - }, - { - "name": "message", - "trans": [ - "n. 消息,信息,要点 vt. &vi. 传递信息, 通讯" - ], - "id": "bFwSNf", - "checked": false - } - ], - [ - { - "name": "dialog", - "trans": [ - "n. 对话, 对白 (美)=dialogue" - ], - "id": "sAgvf4", - "checked": false - }, - { - "name": "example", - "trans": [ - "n. 榜样,例子 vt. 把...作为例子" - ], - "id": "Rkrj9T", - "checked": false - }, - { - "name": "create", - "trans": [ - "vt. 创造, 造成" - ], - "id": "cqTsZ-", - "checked": false - }, - { - "name": "insert", - "trans": [ - "n. 插入物 vt. &vi. 插入" - ], - "id": "Q37wsl", - "checked": false - }, - { - "name": "related", - "trans": [ - "adj. 有关系的,有关联的 v. 讲,有关系 vbl. 讲,有关系" - ], - "id": "N-w0va", - "checked": false - }, - { - "name": "item", - "trans": [ - "n. 项目,条款, 一件商品(或物品) adv. 也" - ], - "id": "HqF0WZ", - "checked": false - }, - { - "name": "edit", - "trans": [ - "vt. 编辑,编校,修订 n. 编辑工作" - ], - "id": "SQnVBX", - "checked": false - }, - { - "name": "marked", - "trans": [ - "adj. 有记号的,显著的,醒目的 v. 作记号,打分数,表示 vbl. 作记号,打分数,表示" - ], - "id": "4fGg8C", - "checked": false - }, - { - "name": "area", - "trans": [ - "n. 地区, 区域, 面积, 方面" - ], - "id": "gu1CDb", - "checked": false - }, - { - "name": "parameter", - "trans": [ - "n. 参数,参量,决定因素" - ], - "id": "6ItEuP", - "checked": false - }, - { - "name": "then", - "trans": [ - "adv. 那么, 当时,然后,于是 adj. 当时的" - ], - "id": "5b0neX", - "checked": false - }, - { - "name": "variable", - "trans": [ - "adj. 可变的,易变的 n. 变量, 易变的东西" - ], - "id": "Q0qcFp", - "checked": false - }, - { - "name": "tab", - "trans": [ - "n.(tabulate)制表, 标签, 垂饰, 拉环,账单 vt. 用标签或垂饰安装" - ], - "id": "8OjMmY", - "checked": false - }, - { - "name": "up", - "trans": [ - "adv. 向上,增加,用尽,完全,储存,靠近 adj. 向上的,直立的,完成的,高兴的,在进行的 prep. 向上,迎着 n. 上司,上坡,繁荣,上面 vt. 升起,增加 vi. 上升" - ], - "id": "R57vBZ", - "checked": false - }, - { - "name": "string", - "trans": [ - "n. 线,一串,字串 vt. 串起,成串,收紧, 悬挂;系;扎 vi. 给…装弦 adj. 线的" - ], - "id": "nxmqlQ", - "checked": false - }, - { - "name": "each", - "trans": [ - "adj. 每个, 每, 每一 adv. 每个 int. 每个, 个人, 个自" - ], - "id": "y0nUVN", - "checked": false - }, - { - "name": "active", - "trans": [ - "adj. 积极的;活跃的;主动的;有效的;现役的 n. 主动语态;积极分子" - ], - "id": "baLt2f", - "checked": false - }, - { - "name": "topic", - "trans": [ - "n. 题目, 话题, 主题" - ], - "id": "xm034d", - "checked": false - }, - { - "name": "start", - "trans": [ - "n.开始; 动身; 开动; 起点 vt.& vi.出发,启程 vt.起动; 提出(问题); 开办; 使开始 vi.起始; 突然出现; 突然跳起; 突然涌出" - ], - "id": "wgu4Vf", - "checked": false - }, - { - "name": "mode", - "trans": [ - "n. 方式,样式,模式,风格,时兴 [音乐] 调式" - ], - "id": "ZYEP2A", - "checked": false - }, - { - "name": "selection", - "trans": [ - "n. 选择,挑选,挑选出来的人或事" - ], - "id": "6REsMe", - "checked": false - }, - { - "name": "function", - "trans": [ - "n. 功能, 函数, 重大聚会 vi. 运行, 起作用" - ], - "id": "44uUNl", - "checked": false - }, - { - "name": "word", - "trans": [ - "n. 词, 单词, 消息, 诺言 vt. 用词语表达" - ], - "id": "dZtMAl", - "checked": false - }, - { - "name": "make", - "trans": [ - "vt.做,制造; 生产,制定; 使成为; 使产生 vi.开始; 尝试; 行进; 增大 n.制造; 生产量; 性格; 形状,样式" - ], - "id": "BPWazT", - "checked": false - }, - { - "name": "right", - "trans": [ - "adj. 正确的,正直的,合适的,垂直的,右面的,正常的,正面的 n. 权利,右,正义,实况 adv. 正好,恰当,径直地,正确地,立即,非常,向右边 vt. 纠正,扶直,公正对待,伸冤 vi. 复正" - ], - "id": "RwPISs", - "checked": false - }, - { - "name": "value", - "trans": [ - "n. 价值, 重要性, 价格, (pl)价值观 vt. 评价, 估价, 重视" - ], - "id": "gAP0EA", - "checked": false - }, - { - "name": "button", - "trans": [ - "n. 钮扣,徽章,像纽扣的东西,未成熟的蘑菇,按钮 vt. 用纽扣装饰,钉纽扣,闭嘴 vi. 扣上" - ], - "id": "DisZr7", - "checked": false - }, - { - "name": "index", - "trans": [ - "n.索引; <数>指数; 指示; 标志 vt.给…编索引; 把…编入索引; [经济学]按生活指数调整(工资、价格等) vi.[机械学]转位" - ], - "id": "1kl82e", - "checked": false - }, - { - "name": "without", - "trans": [ - "adv.在外部; 户外; 缺少; 没有或不显示某事物 prep.没有,缺乏; 在外面 conj.除非,如果不" - ], - "id": "McBlDr", - "checked": false - }, - { - "name": "appear", - "trans": [ - "vi. 出现,显得,出版,抵达" - ], - "id": "RUdh02", - "checked": false - } - ], - [ - { - "name": "left", - "trans": [ - "adj.左边的,左侧的; 左派的 n.左,左面; [军]左翼; 左派,激进分子 adv.向左; 在左边 v.离开( leave的过去式和过去分词)" - ], - "id": "gBLG9m", - "checked": false - }, - { - "name": "save", - "trans": [ - "vt.节省; 保存; 储蓄; 解救 vi.节省; 挽救; 救球 prep.&conj.除…之外 n.救援,救援" - ], - "id": "C6W_Fz", - "checked": false - }, - { - "name": "next", - "trans": [ - "adj.紧接在后的; 次于的; 贴近的; 紧邻的 adv.接下去; 然后; 居后地; 依次的 n.下一位; 下一个 prep.靠近; 居于…之后; 在…的隔壁" - ], - "id": "ndA6b-", - "checked": false - }, - { - "name": "off", - "trans": [ - "adj. 远的,休假的,空闲的,落后懈怠的 adv. 离开,出发,距离隔断,分割,不继续运行,下台 prep. 离开,脱落,下班 vi. 离开, 走开" - ], - "id": "g8gF8x", - "checked": false - }, - { - "name": "following", - "trans": [ - "n. 下列各项,部下,党羽 adj. 下列的,其次的 prep. 在(某事)以后" - ], - "id": "svkaC_", - "checked": false - }, - { - "name": "control", - "trans": [ - "n. 克制,控制,管制,操作装置 vt. 控制,掌管,支配" - ], - "id": "JAlUZw", - "checked": false - }, - { - "name": "only", - "trans": [ - "adj. 最好的,唯一的,出众的 adv. 仅仅,只有,专门地,唯一地,刚才 conj. 除非, 但是, 然而, 毕竟" - ], - "id": "J93YCI", - "checked": false - }, - { - "name": "user", - "trans": [ - "n. 用户, 使用者" - ], - "id": "SEUjF6", - "checked": false - }, - { - "name": "end", - "trans": [ - "n. 结束,终点,目标,末端 vt.& vi. 结束,终结 adj. 最终的" - ], - "id": "Mt18VG", - "checked": false - }, - { - "name": "system", - "trans": [ - "n. 系统,体系,制度,体制" - ], - "id": "qgzPuR", - "checked": false - }, - { - "name": "contain", - "trans": [ - "vt. 包含,容纳,克制,抑制 vi. 自制" - ], - "id": "1VrX2i", - "checked": false - }, - { - "name": "time", - "trans": [ - "n.时间; 时刻; 时代; 次 vt.为…安排时间; 测定…的时间; 调准(机械的)速度; 拨准(钟、表)的快慢 vi.合拍; 和谐; 打拍子 adj.定时的; 定期的; [美国英语]分期(付款)的" - ], - "id": "Jqcb3Y", - "checked": false - }, - { - "name": "letter", - "trans": [ - "n.信; 证书,许可证; 字母,文字; 字面意义 vt.用字母标明; 写字母于; 加标题 vi.写印刷体字母" - ], - "id": "O0yzSJ", - "checked": false - }, - { - "name": "data", - "trans": [ - "n. (datum的复数)资料,数据" - ], - "id": "ToJ67P", - "checked": false - }, - { - "name": "setting", - "trans": [ - "n.镶嵌; 环境; 装置; (某事、戏剧、小说等的)背景 v.放( set的现在分词); 安插; 树立; 安排" - ], - "id": "yOZSqw", - "checked": false - }, - { - "name": "desire", - "trans": [ - "n. 愿望, 欲望, 情欲 v. 向往, 要求, 请求 vt. 渴望" - ], - "id": "XDn2Kt", - "checked": false - }, - { - "name": "position", - "trans": [ - "n. 位置, 职位; 状态, 立场 vt. 安置, 决定...的位置" - ], - "id": "5M2QXz", - "checked": false - }, - { - "name": "down", - "trans": [ - "adj. 向下的,降低的,情绪低落,停止运行 adv. 向下的,下跌,在南方 n. 绒毛,汗毛,轻视 prep. 沿着...而下" - ], - "id": "lu-Kd9", - "checked": false - }, - { - "name": "task", - "trans": [ - "n. 工作,任务 vt. 交给某人(任务)" - ], - "id": "MyqZBr", - "checked": false - }, - { - "name": "view", - "trans": [ - "n. 视野,风景,见解,方法,检查 vt. 把...视为,看,考虑" - ], - "id": "7PFkBu", - "checked": false - }, - { - "name": "switch", - "trans": [ - "n. 开关, 电门,闸,转换器, vt. &vi. 鞭打,转轨,交换,突然转变, 摆动,接通或切断…电流" - ], - "id": "TTc-O0", - "checked": false - }, - { - "name": "include", - "trans": [ - "v. 包括,包含,连...在内 [计算机] 包括" - ], - "id": "BQLTdV", - "checked": false - }, - { - "name": "get", - "trans": [ - "vt. 使得;获得;受到;变成 vi. 成为;变得;到达" - ], - "id": "O33phh", - "checked": false - }, - { - "name": "default", - "trans": [ - "n. 假设值,默认(值),不履行责任,缺席 v. 默认,不履行义务,缺席,拖欠 [计算机] 缺省" - ], - "id": "lRqH7v", - "checked": false - }, - { - "name": "structure", - "trans": [ - "n. 结构,构造,建筑物 v. 构成,建立,建造" - ], - "id": "_nt4_F", - "checked": false - }, - { - "name": "into", - "trans": [ - "prep. 到...里" - ], - "id": "MWl5X3", - "checked": false - }, - { - "name": "path", - "trans": [ - "n.小路,路; 路线,路程; 〈比喻〉(人生的)道路; (思想,行为,生活的)途径" - ], - "id": "HyCD9l", - "checked": false - }, - { - "name": "blank", - "trans": [ - "adj. 空白的, 茫然的, 全部的, 面无表情的, 未完工的 n. 空白(处), 空隙, 空虚, (有弹药而无弹头的)空弹 vi. 消失, 走神 vt. 使模糊不清, 删除, 封闭, (比赛时连续得分)使对手得零分" - ], - "id": "HvFY9Z", - "checked": false - }, - { - "name": "open", - "trans": [ - "n. 公开,户外,空旷 adj. 开着的,开放的,公开的 vt. 打开,公开,开放,开始 vi. 开, 通行,大叫" - ], - "id": "_SRPjq", - "checked": false - }, - { - "name": "add", - "trans": [ - "vt. &vi. 增加" - ], - "id": "07Orgm", - "checked": false - } - ], - [ - { - "name": "enable", - "trans": [ - "vt. 使...能够,使可行 [计算机] 使能" - ], - "id": "pVBJCk", - "checked": false - }, - { - "name": "operation", - "trans": [ - "n. 手术, 行动,活动, 操作" - ], - "id": "iwSXLQ", - "checked": false - }, - { - "name": "erase", - "trans": [ - "v. 抹去,擦掉 [计算机] 擦除" - ], - "id": "psoAeZ", - "checked": false - }, - { - "name": "filename", - "trans": [ - "文件名" - ], - "id": "rNGSk5", - "checked": false - }, - { - "name": "search", - "trans": [ - "n. 搜寻, 探究 v. 搜寻, 探求, 调查" - ], - "id": "xnL61L", - "checked": false - }, - { - "name": "another", - "trans": [ - "adj. 另一,再一 pron.&prep. 另一个" - ], - "id": "wfuMCS", - "checked": false - }, - { - "name": "last", - "trans": [ - "adj. 最后的,末尾的,最近的,晚了,迟到了 adv. 最后,最新 n. 最后来的人(或发生的事) vi. &vt. 持续" - ], - "id": "X57GgH", - "checked": false - }, - { - "name": "column", - "trans": [ - "n.纵队,列; 圆柱; 专栏" - ], - "id": "k288aC", - "checked": false - }, - { - "name": "after", - "trans": [ - "adj. 以后的 adv. 以后, 后来 conj. 在...以后 prep. 在...之后" - ], - "id": "WQ8h5f", - "checked": false - }, - { - "name": "prompt", - "trans": [ - "adj. 迅速的, 敏捷的, 立刻的 vt. 激起, 促进, 推动; 提示 vi. 提示 n. 提示; 提示的内容 n. [商]付款期限" - ], - "id": "Nf8HeC", - "checked": false - }, - { - "name": "two", - "trans": [ - "num. 二,两个" - ], - "id": "XP_16q", - "checked": false - }, - { - "name": "execute", - "trans": [ - "vt. 执行,处决,实行,完成 [计算机] 执行" - ], - "id": "6Acjw8", - "checked": false - }, - { - "name": "about", - "trans": [ - "adj. 准备 adv. 大约 prep. 关于" - ], - "id": "brkMAf", - "checked": false - }, - { - "name": "escape", - "trans": [ - "n. 逃亡,避难设备 vt. &vi. 逃脱,避开 adj. 逃避的" - ], - "id": "JHjMyf", - "checked": false - }, - { - "name": "error", - "trans": [ - "n. 错误, 过失" - ], - "id": "cPzYjh", - "checked": false - }, - { - "name": "currently", - "trans": [ - "adv. 现在,现时,目前,当前" - ], - "id": "TDgNP7", - "checked": false - }, - { - "name": "extension", - "trans": [ - "n. 延长,扩充,范围,分机号码" - ], - "id": "1QRGQH", - "checked": false - }, - { - "name": "same", - "trans": [ - "adj. 同样的 adv. 同样地 pron. 同样的人或事" - ], - "id": "3ZRM3A", - "checked": false - }, - { - "name": "status", - "trans": [ - "n. 地位, 身份, 情形, 状况" - ], - "id": "Z6BZhL", - "checked": false - }, - { - "name": "run", - "trans": [ - "n. 奔跑,路程,趋向 vt. 跑,放牧,经营,走私,使运转,浇铸,使遭受 vi. 跑,竞赛,行驶,运转,遭遇,持续,熔化,褪色,流,蔓延,传播 adj. 熔化的,浇铸的,洄游的" - ], - "id": "RtWoEK", - "checked": false - }, - { - "name": "argument", - "trans": [ - "n. 辩论,争论,论点(据),理由" - ], - "id": "XGbPhT", - "checked": false - }, - { - "name": "statement", - "trans": [ - "n. 声明, 陈述" - ], - "id": "S4RW2L", - "checked": false - }, - { - "name": "shift", - "trans": [ - "n. 交换,变化,移动,接班者 vt. 更替,移转,变声 vi. 改变,定责,更衣" - ], - "id": "06TQ1x", - "checked": false - }, - { - "name": "store", - "trans": [ - "n. 商店,贮藏,仓库 vt. 储存,贮藏,供给,保存 adj. 储备的 (在计算机里)存贮;记忆" - ], - "id": "giMv1N", - "checked": false - }, - { - "name": "scroll", - "trans": [ - "n. 卷轴,目录 vt.& vi. 卷动" - ], - "id": "3Kdq80", - "checked": false - }, - { - "name": "replace", - "trans": [ - "vt. 取代,更换" - ], - "id": "MlyzaI", - "checked": false - }, - { - "name": "macro", - "trans": [ - "adj. 巨大的,大范围的,总的 n. [计算机]宏" - ], - "id": "VT38gw", - "checked": false - }, - { - "name": "page", - "trans": [ - "n. 页 v. (给...)当听差 vt. (通过扩音器、传呼机等)呼叫" - ], - "id": "vsxRip", - "checked": false - }, - { - "name": "quit", - "trans": [ - "v. 离开,辞职,停止" - ], - "id": "l0TbDO", - "checked": false - }, - { - "name": "define", - "trans": [ - "vt. 定义, 解释" - ], - "id": "3Faqqb", - "checked": false - } - ], - [ - { - "name": "reference", - "trans": [ - "n. 参考, 出处, 参照 n. 推荐人, 推荐函 vt. 提供参考" - ], - "id": "BMT-M-", - "checked": false - }, - { - "name": "other", - "trans": [ - "adj. 别的,其他的 pron. 另一个人(或事) n. 其他人(或事)" - ], - "id": "Vqh9Ga", - "checked": false - }, - { - "name": "while", - "trans": [ - "conj. 当...的时候,然而 n. &adj. 一会儿 vt. 消磨" - ], - "id": "zCjHCt", - "checked": false - }, - { - "name": "pressing", - "trans": [ - "adj. 紧迫的,紧急的,切实的 vbl. 压迫" - ], - "id": "wh7Gd2", - "checked": false - }, - { - "name": "restore", - "trans": [ - "vt. 恢复,归还,翻新" - ], - "id": "DDnz5S", - "checked": false - }, - { - "name": "top", - "trans": [ - "n. 顶端, 极点, 盖子, (女式)上衣, 最高地位, 陀螺 adj. 最高的, 顶上的, 最一流的 vt. 高耸, 加以顶盖, 超越, 上升到顶端 vi. 得出结论, 到达顶峰" - ], - "id": "jfemUo", - "checked": false - }, - { - "name": "how", - "trans": [ - "adv. 如何,怎样,多么,多少 conj. 如何,怎样,以...方式 n. 方式" - ], - "id": "j4yF9L", - "checked": false - }, - { - "name": "color", - "trans": [ - "n. 颜色,气色,风格 vt. 把...涂颜色,粉饰 vi. 脸红" - ], - "id": "rb-ubi", - "checked": false - }, - { - "name": "allow", - "trans": [ - "vi. (for)考虑到,使可能 vt. 给予,承认,允许, 断定" - ], - "id": "tqVWYe", - "checked": false - }, - { - "name": "block", - "trans": [ - "n.块; 街区; <英>大楼,大厦; 障碍物,阻碍 vt.阻止; 阻塞; 限制" - ], - "id": "EW1NgO", - "checked": false - }, - { - "name": "decimal", - "trans": [ - "adj. 十进位的,小数的 n. 小数" - ], - "id": "Q0co8P", - "checked": false - }, - { - "name": "main", - "trans": [ - "adj. 主要的 n. 主要部分,干线,(水、煤气、电等的)供应系统,体力" - ], - "id": "bZuy4X", - "checked": false - }, - { - "name": "definition", - "trans": [ - "n. 定义, 阐释,清晰度" - ], - "id": "FzeVJ_", - "checked": false - }, - { - "name": "between", - "trans": [ - "adv. 在中间 prep. 在...之间" - ], - "id": "0qWFoW", - "checked": false - }, - { - "name": "optional", - "trans": [ - "adj. 可以任选的,非强制的" - ], - "id": "mEoLZ7", - "checked": false - }, - { - "name": "date", - "trans": [ - "n. 日期,约会,枣椰子 vt. 约会,定日期 vi. 追溯到 n.[计算机] DOS命令 : 显示或设置系统日期" - ], - "id": "W2tq8y", - "checked": false - }, - { - "name": "remove", - "trans": [ - "n. 间距, 移动 vt. 除去,开除, 移动, 取下, 拿走 vi. 迁徙,离开,搬迁" - ], - "id": "S0vg_X", - "checked": false - }, - { - "name": "arrow", - "trans": [ - "n. 箭,箭头 vi. 快且笔直的前进有如穿梭的箭" - ], - "id": "BAJvGg", - "checked": false - }, - { - "name": "label", - "trans": [ - "n.标签; 称标记,符号; [建] 门或窗户上面的线脚 vt.贴标签于; 把…称为; 把…列为; [化]用放射性元素使(元素或原子等)示踪" - ], - "id": "iVrRog", - "checked": false - }, - { - "name": "within", - "trans": [ - "adv. 在内 n. 里面 prep. 在...里面 adj. 在里面的" - ], - "id": "J3A0DK", - "checked": false - }, - { - "name": "issue", - "trans": [ - "n. 问题;流出;期号;发行物 vt. 发行,发布;发给;放出,排出 vi. 发行;流出;造成…结果;传下" - ], - "id": "74JoF3", - "checked": false - }, - { - "name": "different", - "trans": [ - "adj. 不同的,与众不同的" - ], - "id": "Nlq58K", - "checked": false - }, - { - "name": "available", - "trans": [ - "adj. 可用的,可得到的,有用的,有效的" - ], - "id": "-uygoB", - "checked": false - }, - { - "name": "returned", - "trans": [ - "adj.被送回的,归来的" - ], - "id": "XGIrvg", - "checked": false - }, - { - "name": "associate", - "trans": [ - "vt.(使)发生联系; (使)联合; 结交; 联想 vi.联盟; 陪伴同事 n.合伙人; 伴侣,同志; 非正式会员 adj.联合的; 合伙的; 非正式的; (性质上)有密切联系的" - ], - "id": "1cymum", - "checked": false - }, - { - "name": "attribute", - "trans": [ - "n. 属性, 特征; 标志, 象征 vt. 归于, 属于" - ], - "id": "3LyJ8V", - "checked": false - }, - { - "name": "DOS", - "trans": [ - "n. [计] 磁盘操作系统(=Disk Operating System)" - ], - "id": "Oqwquk", - "checked": false - }, - { - "name": "before", - "trans": [ - "prep.在…之前; 先于,优于; 当着…的面; 与其… conj.在…之前; 在…以前; 比…早些; 与其… adv.先前,从前; 在前,在前方" - ], - "id": "-Il3Bz", - "checked": false - }, - { - "name": "order", - "trans": [ - "n.命令; 秩序; 规则,制度; 次序 vt.命令; 订购; 整理 vi.下订单" - ], - "id": "oWNfWl", - "checked": false - }, - { - "name": "modify", - "trans": [ - "vt. 修改,调正,缓和 vi. 修改" - ], - "id": "_QEIHj", - "checked": false - } - ], - [ - { - "name": "array", - "trans": [ - "n. 数组,(陈)排列,大批,一系列 vt. 排列,布署,打扮" - ], - "id": "Xq8i-H", - "checked": false - }, - { - "name": "mouse", - "trans": [ - "n. 老鼠,鼠标,胆小如鼠的人,乌青色的肿块 vi. 捕鼠,蹑手蹑脚行动 vt. 仔细寻找" - ], - "id": "P7kz3r", - "checked": false - }, - { - "name": "note", - "trans": [ - "n. 笔记, 注解, 备忘录, 音符, 音调, 票据, 便条, 纸币 vt. 记录, 注解, 注意" - ], - "id": "O_sWUA", - "checked": false - }, - { - "name": "locate", - "trans": [ - "vt. 找出,设于,位于,建立 vi. 建立" - ], - "id": "MoLXdY", - "checked": false - }, - { - "name": "video", - "trans": [ - "adj. 录像的 n. 录像(机) vt. 制作...的录像" - ], - "id": "ucFeqL", - "checked": false - }, - { - "name": "printer", - "trans": [ - "n. 打印机,印刷工" - ], - "id": "DEomeE", - "checked": false - }, - { - "name": "bar", - "trans": [ - "n. 条,棒,横木,酒吧 vt. 禁止,阻挠" - ], - "id": "QvOD80", - "checked": false - }, - { - "name": "bottom", - "trans": [ - "n. 底部;臀部;船身;水底;服装下面的部分;低洼地;底色;尽头 adj. 底部的 vt. 给...装底,建立基础,到达底部 vi. 到达底部,垫底,降到最低点" - ], - "id": "FL8zyW", - "checked": false - }, - { - "name": "carriage", - "trans": [ - "n. 四轮马车,车厢" - ], - "id": "6hUKQf", - "checked": false - }, - { - "name": "content", - "trans": [ - "n. 内容, 目录, 含量 adj. 满足的, 满意的 vt. 使...满足, 使...安心" - ], - "id": "4lr95M", - "checked": false - }, - { - "name": "either", - "trans": [ - "pron. 任一的 conj. 或, 也 adj. 任一, 两方的 adv. 也" - ], - "id": "kupSEk", - "checked": false - }, - { - "name": "OK", - "trans": [ - "adj. 好, 不错, 可以 adv. 好, 不错, 可以" - ], - "id": "8kFzuf", - "checked": false - }, - { - "name": "space", - "trans": [ - "n. 位置, 空间, 距离, 太空, 空地, 持续的一段时间 vt. &vi. 均匀隔开, 分隔" - ], - "id": "pLhjne", - "checked": false - }, - { - "name": "editor", - "trans": [ - "n. 编辑, 编者" - ], - "id": "L9sYzQ", - "checked": false - }, - { - "name": "exist", - "trans": [ - "v. 存在" - ], - "id": "3pXkl4", - "checked": false - }, - { - "name": "scope", - "trans": [ - "n. 能力,范围,眼界,机会,余地 vt. 仔细研究" - ], - "id": "DKn31-", - "checked": false - }, - { - "name": "paragraph", - "trans": [ - "n. 段落 vt. 将...分段,写短评 vi. 写短评" - ], - "id": "vv5PJg", - "checked": false - }, - { - "name": "multi", - "trans": [ - "n. 多种;多数" - ], - "id": "sQJoWS", - "checked": false - }, - { - "name": "clear", - "trans": [ - "adj. 清楚的,明确的,澄清的,头脑清醒的 vt. 澄清,清除障碍, 使明亮, 明确 vi. 变清晰, 消失, 放晴 adv. 清楚地, 一直 n. 间隙, 空地, 开旷的地方" - ], - "id": "L185kM", - "checked": false - }, - { - "name": "exit", - "trans": [ - "n. 出口,退场,离去 vi. 退出,死亡 vt. 离开" - ], - "id": "55a3wt", - "checked": false - }, - { - "name": "report", - "trans": [ - "n. 传闻,报告,成绩单,爆炸声 vt. 报告,报导,记录 vi. 叙述,报告" - ], - "id": "BEQRJJ", - "checked": false - }, - { - "name": "execution", - "trans": [ - "n. 实行,完成,执行" - ], - "id": "znxatP", - "checked": false - }, - { - "name": "backup", - "trans": [ - "n. 后备,后备" - ], - "id": "aZD2DO", - "checked": false - }, - { - "name": "version", - "trans": [ - "n. 版本, 说法,翻译" - ], - "id": "yNRzhX", - "checked": false - }, - { - "name": "find", - "trans": [ - "vt. &vi. 发现,感觉到,认为 n. 发现物" - ], - "id": "3itUVq", - "checked": false - }, - { - "name": "pointer", - "trans": [ - "n. 指针,教鞭,(能指出猎物位置的)猎犬,暗示 Pointer: 指极星" - ], - "id": "JVGgEX", - "checked": false - }, - { - "name": "subset", - "trans": [ - "n. 子集" - ], - "id": "CvSjFL", - "checked": false - }, - { - "name": "keyboard", - "trans": [ - "n. 键盘 vt. 用键盘输入(信息)" - ], - "id": "gZT-rc", - "checked": false - }, - { - "name": "full", - "trans": [ - "adj.满的,装满的; 完全的,完整的; 丰富的; 详尽的 adv.极其,十分; 充分地,完全地; 整整; 直接地 n.充分,完全; 全部; 完整; 极盛时 v.把衣服缝得宽大; 把裙子缝出皱褶; [印]蒸洗,漂洗" - ], - "id": "6Asxd5", - "checked": false - }, - { - "name": "check", - "trans": [ - "vt.检查,核对; 制止,抑制; 在…上打勾 vi.核实,查核; 中止; 打勾; [象棋]将一军 n.<美>支票; 制止,抑制; 检验,核对" - ], - "id": "4oVLjf", - "checked": false - } - ], - [ - { - "name": "should", - "trans": [ - "verb auxiliary. 应该,竟然,可能" - ], - "id": "wVzSBy", - "checked": false - }, - { - "name": "single", - "trans": [ - "adj. 单身的,单纯的,单一的 n. 单程票,单曲,单人房,单身者 vt. 单独挑出 vi. (棒球)作一垒打" - ], - "id": "uYFehm", - "checked": false - }, - { - "name": "provide", - "trans": [ - "vi. 供给, 提供 vt. 提供; 规定; 准备" - ], - "id": "nehl4L", - "checked": false - }, - { - "name": "title", - "trans": [ - "n. 头衔,名称,标题,所有权,资格,冠军 vt. 赋予称号,加标题于 adj. 标题的" - ], - "id": "2a0CA8", - "checked": false - }, - { - "name": "expression", - "trans": [ - "n. 表达,表示,表现,表情,措辞,词句" - ], - "id": "rbQZI8", - "checked": false - }, - { - "name": "through", - "trans": [ - "adv. 穿越, 完全 prep. 经过, 穿过, 凭借 adj. 完成的, 完结的; 贯穿的, 直通的" - ], - "id": "eaDDNl", - "checked": false - }, - { - "name": "toggle", - "trans": [ - "n. 乒乓开关,触发器,套索钉,棒形纽扣 vt. 系纽扣,提供索钉 vi. 开开关" - ], - "id": "O_K7rV", - "checked": false - }, - { - "name": "code", - "trans": [ - "n. 码,密码,法规,准则 vt. 把...编码,制成法典" - ], - "id": "flrFuU", - "checked": false - }, - { - "name": "such", - "trans": [ - "adj. 如此的,这样的 pron. 这样的 adv. 如此地" - ], - "id": "5g9I5Y", - "checked": false - }, - { - "name": "beginning", - "trans": [ - "n. 开始,开端,起源,早期 adj. 刚开始的 动词begin的现在分词" - ], - "id": "oOBjDc", - "checked": false - }, - { - "name": "guide", - "trans": [ - "vt.引路; 指导; 操纵; 影响 n.指导者; 向导; 导游; 有指导意义的事物" - ], - "id": "I7n9_w", - "checked": false - }, - { - "name": "tree", - "trans": [ - "n. 树" - ], - "id": "8XCC5k", - "checked": false - }, - { - "name": "environment", - "trans": [ - "n. 环境,外界" - ], - "id": "5b75FD", - "checked": false - }, - { - "name": "but", - "trans": [ - "adv. 仅仅,只 conj. 但是 prep. 除...以外 pron. 只有" - ], - "id": "nYaEU_", - "checked": false - }, - { - "name": "device", - "trans": [ - "n. 装置, 设计, 策略, 设备" - ], - "id": "ezhWrZ", - "checked": false - }, - { - "name": "highlight", - "trans": [ - "n. 加亮区,精彩部分, 最重要的细节或事件, 闪光点 vt. 加亮,强调, 使...显得重要, 照亮 [计算机] 醒目" - ], - "id": "lto75g", - "checked": false - }, - { - "name": "call", - "trans": [ - "v.呼唤,喊叫; 召唤,叫来,召集; 下令,命令; 打电话给 n.喊叫,大声喊; 电话联络; 必要,理由; 要求" - ], - "id": "9Ejajk", - "checked": false - }, - { - "name": "continue", - "trans": [ - "vt. &vi. 继续, 连续, 维持" - ], - "id": "dmSTfS", - "checked": false - }, - { - "name": "indicate", - "trans": [ - "v.指明, 表明, 显示, 象征, 指示" - ], - "id": "-iYxKk", - "checked": false - }, - { - "name": "until", - "trans": [ - "prep. 直到...为止 conj. 直到...时才..." - ], - "id": "iEDupn", - "checked": false - }, - { - "name": "begin", - "trans": [ - "vt.& vi.开始; 着手; 创始; 创办 vi.(从…)开始; 起始; 起初是; 开始讲话" - ], - "id": "twZwqc", - "checked": false - }, - { - "name": "place", - "trans": [ - "n. 地方,职位,获奖的名次 vt. 放置,任命,安排 vi. 获得名次" - ], - "id": "WWgBTi", - "checked": false - }, - { - "name": "rename", - "trans": [ - "v. 重新命名, 改名 n. [计算机]DOS命令" - ], - "id": "g2Q_Fx", - "checked": false - }, - { - "name": "swap", - "trans": [ - "n. 交换 vt. &vi. 交换,用...作交易" - ], - "id": "_oRNBJ", - "checked": false - }, - { - "name": "work", - "trans": [ - "n. 工作,作用,成果,作品,善行,工艺,奏效,建筑工程,工厂,(机械)活动部件 adj. 工作的 vi. 创造, 实现, 有工作, 起作用, 操作, 正常运转, 成功, 产生影响, 逐渐进行, 处理 vt. 造成, 产生, 使运转, 锻造, 奋力达到, 利用" - ], - "id": "feXOsk", - "checked": false - }, - { - "name": "remain", - "trans": [ - "v. 保持, 依然, 剩余, 留下, 逗留 n. 遗迹, 剩余物, 残骸" - ], - "id": "LIkRv0", - "checked": false - }, - { - "name": "close", - "trans": [ - "n. 完结, 结论 adj. 靠近的,亲近的,几乎,密切的, 势均力敌的 vt. 关,结束,靠近 vi. 关,停业, 搏斗 adv. 紧挨着, 紧紧地" - ], - "id": "Kmd9xA", - "checked": false - }, - { - "name": "combination", - "trans": [ - "n. 结合,联合,联合体" - ], - "id": "2_XJSH", - "checked": false - }, - { - "name": "profile", - "trans": [ - "n.侧面,半面; 外形,轮廓; [航]翼型; 人物简介 vt.描…的轮廓; 给…画侧面图; 为(某人)写传略; [机]铣出…的轮廓" - ], - "id": "1w1SmH", - "checked": false - }, - { - "name": "unless", - "trans": [ - "conj. 除非 prep. 除...外" - ], - "id": "LKXmt5", - "checked": false - } - ], - [ - { - "name": "except", - "trans": [ - "vt. 除,除外 prep.&conj. 除了...之外,若不是,除非" - ], - "id": "qoCT2c", - "checked": false - }, - { - "name": "turn", - "trans": [ - "vt.& vi.使转动; 旋转; 使改变方向; 使不适 vt.使变酸; 使变换; 使变为 n.翻转; (路线或方向的)改变; 机会" - ], - "id": "qLa9ec", - "checked": false - }, - { - "name": "back", - "trans": [ - "adj. 后面的,偏远的, 过时的, 积欠的, 向后的 adv. 向后地 n. 后背, 背脊,后面, 靠背 vt. 后退,支持 vi. 后退" - ], - "id": "KSzDqE", - "checked": false - }, - { - "name": "sure", - "trans": [ - "adj. 确信, 必然的, 必定的 adv. 当然, 确实地, 无疑地" - ], - "id": "AsaaAU", - "checked": false - }, - { - "name": "section", - "trans": [ - "n. 零件,部分,章节,区域,部门,路段,断面 vt. 划分,切开 vi. 划分" - ], - "id": "A7d5yK", - "checked": false - }, - { - "name": "follow", - "trans": [ - "vt. 跟随,沿行,遵循,听得懂 vi. 跟着做,之后是 n. 跟随" - ], - "id": "0W1hpr", - "checked": false - }, - { - "name": "split", - "trans": [ - "n. 劈开, 裂片, 裂口 adj. 分散的 v. 分离, 分开, 劈开" - ], - "id": "wSYePp", - "checked": false - }, - { - "name": "need", - "trans": [ - "n. 需要,必须,缺乏 v. 需要,必需 conj. 需要" - ], - "id": "RrZIWX", - "checked": false - }, - { - "name": "access", - "trans": [ - "n.入口,出口; 接近,进入; 增长; 爆发 vt.接近,进入; 使用,接近,获取" - ], - "id": "rZYUbd", - "checked": false - }, - { - "name": "additional", - "trans": [ - "adj. 附加的, 另外的" - ], - "id": "YJBFk_", - "checked": false - }, - { - "name": "cancel", - "trans": [ - "n. 取消,撤消 vt. 取消,删去, 约分 vi. 抵消" - ], - "id": "3Wi7lH", - "checked": false - }, - { - "name": "document", - "trans": [ - "n. 文件,公文 vt. 记载,用文件等证明 [计算机] 文档" - ], - "id": "vTh9aE", - "checked": false - }, - { - "name": "case", - "trans": [ - "n. 情况,实情,箱,案例 vt. 装箱,踩点" - ], - "id": "mVGsFy", - "checked": false - }, - { - "name": "numeric", - "trans": [ - "adj. 数字的,数值的 n. 数,数字" - ], - "id": "ob78Eu", - "checked": false - }, - { - "name": "go", - "trans": [ - "vi. 去, 走, 变得, 进行, 放, 通往, 消失 vt. 走过, 称重 [计算机] 执行" - ], - "id": "DcCB2h", - "checked": false - }, - { - "name": "load", - "trans": [ - "n. 负荷, 重担, 装载量 v. 装载, 装填, 担负, 给(枪)装子弹 [计算机] 装入" - ], - "id": "vzHM5s", - "checked": false - }, - { - "name": "try", - "trans": [ - "n. 尝试,试验 vt. 审理,尝试,试验 vi. 尝试" - ], - "id": "JeBiYG", - "checked": false - }, - { - "name": "size", - "trans": [ - "n. 尺寸, 大小 vt. 按大小排列(或分类) adj. 一定大小的 vt. 用...填充(某物)" - ], - "id": "wa_WCt", - "checked": false - }, - { - "name": "entire", - "trans": [ - "adj. 全部的,完整的,同性质的,纯正的,全面的" - ], - "id": "v6gI-e", - "checked": false - }, - { - "name": "leave", - "trans": [ - "离开, 告假, 遗留, 听任" - ], - "id": "2SGmd8", - "checked": false - }, - { - "name": "history", - "trans": [ - "n. 历史" - ], - "id": "Ux1bav", - "checked": false - }, - { - "name": "second", - "trans": [ - "n. vt. 支持 n. 第二,秒 adj. 第二的,次等的,另一个的" - ], - "id": "3tRDem", - "checked": false - }, - { - "name": "reflow", - "trans": [ - "vi. 回流" - ], - "id": "wdIPFk", - "checked": false - }, - { - "name": "output", - "trans": [ - "n. 产量,输出,输出功率,输出端 vt. 输出(信息等)" - ], - "id": "rr1OWW", - "checked": false - }, - { - "name": "out", - "trans": [ - "vt. adj. 外面的,向外的,落伍的,不做考虑的 adv. 向外,离岸,外出,出局,出去,用尽,完成,出现,结束 vt. 释放出,揭露 vi. 揭发 prep. 向外,通过 n. 外面,在野者,下台者,出局的一击" - ], - "id": "JPh6St", - "checked": false - }, - { - "name": "both", - "trans": [ - "adj.二者,两者都 pron.二者 adv.二者,二者都 conj.不仅…而且…,…和…都" - ], - "id": "PqS256", - "checked": false - }, - { - "name": "install", - "trans": [ - "v. 安装,安置,使...就职 n.[计算机] 安装,DOS命令 : 装入结束且驻留软件" - ], - "id": "WBXtAe", - "checked": false - }, - { - "name": "source", - "trans": [ - "n. 来源" - ], - "id": "Ra3hEy", - "checked": false - }, - { - "name": "way", - "trans": [ - "n. 方法,道路,方向,作风,(某)方面,程度,状态 adv. 非常,很多,很远 adj. 与路线的中间点相关的,路线的中间点" - ], - "id": "mRyXbr", - "checked": false - }, - { - "name": "assign", - "trans": [ - "v. 分配,指派 n.[计算机] DOS 命令将驱动器符重指向第二个驱动器符" - ], - "id": "Grv5NN", - "checked": false - } - ], - [ - { - "name": "support", - "trans": [ - "n. 支持, 援助, 供养 vt. 支援, 帮助, 支持" - ], - "id": "LgteBr", - "checked": false - }, - { - "name": "specific", - "trans": [ - "adj. 特殊的, 明确的, 具有特效的 n. 特效药, 特性, 详情" - ], - "id": "huufUJ", - "checked": false - }, - { - "name": "join", - "trans": [ - "v. 参加, 结合, 联合, 加入" - ], - "id": "iH7gwr", - "checked": false - }, - { - "name": "expand", - "trans": [ - "vt. 增加,详述,扩展,使...膨胀 vi. 扩展,增加,详述" - ], - "id": "zdHVny", - "checked": false - }, - { - "name": "like", - "trans": [ - "adj. 相似的,同样的 vt. &vi. 喜欢,愿意,想 prep. 像,如同 n. 爱好,类似的人(或物) adv. 大概,和…一样 conj. 如同" - ], - "id": "ioCn_E", - "checked": false - }, - { - "name": "Diskette", - "trans": [ - "n. [计]软盘" - ], - "id": "3_lqPJ", - "checked": false - }, - { - "name": "skip", - "trans": [ - "n. 跳跃,跳读 vt. &vi. 跳越,蹦跳,略过,跳过" - ], - "id": "_UkYxl", - "checked": false - }, - { - "name": "application", - "trans": [ - "n.适用,应用,运用; 申请,请求,申请表格; 勤勉,用功; 敷用,敷用药" - ], - "id": "Bp5HGp", - "checked": false - }, - { - "name": "confirmation", - "trans": [ - "n. 确认, 证实, 基督教的坚信礼" - ], - "id": "ylAf00", - "checked": false - }, - { - "name": "whether", - "trans": [ - "conj.&adv. 是否" - ], - "id": "tOJ7Pb", - "checked": false - }, - { - "name": "hold", - "trans": [ - "vt.拿住,握住; 保留,保存; 扣留,拘押; 容纳 vi.拿住,握住; 同意,赞成; 保持不变; 有效 n.握住; 保留; 控制" - ], - "id": "q-rRpC", - "checked": false - }, - { - "name": "click", - "trans": [ - "n. 点击,滴答声,拍答声 vt. 点击,作滴答声,使...作拍答声 vi. 击打,完全符合,成功,以点击的方式选择" - ], - "id": "EGmb4c", - "checked": false - }, - { - "name": "write", - "trans": [ - "v. 写" - ], - "id": "a9XD4j", - "checked": false - }, - { - "name": "byte", - "trans": [ - "n. 字节, 8位元组" - ], - "id": "Bajhyr", - "checked": false - }, - { - "name": "abbreviate", - "trans": [ - "vt. 缩写,缩短,使...简略" - ], - "id": "Og_KTB", - "checked": false - }, - { - "name": "show", - "trans": [ - "n. 显示,表现,表演,事情 vt. &vi. 表示,显现,展现,指示" - ], - "id": "g31VuF", - "checked": false - }, - { - "name": "otherwise", - "trans": [ - "adv. 否则,不同地,在不同方面 pron. 其他 adj. 不同的" - ], - "id": "EqpOIp", - "checked": false - }, - { - "name": "working", - "trans": [ - "adj. 工人的, 劳动的" - ], - "id": "ixakFE", - "checked": false - }, - { - "name": "delimiter", - "trans": [ - "n. 定界符, 分隔符" - ], - "id": "6KN18F", - "checked": false - }, - { - "name": "location", - "trans": [ - "n. 地点,位置" - ], - "id": "WBUrRT", - "checked": false - }, - { - "name": "perform", - "trans": [ - "v. 执行, 表演, 做" - ], - "id": "rTZBWb", - "checked": false - }, - { - "name": "graphic", - "trans": [ - "adj. 生动的,图表的 n. 图表" - ], - "id": "21HHkg", - "checked": false - }, - { - "name": "read", - "trans": [ - "vt.& vi.阅读,朗读; 显示; 研究; 看得懂 vt.显示; 阅读; 读懂,理解 n.阅读; 读物; 读书; 里德(人名) adj.被朗读的; 博识的; 博览的; 有学问的" - ], - "id": "7Ao_IT", - "checked": false - }, - { - "name": "confirm", - "trans": [ - "v. 确定, 批准, 证实" - ], - "id": "tVKv5G", - "checked": false - }, - { - "name": "sort", - "trans": [ - "n. 种类,样子,态度 v. 分类,整理,排序 n.[计算机] DOS命令 : 在字符型文件中进行数据排序, 或者将DOS命令的输出进行排序" - ], - "id": "qL7v7-", - "checked": false - }, - { - "name": "clause", - "trans": [ - "n. 分句, 从句, 条款, 款项" - ], - "id": "seo3Lu", - "checked": false - }, - { - "name": "once", - "trans": [ - "adv. 一次, 曾经 conj. 一旦 n. 一次 adj. 曾经的" - ], - "id": "qLP_dg", - "checked": false - }, - { - "name": "however", - "trans": [ - "adv. 然而 conj. 然而, 可是, 不过" - ], - "id": "e6HjQt", - "checked": false - }, - { - "name": "extend", - "trans": [ - "v. 扩充, 延伸, 伸展, 扩展" - ], - "id": "93ykQb", - "checked": false - }, - { - "name": "look", - "trans": [ - "n. 看, 神色, 样子, 脸色 vi. 看, 注意, 朝着, 好象, 显得 vt. 打量, 注视, 用眼神或脸色表示, 期待" - ], - "id": "dKlaOq", - "checked": false - } - ], - [ - { - "name": "now", - "trans": [ - "n. 现在,此刻 adj. 现存的, 目前的 adv. 现在,立刻 conj. 既然 abbr. =National Organization of Women 全国妇女组织" - ], - "id": "943en_", - "checked": false - }, - { - "name": "original", - "trans": [ - "adj. 最初的, 原始的; 有独创性的, 原版的 n. 原件, 原稿; 有独创性的人, 怪人" - ], - "id": "UJ9E9b", - "checked": false - }, - { - "name": "correspond", - "trans": [ - "vi. 符合,通信,相当" - ], - "id": "7IuF2K", - "checked": false - }, - { - "name": "property", - "trans": [ - "n. 财产; 性质; 道具" - ], - "id": "6QJ9Oq", - "checked": false - }, - { - "name": "several", - "trans": [ - "adj. 几个,各自的 pron. 若干" - ], - "id": "mFxsvf", - "checked": false - }, - { - "name": "learn", - "trans": [ - "vt. 学习,获悉 vi. 了解,习得" - ], - "id": "04kqxg", - "checked": false - }, - { - "name": "cause", - "trans": [ - "n. 原因;事业;目标 vt. 引起;使遭受" - ], - "id": "ZxM2Mv", - "checked": false - }, - { - "name": "bracket", - "trans": [ - "n. 支架, 括号, 档次 vt. 支撑, 放在括号内, 归入一类, 包含, 支持" - ], - "id": "dUWRyx", - "checked": false - }, - { - "name": "omit", - "trans": [ - "vt. 省略,疏忽,遗漏" - ], - "id": "0F_n3I", - "checked": false - }, - { - "name": "running", - "trans": [ - "n. 跑步;经营,管理 adj. 奔跑的;流动的;运转中的 adv. 连续地" - ], - "id": "7Ouago", - "checked": false - }, - { - "name": "edge", - "trans": [ - "n. 边,边缘,刀口 vt. 给...加上边,缓慢横过,使逐渐丧失 vi. 徐徐前进" - ], - "id": "6TyNKE", - "checked": false - }, - { - "name": "form", - "trans": [ - "n. 形式, 形状, 表格 v. 形成, 组成, 建立" - ], - "id": "x9Taye", - "checked": false - }, - { - "name": "instruction", - "trans": [ - "n. 说明,须知,指令,教学" - ], - "id": "wy4LJo", - "checked": false - }, - { - "name": "ASCII", - "trans": [ - "American Standard Code for Information Interchange,美国信息互换标准代码" - ], - "id": "jIZLxU", - "checked": false - }, - { - "name": "below", - "trans": [ - "adv.在下面,到下面 prep.(表示位置)在…下面; (表示状态)在…掩饰之下; (表示比较)不及; 低于" - ], - "id": "zxwqKl", - "checked": false - }, - { - "name": "standard", - "trans": [ - "n.标准,规格; 旗,军旗; 度量衡标准; 直立支柱 adj.标准的,合格的; 普遍的,一般的; 公认为优秀的" - ], - "id": "YpVTlo", - "checked": false - }, - { - "name": "occurrence", - "trans": [ - "n. 发生,事件,发现" - ], - "id": "Fas9Lv", - "checked": false - }, - { - "name": "lock", - "trans": [ - "n.锁; 水闸,船闸; (机器部件等的)锁定; 一把,一撮 vt.锁上; 锁好,关好; 使固定; 隐藏 vi.卡住,不动; 纠结; 僵硬不动" - ], - "id": "dUkKTM", - "checked": false - }, - { - "name": "append", - "trans": [ - "v. 附加,添加,悬挂 n.[计算机] DOS 命令建立数据文件的子目录搜索路经" - ], - "id": "Qlu5mS", - "checked": false - }, - { - "name": "destination", - "trans": [ - "n. 目的地,终点,景点" - ], - "id": "5VqwjE", - "checked": false - }, - { - "name": "password", - "trans": [ - "n. 口令,密码" - ], - "id": "Fj9PlD", - "checked": false - }, - { - "name": "point", - "trans": [ - "n. 点, 要点, 尖端,细节,目标 vt. &vi. 指出, 瞄准" - ], - "id": "_14qZg", - "checked": false - }, - { - "name": "variety", - "trans": [ - "n. 多样, 种类, 杂耍" - ], - "id": "VMcdCU", - "checked": false - }, - { - "name": "many", - "trans": [ - "n. 许多人,许多 adj. 许多的 pron. 许多人或物" - ], - "id": "OFfusm", - "checked": false - }, - { - "name": "buffer", - "trans": [ - "n. 缓冲,缓冲区 vt. 减轻,缓冲" - ], - "id": "vyfBGE", - "checked": false - }, - { - "name": "useful", - "trans": [ - "adj. 有用的" - ], - "id": "QlyYPT", - "checked": false - }, - { - "name": "object", - "trans": [ - "n. 物, 物体, 目标, 宾语 v. 反对,提出...作为反对的理由" - ], - "id": "j4zJAT", - "checked": false - }, - { - "name": "again", - "trans": [ - "adv. 又,再,另一方面" - ], - "id": "7msciG", - "checked": false - }, - { - "name": "carry", - "trans": [ - "n. 搬运, 射程, 投射, 联运 vt. 负载, 运输, 传送, 传播, 表达, 带有, 容纳, 承担, 怀孕, 延续, 推动, 赢得, 记录 vi. 负载, 被传达, 容许被运输, 被通过" - ], - "id": "tnugeE", - "checked": false - }, - { - "name": "update", - "trans": [ - "vt. &vi. 更新,补充最新资料 n. 更新" - ], - "id": "riZADJ", - "checked": false - } - ], - [ - { - "name": "moving", - "trans": [ - "vbl.移动" - ], - "id": "XWX47_", - "checked": false - }, - { - "name": "coprocessor", - "trans": [ - "协处理器" - ], - "id": "FkyCCO", - "checked": false - }, - { - "name": "overlay", - "trans": [ - "覆盖" - ], - "id": "dVzZjH", - "checked": false - }, - { - "name": "practice", - "trans": [ - "n. 练习, 实行, 习惯; 业务 vt. &vi 练习, 实习, 开业" - ], - "id": "vw5B8G", - "checked": false - }, - { - "name": "navigation", - "trans": [ - "n. 航行, 航海, 导航" - ], - "id": "yLsucM", - "checked": false - }, - { - "name": "automatically", - "trans": [ - "adj. 不经思索的 adv. 自动地" - ], - "id": "pQiPoq", - "checked": false - }, - { - "name": "total", - "trans": [ - "adj.总计的(金额等); 全部的; 完全的; 绝对的 n.总计,总数; 全体数量 vt.& vi.总计达,计算…的总数" - ], - "id": "p8yehW", - "checked": false - }, - { - "name": "previous", - "trans": [ - "adj. 在...之前, 先, 前, 以前的" - ], - "id": "1lTNzb", - "checked": false - }, - { - "name": "software", - "trans": [ - "n. 软件" - ], - "id": "xBKY3H", - "checked": false - }, - { - "name": "shortcut", - "trans": [ - "n. 捷径 v. 抄近路,走捷径" - ], - "id": "3aHYH4", - "checked": false - }, - { - "name": "long", - "trans": [ - "adj. 长的,很久的,冗长的 vi. 渴望,热望,极想 adv. 长期地,远地 n. 长时间,长音节" - ], - "id": "u4iddp", - "checked": false - }, - { - "name": "unique", - "trans": [ - "adj. 独一无二的, 独特的, 稀罕的" - ], - "id": "2pB3hK", - "checked": false - }, - { - "name": "part", - "trans": [ - "n. 部份,零件,角色,部位 vt. 分开,分离,分配 vi. 分离,离开 adv. 部份地 adj. 分离的" - ], - "id": "JZTj0i", - "checked": false - }, - { - "name": "internal", - "trans": [ - "adj. 国内的, 内在的,身体内部的" - ], - "id": "1lYmRO", - "checked": false - }, - { - "name": "fill", - "trans": [ - "vt. 装满,填充,弥漫,担任 n. 足量" - ], - "id": "zF8DcL", - "checked": false - }, - { - "name": "basic", - "trans": [ - "adj.基本的; [化学]碱性的; [地质学]基性的; 首要的 n.基础,基本; 基本原则,基本原理,基本规律; 要素; 基础训练" - ], - "id": "TSBCil", - "checked": false - }, - { - "name": "math", - "trans": [ - "n. 数学" - ], - "id": "MRIaOw", - "checked": false - }, - { - "name": "since", - "trans": [ - "adv. 后来 conj. 既然,因为,自从 prep. 自从" - ], - "id": "O9VnaJ", - "checked": false - }, - { - "name": "determine", - "trans": [ - "vt.& vi.(使)下决心,(使)做出决定 vt.决定,确定; 判定,判决; 使决定; 限定 vi.[主用于法律]了结,终止,结束" - ], - "id": "ZL8M_9", - "checked": false - }, - { - "name": "making", - "trans": [ - "n. 制成 动词make的现在分词" - ], - "id": "OlOAIm", - "checked": false - }, - { - "name": "center", - "trans": [ - "n. 中心, 中间, 主角, 中锋, 重点 vi. 居中, 聚焦于... vt. 使集中, 放在中央" - ], - "id": "_9hhkZ", - "checked": false - }, - { - "name": "already", - "trans": [ - "adv. 已经" - ], - "id": "cHJ88f", - "checked": false - }, - { - "name": "keyword", - "trans": [ - "n. 关键字" - ], - "id": "BbUnmI", - "checked": false - }, - { - "name": "action", - "trans": [ - "n. 起诉,行为,作用,情节,活动" - ], - "id": "VX4J9F", - "checked": false - }, - { - "name": "condition", - "trans": [ - "n. 情况, 条件 v. 以...为条件, 决定, 支配, 训练" - ], - "id": "bn31lS", - "checked": false - }, - { - "name": "quick", - "trans": [ - "adj.快的,急速的; 聪明的,凌厉的; 灵活的; 短时间做成的 adv.迅速地,快速地 n.(指甲下的)活肉; 感情的中枢,感觉最敏锐的地方; 要害,核心" - ], - "id": "jL26ls", - "checked": false - }, - { - "name": "give", - "trans": [ - "vt.& vi.给予; 赠送; 作出 vt.供给; 产生; 举办; (为购买某物或做某事而)支付 vi.(物体)塌下; 让步 n.伸展性,弹性" - ], - "id": "aQy9p3", - "checked": false - }, - { - "name": "large", - "trans": [ - "adj. 广泛的,大的,强烈的 adv. 普遍地, 大量地" - ], - "id": "CuCtEd", - "checked": false - }, - { - "name": "chapter", - "trans": [ - "n. 章,回,篇,牧师的例行会议,地方分会" - ], - "id": "NAyU1R", - "checked": false - }, - { - "name": "computer", - "trans": [ - "n. 计算机" - ], - "id": "AJntzr", - "checked": false - } - ], - [ - { - "name": "complete", - "trans": [ - "adj. 彻底的, 完整的, 已完成的 vt. 完成; 使圆满, 使完美" - ], - "id": "YVmXuY", - "checked": false - }, - { - "name": "past", - "trans": [ - "adj. 过去的 adv. 过 n. 过去 prep. 过,经过" - ], - "id": "x_Swa-", - "checked": false - }, - { - "name": "match", - "trans": [ - "n. 比赛, 火柴, 对手, 般配的人, 配偶 v. 使...相配, 与...竞争, 相配" - ], - "id": "P4Cf6X", - "checked": false - }, - { - "name": "recover", - "trans": [ - "vt.恢复; 重新获得; 找回; <正>恢复(适当的状态或位置) vi.恢复健康(体力、能力等) n.恢复开始时姿势" - ], - "id": "IpdJ4C", - "checked": false - }, - { - "name": "always", - "trans": [ - "adv. 总是" - ], - "id": "zeuMLx", - "checked": false - }, - { - "name": "require", - "trans": [ - "v. 需要, 要求" - ], - "id": "8Ha6ah", - "checked": false - }, - { - "name": "opening", - "trans": [ - "n. 开始, 口, 揭幕, 空缺的职务 vbl. 打开, 开放, 开始" - ], - "id": "ibVpk_", - "checked": false - }, - { - "name": "network", - "trans": [ - "n. 网络,系统,广播网 vt. 用网覆盖,联网 vi. 加入网络" - ], - "id": "OhDbez", - "checked": false - }, - { - "name": "sign", - "trans": [ - "n. 符号, 正负号, 手势, 迹象, 招牌 v. 签, 做手势, 做标记" - ], - "id": "Db7wKJ", - "checked": false - }, - { - "name": "release", - "trans": [ - "n. 释放, 让渡, 发行 vt. 释放, 让与, 准予发表, 发射" - ], - "id": "LpJ2zd", - "checked": false - }, - { - "name": "three", - "trans": [ - "num. 三 pron.&adj. 三(个,只...)" - ], - "id": "gUMV5S", - "checked": false - }, - { - "name": "recall", - "trans": [ - "vt. 召回;回想起,记起;取消 n. 召回;回忆;撤消" - ], - "id": "ala-QB", - "checked": false - }, - { - "name": "deletion", - "trans": [ - "n. 删除" - ], - "id": "oM0Dja", - "checked": false - }, - { - "name": "fixed", - "trans": [ - "adj. 固定的,不变的,准备好的 v. 修理,使...固定,决定 vbl. 修理,使...固定,决定 [计算机] 固定的" - ], - "id": "T7EsIF", - "checked": false - }, - { - "name": "amount", - "trans": [ - "n. 数量, 总额 vi. 总计, 等于" - ], - "id": "9ZCqLZ", - "checked": false - }, - { - "name": "alias", - "trans": [ - "n. 别名,化名 adv. 又被称为,另外地" - ], - "id": "HFIqZx", - "checked": false - }, - { - "name": "quote", - "trans": [ - "n. 引用 v. 引述, 举证, 报价" - ], - "id": "OJ9WP7", - "checked": false - }, - { - "name": "correct", - "trans": [ - "adj. 正确的 v. 改正,纠正 vt. 改正" - ], - "id": "onlXb5", - "checked": false - }, - { - "name": "else", - "trans": [ - "adj. 别的, 其他的 adv. 另外,否则" - ], - "id": "9wn7wT", - "checked": false - }, - { - "name": "maximum", - "trans": [ - "n. 极点, 最大量, 极大 adj. 最高的, 最大极限的" - ], - "id": "NlAQJT", - "checked": false - }, - { - "name": "under", - "trans": [ - "prep. 在...下,在...内,在...控制下,低于 adv. 在...下,在昏迷中,淹没地 adj. 下面的,从属的,少于的" - ], - "id": "h08Ezq", - "checked": false - }, - { - "name": "take", - "trans": [ - "vt.拿,取; 采取; 接受(礼物等); 耗费(时间等) vi.拿; 获得 n.镜头; 看法; 收入额; 场景" - ], - "id": "BGZCo5", - "checked": false - }, - { - "name": "element", - "trans": [ - "n. 成分,要素,元素,基本原理,(复数)恶劣天气" - ], - "id": "gKQ_LT", - "checked": false - }, - { - "name": "modification", - "trans": [ - "n. 修正, 修饰, 修改" - ], - "id": "59KP1g", - "checked": false - }, - { - "name": "input", - "trans": [ - "n. 输入" - ], - "id": "beKt0k", - "checked": false - }, - { - "name": "uppercase", - "trans": [ - "n. 大写字母 adj. 大写的 vt. 用大写字母排版或印刷" - ], - "id": "5pH1G8", - "checked": false - }, - { - "name": "plus", - "trans": [ - "prep.(表示运算)加; (表示包容)外加; [口语]和; (表示数目)在零(度)以上 n.加号; [数学]正量; 好处; 附加物 adj.加的; 正的; 附加的; 比所示数量多的" - ], - "id": "JRH8oW", - "checked": false - }, - { - "name": "found", - "trans": [ - "vt. 创立,建立;创办 v. 找到(find的过去分词)" - ], - "id": "vc3j9q", - "checked": false - }, - { - "name": "debug", - "trans": [ - "v.调试,驱除(某处的)害虫,排除障碍,纠正...的错误,寻出并拆除...内的窃听器" - ], - "id": "n52GJq", - "checked": false - }, - { - "name": "force", - "trans": [ - "n. 力量,武力,暴力,影响力 vt. 施暴,强迫,强夺,加压力 [计算机] 强制" - ], - "id": "Pbw-9E", - "checked": false - } - ], - [ - { - "name": "lowercase", - "trans": [ - "adj. 小写体的 vt. 用小写字母书写,用小写字母打字 n. 小写体,小写字母" - ], - "id": "D5BJrf", - "checked": false - }, - { - "name": "just", - "trans": [ - "adj. 公正的,公平的,恰当的 adv. 正好,恰好" - ], - "id": "jV_fno", - "checked": false - }, - { - "name": "undo", - "trans": [ - "v. 解开,松开,取消" - ], - "id": "dCO6g2", - "checked": false - }, - { - "name": "environ", - "trans": [ - "vt. 包围, 环绕" - ], - "id": "HpF8gG", - "checked": false - }, - { - "name": "why", - "trans": [ - "adv. 为什么 conj. …的理由, 为什么 int. 咳, 哎呀 pron. 为何, 为什么" - ], - "id": "x6ecgl", - "checked": false - }, - { - "name": "temporary", - "trans": [ - "adj. 暂时的,临时的 n. 临时工" - ], - "id": "_mxbwb", - "checked": false - }, - { - "name": "put", - "trans": [ - "vt. 放,安置, 使处于 vi. 提交, 记下" - ], - "id": "sxlcff", - "checked": false - }, - { - "name": "instead", - "trans": [ - "adv. 代替, 反而" - ], - "id": "MpdT1z", - "checked": false - }, - { - "name": "encounter", - "trans": [ - "n. 意外的相见,遭遇 vt. &vi. 遇到,偶然碰到,遭遇" - ], - "id": "8Knioj", - "checked": false - }, - { - "name": "across", - "trans": [ - "adv. 横过, 使...被理解(或接受) prep. 穿过, 横过" - ], - "id": "eEylYG", - "checked": false - }, - { - "name": "matching", - "trans": [ - "adj. 匹配的, 相称的 动词match的现在分词" - ], - "id": "9ilR5t", - "checked": false - }, - { - "name": "wildcard", - "trans": [ - "n.[计]通配符" - ], - "id": "sBVzc0", - "checked": false - }, - { - "name": "spill", - "trans": [ - "vt.& vi.溢出; 泼出; 涌出; 蜂拥而出 n.洒出; 泼出; 溢出;小塞子" - ], - "id": "Ro0xWq", - "checked": false - }, - { - "name": "level", - "trans": [ - "n. 水平,等级,标准,层次 adj. 平坦的,齐平的,稳定的,合理的,满满的 vt. 压平,使同等,瞄准,夷为平地,推翻, 指责 vi. 趋向平稳, 瞄准, 诚恳待人, 使平等" - ], - "id": "jpu-rx", - "checked": false - }, - { - "name": "browse", - "trans": [ - "vt. &vi. 浏览, 随意观看, 吃草 n. 浏览, 嫩叶" - ], - "id": "r7-Vaf", - "checked": false - }, - { - "name": "speech", - "trans": [ - "n. 演讲,对话,话语,语言" - ], - "id": "JbpS6t", - "checked": false - }, - { - "name": "occur", - "trans": [ - "vi.发生; 出现; 闪现" - ], - "id": "VV5gGj", - "checked": false - }, - { - "name": "memo", - "trans": [ - "n. 备忘录" - ], - "id": "cdBuUT", - "checked": false - }, - { - "name": "prior", - "trans": [ - "adj. 更重要的, 较早的, 在先的 adv. 居先 n. 小修道院院长; 大修道院副院长" - ], - "id": "FkaCyH", - "checked": false - }, - { - "name": "loaded", - "trans": [ - "adj. 有负载的(装着货的, 装有弹药的, 加重的) v. 装载" - ], - "id": "ymD4m2", - "checked": false - }, - { - "name": "length", - "trans": [ - "n. 长度,篇幅" - ], - "id": "QOVJ3c", - "checked": false - }, - { - "name": "round", - "trans": [ - "n. 圆,(某种圆形)交谊舞,常规活动,一局(轮) adj. 圆的,微胖的,完整的,坦率的,圆满完成的 adv. 环形地 vt. 弄圆,绕行,使...完全,使成为整数 vi. 变圆(胖),弯曲 prp. 围绕,遍及" - ], - "id": "k9T5jj", - "checked": false - }, - { - "name": "variant", - "trans": [ - "n. 变体 adj. 不同的" - ], - "id": "nT4zGA", - "checked": false - }, - { - "name": "floppy", - "trans": [ - "adj. 叭塌叭塌响的,懒散的,邋遢的" - ], - "id": "Jx1frC", - "checked": false - }, - { - "name": "machine", - "trans": [ - "n.机器,机械; 机械般的人; 核心 vt.用机器制造,用机器加工 vi.被机器切削" - ], - "id": "ceuqtD", - "checked": false - }, - { - "name": "square", - "trans": [ - "n. 正方形,街区,平方,广场 adj. 正方形的,正直的,公正的,结实的 vt. 使...成方形,调整,一致 vi. 符合 adv. 成直角,直接的,正方形地" - ], - "id": "VzaQM1", - "checked": false - }, - { - "name": "supply", - "trans": [ - "n. 补给,供给,供应,贮备 vt. 补给,供给,提供,提供足够以满足" - ], - "id": "s_E_aC", - "checked": false - }, - { - "name": "home", - "trans": [ - "adj. 家(乡)的 adv. 回家, 在家, 正确的方向 n. 家, 住所, 国内的, 养老院 vt. 提供住处 vi. 回家, 移向" - ], - "id": "t3QD19", - "checked": false - }, - { - "name": "normal", - "trans": [ - "adj. 正常的,正规的 n. 常态, 标准" - ], - "id": "JbVrvi", - "checked": false - }, - { - "name": "onto", - "trans": [ - "prep. 到...上" - ], - "id": "eOCGz5", - "checked": false - } - ], - [ - { - "name": "during", - "trans": [ - "prep. 在...期间" - ], - "id": "QtOMGO", - "checked": false - }, - { - "name": "module", - "trans": [ - "[计算机] 模块 n. 组件" - ], - "id": "Yjl35w", - "checked": false - }, - { - "name": "monochrome", - "trans": [ - "n. 单色画,单色画法 adj. 单色的,黑白的 [计算机] 单色的" - ], - "id": "nGu8fE", - "checked": false - }, - { - "name": "assistance", - "trans": [ - "n. 帮助, 援助" - ], - "id": "Oc0KNX", - "checked": false - }, - { - "name": "tell", - "trans": [ - "vt. 告诉,说,知道,认出,计数 vi. 讲述,告发,作证,产生效果" - ], - "id": "tnlVeP", - "checked": false - }, - { - "name": "library", - "trans": [ - "n. 图书馆, 藏书" - ], - "id": "banY4R", - "checked": false - }, - { - "name": "demonstration", - "trans": [ - "n. 示范,实证,表达,集会" - ], - "id": "VL7MJe", - "checked": false - }, - { - "name": "stack", - "trans": [ - "n. 堆叠,堆 vt. 堆积,成叠放在 vi. 堆成一堆" - ], - "id": "1SDyZi", - "checked": false - }, - { - "name": "even", - "trans": [ - "adj. 平坦的, 偶数的, 相等的 adv. 甚至, 恰好, 正当 v. 使平坦, 相等" - ], - "id": "pCp8-m", - "checked": false - }, - { - "name": "evaluate", - "trans": [ - "vt. 评估,评价" - ], - "id": "9TVp4P", - "checked": false - }, - { - "name": "times", - "trans": [ - "n. 时间,期限,次数,乘 vt. 为...安排时间,计时,定时,乘 [计算机] DOS命令 : 显示并允许改变系统时间 adj. 根据时间的, 时间上的" - ], - "id": "DZ4USr", - "checked": false - }, - { - "name": "previously", - "trans": [ - "adv. 以前(预先)" - ], - "id": "jDV9eN", - "checked": false - }, - { - "name": "directly", - "trans": [ - "adv. 直接地(立即,完全)" - ], - "id": "yqUpOM", - "checked": false - }, - { - "name": "logical", - "trans": [ - "adj. 符合逻辑的,逻辑上的,有推理能力的" - ], - "id": "-Bmddj", - "checked": false - }, - { - "name": "template", - "trans": [ - "n. 模板,样板" - ], - "id": "FyresN", - "checked": false - }, - { - "name": "calling", - "trans": [ - "n. 职业, 行业, 邀请 召集" - ], - "id": "z-WxcO", - "checked": false - }, - { - "name": "later", - "trans": [ - "adj. 更迟的,后面的 adv. 稍后,后来, 迟到地" - ], - "id": "PcNDdq", - "checked": false - }, - { - "name": "driver", - "trans": [ - "n. 驾驶员, 司机" - ], - "id": "Yv-78F", - "checked": false - }, - { - "name": "therefore", - "trans": [ - "adv. 因此, 所以" - ], - "id": "EeTZUF", - "checked": false - }, - { - "name": "saving", - "trans": [ - "n. n. 节约,挽救 (复数)savings:储蓄金,存款" - ], - "id": "nI3v5V", - "checked": false - }, - { - "name": "detail", - "trans": [ - "n. 细节,详情,部分,分派 vt. 详述,选派,用小元素装饰 vi. 画细节" - ], - "id": "hKj2vB", - "checked": false - }, - { - "name": "linker", - "trans": [ - "[计] (目标代码)连接器" - ], - "id": "dvrNJg", - "checked": false - }, - { - "name": "loop", - "trans": [ - "n. 环,圈,弯曲部份,回路 vt. 使...成环,以圈结,以环连结 vi. 形成环,环形地行动" - ], - "id": "w95uu1", - "checked": false - }, - { - "name": "process", - "trans": [ - "n.过程; 工序; 做事方法; 工艺流程 vt.加工; 处理; 审阅; 审核 vi.列队行进 adj.经过特殊加工(或处理)的" - ], - "id": "hXfEOj", - "checked": false - }, - { - "name": "scheme", - "trans": [ - "n. 方案, 计划, 阴谋 v. 计画, 设计, 体系, 结构, 图谋" - ], - "id": "OV4ohS", - "checked": false - }, - { - "name": "every", - "trans": [ - "adj. 每,每个,每隔...的" - ], - "id": "kKOdeA", - "checked": false - }, - { - "name": "refer", - "trans": [ - "vt. 把…提交; 把...归因, 归类为 vi. 谈及, 咨询, 参考" - ], - "id": "RCIQoq", - "checked": false - }, - { - "name": "possible", - "trans": [ - "adj. 可能的" - ], - "id": "zIgciz", - "checked": false - }, - { - "name": "above", - "trans": [ - "adj. 上面的 adv. 在上面, 超过 n. 上面的东西 prep. 在...上面, 超过" - ], - "id": "bBI9pD", - "checked": false - }, - { - "name": "overview", - "trans": [ - "n. 概观(况),总结 [计算机] 概貌" - ], - "id": "urlEzt", - "checked": false - } - ], - [ - { - "name": "result", - "trans": [ - "n. 结果,成绩,答案 v. 产生,起于,致使" - ], - "id": "SGNsoB", - "checked": false - }, - { - "name": "syntax", - "trans": [ - "n. 句法" - ], - "id": "fRU84M", - "checked": false - }, - { - "name": "abbreviation", - "trans": [ - "n. 缩写" - ], - "id": "iysWRe", - "checked": false - }, - { - "name": "BIOS", - "trans": [ - "abbr. (=Basic Input Output System)基本输入输出系统" - ], - "id": "AM-Ckf", - "checked": false - }, - { - "name": "hidden", - "trans": [ - "adj. 隐藏的, 秘密的 vbl. 藏着, 隐藏, 躲藏 [计算机] 隐藏的" - ], - "id": "UXXb7a", - "checked": false - }, - { - "name": "null", - "trans": [ - "adj. 无效力的,无效的,无价值的 n. 零 [计算机] 空 vt. 使无效" - ], - "id": "__stDO", - "checked": false - }, - { - "name": "send", - "trans": [ - "vt. 送给,传,寄,发射 vi. 放送 n. 波浪的推力" - ], - "id": "5YI_Tw", - "checked": false - }, - { - "name": "private", - "trans": [ - "adj. 私人的,隐蔽的 n. 士兵,列兵" - ], - "id": "p2EsZ3", - "checked": false - }, - { - "name": "hard", - "trans": [ - "adj. 坚硬的;艰难的,苛刻的 adv. 努力地,猛烈地,坚定地" - ], - "id": "MfZWKx", - "checked": false - }, - { - "name": "hardware", - "trans": [ - "n. 五金器具 n. (计算机) 硬件" - ], - "id": "YI0VD3", - "checked": false - }, - { - "name": "say", - "trans": [ - "vt. 说,讲,表达,假设,,指示 vi. 说 n. 发言权 adv. 大约" - ], - "id": "sJ4dFE", - "checked": false - }, - { - "name": "equal", - "trans": [ - "adj. 相等的,平等的,胜任的 n. 对手,匹敌,同辈 vt. 等于,比得上" - ], - "id": "DT8lrf", - "checked": false - }, - { - "name": "pack", - "trans": [ - "n. 包裹,一群,一副,一帮,一群 vt. 包装,捆扎,塞满, 收拾行李, 佩戴 vi. 包装,(用某物)保存,保藏 ,塞进" - ], - "id": "oaSI4F", - "checked": false - }, - { - "name": "minus", - "trans": [ - "adj. 负的,减的 n. 减号,负数,缺点 prep. 减去" - ], - "id": "Hh2kNd", - "checked": false - }, - { - "name": "alternate", - "trans": [ - "adj. 交替的, 轮流的, 间隔的 vt. &vi. 交替, 轮流" - ], - "id": "CYzuza", - "checked": false - }, - { - "name": "collapse", - "trans": [ - "n. 崩溃,倒塌,暴跌 vi. 倒塌,崩溃,瓦解,折叠 vt. 倒塌,缩减" - ], - "id": "nv12lc", - "checked": false - }, - { - "name": "linux", - "trans": [ - "一种可免费使用的类UNIX操作系统" - ], - "id": "KDTdE-", - "checked": false - }, - { - "name": "corner", - "trans": [ - "n.角落,角; 拐角; 困境; [商]囤积 vi.驾车转弯; 聚于角落 vt.垄断; 逼入困境 adj.位于角落的" - ], - "id": "gePFc8", - "checked": false - }, - { - "name": "present", - "trans": [ - "n. 礼物, 现在 adj. 当面的, 出席的, 现在的 v. 赠送, 提出, 呈现" - ], - "id": "tcn0ye", - "checked": false - }, - { - "name": "interpreter", - "trans": [ - "n. 译员,口译者,解释程序" - ], - "id": "WBSX4W", - "checked": false - }, - { - "name": "advance", - "trans": [ - "n. 前进,进步,预支 vt. 前进,增涨,预先 vi. 前进,提升 adj. 预先的,提前的" - ], - "id": "wn-PPY", - "checked": false - }, - { - "name": "forward", - "trans": [ - "adv.前进地; 向前; 至将来; 提前地 adj.向前方的; 迅速的; (社会、政治)进步的; 早熟的 vt.促进,助长; (按新地址)转寄; 发送 n.前锋" - ], - "id": "xbCrUe", - "checked": false - }, - { - "name": "fast", - "trans": [ - "adj.快的; 走得快; 感光快的; 紧的 adv.(比准确的时间或宣布的时间)快; 迅速地; 紧紧地; 彻底地 vi.禁食,(尤指)斋戒 n.禁食期,斋戒期; 断食,节食" - ], - "id": "4VqF5z", - "checked": false - }, - { - "name": "special", - "trans": [ - "n. 专辑,专车,特色菜,特价,特刊 adj. 特别的,专门的" - ], - "id": "N5YYGZ", - "checked": false - }, - { - "name": "slash", - "trans": [ - "vi. 大幅度削减 vt. 猛砍,尖锐抨击,大幅减少 n. 猛砍,斜线,长切口,衣衩" - ], - "id": "MLR9WN", - "checked": false - }, - { - "name": "utility", - "trans": [ - "n. 公共设施,效用,公用程序,实用品,实用 adj. 多效用的,多功能的" - ], - "id": "nJOs4S", - "checked": false - }, - { - "name": "regardless", - "trans": [ - "adj. 不注意的, 粗心的 adv. 不顾" - ], - "id": "BosCxq", - "checked": false - }, - { - "name": "disable", - "trans": [ - "v. 使...失去能力" - ], - "id": "drmSMq", - "checked": false - }, - { - "name": "compatible", - "trans": [ - "adj. 能共处的,可并立的,适合的, 兼容的 n. 兼容" - ], - "id": "hmzvyc", - "checked": false - }, - { - "name": "depend", - "trans": [ - "vi. 依靠,相信,指望" - ], - "id": "kWuC3h", - "checked": false - } - ], - [ - { - "name": "empty", - "trans": [ - "adj. 空的,空虚的,空腹的 n. 空物 vt. 使...空 vi. 变空,流入" - ], - "id": "zIbaKl", - "checked": false - }, - { - "name": "alphabetical", - "trans": [ - "adj. 按字母表顺序的" - ], - "id": "uqe6yW", - "checked": false - }, - { - "name": "branch", - "trans": [ - "n. 分支,树枝 vt &vi. 分支, 分岔" - ], - "id": "_f1DYM", - "checked": false - }, - { - "name": "resume", - "trans": [ - "v. 再继续, 重新开始 n. 简历, 履历; 摘要" - ], - "id": "RlgwlX", - "checked": false - }, - { - "name": "multiple", - "trans": [ - "adj. 许多,多种多样的 n. 倍数,并联" - ], - "id": "-h1p2N", - "checked": false - }, - { - "name": "monitor", - "trans": [ - "n. 监督器, 班长, 监听员, [计算机]显示器, 监视器 v. 监视, 监听, 监督" - ], - "id": "rleRxR", - "checked": false - }, - { - "name": "configuration", - "trans": [ - "n. 结构,布局,形态,格式塔心理完形 [计算机] 配置" - ], - "id": "xjmchx", - "checked": false - }, - { - "name": "replacement", - "trans": [ - "n. 交换,更换,代替者" - ], - "id": "YkO1ye", - "checked": false - }, - { - "name": "required", - "trans": [ - "adj. 必需的" - ], - "id": "b7IuEw", - "checked": false - }, - { - "name": "table", - "trans": [ - "n. 桌子, 平地层, 石板, 表格 vt. 搁置, 嵌合, 制表 adj. 桌子的" - ], - "id": "9CQeL1", - "checked": false - }, - { - "name": "loss", - "trans": [ - "n. 丧失, 损耗, 亏损" - ], - "id": "6Y58QF", - "checked": false - }, - { - "name": "exact", - "trans": [ - "adj. 精确的 vt. 强求,要求,索取" - ], - "id": "TU1aZw", - "checked": false - }, - { - "name": "aboveboard", - "trans": [ - "adv. 光明正大地, 率直地 adj. 光明正大的, 率直的" - ], - "id": "NnCeCB", - "checked": false - }, - { - "name": "activate", - "trans": [ - "v. 刺激,使...活动,创设" - ], - "id": "IL9q7N", - "checked": false - }, - { - "name": "around", - "trans": [ - "adj. 大约, 在现存范围内 adv. 大约,到处,在周围 prep. 在...附近, 到处" - ], - "id": "TPexv5", - "checked": false - }, - { - "name": "slow", - "trans": [ - "adj. 慢的 adv. 慢慢地 vt.& vi. 放慢,减速" - ], - "id": "dT8aFR", - "checked": false - }, - { - "name": "floating", - "trans": [ - "adj.浮动的,流动性的,不固定的 动词float的现在分词形式" - ], - "id": "utinEo", - "checked": false - }, - { - "name": "refresh", - "trans": [ - "vt.& vi. 使...生气蓬勃,提起精神,恢复精神" - ], - "id": "H9KUnn", - "checked": false - }, - { - "name": "stop", - "trans": [ - "n. 停止,车站,滞留,阻挡 vt. 停止,制止,塞住 vi. 停止,停留,结束" - ], - "id": "p7beb1", - "checked": false - }, - { - "name": "pass", - "trans": [ - "vt.& vi.走过; 通过; 批准; 度过 vt.传球; 及格; 发生; 不要 n.通道; 通行证; 关口; 越过" - ], - "id": "XikViR", - "checked": false - }, - { - "name": "public", - "trans": [ - "adj. 公开的,众所周知的,公众的 n. 公共场合,公众,同好者" - ], - "id": "fInto8", - "checked": false - }, - { - "name": "eject", - "trans": [ - "vt.喷出; 驱逐; 强制离开 vi.弹射出" - ], - "id": "4Y10bH", - "checked": false - }, - { - "name": "ignore", - "trans": [ - "vt. 不顾,不理,忽视" - ], - "id": "UXD-1T", - "checked": false - }, - { - "name": "share", - "trans": [ - "n. 部份,股份,分担,犁头 vt. 分享,共有,分配 vi. 分享" - ], - "id": "BaID4k", - "checked": false - }, - { - "name": "sequence", - "trans": [ - "n. 序列, 一系列, 顺序, 一组镜头 vt. 安排顺序" - ], - "id": "PDzHUt", - "checked": false - }, - { - "name": "consist", - "trans": [ - "n. 组成 vi. 组成,存在,一致" - ], - "id": "8_2rB0", - "checked": false - }, - { - "name": "step", - "trans": [ - "n. 步骤,步伐,踏级 vt. 踏,以步测量" - ], - "id": "97Gulj", - "checked": false - }, - { - "name": "double", - "trans": [ - "n. 两倍,复制品,替身,双重角色的演员,反转,双人房 adj. 两倍的,双重的,骗人的,加量的 adv. 两倍地,双人地,翻来覆去地,对折地 vt. 使加倍,对折,握紧,做替身 vi. 加倍,转身,兼任,替代演出" - ], - "id": "SJLl_3", - "checked": false - }, - { - "name": "come", - "trans": [ - "vt. 接近,扮演 vi. 来,发生,达到,进入" - ], - "id": "7iooth", - "checked": false - }, - { - "name": "lower", - "trans": [ - "adj. 低的, 下级的, 下层的 vt. 降低, 跌落, 减弱, 贬低 vi. 皱眉, 降低, 阴沉, 变少 n. 皱眉, 下级, 阴沉的样子, 前兆" - ], - "id": "53Ith7", - "checked": false - } - ], - [ - { - "name": "describe", - "trans": [ - "vt. 描述, 画(尤指几何图形)" - ], - "id": "jwC4y2", - "checked": false - }, - { - "name": "count", - "trans": [ - "v. 计算, 视为, 依赖 n. 计数" - ], - "id": "VxHchb", - "checked": false - }, - { - "name": "pop", - "trans": [ - "n. 取出,砰然声,流行乐曲,流行文化艺术,(尤用作称呼)爸 adj. 流行的,热门的,通俗的 vt. 取出,发出爆裂声,突然伸出,击打,开火 vi. 发出砰的一声,(因激动、惊奇)张大 adv. 突然间地, 暴发地 POP abbr.=point of purchase POP abbr.=population 人口" - ], - "id": "okFlky", - "checked": false - }, - { - "name": "valid", - "trans": [ - "adj. 有确实根据的; 有效的; 正当的, 合法的" - ], - "id": "I90RWc", - "checked": false - }, - { - "name": "suspend", - "trans": [ - "v. 推迟,悬(浮),挂,暂停,取消 vi. 吊,悬浮 vt. 悬,挂,吊,暂停,中止" - ], - "id": "NQUqn8", - "checked": false - }, - { - "name": "enhance", - "trans": [ - "vt. 提高,加强,增加" - ], - "id": "LGxtZN", - "checked": false - }, - { - "name": "separate", - "trans": [ - "n. 分开, 抽印本 adj. 分开的, 各自的, 单独的 v. 分开, 隔开, 分居" - ], - "id": "hTAz5d", - "checked": false - }, - { - "name": "echo", - "trans": [ - "n. 回声,回音,回波,反响,共鸣 vt. 发回声,回响, 重复, 仿效 vi. 回响, 回荡 n.[计算机] DOS命令 :禁止(或允许)批处理命令行显示屏幕上" - ], - "id": "FFvasa", - "checked": false - }, - { - "name": "necessary", - "trans": [ - "adj. 必需的,必要的,必然的 n. [pl.]必需品" - ], - "id": "xcf_mb", - "checked": false - }, - { - "name": "able", - "trans": [ - "adj. 能干的, 有能力的" - ], - "id": "5r3NUN", - "checked": false - }, - { - "name": "marking", - "trans": [ - "n. 印记, 作记号,打分 动词mark的现在分词" - ], - "id": "SnDfZI", - "checked": false - }, - { - "name": "ask", - "trans": [ - "vt. 询问, 请求,要求,开价 vi. 询问,恳求" - ], - "id": "bd7M5d", - "checked": false - }, - { - "name": "term", - "trans": [ - "n.学期; 条款; 术语; 期限 vt.把…称为; 把…叫做" - ], - "id": "6bVPNi", - "checked": false - }, - { - "name": "bring", - "trans": [ - "vt. 带来, 引起, 促使, 劝诱 vi. 产生" - ], - "id": "mSJd9s", - "checked": false - }, - { - "name": "warning", - "trans": [ - "n. 警告, 预告, 通知 vbl. 警告, 注意, 通知" - ], - "id": "PgLyZj", - "checked": false - }, - { - "name": "less", - "trans": [ - "adj. 更少的,更小的 adv. 更少地,更小地 n. 少量, 次要 prep. 减" - ], - "id": "XtD8i8", - "checked": false - }, - { - "name": "comment", - "trans": [ - "n. 注释, 评论; 闲话 v. 注释, 评论" - ], - "id": "maunTp", - "checked": false - }, - { - "name": "effect", - "trans": [ - "n. 结果, 影响, 效果; 要旨 vt. 招致, 引起; 实现, 达到" - ], - "id": "I9Fxab", - "checked": false - }, - { - "name": "expanding", - "trans": [ - "adj.展开的,扩大的" - ], - "id": "QwJEHJ", - "checked": false - }, - { - "name": "on-line", - "trans": [ - "adj.在线的,即时的" - ], - "id": "HwxoWC", - "checked": false - }, - { - "name": "reorder", - "trans": [ - "重新排序, 再定购" - ], - "id": "xjgKMB", - "checked": false - }, - { - "name": "direct", - "trans": [ - "adj. 笔直的,直接的,坦白的 vt. 指挥,命令,负责 vi. 指导,指出" - ], - "id": "io-jdv", - "checked": false - }, - { - "name": "enclose", - "trans": [ - "vt. 围绕, 圈起, 放入封套, 附上 [计算机] 括入" - ], - "id": "zSAMEQ", - "checked": false - }, - { - "name": "reset", - "trans": [ - "n. 重新设定, 重新组合 v. 重新设定, 重新放置, 重新组合" - ], - "id": "zFNPuC", - "checked": false - }, - { - "name": "various", - "trans": [ - "adj. 各种各样的" - ], - "id": "oHIiAk", - "checked": false - }, - { - "name": "paper", - "trans": [ - "n. 纸,文件,论文,报纸,票据 vt. 用纸包,供纸,仓促完成 vi. 贴壁纸 adj.纸制的,文书的,理论上的" - ], - "id": "anKLNs", - "checked": false - }, - { - "name": "prevent", - "trans": [ - "v. 预防, 防止" - ], - "id": "Z4c_oS", - "checked": false - }, - { - "name": "side", - "trans": [ - "n. 旁边,侧,方面 adj. 旁的,侧的 vt. 支持,同意 vi. 支持" - ], - "id": "TkxPmQ", - "checked": false - }, - { - "name": "push", - "trans": [ - "n. 推,奋力,决心 vt. &vi. 推,挤,逼迫" - ], - "id": "HVKXEC", - "checked": false - }, - { - "name": "programming", - "trans": [ - "n. 程序设计, 编程 动词program的现在分词" - ], - "id": "oT_AAI", - "checked": false - } - ], - [ - { - "name": "upper", - "trans": [ - "adj. 上部的,地位较高的,上面的,北方的 n. 鞋帮,上牙,兴奋剂,令人愉快的经历" - ], - "id": "5FQ8FC", - "checked": false - }, - { - "name": "row", - "trans": [ - "n. 排,船游,吵闹 vt. 划船,成排 vi. 划船,吵架" - ], - "id": "Y5nrIV", - "checked": false - }, - { - "name": "pressed", - "trans": [ - "adj. 被压迫的,压缩的 动词press的过去式和过去分词" - ], - "id": "rWOjjy", - "checked": false - }, - { - "name": "temporarily", - "trans": [ - "adj. 临时的 adv. 暂时地,临时地" - ], - "id": "pW5TnZ", - "checked": false - }, - { - "name": "day", - "trans": [ - "n. 白天,一天" - ], - "id": "sBZy5U", - "checked": false - }, - { - "name": "repaint", - "trans": [ - "v.重漆,重画 v.重新绘制" - ], - "id": "euKh1F", - "checked": false - }, - { - "name": "redefine", - "trans": [ - "vt. 重新定义" - ], - "id": "moA8z3", - "checked": false - }, - { - "name": "relation", - "trans": [ - "n. 关系,家人,亲戚,叙述,陈述" - ], - "id": "mAOfLu", - "checked": false - }, - { - "name": "dimension", - "trans": [ - "n. 尺寸, 次元, 容积, 维度 n. 范围; 方面 vt. 标尺寸; 形成...尺寸" - ], - "id": "SaT-lT", - "checked": false - }, - { - "name": "boundary", - "trans": [ - "n. 分界线, 边界" - ], - "id": "GMe81h", - "checked": false - }, - { - "name": "zoom", - "trans": [ - "vi.嗡嗡作响; 急速上升 n.嗡嗡声; 隆隆声; (车辆等)疾驰的声音; 变焦 vt.使急速上升; 使猛增" - ], - "id": "lt4zHs", - "checked": false - }, - { - "name": "initialize", - "trans": [ - "vt. 初始化" - ], - "id": "0SVX-_", - "checked": false - }, - { - "name": "personal", - "trans": [ - "adj. 私人的,个人的 n. (报刊的)私人专栏" - ], - "id": "nnXEDd", - "checked": false - }, - { - "name": "true", - "trans": [ - "adj. 确切的,可靠的,真实的,正确的,正式的 adv. 笔直地,事实地 n. 真相,精确 vt. 使...平衡" - ], - "id": "H8w28W", - "checked": false - }, - { - "name": "wish", - "trans": [ - "n. 渴望,愿望,(复数)祝颂,命令 vt. &vi. 想要,希望" - ], - "id": "jbsUYi", - "checked": false - }, - { - "name": "font", - "trans": [ - "n.字体; 字形; 圣洗池(设于教堂中,常为石造)" - ], - "id": "kWEhlF", - "checked": false - }, - { - "name": "know", - "trans": [ - "vt. &vi.知道,了解,认识" - ], - "id": "y3KfJ7", - "checked": false - }, - { - "name": "convert", - "trans": [ - "v. 使转变, 使...改变信仰, 倒置 n. 皈依者, 改宗者" - ], - "id": "CL0xbh", - "checked": false - }, - { - "name": "global", - "trans": [ - "adj. 全球性的, 全局的" - ], - "id": "tDEjgC", - "checked": false - }, - { - "name": "installation", - "trans": [ - "n. 安装,装置, 军事驻地" - ], - "id": "oHXIhQ", - "checked": false - }, - { - "name": "invoke", - "trans": [ - "vt. 求助,用咒语召唤,请求,应用,引起 [计算机] 调用" - ], - "id": "oNs4OG", - "checked": false - }, - { - "name": "interactive", - "trans": [ - "adj. 相互作用的 [计算机] 交互的" - ], - "id": "KSFi2r", - "checked": false - }, - { - "name": "century", - "trans": [ - "n. 世纪,一百年,成百的东西" - ], - "id": "IMobou", - "checked": false - }, - { - "name": "literal", - "trans": [ - "adj. 逐字的, 字面上的, 文字的 [计算机] 文字的" - ], - "id": "hL9e63", - "checked": false - }, - { - "name": "rather", - "trans": [ - "adv. 宁可,宁愿,有些,相当,反而" - ], - "id": "BHpjyH", - "checked": false - }, - { - "name": "exclusive", - "trans": [ - "adj. 独占的, 唯一的, 排外的; 高价的, 时髦的 [计算机] 互斥的 n. 独家新闻, 独权" - ], - "id": "lqr2OI", - "checked": false - }, - { - "name": "marker", - "trans": [ - "n. 标记,做记号的工具,做记号的人,记分员" - ], - "id": "ONVphz", - "checked": false - }, - { - "name": "wait", - "trans": [ - "vt.& vi.等候; 等待; (尤指长期地)希望; 盼望 vi.准备妥; 在手边; 可得到; 可使用 vt.推迟,搁置,延缓" - ], - "id": "wtL39x", - "checked": false - }, - { - "name": "appropriate", - "trans": [ - "adj. 适当的, 相称的 vt. 拨出(款项); 占用" - ], - "id": "nCPBwL", - "checked": false - }, - { - "name": "fit", - "trans": [ - "adj. 适宜的,对的,准备好的 v. 适合,安装 n. 适宜,发作,一阵" - ], - "id": "3MAzSD", - "checked": false - } - ], - [ - { - "name": "adapter", - "trans": [ - "n. 适配器 n. 改编者" - ], - "id": "XfvGu5", - "checked": false - }, - { - "name": "filter", - "trans": [ - "n. 筛选,滤波器,过滤器,滤色镜 vt. &vi. 过滤,渗透 [计算机] 过滤" - ], - "id": "4ZzEL8", - "checked": false - }, - { - "name": "break", - "trans": [ - "n. 休息,中断,破裂 v. 打破,弄破,弄坏" - ], - "id": "8WVSb_", - "checked": false - }, - { - "name": "backward", - "trans": [ - "adj. 向后的 adv. 向后" - ], - "id": "A6-ie2", - "checked": false - }, - { - "name": "searching", - "trans": [ - "adj. 探寻的,洞察的 动词search的现在分词" - ], - "id": "YMYAZi", - "checked": false - }, - { - "name": "receive", - "trans": [ - "vt. 收到,接受,迎接,容纳,遭受,相信 vi. 接到,获得" - ], - "id": "PfIGoW", - "checked": false - }, - { - "name": "dual", - "trans": [ - "adj. 双重的, 成双的 n. 双数" - ], - "id": "4al0Iz", - "checked": false - }, - { - "name": "retry", - "trans": [ - "vt. 重试" - ], - "id": "cQ_eEQ", - "checked": false - }, - { - "name": "normally", - "trans": [ - "adv. 正常地,通常地" - ], - "id": "dC2xFt", - "checked": false - }, - { - "name": "exactly", - "trans": [ - "adj. 完全的 adv. 恰好地,正好地,正确地,精确地,正是" - ], - "id": "pVXkJB", - "checked": false - }, - { - "name": "immediately", - "trans": [ - "adv. 立即,直接地 conj. 一...(就)" - ], - "id": "b1WnSA", - "checked": false - }, - { - "name": "separated", - "trans": [ - "adj. 分开的 动词separate的过去式和过去分词" - ], - "id": "TY6vK7", - "checked": false - }, - { - "name": "high", - "trans": [ - "adj.高的,轻微变质的,高尚的,严重的,强的 adv. 高,好 n. 高地,天堂,高气压,高度,兴奋" - ], - "id": "ViWnc-", - "checked": false - }, - { - "name": "equivalent", - "trans": [ - "adj. 等价的, 相等的 n. 相等物" - ], - "id": "_Fz8Vv", - "checked": false - }, - { - "name": "light", - "trans": [ - "n. 光,光线,灯,启发,众所周知的,通光口,眼光 adj. 轻的,不重要的,容易的,明亮的,淡色的 vi. 点燃,着火,变亮,下马,落下,碰巧发生 vt. 点燃,照亮 adv. 轻地,轻便的" - ], - "id": "iplyqx", - "checked": false - }, - { - "name": "zero", - "trans": [ - "num.&n. 零" - ], - "id": "2sqiGy", - "checked": false - }, - { - "name": "storage", - "trans": [ - "n. 储存体, 储藏, 仓库, 保管费" - ], - "id": "nI6itU", - "checked": false - }, - { - "name": "width", - "trans": [ - "n. 宽度,广度,某一宽度的材料" - ], - "id": "qUkvRx", - "checked": false - }, - { - "name": "language", - "trans": [ - "n. 语言" - ], - "id": "raCGtf", - "checked": false - }, - { - "name": "startup", - "trans": [ - "n. 开动, 出发" - ], - "id": "aJwnP9", - "checked": false - }, - { - "name": "much", - "trans": [ - "adj. 许多的 adv. 很,非常 pron.&n. 许多" - ], - "id": "LpQB1F", - "checked": false - }, - { - "name": "per", - "trans": [ - "prep. 每,每一 adv.每人" - ], - "id": "Y0x1nt", - "checked": false - }, - { - "name": "over", - "trans": [ - "prep.(表示方向)越过; (部份或全部覆盖)在…上面; 由于; (表示论及)关于 adv.结束; 再; (倒)下; 从一边至另一边 adj.过去的; 外面的; 在上的; 上级的 n.额外; 剩余; 剩余(或多余)的量; 剩余物" - ], - "id": "GYPs42", - "checked": false - }, - { - "name": "mirror", - "trans": [ - "n. 镜子 vt. 反映,反射" - ], - "id": "F62Wsb", - "checked": false - }, - { - "name": "request", - "trans": [ - "n. 要求, 请求 vt. 请求, 要求" - ], - "id": "U6yW8y", - "checked": false - }, - { - "name": "keypad", - "trans": [ - "n. [计算机]小键盘" - ], - "id": "MqEjq2", - "checked": false - }, - { - "name": "keep", - "trans": [ - "vt.保持; 保留; 遵守; 阻止 vi.(食品)保持新; 保持健康 n.保持,保养; 供养,抚养; 生活,生计; 饲料;牧草" - ], - "id": "QBTvlx", - "checked": false - }, - { - "name": "resident", - "trans": [ - "adj. 居住的 n. 居民,旅客" - ], - "id": "PEq-7F", - "checked": false - }, - { - "name": "learning", - "trans": [ - "n. 学问, 学识, 学习 动词learn的现在分词" - ], - "id": "aCH3tk", - "checked": false - }, - { - "name": "talk", - "trans": [ - "n. 谈话,会谈,讲话, 闲话 vt. 说, 谈论, 商讨 vi. 说闲话, 招供, 开口说话, 闲聊" - ], - "id": "LDEXJc", - "checked": false - } - ], - [ - { - "name": "summary", - "trans": [ - "n. 摘要,概要 adj. 摘要的,简略的" - ], - "id": "UA-Fh3", - "checked": false - }, - { - "name": "well", - "trans": [ - "n. 井,源泉,楼梯井 adj. 健康的,良好的,适宜的 adv. 很好地,适当地 vi. 涌出 interj. 好吧,啊" - ], - "id": "qAU5dY", - "checked": false - }, - { - "name": "link", - "trans": [ - "n. 环节,联系, (链的)环, 圈 vt. &vi. 连接,联系" - ], - "id": "xmcCMJ", - "checked": false - }, - { - "name": "identify", - "trans": [ - "vt.识别,认出; 确定; 使参与; 把…看成一样 vi.确定; 认同" - ], - "id": "qRxOdJ", - "checked": false - }, - { - "name": "pertain", - "trans": [ - "vi. 从属, 关于" - ], - "id": "xbPrsq", - "checked": false - }, - { - "name": "expansion", - "trans": [ - "n. 扩大,膨胀,扩充" - ], - "id": "-fcZJx", - "checked": false - }, - { - "name": "incompatible", - "trans": [ - "adj. 不相容的, 不能并存的, 矛盾的" - ], - "id": "S7hn8i", - "checked": false - }, - { - "name": "blinking", - "trans": [ - "adj. 闪烁的 adj. 该死的, 讨厌的, 十足的 动词blink的现在分词" - ], - "id": "GYJSDS", - "checked": false - }, - { - "name": "month", - "trans": [ - "n. 月" - ], - "id": "bm37VK", - "checked": false - }, - { - "name": "precede", - "trans": [ - "vt. &vi. 在...之前,优于,较...优先" - ], - "id": "wb_9md", - "checked": false - }, - { - "name": "readily", - "trans": [ - "adv. 不迟疑地,迅速地,轻易地" - ], - "id": "sSvrvD", - "checked": false - }, - { - "name": "transportable", - "trans": [ - "便携式计算机, 可传送的" - ], - "id": "0tKMrf", - "checked": false - }, - { - "name": "routine", - "trans": [ - "n. 例行公事, 常规,无聊 adj. 常规的, 例行的,乏味的" - ], - "id": "otUrPU", - "checked": false - }, - { - "name": "ready", - "trans": [ - "adj. 准备好的,乐意的,情愿的,现成的 vt. 做好…的准备" - ], - "id": "NrWuvA", - "checked": false - }, - { - "name": "listing", - "trans": [ - "[计算机] 清单" - ], - "id": "k6cPks", - "checked": false - }, - { - "name": "newly", - "trans": [ - "adv. 崭新,新改,以新方法" - ], - "id": "jOtnJf", - "checked": false - }, - { - "name": "year", - "trans": [ - "n.年; 年纪; 一年的期间; 某年级的学生" - ], - "id": "4iL7CB", - "checked": false - }, - { - "name": "contact", - "trans": [ - "v. (与)联系, (与)接触 n. 接触, 联系; 联系人" - ], - "id": "DXB0bg", - "checked": false - }, - { - "name": "session", - "trans": [ - "n.开会,会议;(法庭的)开庭; 会期,学期; (进行某活动连续的)一段时间" - ], - "id": "dNMN5e", - "checked": false - }, - { - "name": "own", - "trans": [ - "adj. 自己的, 嫡亲的 pron. 自己的 vi. 承认 vt. 拥有, 承认" - ], - "id": "cdnuVZ", - "checked": false - }, - { - "name": "redraw", - "trans": [ - "v. 重划" - ], - "id": "dX5pGh", - "checked": false - }, - { - "name": "here", - "trans": [ - "adv.在这里; 这时; 在这一点上; (给某人东西或指出某物时说) n.这里 int.喂; 嗨" - ], - "id": "FbmCBd", - "checked": false - }, - { - "name": "manual", - "trans": [ - "adj. 手工的,体力的 n. 手册,指南,键盘" - ], - "id": "tDi7um", - "checked": false - }, - { - "name": "particular", - "trans": [ - "n. 个别项目, 详细说明 adj. 特别的, 独有的; 挑剔的; 详细的" - ], - "id": "B5PULl", - "checked": false - }, - { - "name": "rectangle", - "trans": [ - "n. 长方形,矩形" - ], - "id": "QbDVHW", - "checked": false - }, - { - "name": "additive", - "trans": [ - "n. 附加物(加法) adj. 加添的" - ], - "id": "1h_Wrc", - "checked": false - }, - { - "name": "similar", - "trans": [ - "adj. 相似的,类似的,相同,一样" - ], - "id": "MrYuXZ", - "checked": false - }, - { - "name": "assembly", - "trans": [ - "n. 集合, 集会, 装配" - ], - "id": "AAEtRK", - "checked": false - }, - { - "name": "copyright", - "trans": [ - "adj. 版权(的) n. 版权,著作权" - ], - "id": "9v6xZq", - "checked": false - }, - { - "name": "description", - "trans": [ - "n. 描写, 描述, 说明书, 作图 n. 类型" - ], - "id": "3b-9u7", - "checked": false - } - ], - [ - { - "name": "retrieve", - "trans": [ - "vt. 挽回,恢复,回忆,补偿 vi. 找回猎物 n. 取回,恢复" - ], - "id": "h59zfZ", - "checked": false - }, - { - "name": "mistake", - "trans": [ - "n. 错误,误会 vt. 弄错,误认 vi. 犯错" - ], - "id": "6Pk5hd", - "checked": false - }, - { - "name": "produce", - "trans": [ - "n. 产品, 农作物 vt. 生产, 提出, 引起, 分娩, 制片 vi. 生产, 制造" - ], - "id": "WzxlfP", - "checked": false - }, - { - "name": "ram", - "trans": [ - "abbr. 随机存取存储器(random access memory的缩写);随机访问内存(random-access memory的缩写) n. 公羊;撞锤;撞击装置;有撞角的军舰;(水压机的)[机] 活塞 v. 撞击;填塞;强迫通过或接受" - ], - "id": "mPLDY0", - "checked": false - }, - { - "name": "exception", - "trans": [ - "n. 除外,例外" - ], - "id": "nylhbu", - "checked": false - }, - { - "name": "digit", - "trans": [ - "n. 数字,位数,指头" - ], - "id": "Mg3xUR", - "checked": false - }, - { - "name": "reverse", - "trans": [ - "n. 相反; 背面; 失败, 挫折 adj. 反面的, 相反的, 颠倒的 v. 颠倒, 逆转, 倒退" - ], - "id": "tOc66G", - "checked": false - }, - { - "name": "minimum", - "trans": [ - "adj. 最低的, 最小的 n. 最小量, 最低限度" - ], - "id": "PCt5mD", - "checked": false - }, - { - "name": "enough", - "trans": [ - "adj. 足够的 adv. 足够地 n. 充足,足够 pron. 足够(的)" - ], - "id": "1HRpGx", - "checked": false - }, - { - "name": "although", - "trans": [ - "conj. 尽管, 虽然" - ], - "id": "Sz6enI", - "checked": false - }, - { - "name": "third", - "trans": [ - "adj. 第三(的) n. 三分之一 num. 第三" - ], - "id": "31Pt7o", - "checked": false - }, - { - "name": "red", - "trans": [ - "adj. 红色的 n. 红色" - ], - "id": "xQoVRW", - "checked": false - }, - { - "name": "along", - "trans": [ - "adv. 向前,(与某人)一道 prep. 沿着" - ], - "id": "l9De0R", - "checked": false - }, - { - "name": "test", - "trans": [ - "n. 测试, 试验 vt. 测试, 试验, 接受测验, 测得... adj. 测试的" - ], - "id": "roYWTl", - "checked": false - }, - { - "name": "small", - "trans": [ - "adj. 小的,少的 adv. 些许地 n. 狭小部分" - ], - "id": "--st5l", - "checked": false - }, - { - "name": "feed", - "trans": [ - "vt.喂养; 满足(欲望等); 向…提供; 供…作食物 vi.吃,以…为食; 流入,注入,进入(如油流入机器); [电子学]馈入 n.饲料(尤指粗饲料),施肥; 喂送; 草料" - ], - "id": "OWtSyV", - "checked": false - }, - { - "name": "company", - "trans": [ - "n. 同伴,客人,一群,连队,公司 vt. 陪伴 vi. 联合" - ], - "id": "Q2EVPF", - "checked": false - }, - { - "name": "movie", - "trans": [ - "n. 电影" - ], - "id": "YnHTaZ", - "checked": false - }, - { - "name": "compile", - "trans": [ - "v. 编译,编辑,编纂 [计算机] 编译" - ], - "id": "DUI23a", - "checked": false - }, - { - "name": "frequently", - "trans": [ - "adv. 经常地, 频繁地" - ], - "id": "aTrPb_", - "checked": false - }, - { - "name": "undefined", - "trans": [ - "adj. 未定义的" - ], - "id": "WcMd7k", - "checked": false - }, - { - "name": "state", - "trans": [ - "n. 州, 国, 情形 adj. 国家的, 州的, 正式的 vt. 说, 陈述, 声明, 规定" - ], - "id": "m2_k7R", - "checked": false - }, - { - "name": "accept", - "trans": [ - "vi.承认; 同意; 承兑 vt.接受; 承认; 承担; 承兑" - ], - "id": "ZCzvCY", - "checked": false - }, - { - "name": "intense", - "trans": [ - "adj. 非常的,强烈的,紧张的,热情的" - ], - "id": "2UwYkg", - "checked": false - }, - { - "name": "documentation", - "trans": [ - "n. 文件" - ], - "id": "ISKzs5", - "checked": false - }, - { - "name": "asterisk", - "trans": [ - "n. 星号(*)" - ], - "id": "yuhv8X", - "checked": false - }, - { - "name": "easily", - "trans": [ - "adj. 容易地,不费力地 adv. 容易地" - ], - "id": "FoJZEb", - "checked": false - }, - { - "name": "become", - "trans": [ - "vt. 变得 vi. 存在,变得,经历改变或发展" - ], - "id": "fUjM4d", - "checked": false - }, - { - "name": "address", - "trans": [ - "n. n.地址; 通信处; 演说; 称呼" - ], - "id": "8MyDeF", - "checked": false - }, - { - "name": "interface", - "trans": [ - "n. 界面,接触面 vt. 连接,作接口 vi. 连接" - ], - "id": "AdQTlj", - "checked": false - } - ], - [ - { - "name": "pause", - "trans": [ - "n. 暂停,中止,犹豫不决 vi. 停顿,中止 vt. 使停顿" - ], - "id": "2bh-0v", - "checked": false - }, - { - "name": "repeat", - "trans": [ - "n. 重复,反复 vt. 重复,复述 vi. 重复 adj. 重复的,反复的" - ], - "id": "itKfDU", - "checked": false - }, - { - "name": "restart", - "trans": [ - "重新启动" - ], - "id": "Gt7kw1", - "checked": false - }, - { - "name": "assumed", - "trans": [ - "adj.假定的, 假装的 动词assume的过去式和过去分词" - ], - "id": "IEnSq8", - "checked": false - }, - { - "name": "speed", - "trans": [ - "n. 速度,迅速,感光度,超速 vt. 加速,催促,促进 vi. 超速,加速,进展" - ], - "id": "G-SC1l", - "checked": false - }, - { - "name": "entry", - "trans": [ - "n. 进入,入口,登记,项目" - ], - "id": "kR7tEi", - "checked": false - }, - { - "name": "combine", - "trans": [ - "n. 集团,联合收割机 v. 化合,结合,联合 vi. 结合,联合 vt. 使结合,使联合" - ], - "id": "PepIUr", - "checked": false - }, - { - "name": "root", - "trans": [ - "n. 根,根源,祖先 vt. &vi. 生根,扎根,翻寻,起源于" - ], - "id": "x7nSTi", - "checked": false - }, - { - "name": "symbol", - "trans": [ - "n. 符号, 标志, 象征" - ], - "id": "ImDyVL", - "checked": false - }, - { - "name": "binary", - "trans": [ - "adj. 二进位的,二元的 n. 二进制,二元" - ], - "id": "hHWI0B", - "checked": false - }, - { - "name": "whenever", - "trans": [ - "adv. 无论何时 conj. 每当, 无论何时, 随时" - ], - "id": "EhczkX", - "checked": false - }, - { - "name": "reach", - "trans": [ - "n. 延伸,范围,河段 vt. 到达,伸出,延伸,取得联系 vi. 延伸" - ], - "id": "KwiDOm", - "checked": false - }, - { - "name": "caution", - "trans": [ - "n. 警告,戒备措施,慎重,吸引人眼球的物品或人 vt. 警告" - ], - "id": "1mUZyc", - "checked": false - }, - { - "name": "subtotal", - "trans": [ - "n. 小计 adj. 不完全的" - ], - "id": "DN8CzI", - "checked": false - }, - { - "name": "card", - "trans": [ - "n. 卡片,纸牌,名片,打牌,节目单 vt. 附上或提供卡片,印卡,在卡片上列出,检查资格" - ], - "id": "cWhKQw", - "checked": false - }, - { - "name": "general", - "trans": [ - "n. 一般,将军,大体 adj. 一般的,普遍的 v. 指挥,作...将军" - ], - "id": "2cSlUK", - "checked": false - }, - { - "name": "associated", - "trans": [ - "adj. 联合的,相关的" - ], - "id": "x9cCrk", - "checked": false - }, - { - "name": "transfer", - "trans": [ - "n. 迁移, 移动, 换车 v. 转移, 调转, 调任" - ], - "id": "xyVLe2", - "checked": false - }, - { - "name": "connect", - "trans": [ - "vt. 连接,联通,使有联系 vi. 连接,接通" - ], - "id": "7UT9iF", - "checked": false - }, - { - "name": "partition", - "trans": [ - "n. 分割,隔离物,隔墙 v. 区分,隔开,分割" - ], - "id": "J0i_6m", - "checked": false - }, - { - "name": "hexadecimal", - "trans": [ - "adj. 十六的, 十六进制的 n. 十六进制" - ], - "id": "RQXJxC", - "checked": false - }, - { - "name": "generate", - "trans": [ - "vt. 产生,发生,引起 [计算机] 产生" - ], - "id": "sdumXS", - "checked": false - }, - { - "name": "specification", - "trans": [ - "n. 规格,详述,详细说明书" - ], - "id": "tFNmVe", - "checked": false - }, - { - "name": "customize", - "trans": [ - "vt. 定制 [计算机] 用户化" - ], - "id": "csBlsj", - "checked": false - }, - { - "name": "far", - "trans": [ - "adv.&adj. 远的(地) n. 远处" - ], - "id": "KCtx2t", - "checked": false - }, - { - "name": "nest", - "trans": [ - "n. 巢, 窝 vt. 嵌入 vi. 筑巢" - ], - "id": "jywgcg", - "checked": false - }, - { - "name": "duplicate", - "trans": [ - "n. 副本,复制品 adj. 复制的,二重的 vt. 复制,重复 vi. 重复 [计算机] 复制" - ], - "id": "2Z67VG", - "checked": false - }, - { - "name": "compression", - "trans": [ - "n. 压缩, 压榨, 缩小" - ], - "id": "AyxzRg", - "checked": false - }, - { - "name": "unable", - "trans": [ - "adj. 不能的,不会的 v. 不能,不会" - ], - "id": "HYKzCZ", - "checked": false - }, - { - "name": "means", - "trans": [ - "n. 方法,手段,折中点,物质财富" - ], - "id": "xLNS2Y", - "checked": false - } - ], - [ - { - "name": "intensity", - "trans": [ - "n. 激烈,强度,强烈,剧烈" - ], - "id": "O6qcEt", - "checked": false - }, - { - "name": "reading", - "trans": [ - "adj. 阅读的 n. 阅读" - ], - "id": "uZDu3w", - "checked": false - }, - { - "name": "let", - "trans": [ - "vt. 让,容许,释放 vi. 出租,承包 n. 障碍,擦网球" - ], - "id": "pra5e5", - "checked": false - }, - { - "name": "compare", - "trans": [ - "vt.&vi. 比较,比喻,对照 n. 比较,对照" - ], - "id": "AqJ-W3", - "checked": false - }, - { - "name": "sector", - "trans": [ - "n. 扇形,扇区,部门,区域 vt. 分区" - ], - "id": "KBy-af", - "checked": false - }, - { - "name": "problem", - "trans": [ - "adj. 成问题的, 难对付的 n. 问题" - ], - "id": "w-y_RY", - "checked": false - }, - { - "name": "backspace", - "trans": [ - "vi. 按退格键 n. 退格键" - ], - "id": "xa7DS3", - "checked": false - }, - { - "name": "terminate", - "trans": [ - "adj. 有结尾的,有限的 vt. 结束,终止,满期 vi. 达到终点" - ], - "id": "ntGs2S", - "checked": false - }, - { - "name": "people", - "trans": [ - "n. 民族,人,人们,人民,家人 vt. 居住于" - ], - "id": "5yhMAl", - "checked": false - }, - { - "name": "short", - "trans": [ - "adj. 短的,矮的,短暂的 n. 短裤 adv. 短暂地;突然地" - ], - "id": "q0i0p9", - "checked": false - }, - { - "name": "drag", - "trans": [ - "n. 用来拖拉的东西,拖,拖累 vt. 拖累,拖拉(动) vi. 拖拉(动),缓慢地行走" - ], - "id": "yOHLjI", - "checked": false - }, - { - "name": "preview", - "trans": [ - "n. 预审,查阅,预习,预告 vt. 事先查看,查阅,预审,预习" - ], - "id": "c_tQiN", - "checked": false - }, - { - "name": "underscore", - "trans": [ - "vt. 划线于,强调,提供伴奏乐 n. 下划线,影片伴奏乐" - ], - "id": "zt_wLL", - "checked": false - }, - { - "name": "correctly", - "trans": [ - "adv.恰当地,正确地" - ], - "id": "-qmAYi", - "checked": false - }, - { - "name": "initially", - "trans": [ - "adv. 最初, 开头" - ], - "id": "doRsLy", - "checked": false - }, - { - "name": "reformat", - "trans": [ - "vt. 重定格式, 重新格式化" - ], - "id": "q33olC", - "checked": false - }, - { - "name": "inside", - "trans": [ - "adj. 里面的 adv. 在里面 n. 内部 prep. 在...里面" - ], - "id": "EGzuDX", - "checked": false - }, - { - "name": "integrate", - "trans": [ - "v. 整合, 使...成整体" - ], - "id": "DYrpF7", - "checked": false - }, - { - "name": "controlled", - "trans": [ - "adj. 受控制的, 受约束的 动词control的过去式和过去分词形式" - ], - "id": "IiuYTQ", - "checked": false - }, - { - "name": "period", - "trans": [ - "n. 学时, 课时; 一段时间, 时期, 周期; 句号" - ], - "id": "bv2hpq", - "checked": false - }, - { - "name": "huge", - "trans": [ - "adj. 巨大的,程度高的" - ], - "id": "sPk5vl", - "checked": false - }, - { - "name": "determined", - "trans": [ - "adj. 坚毅的,下定决心的" - ], - "id": "cI7ztp", - "checked": false - }, - { - "name": "trailing", - "trans": [ - "adj. 牵引的 n. 拖尾 动词trail的现在分词形式" - ], - "id": "a_CaLD", - "checked": false - }, - { - "name": "seek", - "trans": [ - "n. 找寻 v. 寻求,寻找,搜索" - ], - "id": "YBiZHD", - "checked": false - }, - { - "name": "introduction", - "trans": [ - "n. 介绍, 引进, 导论, 序言" - ], - "id": "CedttS", - "checked": false - }, - { - "name": "indent", - "trans": [ - "n. 契约, 订货单 v. 切割成锯齿状, 缩排, 定货 [计算机] 缩排, 缩进" - ], - "id": "59sB_V", - "checked": false - }, - { - "name": "base", - "trans": [ - "n. 基底,(支持、收入、力量等的)基础 vt. 以...作基础 adj. 卑鄙的;不道德的" - ], - "id": "AkAnhm", - "checked": false - }, - { - "name": "integer", - "trans": [ - "n. 完整的事物,整体,整数 [计算机] 整数" - ], - "id": "XXKR-M", - "checked": false - }, - { - "name": "attempt", - "trans": [ - "vt.试图; 尝试 n.进攻; 尝试,冲击" - ], - "id": "atiyca", - "checked": false - }, - { - "name": "twice", - "trans": [ - "adv. 两倍, 两次" - ], - "id": "zoS-_W", - "checked": false - } - ], - [ - { - "name": "formed", - "trans": [ - "adj. 成形的 动词form的过去式和过去分词" - ], - "id": "Lc8Dny", - "checked": false - }, - { - "name": "subscript", - "trans": [ - "n. 下标 adj. 写在下方的" - ], - "id": "_57XpL", - "checked": false - }, - { - "name": "tiny", - "trans": [ - "adj. 极小的,微小的" - ], - "id": "739I7O", - "checked": false - }, - { - "name": "model", - "trans": [ - "n. 模型, 模范, 模特儿 adj. 模范的, 作模型用的 v. 做模型, 塑造, 模仿" - ], - "id": "pyK3Vx", - "checked": false - }, - { - "name": "correction", - "trans": [ - "n. 订正, 改正, 改正的地方" - ], - "id": "PLPOsc", - "checked": false - }, - { - "name": "rating", - "trans": [ - "n. 等级,评定,收视率" - ], - "id": "fTiG3o", - "checked": false - }, - { - "name": "secondary", - "trans": [ - "adj. 中级的,中等的,次要的 n. 次要位置, 副手" - ], - "id": "M0pDi7", - "checked": false - }, - { - "name": "limit", - "trans": [ - "n.限制; 限量,限度; 界限 vt.限制,限定" - ], - "id": "N_h0As", - "checked": false - }, - { - "name": "sun", - "trans": [ - "n. 太阳,阳光,中心人物,像太阳般的东西 vt.& vi. 晒太阳" - ], - "id": "irQ768", - "checked": false - }, - { - "name": "translate", - "trans": [ - "vt. 翻译;转化;解释;转变为;调动 vi. 翻译" - ], - "id": "IuahEl", - "checked": false - }, - { - "name": "reason", - "trans": [ - "n. 理由,原因,理智,理性 vt. 说服,总结 vi. 规劝,下判断" - ], - "id": "bfFjre", - "checked": false - }, - { - "name": "colon", - "trans": [ - "n. 冒号, 结肠, 科朗(哥斯达黎加和萨尔瓦多的货币单位) (Colon)科隆(巴拿马港市)" - ], - "id": "YucB7B", - "checked": false - }, - { - "name": "avoid", - "trans": [ - "v. 避免 vt. 避免,逃避" - ], - "id": "1pJhoC", - "checked": false - }, - { - "name": "range", - "trans": [ - "n.范围; 射程; 类别; (山脉,房屋等的)排列 vi.搜索; 变化; 延伸; 漫游 vt.排列; (按一定位置或顺序)排序; 把…分类; 徘徊 adj.牧场的,放牧区的" - ], - "id": "7SLyoG", - "checked": false - }, - { - "name": "allocate", - "trans": [ - "v. 分派, 分配, 分配额" - ], - "id": "Ztn_xP", - "checked": false - }, - { - "name": "simply", - "trans": [ - "adv.&adj. 简单地,仅仅" - ], - "id": "NEdJl6", - "checked": false - }, - { - "name": "verify", - "trans": [ - "v. 查证,核实 n.[计算机] DOS命令 : 打开关闭在 DOS操作期间的写文件校验开关" - ], - "id": "Sc1N7R", - "checked": false - }, - { - "name": "manner", - "trans": [ - "n. 样子,礼貌,风格,方式" - ], - "id": "Beu67h", - "checked": false - }, - { - "name": "direction", - "trans": [ - "n. 方向,指导,用法说明,趋势" - ], - "id": "ERZ8Zs", - "checked": false - }, - { - "name": "portion", - "trans": [ - "n. 部分,份,命运 v. 将...分配,分配" - ], - "id": "8E_CW9", - "checked": false - }, - { - "name": "emulator", - "trans": [ - "n. 仿真器" - ], - "id": "QsjCNj", - "checked": false - }, - { - "name": "successful", - "trans": [ - "adj. 成功的,达到目的的" - ], - "id": "MuTcyQ", - "checked": false - }, - { - "name": "applied", - "trans": [ - "adj. 应用的 v. 应用, 适用 vbl. 应用" - ], - "id": "lJie89", - "checked": false - }, - { - "name": "sum", - "trans": [ - "n. 总数(计),金额,顶点,概略,一笔钱 vt. 总计,概括 vi. 总计" - ], - "id": "_cP55j", - "checked": false - }, - { - "name": "achieve", - "trans": [ - "vt. 完成,达到,实现 vi. 达到目的" - ], - "id": "pKuE-G", - "checked": false - }, - { - "name": "together", - "trans": [ - "adv. 一起,共同,相结合,同时地,协调地 adj. 头脑清楚的,镇定的" - ], - "id": "n04LeZ", - "checked": false - }, - { - "name": "affect", - "trans": [ - "vt. 影响, 作用, 感动" - ], - "id": "HCwu1p", - "checked": false - }, - { - "name": "delay", - "trans": [ - "n. 耽搁,迟滞 vt. 耽搁,延迟 vi. 耽搁" - ], - "id": "E9qUxG", - "checked": false - }, - { - "name": "free", - "trans": [ - "adj. 自由的,大方的,免费的 vt. 释放,解放 adv. 自由地,免费地" - ], - "id": "vYNv0d", - "checked": false - }, - { - "name": "properly", - "trans": [ - "adv. 适当地, 相当地, 当然地" - ], - "id": "cSjW4w", - "checked": false - } - ], - [ - { - "name": "kind", - "trans": [ - "adj. 仁慈的,友好的 n. 种类,本质" - ], - "id": "4O2dd4", - "checked": false - }, - { - "name": "splitting", - "trans": [ - "爆裂式的" - ], - "id": "WsdTFK", - "checked": false - }, - { - "name": "feature", - "trans": [ - "n. 特征, 容貌 vt. 以...为特色 vi. 起重要作用" - ], - "id": "pQxezp", - "checked": false - }, - { - "name": "console", - "trans": [ - "vt. 安慰,慰藉 n. 仪表盘,操控台,(游戏)平台" - ], - "id": "pDNVXm", - "checked": false - }, - { - "name": "operate", - "trans": [ - "vi. 操作, 运转 vt. 起作用, 动手术" - ], - "id": "acEaJI", - "checked": false - }, - { - "name": "kernel", - "trans": [ - "n. 核心, 中心, 精髓 [计算机] 核心" - ], - "id": "R_zzbp", - "checked": false - }, - { - "name": "easy", - "trans": [ - "adj. 容易的,安逸的,不费力的 adv. 慢慢地, 当心地" - ], - "id": "ub4itk", - "checked": false - }, - { - "name": "modifier", - "trans": [ - "n. 修正的人, 修饰语" - ], - "id": "dGKqFv", - "checked": false - }, - { - "name": "invalid", - "trans": [ - "adj. 无效的,伤残的 n. 病人,残疾者 vt. 失去健康" - ], - "id": "iot7KW", - "checked": false - }, - { - "name": "compiler", - "trans": [ - "n. 编辑者,[计算机]编译器, 编译程序" - ], - "id": "LsN82c", - "checked": false - }, - { - "name": "dot", - "trans": [ - "n. 小圆点,少量,小东西 vt. 作小点记号,点缀 vi. 作小点记号 [计算机] 点" - ], - "id": "hHCr4y", - "checked": false - }, - { - "name": "beep", - "trans": [ - "n. 哔哔声 vt. 产生(如号角)声音 vi. 吹号,发出哔哔声" - ], - "id": "UD0DTf", - "checked": false - }, - { - "name": "face", - "trans": [ - "n. 脸, 神情, 面子, 表面 vt. 面对, 朝 vi. 朝, 向" - ], - "id": "lX36a9", - "checked": false - }, - { - "name": "random", - "trans": [ - "n. 随意,任意 adj. 任意的,随便的,胡乱的 adv. 随机地" - ], - "id": "UPloML", - "checked": false - }, - { - "name": "facility", - "trans": [ - "n.设备; 容易; 能力; 灵巧" - ], - "id": "Cp80be", - "checked": false - }, - { - "name": "heading", - "trans": [ - "n. 标题,题目,航向 动词head的现在分词" - ], - "id": "FQ4WXF", - "checked": false - }, - { - "name": "asynchronous", - "trans": [ - "adj. 异步的" - ], - "id": "nzeFMr", - "checked": false - }, - { - "name": "series", - "trans": [ - "n. 系列,连续" - ], - "id": "x5ybbD", - "checked": false - }, - { - "name": "individual", - "trans": [ - "adj. 个别的; 独有的 n. 个人, 个体" - ], - "id": "xXvGh6", - "checked": false - }, - { - "name": "explain", - "trans": [ - "vt. &vi. 解释,说明" - ], - "id": "yPmkJL", - "checked": false - }, - { - "name": "paste", - "trans": [ - "n. 糊,浆糊,铅制玻璃 vt. 粘贴,覆盖,猛击" - ], - "id": "ocOS18", - "checked": false - }, - { - "name": "welcome", - "trans": [ - "vt.欢迎; 乐于接受 adj.受欢迎的; 令人愉悦的; 表示感谢的 n.欢迎,迎接" - ], - "id": "f8zc2-", - "checked": false - }, - { - "name": "six", - "trans": [ - "n.六;六个;六岁;六点 num.六;六个" - ], - "id": "NgYUUa", - "checked": false - }, - { - "name": "early", - "trans": [ - "adv.&adj. 早" - ], - "id": "WvmBnh", - "checked": false - }, - { - "name": "wrap", - "trans": [ - "vt.包; 缠绕; 用…包裹(或包扎、覆盖等); 掩护 n.膝毯,披肩,围巾,围脖,头巾,罩衫,外套,大衣; 包装纸; 〈俚〉机密 vi.缠绕,盘绕(通常与 over, around 等连用); 包上,裹上; 穿上(衣服等)" - ], - "id": "fEhYRL", - "checked": false - }, - { - "name": "blue", - "trans": [ - "adj. 蓝色的,沮丧的,忧郁的,(女人)有学问的 n. 蓝色 vt. 使...变蓝 vi. 变蓝" - ], - "id": "QhZ5FA", - "checked": false - }, - { - "name": "queue", - "trans": [ - "n. 行列,长队 v. 排队 vi. 排长队" - ], - "id": "KtfF0y", - "checked": false - }, - { - "name": "interrupt", - "trans": [ - "n. 中断 vt. 打断,妨碍 vi. 插嘴 [计算机] 中断" - ], - "id": "tfpHAz", - "checked": false - }, - { - "name": "respect", - "trans": [ - "n. 尊敬, 敬重; 关系, 方面 vt. 尊敬, 尊重; 关于, 涉及" - ], - "id": "d7eRqU", - "checked": false - }, - { - "name": "common", - "trans": [ - "adj. 共同的, 平常的, 普通的 n. 平民, 普通, 公地, 公园" - ], - "id": "0-6bwH", - "checked": false - } - ], - [ - { - "name": "hyphen", - "trans": [ - "n. 连字号 v. 以连字号连接" - ], - "id": "xq3oMQ", - "checked": false - }, - { - "name": "serial", - "trans": [ - "n. 序列,串列 adj. 连续的,一连串的" - ], - "id": "Q_dAlI", - "checked": false - }, - { - "name": "loading", - "trans": [ - "n.装载,装填" - ], - "id": "3yYeZ-", - "checked": false - }, - { - "name": "retain", - "trans": [ - "vt. 保持, 保留; 记住" - ], - "id": "Iat4Ls", - "checked": false - }, - { - "name": "setup", - "trans": [ - "n. 装备, 组织, 计划" - ], - "id": "zQv6ZG", - "checked": false - }, - { - "name": "freeze", - "trans": [ - "v. 冻结, 冷冻, 僵硬" - ], - "id": "9KSITf", - "checked": false - }, - { - "name": "intend", - "trans": [ - "v. 打算 vt. 想要,打算,计划" - ], - "id": "MqVCdL", - "checked": false - }, - { - "name": "explanation", - "trans": [ - "n. 解释, 说明" - ], - "id": "iQuro4", - "checked": false - }, - { - "name": "certain", - "trans": [ - "adj. 一定的 pron. 某几个,某些 肯定的,无疑的,必然发生的" - ], - "id": "jwPugG", - "checked": false - }, - { - "name": "zap", - "trans": [ - "vt. 击溃,射杀 vi. 快速移动 int. 嚓(表示枪声等)" - ], - "id": "D1Twop", - "checked": false - }, - { - "name": "archive", - "trans": [ - "n. 档案,档案馆 vt. 存档" - ], - "id": "lie0ia", - "checked": false - }, - { - "name": "negative", - "trans": [ - "adj. 否定的,负的,消极的 n. 底片,负数,否定 vt. 否定" - ], - "id": "zTQnve", - "checked": false - }, - { - "name": "image", - "trans": [ - "n. 图像,影像,肖像,想像,形象 vt. 想像,描绘,反映" - ], - "id": "0B93QL", - "checked": false - }, - { - "name": "platform", - "trans": [ - "n. 平台,月台,讲台,坛,计划" - ], - "id": "_GZkA6", - "checked": false - }, - { - "name": "often", - "trans": [ - "adv. 经常" - ], - "id": "BF9202", - "checked": false - }, - { - "name": "signal", - "trans": [ - "n. 信号,导火线,动机 vt. 发信号,标志 vi. 发信号 adj. 显著的" - ], - "id": "MYyC3g", - "checked": false - }, - { - "name": "CPU", - "trans": [ - "abbr. [计算机]中央处理器(=central processing unit)" - ], - "id": "OcYV-Y", - "checked": false - }, - { - "name": "bit", - "trans": [ - "n. 一点儿,少量 n. 钻头,马嚼子,辅币 n. 位,比特(二进位制信息单位) v. 控制" - ], - "id": "9UZltv", - "checked": false - }, - { - "name": "fully", - "trans": [ - "adv. 十分地, 完全地, 全" - ], - "id": "CvSgc0", - "checked": false - }, - { - "name": "deactivate", - "trans": [ - "vt. 使无效,使不活动,解散部队" - ], - "id": "OsIRV7", - "checked": false - }, - { - "name": "especially", - "trans": [ - "adv. 特别,尤其" - ], - "id": "ypZscK", - "checked": false - }, - { - "name": "usually", - "trans": [ - "adv. 通常" - ], - "id": "LWCePi", - "checked": false - }, - { - "name": "recommend", - "trans": [ - "vt. 建议, 推荐, 劝告 vt. 使成为可取, 使受欢迎" - ], - "id": "az_1TC", - "checked": false - }, - { - "name": "maintain", - "trans": [ - "vt. 维持; 维修, 保养; 坚持; 断言" - ], - "id": "t5G-Ef", - "checked": false - }, - { - "name": "important", - "trans": [ - "adj. 重要的,影响很大的" - ], - "id": "yCr0YF", - "checked": false - }, - { - "name": "central", - "trans": [ - "adj. 中心的,基本的,折中的,中枢的 n. 电话交流,中央办公室,中心" - ], - "id": "1d18gx", - "checked": false - }, - { - "name": "addition", - "trans": [ - "n. 增加,附加物,加,加法" - ], - "id": "KJb0gE", - "checked": false - }, - { - "name": "anytime", - "trans": [ - "adv. 任何时候;无例外地" - ], - "id": "AEQ8r1", - "checked": false - }, - { - "name": "analyst", - "trans": [ - "n. 分析家" - ], - "id": "06HBgN", - "checked": false - }, - { - "name": "false", - "trans": [ - "adj. 不真实的,错误的,人造的,假的,虚伪的 adv. 不真诚地,虚伪地" - ], - "id": "bwK_sm", - "checked": false - } - ], - [ - { - "name": "black", - "trans": [ - "adj.黑(色)的; 黑色人种的; 黑暗的 n.黑色; 黑人; 黑颜料; 黑暗 v.使变黑; 抵制; 拒绝; 使变黑暗" - ], - "id": "ChQanu", - "checked": false - }, - { - "name": "gather", - "trans": [ - "vt.收集; 聚集,搜集; 收紧,收缩; 采集 vi.逐渐增加,积聚 n.聚集; 衣褶" - ], - "id": "9daLnO", - "checked": false - }, - { - "name": "cycle", - "trans": [ - "n. 循环,周期,长期,圈,套曲,自行车, vt. 环行,骑自行车 vi. 使环行" - ], - "id": "zv-cuQ", - "checked": false - }, - { - "name": "relative", - "trans": [ - "adj. 相对的,比较的,涉及到的 n. 亲属,同类事物,相关物" - ], - "id": "QjWIFQ", - "checked": false - }, - { - "name": "offer", - "trans": [ - "n. 出价, 提议 vt. 提供, 出价; 贡献, 奉献 vi. 提议; 出现; 求婚" - ], - "id": "kTVgd0", - "checked": false - }, - { - "name": "ending", - "trans": [ - "n. 结尾, 结局" - ], - "id": "mYh0oc", - "checked": false - }, - { - "name": "rent", - "trans": [ - "n. 租金 v. 租 vi. 出租 vt. 出租,租用" - ], - "id": "ymmp61", - "checked": false - }, - { - "name": "sentence", - "trans": [ - "n. 句子,意见,宣判,刑罚,命题 vt. 宣判,判决,使遭受" - ], - "id": "2h5E5f", - "checked": false - }, - { - "name": "remember", - "trans": [ - "vt. &vi. 记得,记忆" - ], - "id": "pmT3_a", - "checked": false - }, - { - "name": "proper", - "trans": [ - "adj. 适当的,正确的,合适的,正当的,规矩的" - ], - "id": "1RfM85", - "checked": false - }, - { - "name": "design", - "trans": [ - "vt.& vi.设计; 绘制 vt.设计; 计划; 企图; 决意(做) n.设计; 图案; 结构; 计划 vi.设计略图; (为工艺品、装潢项目等)设计; 当设计师; 构思" - ], - "id": "XgFZAS", - "checked": false - }, - { - "name": "examine", - "trans": [ - "vt.检查,调查; 考试; 诊察; 审问 vi.检查; 调查" - ], - "id": "nr2LAv", - "checked": false - }, - { - "name": "initial", - "trans": [ - "n. (词)首字母 adj. 开始的, 最初的, 字首的 vt. 签姓名的首字母于" - ], - "id": "mPD-m1", - "checked": false - }, - { - "name": "corrupt", - "trans": [ - "adj. 腐败的,堕落的 vt. 使...恶化,贿赂,使...腐烂 vi. 腐烂,堕落" - ], - "id": "kiN3Gd", - "checked": false - }, - { - "name": "buy", - "trans": [ - "n. 合理的价格,购买 vt. 买,换得,收买,接受 vi. 购买" - ], - "id": "TQ2ITb", - "checked": false - }, - { - "name": "increase", - "trans": [ - "v. 增加, 提高 n. 增加, 增强, 提高" - ], - "id": "y4bpT5", - "checked": false - }, - { - "name": "host", - "trans": [ - "n.[计算机]主机; 主人,东道主; 节目主持人; 酒店业主 vt.当主人; 主办宴会,主持节目; 款待,做东 vi.做主人,做东道主" - ], - "id": "9iAu-d", - "checked": false - }, - { - "name": "sample", - "trans": [ - "n. 样品,标本 vt. 采样,品尝 adj. 样例的" - ], - "id": "Q8ID8z", - "checked": false - }, - { - "name": "pending", - "trans": [ - "adj. 待定的,即将发生或来临的 prep. 直到,等待...的时候,在...期间" - ], - "id": "j_icPp", - "checked": false - }, - { - "name": "divide", - "trans": [ - "vt.& vi.分; 划分; 分离; (使)产生分歧 n.分水岭,分界线; 分配" - ], - "id": "8FMB48", - "checked": false - }, - { - "name": "boot", - "trans": [ - "n. 靴子,[英]汽车行李箱,猛踢, 锁扣 vt. 踢, 穿靴子,锁车 vi. 启动(计算机),在(通常为非法停放的汽车)车轮上装制动装置, 利用, 帮助" - ], - "id": "y2tS3R", - "checked": false - }, - { - "name": "hide", - "trans": [ - "vt.隐藏; 躲避,隐匿,躲藏; 遮蔽,覆盖 vi.隐瞒; 遮住; 遮挡; 掩盖 n.兽皮; <口>生命; <口>人的皮肤; (观看野生动物的)隐蔽处" - ], - "id": "jffkUm", - "checked": false - }, - { - "name": "half", - "trans": [ - "adj. 一半的, 不完全的 adv. 一半地 n. 半, 一半" - ], - "id": "iC48AO", - "checked": false - }, - { - "name": "magenta", - "trans": [ - "n.&adj. 紫红色(的染料)" - ], - "id": "O_Nmnp", - "checked": false - }, - { - "name": "leading", - "trans": [ - "n. 领导, 疏导, 铅板 adj. 领导的, 主要的, 在前的 vbl. 领导, 引领, 以铅接合 [计算机] 行间空白" - ], - "id": "Kk0wqf", - "checked": false - }, - { - "name": "wrong", - "trans": [ - "adj. 错误的,不正当的,失常的 adv. 错误地 n. 错误,不公正 vt. 伤害,亏待,欺骗,中伤" - ], - "id": "dPAsXF", - "checked": false - }, - { - "name": "today", - "trans": [ - "n.&adv. 今天" - ], - "id": "-CHYt4", - "checked": false - }, - { - "name": "least", - "trans": [ - "adj. 最少的,最小的 n.&adv. 最少,最小" - ], - "id": "wLZOPw", - "checked": false - }, - { - "name": "opposite", - "trans": [ - "adj. 相对的, 相反的, 对面的 n. 对立物,对立者,对手 adv. 在对面地,处于相反位置地 prep. 在...对面" - ], - "id": "eTGJOg", - "checked": false - }, - { - "name": "white", - "trans": [ - "adj. 白色的,白种的,纯洁的,幸运的 n. 白色,白种人" - ], - "id": "gH2zhm", - "checked": false - } - ], - [ - { - "name": "override", - "trans": [ - "vt. 弃绝,渺视,凌驾,过度负重 n. 给代理人的佣金,滥用 [计算机] 废除" - ], - "id": "AUYbGa", - "checked": false - }, - { - "name": "brown", - "trans": [ - "adj. 褐色的,棕色的 n. 褐色,棕色 (姓)布朗" - ], - "id": "Iuk5nj", - "checked": false - }, - { - "name": "hex", - "trans": [ - "v. 施法,诅咒 n. 施法的人 abbr. (=hexagon) 六边形 abbr. (=hexadecimal) 十六进制" - ], - "id": "av6Uor", - "checked": false - }, - { - "name": "rest", - "trans": [ - "n.休息; 剩余部分; 支持物; 宁静,安宁 vt.& vi.(使)休息; (使)倚靠[支撑] vi.休息; 静止; 停止; 安心 vt.使休息; 使轻松; 使长眠; 使依赖" - ], - "id": "NrJwmc", - "checked": false - }, - { - "name": "damage", - "trans": [ - "n. (pl.)赔偿金,损坏,毁坏 vt. 损害,毁坏" - ], - "id": "yII3K7", - "checked": false - }, - { - "name": "instant", - "trans": [ - "n. 立即, 瞬间 adj. 立即的, 即时的" - ], - "id": "tOqeu6", - "checked": false - }, - { - "name": "reserved", - "trans": [ - "v. 保留(预定,推迟) adj. 保留的(预订的,冷淡的,缄默)" - ], - "id": "m6sV4x", - "checked": false - }, - { - "name": "technology", - "trans": [ - "n. 技术,工艺(学)" - ], - "id": "ANZyQl", - "checked": false - }, - { - "name": "handle", - "trans": [ - "n. 柄,把手 vt. 买卖,处理,操作 vi. 驾驭" - ], - "id": "4fM1mF", - "checked": false - }, - { - "name": "apply", - "trans": [ - "vt. 应用, 申请; 涂 vt. 使专心从事 vi.申请; 有关联" - ], - "id": "J9rR2m", - "checked": false - }, - { - "name": "stand", - "trans": [ - "n. 站立,停顿,楼台,货摊 vi. 站立,位于,停滞 vt. 忍受,使站立" - ], - "id": "Y02EwZ", - "checked": false - }, - { - "name": "payment", - "trans": [ - "n. 支付, 付款" - ], - "id": "WTFFE0", - "checked": false - }, - { - "name": "kilobyte", - "trans": [ - "n. [计]千字节(1024字节)" - ], - "id": "vUfDfR", - "checked": false - }, - { - "name": "parenthesis", - "trans": [ - "n. 圆括号, 插入语, 插曲,间歇,停歇" - ], - "id": "Ms2JWf", - "checked": false - }, - { - "name": "scan", - "trans": [ - "vt. 扫描;浏览;细看;详细调查;标出格律 vi. 扫描;扫掠 n. 扫描;浏览;审视;细看" - ], - "id": "uBIw6z", - "checked": false - }, - { - "name": "developer", - "trans": [ - "n. 开发者,显影剂" - ], - "id": "yQZJzh", - "checked": false - }, - { - "name": "murder", - "trans": [ - "n. 谋杀,危险物 vt. 谋杀,折磨,损坏 vi. 谋杀" - ], - "id": "bgJgKR", - "checked": false - }, - { - "name": "flush", - "trans": [ - "n. 流溢, 面红, 旺盛, 冲水(尤指冲马桶), 突然萌发, (纸牌)同花顺, 清一色 [计算机] 冲洗 vi. 脸发红, 冲刷, 旺盛成长 vt. 用水冲洗, 惊起(一群鸟), 抄...老窝, 使兴奋 adj. 丰足的,齐平的,满盈的 adv. 正直地, 羞涩地" - ], - "id": "gGRJkq", - "checked": false - }, - { - "name": "unlock", - "trans": [ - "vt. 开启, 显露, 放开" - ], - "id": "t8ZFfE", - "checked": false - }, - { - "name": "movement", - "trans": [ - "n. 活动,运动,动作,移动" - ], - "id": "XZ_WBu", - "checked": false - }, - { - "name": "consecutive", - "trans": [ - "adj. 连续的,连贯的" - ], - "id": "04RAVz", - "checked": false - }, - { - "name": "collection", - "trans": [ - "n. 收藏品,收集物,小组,集合" - ], - "id": "pJafqp", - "checked": false - }, - { - "name": "front", - "trans": [ - "n.前面; 正面; 身体前部; 前线 adj.前面的; 正面的; 舌前的 v.面向; 在…前面; 用…作正面; 领导" - ], - "id": "Catlt2", - "checked": false - }, - { - "name": "prefix", - "trans": [ - "n. 前缀 vt. 加...作为前缀,置于前面 adj. 前缀的" - ], - "id": "5K5MeP", - "checked": false - }, - { - "name": "carousel", - "trans": [ - "n. 旋转木马, (机场的)行李传送带 =carrousel" - ], - "id": "WshXda", - "checked": false - }, - { - "name": "safety", - "trans": [ - "n.安全; 安全性; 安全处所; 中卫 adj.保障安全的" - ], - "id": "6YkClN", - "checked": false - }, - { - "name": "static", - "trans": [ - "n. 静电, 静电干扰, 噪声, 阻碍, 抨击 adj. 静态的,静电的,固态的" - ], - "id": "haSzaB", - "checked": false - }, - { - "name": "fact", - "trans": [ - "n. 实际, 事实" - ], - "id": "hnsC8X", - "checked": false - }, - { - "name": "alter", - "trans": [ - "v. 改变" - ], - "id": "h01pG4", - "checked": false - }, - { - "name": "track", - "trans": [ - "n. 小路, 跑道, 轨道, 踪迹; 惯例, 常规 v. 跟踪, 追踪" - ], - "id": "rZS6Vl", - "checked": false - } - ], - [ - { - "name": "precedence", - "trans": [ - "n. 优先, 居先" - ], - "id": "sNvjJ_", - "checked": false - }, - { - "name": "skeleton", - "trans": [ - "n. 骨架,纲要,骨骼,骨瘦如柴的人或动物,家丑 adj. 骨骼的" - ], - "id": "xYT8a7", - "checked": false - }, - { - "name": "log", - "trans": [ - "n. 记录,圆木,日志,计程仪 vt. 伐木,切,记录,航行,度过(时间) vi. 采伐" - ], - "id": "aQbKTX", - "checked": false - }, - { - "name": "star", - "trans": [ - "n. 星, 明星 v. 以星状物装饰, 变成演员" - ], - "id": "TzgCrC", - "checked": false - }, - { - "name": "hot", - "trans": [ - "adj. 热的,热情的,辣的,性感的 adv. 激动地,快速地 n. 最高温度,滚烫的东西" - ], - "id": "LuOBVT", - "checked": false - }, - { - "name": "replaceable", - "trans": [ - "adj. 可置换的,可代替的" - ], - "id": "0mwgee", - "checked": false - }, - { - "name": "accessible", - "trans": [ - "adj. 可得到的, 易接近的, 可进入的" - ], - "id": "_yGQaJ", - "checked": false - }, - { - "name": "involve", - "trans": [ - "vt. 包含, 使陷入, 使忙于, 使卷入, 牵涉" - ], - "id": "kCJnNX", - "checked": false - }, - { - "name": "configure", - "trans": [ - "v. 配置" - ], - "id": "GxhAHT", - "checked": false - }, - { - "name": "question", - "trans": [ - "n. 问题,询问,争论点 vt. 询问,怀疑 vi. 问问题" - ], - "id": "ZyGbC6", - "checked": false - }, - { - "name": "green", - "trans": [ - "adj.绿色的; 未熟的,青春的; 未成熟的; 主张保护环境的 n.绿色蔬菜; 绿色的衣服; 植物 vi.绿化,使重视环境保护问题" - ], - "id": "6TATwB", - "checked": false - }, - { - "name": "entirely", - "trans": [ - "adv. 完全地" - ], - "id": "HbxxaB", - "checked": false - }, - { - "name": "helpful", - "trans": [ - "adj. 有帮助的, 有益的" - ], - "id": "7K8jW9", - "checked": false - }, - { - "name": "middle", - "trans": [ - "n.中部,中间; 腰部; 中央; 正中 adj.中部的; 中央的; 正中的; 中间的 vt.把…放在中间; 把…对折 vi.放在中间; 对折" - ], - "id": "nPWwVI", - "checked": false - }, - { - "name": "declared", - "trans": [ - "adj. 承认的, 公告的 动词declare的过去式和过去分词" - ], - "id": "yjkgF5", - "checked": false - }, - { - "name": "compress", - "trans": [ - "vt. 压缩, 压榨 n. [医]敷布" - ], - "id": "EjANau", - "checked": false - }, - { - "name": "graphically", - "trans": [ - "adv. 用图表表示地" - ], - "id": "rsYp2u", - "checked": false - }, - { - "name": "auto", - "trans": [ - "n. autos=automobile 自动汽车 pref. 自动的,自己的" - ], - "id": "Y7l61G", - "checked": false - }, - { - "name": "automatic", - "trans": [ - "n. 自动装置, 半自动武器 adj. 自动的,机械的,半自动化的" - ], - "id": "kOkoMn", - "checked": false - }, - { - "name": "anywhere", - "trans": [ - "adv. 任何地方 pron. 任何(一个)地方" - ], - "id": "rsIXgP", - "checked": false - }, - { - "name": "terminal", - "trans": [ - "n. n. 终端机,终点,末端 adj. 终点的,晚期的,致死的" - ], - "id": "XCHXXD", - "checked": false - }, - { - "name": "door", - "trans": [ - "n. 门" - ], - "id": "AB5xzz", - "checked": false - }, - { - "name": "expire", - "trans": [ - "vi. 期满,失效,终止,断气 vt. 呼气" - ], - "id": "i8zG8Q", - "checked": false - }, - { - "name": "resolution", - "trans": [ - "n.决心; 解决; 坚决; 分辨率" - ], - "id": "MgQZUa", - "checked": false - }, - { - "name": "local", - "trans": [ - "adj. 地方性的,当地的,局部的 [计算机] 局部的" - ], - "id": "SiOI0K", - "checked": false - }, - { - "name": "semicolon", - "trans": [ - "n. 分号" - ], - "id": "N1zsDL", - "checked": false - }, - { - "name": "reread", - "trans": [ - "vt.重读,再读" - ], - "id": "z084_j", - "checked": false - }, - { - "name": "overwrite", - "trans": [ - "v. 重写, 写得过多, 描述过分" - ], - "id": "9w7YQa", - "checked": false - }, - { - "name": "critical", - "trans": [ - "adj.批评的,爱挑剔的; 危险的,危急的; 决定性的; [物]临界的" - ], - "id": "SKu_mi", - "checked": false - }, - { - "name": "manager", - "trans": [ - "n. 经理" - ], - "id": "JcdjG-", - "checked": false - } - ], - [ - { - "name": "capability", - "trans": [ - "n. 能力,才能,性能,容量" - ], - "id": "PO9DQ4", - "checked": false - }, - { - "name": "affected", - "trans": [ - "adj. 受到影响的;做作的;假装的 vt. 影响;假装;使…感动(affect的过去式和过去分词)" - ], - "id": "v6v6Ts", - "checked": false - }, - { - "name": "border", - "trans": [ - "n. 边缘 vt. 作...之疆界,加边" - ], - "id": "O3Bgo9", - "checked": false - }, - { - "name": "cache", - "trans": [ - "n. 电脑高速缓冲存储器;贮存物;隐藏处 vt. 隐藏;窖藏 vi. 躲藏" - ], - "id": "uzXdmr", - "checked": false - }, - { - "name": "bell", - "trans": [ - "n. 钟,铃,花冠,吼叫声 vt. 敲钟,使象钟状地张开 vi. 使呈钟状,张开" - ], - "id": "i-OjcU", - "checked": false - }, - { - "name": "play", - "trans": [ - "n. 游戏,游玩,剧本,比赛,比赛中的动作,影响 vt. &vi. 玩,进行比赛,演奏,播放,捉弄,假装" - ], - "id": "r-BpW1", - "checked": false - }, - { - "name": "quickly", - "trans": [ - "adv. 快, 迅速" - ], - "id": "uRRvjY", - "checked": false - }, - { - "name": "fastback", - "trans": [ - "快速返回" - ], - "id": "id6xVy", - "checked": false - }, - { - "name": "answer", - "trans": [ - "vt.& vi.答复; 解答; 答辩; 适应 n.回答; 答案; 反应; 足以媲美的人" - ], - "id": "3pqbvb", - "checked": false - }, - { - "name": "represent", - "trans": [ - "vt. 表现, 表示, 描绘, 代表 vi. 提出异议" - ], - "id": "vHLHjY", - "checked": false - }, - { - "name": "difference", - "trans": [ - "n. 差异,分歧 vt. 引起区别" - ], - "id": "J2m4wa", - "checked": false - }, - { - "name": "project", - "trans": [ - "n. 工程,项目,计划,事业 v. 计划,设计,表达 v. 投射,放映,凸出" - ], - "id": "YfrKzE", - "checked": false - }, - { - "name": "physical", - "trans": [ - "adj. 身体的,物理的,物质的 n. 体检" - ], - "id": "RudbJs", - "checked": false - }, - { - "name": "matter", - "trans": [ - "n. 事件, 物质, 原因 vi. 有关系" - ], - "id": "ilMEaq", - "checked": false - }, - { - "name": "hercules", - "trans": [ - "n.大力英雄,力士,武仙座" - ], - "id": "T-wy_q", - "checked": false - }, - { - "name": "reduce", - "trans": [ - "vt.换算; 约束; 使变为; 使变弱 vi.减少; 减轻体重; [生物学](细胞)减数分裂; (液体)浓缩变稠" - ], - "id": "Ij20Rh", - "checked": false - }, - { - "name": "publisher", - "trans": [ - "n. 出版者, 发行人" - ], - "id": "r2ep0u", - "checked": false - }, - { - "name": "trim", - "trans": [ - "n. 整齐,装饰,修剪下来的部分 adj. 整洁的,匀称的 adv. 整齐地 vt. 修除,削剪,装备,痛打,击败, 使整洁 vi. 保持平衡, 见风使舵" - ], - "id": "OMKuJ5", - "checked": false - }, - { - "name": "substitute", - "trans": [ - "n. 代替者,代用品 v. 代替 vi. (for)代替 vt. 用...代替,代以" - ], - "id": "r0oWKU", - "checked": false - }, - { - "name": "disabled", - "trans": [ - "adj. 残废的 n. 残疾人" - ], - "id": "nJzi_l", - "checked": false - }, - { - "name": "recent", - "trans": [ - "adj. 近来的, 新近的" - ], - "id": "uTlPAa", - "checked": false - }, - { - "name": "positive", - "trans": [ - "adj. 肯定的, 积极的, 绝对的 adj. 正面的, 正数的, 阳性的" - ], - "id": "L4_Zr2", - "checked": false - }, - { - "name": "upgrade", - "trans": [ - "vt. 提高(上升,浓集,加强) n. 提高(上升,浓集,加强)" - ], - "id": "nuNLSc", - "checked": false - }, - { - "name": "instance", - "trans": [ - "n.例子,实例; 情况; 要求,建议; [法]诉讼手续 vt.举…为例" - ], - "id": "nZpKGg", - "checked": false - }, - { - "name": "happen", - "trans": [ - "vi. 发生,碰巧,出现,偶然遇到" - ], - "id": "DoJvuZ", - "checked": false - }, - { - "name": "future", - "trans": [ - "adj. 将来的 n. 将来,未来 n. 期货" - ], - "id": "F11Bgf", - "checked": false - }, - { - "name": "midnight", - "trans": [ - "n. 午夜,漆黑" - ], - "id": "i_0KCe", - "checked": false - }, - { - "name": "though", - "trans": [ - "adv. 可是,然而,不过 conj. 尽管,虽然 prep. 但." - ], - "id": "q-hZ5-", - "checked": false - }, - { - "name": "nor", - "trans": [ - "conj.&adv. 也不,也没有 [计]\"或非\",\"非或\" abbr. 诺曼人(=Norman) abbr. 北方(=North) abbr. 挪威(= Norway) abbr. 挪威人(=Norwegian)" - ], - "id": "wq3m7p", - "checked": false - }, - { - "name": "mono", - "trans": [ - "pref. 表示“一”“单一” adj. (唱片等)单声道的 n. 单声道唱片 n. (=infectious mononucleosis) 传染性单核细胞增多症" - ], - "id": "c0jQFV", - "checked": false - } - ], - [ - { - "name": "slide", - "trans": [ - "n. 滑,幻灯片,雪崩,山崩,滑坡,滑梯 vt. 使滑 vi. 滑,跌落" - ], - "id": "j3SQ0t", - "checked": false - }, - { - "name": "abort", - "trans": [ - "v. 流产, 打胎, 堕胎" - ], - "id": "h1hJjv", - "checked": false - }, - { - "name": "jump", - "trans": [ - "n. 跳跃,跳动,上涨 vt. &vi. 跳越,突升,惊跳" - ], - "id": "_6wj8T", - "checked": false - }, - { - "name": "toward", - "trans": [ - "prep. 对于,关于,接近,将近,向,朝 adj. 有希望的,有利的,逼近的" - ], - "id": "-f08Tw", - "checked": false - }, - { - "name": "throughout", - "trans": [ - "adv. 到处, 自始至终 prep. 遍及, 贯穿" - ], - "id": "N-Ul6j", - "checked": false - }, - { - "name": "via", - "trans": [ - "prep. 经由" - ], - "id": "PCalKV", - "checked": false - }, - { - "name": "among", - "trans": [ - "prep. 在...之中" - ], - "id": "z-Z9bE", - "checked": false - }, - { - "name": "neither", - "trans": [ - "adj. 皆不,两者都不 int. 两者都不 conj. 既非,既不" - ], - "id": "wC60UP", - "checked": false - }, - { - "name": "layer", - "trans": [ - "n.层,层次; 膜; [植]压条; 放置者,计划者 vt.把…分层堆放; 借助压条法; 生根繁殖; 将(头发)剪成不同层次 vi.形成或分成层次; [植]通过压条法而生根" - ], - "id": "Mjxuep", - "checked": false - }, - { - "name": "scatter", - "trans": [ - "n. 散布, 零星少量 vt. 驱散, 散播 vi. 分散, 消散" - ], - "id": "c6rUhN", - "checked": false - }, - { - "name": "attention", - "trans": [ - "n. 注意(力),关心,立正" - ], - "id": "bykWgU", - "checked": false - }, - { - "name": "convention", - "trans": [ - "n.会议; 全体与会者; 国际公约; 惯例,习俗,规矩" - ], - "id": "TXCR9z", - "checked": false - }, - { - "name": "conventional", - "trans": [ - "adj. 普通的,常见的,习惯的,常规的" - ], - "id": "jwSA_w", - "checked": false - }, - { - "name": "tool", - "trans": [ - "n. 工具,用具,受人利用的人,印压的图案 vt. 驾驶,用工具加工,印压图案于 vi. 驾驶,用工具加工" - ], - "id": "rLImzc", - "checked": false - }, - { - "name": "processor", - "trans": [ - "n. 加工者,处理器" - ], - "id": "94Cpme", - "checked": false - }, - { - "name": "desktop", - "trans": [ - "n. 桌面,台式电脑 adj. 台式的,桌上用的" - ], - "id": "9G-F_-", - "checked": false - }, - { - "name": "build", - "trans": [ - "vt. &vi. 建造,创建,开发,逐渐增强 n. 体格,身材" - ], - "id": "hx8qn0", - "checked": false - }, - { - "name": "development", - "trans": [ - "n. 发展,显影, 开发区, 开发" - ], - "id": "1vzrhx", - "checked": false - }, - { - "name": "exceed", - "trans": [ - "vt. 超过, 胜过, 超出界限 vi. 领先" - ], - "id": "KhgStx", - "checked": false - }, - { - "name": "understand", - "trans": [ - "vt. 理解, 闻知 vi. 理解, 相信, 表示同情" - ], - "id": "38b_bK", - "checked": false - }, - { - "name": "horizontal", - "trans": [ - "adj. 水平的,横的 n. 水平线,水平面" - ], - "id": "1nvRsr", - "checked": false - }, - { - "name": "meet", - "trans": [ - "n. 集会,比赛, 运动会 adj. 适宜的,合适的 vt. 遇见,引见,经历,结识,对付,满足,支付 vi. 相遇,集合,交锋,相交" - ], - "id": "RT-0mg", - "checked": false - }, - { - "name": "protect", - "trans": [ - "vt. 保护,投保 vi. 提供保护" - ], - "id": "GyLAIU", - "checked": false - }, - { - "name": "reserve", - "trans": [ - "n. 预备品, 贮存, 候补 n. 克制, 含蓄 vt. 保留, 预订, 延期" - ], - "id": "qMA2Tt", - "checked": false - }, - { - "name": "clock", - "trans": [ - "n. 时钟, 计时器" - ], - "id": "K_eoEx", - "checked": false - }, - { - "name": "manifest", - "trans": [ - "n. 载货单,运货单,旅客名单 adj. 显然的,明白的 vt. 显示, 证实, 出示" - ], - "id": "w__KlP", - "checked": false - }, - { - "name": "safe", - "trans": [ - "adj. 安全的 n. 保险箱" - ], - "id": "NxJJMk", - "checked": false - }, - { - "name": "disconnect", - "trans": [ - "vt. 使分离 vi. 断开,拆开" - ], - "id": "RhT0QW", - "checked": false - }, - { - "name": "clockwise", - "trans": [ - "adj. 顺时针方向的 adv. 顺时针方向地" - ], - "id": "hmAN6f", - "checked": false - }, - { - "name": "eliminate", - "trans": [ - "v. 除去,排除,剔除 [计算机] 消除" - ], - "id": "RuXj_e", - "checked": false - } - ], - [ - { - "name": "actual", - "trans": [ - "adj. 实际的,真实的" - ], - "id": "ZVl2Gr", - "checked": false - }, - { - "name": "declaration", - "trans": [ - "n. 宣布, 宣言" - ], - "id": "hEjY-2", - "checked": false - }, - { - "name": "probably", - "trans": [ - "adv. 大概,或许" - ], - "id": "Kc3Py2", - "checked": false - }, - { - "name": "ring", - "trans": [ - "n. 环, 戒指, 铃声, 圈 vt. 包围, 挂铃铛 vi. 鸣响, 回响, 在空气中螺旋上扬, 形成圈" - ], - "id": "wOjjnz", - "checked": false - }, - { - "name": "cover", - "trans": [ - "n. 封面, 盖子, 表面 v. 覆盖, 涉及, 包含" - ], - "id": "1snCwV", - "checked": false - }, - { - "name": "indicator", - "trans": [ - "n. 指示器, 指示剂 [计算机] 指示符" - ], - "id": "DnSPI0", - "checked": false - }, - { - "name": "apple", - "trans": [ - "n. 苹果" - ], - "id": "OvttAc", - "checked": false - }, - { - "name": "icon", - "trans": [ - "n. 肖像, 偶像, 象征, 图符 [计算机] 图标,图符" - ], - "id": "rZXTe7", - "checked": false - }, - { - "name": "consideration", - "trans": [ - "n. 考虑, 体贴, 考虑因素, 敬重, 意见" - ], - "id": "XBh7pL", - "checked": false - }, - { - "name": "skill", - "trans": [ - "n. 技能, 技巧" - ], - "id": "Bilotp", - "checked": false - }, - { - "name": "picture", - "trans": [ - "n. 图画,照片,景色 vt. 画,描写,想像" - ], - "id": "ExyWnK", - "checked": false - }, - { - "name": "layout", - "trans": [ - "n. 布局, 安排, 设计" - ], - "id": "SUwR5o", - "checked": false - }, - { - "name": "suggest", - "trans": [ - "vt. 建议,暗示,要求" - ], - "id": "ZdphD3", - "checked": false - }, - { - "name": "convenient", - "trans": [ - "adj. 方便的" - ], - "id": "87E57C", - "checked": false - }, - { - "name": "instruct", - "trans": [ - "v. 教, 命令, 指导 [计算机] 指示" - ], - "id": "NohoZm", - "checked": false - }, - { - "name": "appendix", - "trans": [ - "n. 附录,阑尾" - ], - "id": "ogvPtT", - "checked": false - }, - { - "name": "medium", - "trans": [ - "n. 媒体, 方法, 媒介 adj. 适中的, 中等的" - ], - "id": "iLKH7q", - "checked": false - }, - { - "name": "truncate", - "trans": [ - "vt. 切去头端,缩短,截棱成平面 adj. 切去了头,缩短了的,截形的" - ], - "id": "zr2NB0", - "checked": false - }, - { - "name": "inhibit", - "trans": [ - "vt. &vi. 禁止,抑制 [计算机] 禁止" - ], - "id": "j5_HUF", - "checked": false - }, - { - "name": "nearly", - "trans": [ - "adv. 几乎, 差不多" - ], - "id": "11tJ6F", - "checked": false - }, - { - "name": "warn", - "trans": [ - "vt. 警告,注意,远离 vi. 提醒" - ], - "id": "m1PMO4", - "checked": false - }, - { - "name": "underline", - "trans": [ - "v. 在...下面划线" - ], - "id": "_doAwW", - "checked": false - }, - { - "name": "register", - "trans": [ - "v. 记录, 登记, 注册, 挂号 n. 暂存器, 记录, 登记簿 n. (语)语域; 通风调节设备" - ], - "id": "mMVGdA", - "checked": false - }, - { - "name": "stuff", - "trans": [ - "n. 材料, 原料, 东西 n. 素质, 本质; 废物 vt. 填满, 塞满" - ], - "id": "my2i6i", - "checked": false - }, - { - "name": "exclude", - "trans": [ - "vt. 除外,排除,拒绝 [计算机] 排除" - ], - "id": "SuVfOa", - "checked": false - }, - { - "name": "destroy", - "trans": [ - "vt. &vi. 破坏,毁坏 [计算机] 撤消" - ], - "id": "xuFLjo", - "checked": false - }, - { - "name": "calculation", - "trans": [ - "n. 计算" - ], - "id": "JlFuTR", - "checked": false - }, - { - "name": "angle", - "trans": [ - "n. 角(度),角落 vt. 斜移,转变角度 vi. 钓鱼,谋取,转变角度 n. (Angle)盎格鲁人" - ], - "id": "URXo-Q", - "checked": false - }, - { - "name": "lexical", - "trans": [ - "adj. 字典的, 语句的" - ], - "id": "qzUHFu", - "checked": false - }, - { - "name": "decide", - "trans": [ - "vt. &vi. 决定,作出抉择" - ], - "id": "fsBwWb", - "checked": false - } - ], - [ - { - "name": "trouble", - "trans": [ - "n. 困扰,麻烦,困难,故障 vt.& vi. 困扰,麻烦" - ], - "id": "NCkL8y", - "checked": false - }, - { - "name": "customer", - "trans": [ - "n. 顾客,家伙" - ], - "id": "qEv8x4", - "checked": false - }, - { - "name": "port", - "trans": [ - "n.港口; (事情的)意义; (计算机与其他设备的)接口; (船、飞机等的)左舷 vt.举枪; 持枪; 左转舵 vi.转向左舷 adj.左舷的,左侧的 vt.& vi.转舵(向左),把(舵)转向左边 adv.向左舷,向左" - ], - "id": "5X2mDQ", - "checked": false - }, - { - "name": "discuss", - "trans": [ - "vt. 讨论" - ], - "id": "KypLs8", - "checked": false - }, - { - "name": "segment", - "trans": [ - "n. 部分 v. 部分,段,分割 vt. 分割" - ], - "id": "e5l2B3", - "checked": false - }, - { - "name": "filing", - "trans": [ - "n. 锉(文件的整理汇集)" - ], - "id": "5nt4uy", - "checked": false - }, - { - "name": "market", - "trans": [ - "n. 市场,交易,推销地区 vt. 在市场上交易,使...上市 vi. 在市场上买卖" - ], - "id": "Rog5ZK", - "checked": false - }, - { - "name": "valuable", - "trans": [ - "adj. 贵重的, 有价值的 n. (pl.)贵重物品" - ], - "id": "rLFgTo", - "checked": false - }, - { - "name": "limited", - "trans": [ - "adj. 有限的" - ], - "id": "XG_ZAI", - "checked": false - }, - { - "name": "trying", - "trans": [ - "vbl. 试验,尝试 adj. 难受的, 费劲的, 令人厌烦的" - ], - "id": "DZKysq", - "checked": false - }, - { - "name": "heap", - "trans": [ - "n. 堆,许多,累积 vt. 使成堆,装满 [计算机] 堆" - ], - "id": "KU_AIu", - "checked": false - }, - { - "name": "grey", - "trans": [ - "adj. 灰色的 n. 灰色(的) v. 变成灰色 [=gray] vi. 变成灰色" - ], - "id": "4w3ltC", - "checked": false - }, - { - "name": "permanently", - "trans": [ - "adv. 永久地" - ], - "id": "Di5f7x", - "checked": false - }, - { - "name": "accelerator", - "trans": [ - "n. 加速器, 油门,[化学]加速剂,促进剂" - ], - "id": "M2M8Ir", - "checked": false - }, - { - "name": "originally", - "trans": [ - "adv. 本来,原来,最初 重要的" - ], - "id": "eLwt-O", - "checked": false - }, - { - "name": "ability", - "trans": [ - "n. 才能, 能力" - ], - "id": "vNfPkB", - "checked": false - }, - { - "name": "internally", - "trans": [ - "adv.在内,在中心" - ], - "id": "9kahWC", - "checked": false - }, - { - "name": "derelict", - "trans": [ - "adj. 被抛弃了的,无主的,玩忽职守的 n. 遗弃物,被遗弃的人,玩忽职守者" - ], - "id": "rchYeL", - "checked": false - }, - { - "name": "redirect", - "trans": [ - "adj. 再直接的 v. 重新传入, 重新寄送" - ], - "id": "Xg9Ccc", - "checked": false - }, - { - "name": "reside", - "trans": [ - "v. 住,居留,属于" - ], - "id": "BWwhoa", - "checked": false - }, - { - "name": "header", - "trans": [ - "n. 装盖者,割穗机,顶梁,集管 n.[体]头球,头先入水的跳水姿势 n.[计]页眉" - ], - "id": "dzdkwD", - "checked": false - }, - { - "name": "extra", - "trans": [ - "adj. 额外的 adv. 特别地 n. 额外的事物,另外收费的" - ], - "id": "PB7eKb", - "checked": false - }, - { - "name": "repeated", - "trans": [ - "adj. 重复的, 再之的 动词repeat的过去式和过去分词形式" - ], - "id": "QX530E", - "checked": false - }, - { - "name": "death", - "trans": [ - "n. 死,死亡,死神,毁灭" - ], - "id": "puKdHL", - "checked": false - }, - { - "name": "observe", - "trans": [ - "v. 观察, 遵守, 注意到" - ], - "id": "cTyRh7", - "checked": false - }, - { - "name": "density", - "trans": [ - "n. 密集,密度,透明度" - ], - "id": "0DWRaa", - "checked": false - }, - { - "name": "management", - "trans": [ - "n. 管理(层),经营,处理" - ], - "id": "n7G5V5", - "checked": false - }, - { - "name": "environmental", - "trans": [ - "adj. 环境的" - ], - "id": "tXv9Z1", - "checked": false - }, - { - "name": "surrounding", - "trans": [ - "adj. 周围的 n. 环境, 周围的事物" - ], - "id": "f78dKb", - "checked": false - }, - { - "name": "master", - "trans": [ - "n. 主人, 硕士, 母机 adj. 主人的, 主要的 v. 征服, 控制, 精通" - ], - "id": "_49-80", - "checked": false - } - ], - [ - { - "name": "recursive", - "trans": [ - "adj. 递归的,循环的" - ], - "id": "0y2jSi", - "checked": false - }, - { - "name": "trap", - "trans": [ - "n. 圈套,陷阱,困境,双轮轻便马车 vt. &vi. 设圈套,设陷阱" - ], - "id": "0vHqkz", - "checked": false - }, - { - "name": "dimensional", - "trans": [ - "adj.空间的" - ], - "id": "XbBq2P", - "checked": false - }, - { - "name": "logic", - "trans": [ - "n. 逻辑(学),逻辑性,合理的推理" - ], - "id": "WGjU0m", - "checked": false - }, - { - "name": "conjunction", - "trans": [ - "n. 连词, 结合, 关联,(事件等的)同时发生" - ], - "id": "NSp2p-", - "checked": false - }, - { - "name": "identical", - "trans": [ - "adj. 相同的,同一的" - ], - "id": "aw1OWn", - "checked": false - }, - { - "name": "advice", - "trans": [ - "n. 忠告,建议,劝告" - ], - "id": "rZ-Z6E", - "checked": false - }, - { - "name": "meaning", - "trans": [ - "n. 意义,意思,含义 adj. 意味深长的" - ], - "id": "FlueCg", - "checked": false - }, - { - "name": "fall", - "trans": [ - "n. 秋天, 落下, 瀑布 v. 倒下, 落下, 来临" - ], - "id": "dmnsad", - "checked": false - }, - { - "name": "interval", - "trans": [ - "n. 间隔,休息时间, (数学)区间, (音乐)音程" - ], - "id": "r6QbVX", - "checked": false - }, - { - "name": "compatibility", - "trans": [ - "n. 和谐共处, 兼容" - ], - "id": "HGshph", - "checked": false - }, - { - "name": "rule", - "trans": [ - "n. 惯例,规则,统治 v. 裁定,统治,支配 vi. 裁决,统治 vt. 统治" - ], - "id": "w2BSoO", - "checked": false - }, - { - "name": "flag", - "trans": [ - "n. 旗标,旗子,信号旗 vt. 打旗号 vi. 无力地下垂,减退" - ], - "id": "vxGEt_", - "checked": false - }, - { - "name": "criterion", - "trans": [ - "n. 标准, 准则" - ], - "id": "fzrXMd", - "checked": false - }, - { - "name": "office", - "trans": [ - "n. 办公室,职务,事务" - ], - "id": "xeJcyU", - "checked": false - }, - { - "name": "express", - "trans": [ - "n. 快车, 快递, 专使 adj. 急速的, 明确的, 直接的 adv. 用快递; 特意地 vt. 表达, 表示; 挤压出; 快递" - ], - "id": "7ijo9l", - "checked": false - }, - { - "name": "volume", - "trans": [ - "n. 体积, 容量, 音量 n. 卷, 册" - ], - "id": "VnyY-R", - "checked": false - }, - { - "name": "soft", - "trans": [ - "adj. 柔软的,温和的,不强烈的,细腻的,轻的 adv. 柔软地,温和地 n. 柔软的东西" - ], - "id": "NGYogb", - "checked": false - }, - { - "name": "activity", - "trans": [ - "n. 活动;行动;活跃" - ], - "id": "qDfrjE", - "checked": false - }, - { - "name": "odometer", - "trans": [ - "n. 里程表" - ], - "id": "V5iZJN", - "checked": false - }, - { - "name": "phoenix", - "trans": [ - "n. 凤凰, 长生(不死)鸟 引申为重生" - ], - "id": "w1k1kJ", - "checked": false - }, - { - "name": "obtain", - "trans": [ - "vt. 获得, 得到 vi. 通用, 流行, 存在" - ], - "id": "D_QkF2", - "checked": false - }, - { - "name": "easel", - "trans": [ - "n. 画架" - ], - "id": "9OIzov", - "checked": false - }, - { - "name": "latter", - "trans": [ - "adj. 后面的,后者的 pron.&n. 后者" - ], - "id": "NOj-YN", - "checked": false - }, - { - "name": "decrease", - "trans": [ - "n. 减少(量),降低 vt.& vi. 减少,降低" - ], - "id": "zAQC2y", - "checked": false - }, - { - "name": "mainframe", - "trans": [ - "n. 主机,大型计算机" - ], - "id": "iZvUY-", - "checked": false - }, - { - "name": "diacritical", - "trans": [ - "adj. 可区分的 =diacritic" - ], - "id": "lvHreP", - "checked": false - }, - { - "name": "confidential", - "trans": [ - "adj. 机密的,获他人信赖的,易于信任他人的" - ], - "id": "VhRIFF", - "checked": false - }, - { - "name": "trace", - "trans": [ - "n. 痕迹,踪迹,微量 vt. 追踪,找出根源,描绘 vi. 追踪" - ], - "id": "IwXGeo", - "checked": false - }, - { - "name": "division", - "trans": [ - "n. 区分,分开,除法,公司,部门,师(军队里)" - ], - "id": "M3uY6y", - "checked": false - } - ], - [ - { - "name": "regular", - "trans": [ - "adj. 有规律的,有规则的,整齐的,正规的" - ], - "id": "pkp0E4", - "checked": false - }, - { - "name": "implicit", - "trans": [ - "adj. 暗示的,盲从的 [计算机] 隐式" - ], - "id": "raHxGa", - "checked": false - }, - { - "name": "mention", - "trans": [ - "vt.提到,说起; 提名表扬 n.提及" - ], - "id": "4g59RT", - "checked": false - }, - { - "name": "near", - "trans": [ - "adj. 接近的,近亲的,亲近的,勉强的,直接的,小气的,近似的 adv. 接近,几乎,亲近 prep. 靠近 vt. 靠拢,接近 vi. 接近" - ], - "id": "IO-ykO", - "checked": false - }, - { - "name": "fifth", - "trans": [ - "num. 第五 n.五分之一" - ], - "id": "DLwot5", - "checked": false - }, - { - "name": "seven", - "trans": [ - "num. 七" - ], - "id": "fMTUQ2", - "checked": false - }, - { - "name": "whereas", - "trans": [ - "conj.&adv. 然而,却,反之" - ], - "id": "jvgdQH", - "checked": false - }, - { - "name": "review", - "trans": [ - "n. 检讨, 复习, 回顾, 评审 vt. 温习, 检讨, 评论, 检阅 vi. 写评论" - ], - "id": "XTXnr2", - "checked": false - }, - { - "name": "transform", - "trans": [ - "vt. 转换,变形 vi. 改变 n. 变形" - ], - "id": "8_rLtR", - "checked": false - }, - { - "name": "align", - "trans": [ - "vt. 使成一行, 使一致, 使结盟, 调整, 排列 vi. 成一条线" - ], - "id": "rpCg-o", - "checked": false - }, - { - "name": "yellow", - "trans": [ - "adj. 黄色的 n. 黄色" - ], - "id": "51Xyss", - "checked": false - }, - { - "name": "assist", - "trans": [ - "n. 帮助,协助,协助的器械 vt. 帮助,协助 vi. 帮助,协助,出席" - ], - "id": "2OyUtk", - "checked": false - }, - { - "name": "finish", - "trans": [ - "n. 完成,最后加工,结局,完美 vt. 结束,获...第几名 vi. 终结,完成" - ], - "id": "GsugQr", - "checked": false - }, - { - "name": "micro", - "trans": [ - "adj. 微小的 n. 微米(百万分之一, 测微计)" - ], - "id": "VCvdIs", - "checked": false - }, - { - "name": "beyond", - "trans": [ - "adv. 在更远处,另外 n. 远处, 来世 prep. 超出, 越过,另外" - ], - "id": "OwUmvj", - "checked": false - }, - { - "name": "against", - "trans": [ - "prep. 反对,倚靠,违背,防御,相比,相对" - ], - "id": "RZVMD_", - "checked": false - }, - { - "name": "upon", - "trans": [ - "prep. 在...上" - ], - "id": "n6P3AU", - "checked": false - }, - { - "name": "service", - "trans": [ - "n. 服务, 公务部门, 服役, 发球, 发球方式 vt. 维护, 保养" - ], - "id": "5zK_O8", - "checked": false - }, - { - "name": "little", - "trans": [ - "adj. 小的 adv. 毫不,少量地 n. 几乎没有(指数量或程度等)" - ], - "id": "lV2u_x", - "checked": false - }, - { - "name": "exhaust", - "trans": [ - "n. 排气,排气装置 v. 用尽,耗尽,使...精疲力尽 [计算机] 排除" - ], - "id": "6cQl0l", - "checked": false - }, - { - "name": "choice", - "trans": [ - "adj. 上等的,精选的 n. 选择,挑选" - ], - "id": "CZYJl8", - "checked": false - }, - { - "name": "sounding", - "trans": [ - "n. 探测水的深度, 试探 adj. 发声的, 夸大的 动词sound的现在分词形式" - ], - "id": "f9fNzV", - "checked": false - }, - { - "name": "develop", - "trans": [ - "vt. 发展,开发,冲洗照片 vi. 进步" - ], - "id": "DpVRJ-", - "checked": false - }, - { - "name": "holding", - "trans": [ - "n. 把持, 支持, 保持 vbl. 握住, 把持, 举行" - ], - "id": "-d9FUX", - "checked": false - }, - { - "name": "alpha", - "trans": [ - "n. 希腊字母的第一个字母,最初,开端 adj. [化]阿尔法位的,主导的,首要的,按字母顺序的" - ], - "id": "_6H1T2", - "checked": false - }, - { - "name": "constant", - "trans": [ - "adj. 经常的, 不变的 n. 常数, 恒量" - ], - "id": "MPVT7x", - "checked": false - }, - { - "name": "warranty", - "trans": [ - "n. 担保,保证,根据" - ], - "id": "dAA5FE", - "checked": false - }, - { - "name": "stay", - "trans": [ - "n. 停留,停止;依靠,忍耐力;撑条 vt. 等待,坚持到底 vi. 保持,停留,留宿" - ], - "id": "JrK89V", - "checked": false - }, - { - "name": "industry", - "trans": [ - "n. 工业,产业,勤勉,刻苦" - ], - "id": "VMaef4", - "checked": false - }, - { - "name": "trigger", - "trans": [ - "vt. 引发,引起;触发 vi. 松开扳柄 n. 扳机;[电子] 触发器;制滑机" - ], - "id": "ZYoXuA", - "checked": false - } - ], - [ - { - "name": "lesson", - "trans": [ - "n. 课,教训 vt. 给...上课,教训" - ], - "id": "EjkUCv", - "checked": false - }, - { - "name": "treat", - "trans": [ - "v. 对待, 治疗,处理,请客,视为 n. 款待,宴飨" - ], - "id": "Fdk139", - "checked": false - }, - { - "name": "busy", - "trans": [ - "adj. 忙的,杂乱的 vt. 使忙于 vi. 忙" - ], - "id": "lfSujl", - "checked": false - }, - { - "name": "usage", - "trans": [ - "n. 惯用法,使用,用法" - ], - "id": "Y0mHjk", - "checked": false - }, - { - "name": "difficult", - "trans": [ - "adj. 困难的, (人)难取悦的, 难相处的" - ], - "id": "NOQQ7p", - "checked": false - }, - { - "name": "failure", - "trans": [ - "n. 失败,失败的人或事" - ], - "id": "XyNYYt", - "checked": false - }, - { - "name": "communication", - "trans": [ - "n. 沟通,交通" - ], - "id": "RFIJxx", - "checked": false - }, - { - "name": "building", - "trans": [ - "n. 建筑物" - ], - "id": "6nZ0el", - "checked": false - }, - { - "name": "ally", - "trans": [ - "n. 盟友,同盟国 vt. &vi. 联盟,联合,同盟" - ], - "id": "cWxiKJ", - "checked": false - }, - { - "name": "exclamation", - "trans": [ - "n. 惊呼, 惊叹词" - ], - "id": "-M7y4d", - "checked": false - }, - { - "name": "turning", - "trans": [ - "n. 旋转, 回转, 转向" - ], - "id": "BKI2gs", - "checked": false - }, - { - "name": "whole", - "trans": [ - "adj. 整个的, 完全的, 未受损的, (人)全面发展的 n. 全部, 通常情况 adv. 完全地, 统一地" - ], - "id": "f8Za83", - "checked": false - }, - { - "name": "parent", - "trans": [ - "n. 父母,根源 vt. &vi. 抚养,产生" - ], - "id": "sXRC_3", - "checked": false - }, - { - "name": "connection", - "trans": [ - "n. 联系,关系,连接,亲戚" - ], - "id": "WgBaWF", - "checked": false - }, - { - "name": "connectivity", - "trans": [ - "n. [计算机] 连通性" - ], - "id": "ZkZFzL", - "checked": false - }, - { - "name": "translation", - "trans": [ - "n. 翻译, 译文" - ], - "id": "TsCQ2q", - "checked": false - }, - { - "name": "dynamic", - "trans": [ - "adj. 动态的, (有)动力的, (有)力的; 有活力的 n. 动力; 力学" - ], - "id": "GMcCHp", - "checked": false - }, - { - "name": "foreground", - "trans": [ - "n. 前景, 最显著的位置" - ], - "id": "RZruqn", - "checked": false - }, - { - "name": "preserve", - "trans": [ - "vt.保护; 保持,保存; 腌制食物; 防腐处理 vi.保鲜; 保持原状; 做蜜饯; 禁猎 n.蜜饯; 防护用品; 禁猎地; 独占的事物(或范围)" - ], - "id": "-NODDu", - "checked": false - }, - { - "name": "vice", - "trans": [ - "n. 恶习,恶行,罪恶,缺陷,恶癖,老虎钳 vt. 钳住 prep. 代替,副,次" - ], - "id": "hM1_Zp", - "checked": false - }, - { - "name": "necessarily", - "trans": [ - "adv. 必然地,必定地,必需地" - ], - "id": "wTmkeL", - "checked": false - }, - { - "name": "circle", - "trans": [ - "n. 圆周,社交圈,循环 vt. &vi. 包围,盘旋,环绕" - ], - "id": "n1BDof", - "checked": false - }, - { - "name": "differ", - "trans": [ - "vi. 不一致,不同(意见)" - ], - "id": "zEohhd", - "checked": false - }, - { - "name": "stationary", - "trans": [ - "adj. 不动的(稳定的) n. 固定物(驻军)" - ], - "id": "61DZIP", - "checked": false - }, - { - "name": "extract", - "trans": [ - "n. 榨出物,精华,摘录 vt. 拔出,榨出,摘录,提取,选取 [计算机] 提取" - ], - "id": "QKpFSC", - "checked": false - }, - { - "name": "unrecognized", - "trans": [ - "adj. 未被承认的, 未被认出的" - ], - "id": "jjDKfY", - "checked": false - }, - { - "name": "thereafter", - "trans": [ - "adv. 其后, 从那时以后" - ], - "id": "0V-4ps", - "checked": false - }, - { - "name": "inverse", - "trans": [ - "adj. 相反的,倒转的 n. 相反的事物,(数学)逆反函数, 倒数, 负数" - ], - "id": "9iC627", - "checked": false - }, - { - "name": "spell", - "trans": [ - "v. 拼写,缓慢地或吃力地读 n. 魅力,符咒 vt. 用符咒镇住(某人) n. 一段时间,轮班 v. 轮班,休息" - ], - "id": "9fsvPp", - "checked": false - }, - { - "name": "limiting", - "trans": [ - "adj. 限制的 动词limit的现在分词" - ], - "id": "TB0dhj", - "checked": false - } - ], - [ - { - "name": "restructure", - "trans": [ - "v. 更改结构, 重建构造" - ], - "id": "9Y9gRj", - "checked": false - }, - { - "name": "delimit", - "trans": [ - "vt. 定界限, 划界" - ], - "id": "syf3fN", - "checked": false - }, - { - "name": "pay", - "trans": [ - "n. 薪资,付款,报偿 vt. 支付,付清,报偿,给予 vi. 债清,值得,承担后果 adj. 投币的,要钱的" - ], - "id": "q_vV-Q", - "checked": false - }, - { - "name": "separately", - "trans": [ - "adv. 分别地;分离地;个别地" - ], - "id": "Won6K9", - "checked": false - }, - { - "name": "classify", - "trans": [ - "v. 分类,归类,分等" - ], - "id": "oan71k", - "checked": false - }, - { - "name": "interfere", - "trans": [ - "vi. 妨碍,冲突,干涉" - ], - "id": "fkGGNx", - "checked": false - }, - { - "name": "mind", - "trans": [ - "n. 思想, 主意, 心意, 记忆, vt. 留心, 注意, 介意, 照顾 vi. 留心, 关心" - ], - "id": "v-qIe1", - "checked": false - }, - { - "name": "individually", - "trans": [ - "adv. 个别地,单独地,独特地" - ], - "id": "f-Pj5e", - "checked": false - }, - { - "name": "vertical", - "trans": [ - "adj. 垂直的,顶点的,纵向的 n. 垂直物, 垂直的位置" - ], - "id": "UBSzoR", - "checked": false - }, - { - "name": "undesirable", - "trans": [ - "adj. 不受欢迎的, 不良的,不合意的,讨厌的 n. 不受欢迎的人,不良分子" - ], - "id": "9NEtmf", - "checked": false - }, - { - "name": "lot", - "trans": [ - "adv. 很,非常 pron. 大量 n. 许多,量,小组,抽签,场地,命运 vt. 分配,划分" - ], - "id": "NP_bZf", - "checked": false - }, - { - "name": "piece", - "trans": [ - "n. 块,片,篇 vt. 修补,结合" - ], - "id": "v8oEN1", - "checked": false - }, - { - "name": "unavailable", - "trans": [ - "adj. 得不到的, 没空的, 不能利用的" - ], - "id": "bDO0Z0", - "checked": false - }, - { - "name": "unlike", - "trans": [ - "adj. 不同的, 不相似的 prep. 不像, 和...不同" - ], - "id": "eJO7AS", - "checked": false - }, - { - "name": "sit", - "trans": [ - "vt. 坐,担任,开会,孵 vi. 坐,孵 n. 坐" - ], - "id": "AN62L-", - "checked": false - }, - { - "name": "insufficient", - "trans": [ - "adj. 不足的" - ], - "id": "Ief_RT", - "checked": false - }, - { - "name": "map", - "trans": [ - "n. 地图 v. 映射,绘制...之地图,计划 [计算机] 存储区分配图" - ], - "id": "M6rpU_", - "checked": false - }, - { - "name": "figure", - "trans": [ - "n. 图形, 数字, 形状; 人物, 外形, 体型 v. 演算, 认为, 领会到" - ], - "id": "6qjioP", - "checked": false - }, - { - "name": "prepare", - "trans": [ - "vt.准备; 预备(饭菜); 配备; 使(自己)有准备 vt.& vi.筹备,进行各项准备工作; 做好思想准备; 作出,制订; 锻炼(身体等),训" - ], - "id": "ERMDHd", - "checked": false - }, - { - "name": "consider", - "trans": [ - "vt. 考虑, 思考, 认为" - ], - "id": "IU-dTX", - "checked": false - }, - { - "name": "detect", - "trans": [ - "vt. 发现,探测信息,侦查 vi. 当侦探" - ], - "id": "_NoUIZ", - "checked": false - }, - { - "name": "convenience", - "trans": [ - "n. 适宜,便利, 便利设施,方便的时间,舒适" - ], - "id": "s9cAiG", - "checked": false - }, - { - "name": "method", - "trans": [ - "n. 方法,办法,条理" - ], - "id": "fV0_Zg", - "checked": false - }, - { - "name": "mean", - "trans": [ - "n.平均值, 平均数; 中部 adj. 低劣的, 卑贱的; 卑鄙的; 吝啬的 adj. 平均的, 中等的 v. 意味, 想要, 意欲" - ], - "id": "7-7ReU", - "checked": false - }, - { - "name": "salary", - "trans": [ - "n. 薪水 vt. 给...薪水" - ], - "id": "0YzTAH", - "checked": false - }, - { - "name": "pacific", - "trans": [ - "adj. 太平洋的,(pacific)热爱和平的,求和的, 和解的 n. 太平洋" - ], - "id": "XxQs4l", - "checked": false - }, - { - "name": "strong", - "trans": [ - "adj. 强壮的, 牢固的, 坚定的, 坚强的, 强烈的, 浓的" - ], - "id": "KuyjvX", - "checked": false - }, - { - "name": "emphasize", - "trans": [ - "v. 强调,着重 vt. 强调" - ], - "id": "sFjCa8", - "checked": false - }, - { - "name": "department", - "trans": [ - "n. 部,部门,系" - ], - "id": "v3VfZ3", - "checked": false - }, - { - "name": "forced", - "trans": [ - "adj. 被迫的, 强迫的, 用力的,不自然的 force的过去式(分词)" - ], - "id": "L5MM_Q", - "checked": false - } - ], - [ - { - "name": "ANSI", - "trans": [ - "abbr. 美国国家标准学会(=American National Standards Institute)" - ], - "id": "_Up6fQ", - "checked": false - }, - { - "name": "permanent", - "trans": [ - "adj. 永久的, 持久的 n. (口)烫发" - ], - "id": "ovnoPZ", - "checked": false - }, - { - "name": "remark", - "trans": [ - "n. 备注,评论,注意 vt. 评论,注意,述及" - ], - "id": "js4viZ", - "checked": false - }, - { - "name": "away", - "trans": [ - "adv. 远离,离开,出去,连续的,遥远地" - ], - "id": "66rMxH", - "checked": false - }, - { - "name": "concatenate", - "trans": [ - "v. 连结,连锁 adj. 连锁的" - ], - "id": "MQsNgq", - "checked": false - }, - { - "name": "lightning", - "trans": [ - "n. 闪电 adj. 闪电般的, 快速的 vi. 打闪" - ], - "id": "WpvGcd", - "checked": false - }, - { - "name": "additionally", - "trans": [ - "adv. 另外(加之, 又)" - ], - "id": "pIK616", - "checked": false - }, - { - "name": "emulate", - "trans": [ - "vt. 效法, 尽力赶上, 仿真 [计算机] 仿真" - ], - "id": "zNFl8q", - "checked": false - }, - { - "name": "tape", - "trans": [ - "n. 录像带, 录音带, 磁带, 胶带 vt. 用带子捆起, 给...录音 vi. 录音" - ], - "id": "cdokFA", - "checked": false - }, - { - "name": "concept", - "trans": [ - "n. 概念, 观念" - ], - "id": "6lmg7_", - "checked": false - }, - { - "name": "optimize", - "trans": [ - "v. 使...完美,乐观,使...完善 v.优化" - ], - "id": "pLHS4p", - "checked": false - }, - { - "name": "counter", - "trans": [ - "n. 计算器,计算者,柜台 [计算机] 计数器 adj. 相反的 adv. 与…相反地 vt. 反对,反击 vi. 反对,反击" - ], - "id": "OTWBw5", - "checked": false - }, - { - "name": "expect", - "trans": [ - "vt.期望; 预料; 要求; 认为(某事)会发生 vi.预期; 期待; 怀胎; 怀孕" - ], - "id": "cw5aH1", - "checked": false - }, - { - "name": "subsequently", - "trans": [ - "adv. 后来, 随后" - ], - "id": "U6pPeJ", - "checked": false - }, - { - "name": "registration", - "trans": [ - "n. 登记,注册,挂号" - ], - "id": "UPJPY8", - "checked": false - }, - { - "name": "city", - "trans": [ - "n. 城市" - ], - "id": "L5FUQJ", - "checked": false - }, - { - "name": "designate", - "trans": [ - "adj. 指定的 vt. 指定,选派,标明" - ], - "id": "e0uG6A", - "checked": false - }, - { - "name": "visible", - "trans": [ - "adj. 可见的, 看得见的" - ], - "id": "NY1UpT", - "checked": false - }, - { - "name": "consult", - "trans": [ - "v. 商讨,向...请教,查阅" - ], - "id": "W5r96g", - "checked": false - }, - { - "name": "completely", - "trans": [ - "adv. 完全地, 十分地, 全然" - ], - "id": "HruQq9", - "checked": false - }, - { - "name": "virtually", - "trans": [ - "adv. 几乎,实际上" - ], - "id": "LlAcUn", - "checked": false - }, - { - "name": "substantially", - "trans": [ - "adv. 实质上,本质上,大体上" - ], - "id": "DTRuTu", - "checked": false - }, - { - "name": "specialize", - "trans": [ - "vi.专门从事; 专攻; 详细说明; 特化 vt.使专门化; 使适应特殊情况; 详细说明; 列举" - ], - "id": "fsrZy-", - "checked": false - }, - { - "name": "fail", - "trans": [ - "vi. 衰退,失败,不及格 vt. 辜负,缺少,未能做 n. 不及格" - ], - "id": "_cSrj4", - "checked": false - }, - { - "name": "primarily", - "trans": [ - "adv. 首先, 主要地" - ], - "id": "qS5uGD", - "checked": false - }, - { - "name": "client", - "trans": [ - "n.顾客; 当事人; 诉讼委托人; [计算机]客户端" - ], - "id": "_IbH59", - "checked": false - }, - { - "name": "runtime", - "trans": [ - "[计] 运行时间" - ], - "id": "GAef6C", - "checked": false - }, - { - "name": "fix", - "trans": [ - "vt. &vi. 使...固定,修理,准备 n. 困境, (船只、飞机等的)定方位,贿赂" - ], - "id": "EvM5ps", - "checked": false - }, - { - "name": "author", - "trans": [ - "n. 作者,创造者 vt. 创造,写作" - ], - "id": "52mU2T", - "checked": false - }, - { - "name": "programmer", - "trans": [ - "n.程序员, 程序规划员 ,节目编排者 =programer(英)" - ], - "id": "YE11MD", - "checked": false - } - ], - [ - { - "name": "commercial", - "trans": [ - "adj. 商业的 n. 商业广告" - ], - "id": "Y1gwQf", - "checked": false - }, - { - "name": "particularly", - "trans": [ - "adv. 特别, 尤其" - ], - "id": "pTFfKE", - "checked": false - }, - { - "name": "low", - "trans": [ - "n. 低,低点(价),深度,牛叫声 adj. 低的,消沉的,低等的,粗俗的,衰弱的 vi. 牛叫" - ], - "id": "CuT7dp", - "checked": false - }, - { - "name": "sheet", - "trans": [ - "n. 床单,张,片 vt. 盖上被单,遍布, 使成片状 vi. 成片落下或流动 adj. 片状的" - ], - "id": "0ksr7W", - "checked": false - }, - { - "name": "employee", - "trans": [ - "n. 雇员" - ], - "id": "ltT21B", - "checked": false - }, - { - "name": "legal", - "trans": [ - "adj. 法律的,合法的,法定的" - ], - "id": "V2u4p-", - "checked": false - }, - { - "name": "qualified", - "trans": [ - "adj. 有资格的 vbl. 取得资格" - ], - "id": "rCgtEi", - "checked": false - }, - { - "name": "context", - "trans": [ - "n. 上下文, 环境,背景" - ], - "id": "CFL4BE", - "checked": false - }, - { - "name": "involved", - "trans": [ - "v. 涉及(包含,遍及,占用,促成,自乘) adj. 所包含的(形式复杂的)" - ], - "id": "E4vsBQ", - "checked": false - }, - { - "name": "conditional", - "trans": [ - "adj. 有条件的, 假定的,假设的 n. [语]条件句" - ], - "id": "mB5fRH", - "checked": false - }, - { - "name": "halfway", - "trans": [ - "adj. 中途的, 不彻底的 adv. 半路地, 在中途" - ], - "id": "IDRW3R", - "checked": false - }, - { - "name": "oriented", - "trans": [ - "adj. 导向的,定向的" - ], - "id": "ETfKs3", - "checked": false - }, - { - "name": "pair", - "trans": [ - "n. 双,对,副 vt.& vi. 使...成对,配对" - ], - "id": "y-5iTY", - "checked": false - }, - { - "name": "week", - "trans": [ - "n. 星期, 周" - ], - "id": "prQVPc", - "checked": false - }, - { - "name": "subroutine", - "trans": [ - "n. [计算机]子程序" - ], - "id": "d307Ju", - "checked": false - }, - { - "name": "manually", - "trans": [ - "adv.用手" - ], - "id": "8rmQ-B", - "checked": false - }, - { - "name": "preset", - "trans": [ - "vt. 预先装置,事先调整" - ], - "id": "jNqEnm", - "checked": false - }, - { - "name": "autoindex", - "trans": [ - "adj.[计]自动索引,自动变址" - ], - "id": "APb-bF", - "checked": false - }, - { - "name": "restrict", - "trans": [ - "v. 限制,约束" - ], - "id": "Eai4zo", - "checked": false - }, - { - "name": "performance", - "trans": [ - "n.表演; 演技; 表现; 执行" - ], - "id": "lT2wJp", - "checked": false - }, - { - "name": "showing", - "trans": [ - "n. 显示, 放映 动词show的现在分词" - ], - "id": "hglGVH", - "checked": false - }, - { - "name": "ever", - "trans": [ - "adv. 曾经, 永远, 究竟" - ], - "id": "iwTZOa", - "checked": false - }, - { - "name": "distribution", - "trans": [ - "n. 分发, 分配, 散布, 分布" - ], - "id": "QNWSDf", - "checked": false - }, - { - "name": "denote", - "trans": [ - "vt. 象征,表示" - ], - "id": "LhLGZV", - "checked": false - }, - { - "name": "cash", - "trans": [ - "n. 现金 vt. 兑现,付现款 adj. 现金的" - ], - "id": "_z9SB_", - "checked": false - }, - { - "name": "repeatedly", - "trans": [ - "adv. 重复地, 再三地" - ], - "id": "zQPNzC", - "checked": false - }, - { - "name": "replicate", - "trans": [ - "vt. &vi. 折叠,复制,模写 n. 同样的样品 adj. 转折的" - ], - "id": "mURuYt", - "checked": false - }, - { - "name": "mega", - "trans": [ - "兆, 百万" - ], - "id": "pOHLRK", - "checked": false - }, - { - "name": "conform", - "trans": [ - "vt. 使一致,遵守,使顺从 vi. 一致,符合" - ], - "id": "is7mMf", - "checked": false - }, - { - "name": "rebuild", - "trans": [ - "v. 重建,改建,使复原" - ], - "id": "5GWZD3", - "checked": false - } - ], - [ - { - "name": "certainty", - "trans": [ - "n. 确定, 确实的事情" - ], - "id": "pofrQB", - "checked": false - }, - { - "name": "controller", - "trans": [ - "n. 控制器, 管理者, 主计员" - ], - "id": "pfWlZT", - "checked": false - }, - { - "name": "pseudo", - "trans": [ - "adj. 假的, 冒充的" - ], - "id": "OA38uD", - "checked": false - }, - { - "name": "manage", - "trans": [ - "vt. 管理,处理,维持,达成,经营 vi. 管理,达成" - ], - "id": "OKzMMY", - "checked": false - }, - { - "name": "administrator", - "trans": [ - "n. 管理人,行政官" - ], - "id": "_uR_jh", - "checked": false - }, - { - "name": "ensemble", - "trans": [ - "n. 全体, 合唱曲, 女人的全套服装" - ], - "id": "IgKlHZ", - "checked": false - }, - { - "name": "bus", - "trans": [ - "n. 公共汽车" - ], - "id": "_MrwsO", - "checked": false - }, - { - "name": "allowable", - "trans": [ - "adj. 容许的, 承认的" - ], - "id": "nzdqAk", - "checked": false - }, - { - "name": "restriction", - "trans": [ - "n. 限制,约束 vi. 结果,(作为结果)发生" - ], - "id": "1Rtpds", - "checked": false - }, - { - "name": "height", - "trans": [ - "n. 高度,高处,身高, 最高峰, 极点" - ], - "id": "OFLTk4", - "checked": false - }, - { - "name": "remainder", - "trans": [ - "n. 剩余物, 其他的人, 残余 vt. 廉价出售 adj. 剩余的" - ], - "id": "rW65Uj", - "checked": false - }, - { - "name": "traverse", - "trans": [ - "n. 横贯, 横木 v. 横过, 铭刻" - ], - "id": "LXja_y", - "checked": false - }, - { - "name": "organization", - "trans": [ - "n. 机构,组织 adj. 有组织的" - ], - "id": "5C41Le", - "checked": false - }, - { - "name": "resulting", - "trans": [ - "adj.作为结果的,因而发生的" - ], - "id": "rTgUkl", - "checked": false - }, - { - "name": "solution", - "trans": [ - "n. 解答, 解决办法, 溶解, 溶液" - ], - "id": "GBLwz0", - "checked": false - }, - { - "name": "external", - "trans": [ - "n. 外部 adj. 外部的,外用的,客观的,表面的" - ], - "id": "snwd5X", - "checked": false - }, - { - "name": "adequate", - "trans": [ - "adj. 足够的, 充足的, 适当的, 能胜任的" - ], - "id": "Cf2ii6", - "checked": false - }, - { - "name": "vary", - "trans": [ - "vt. 改变,使多样化 vi. 变化,违背" - ], - "id": "fpVLac", - "checked": false - }, - { - "name": "gap", - "trans": [ - "n. (意见、个性等的)差异,缝隙,漏洞,缺口 vt. 制造缺口 嘉普(财富500强公司之一,总部所在地美国,主要经营服装零售)" - ], - "id": "Uuq3EI", - "checked": false - }, - { - "name": "indexing", - "trans": [ - "n. 指数(分度, 索引, 转位, 转换角度, 换档, 改址)" - ], - "id": "i7akpn", - "checked": false - }, - { - "name": "board", - "trans": [ - "n. 木板, 甲板, 董事会 n. 伙食; 舞台, 演员的职业; 船舷 vt. 登(飞机、车、船等); 有偿提供食宿; 用木板覆盖 vi. 搭伙" - ], - "id": "archjF", - "checked": false - }, - { - "name": "package", - "trans": [ - "n. 包裹,整批交易 vt. 把...打包,把...进行推销" - ], - "id": "mCRCc5", - "checked": false - }, - { - "name": "insertion", - "trans": [ - "n. 插入,刊载,插入物" - ], - "id": "wvStpg", - "checked": false - }, - { - "name": "intervene", - "trans": [ - "vi. 插入,介入,干涉,调停 [计算机] 介入" - ], - "id": "IlJmnm", - "checked": false - }, - { - "name": "conflict", - "trans": [ - "n.冲突; 战斗; 相互干扰; 矛盾 vi.抵触; 争斗; 战斗; 冲突" - ], - "id": "-Oo-DR", - "checked": false - }, - { - "name": "really", - "trans": [ - "adv. 真正地,实在,事实上" - ], - "id": "c23VbF", - "checked": false - }, - { - "name": "overflow", - "trans": [ - "n. 溢值,超值,泛滥 v. 泛滥,溢出,充溢 [计算机] 溢出" - ], - "id": "wkN7bx", - "checked": false - }, - { - "name": "charge", - "trans": [ - "n. 电荷, 指控, 费用; 照顾, 责任 vt. &vi 控诉, 加罪于, 要价, 赊帐, 充电, 管理" - ], - "id": "GrOVU2", - "checked": false - }, - { - "name": "phone", - "trans": [ - "n. 音位,电话,耳机 vt. &vi. 打电话" - ], - "id": "tjOpkb", - "checked": false - }, - { - "name": "virtual", - "trans": [ - "adj. 虚拟的;有效的;实质上的,事实上的" - ], - "id": "1rAKw9", - "checked": false - } - ], - [ - { - "name": "compose", - "trans": [ - "vt. 组成, 写作, 作曲, 使镇静 vi. 创作" - ], - "id": "p0bB05", - "checked": false - }, - { - "name": "snapshot", - "trans": [ - "n. 快照,印象" - ], - "id": "yJVEc3", - "checked": false - }, - { - "name": "sensitivity", - "trans": [ - "n. 敏感, 多愁善感, 感受性" - ], - "id": "4GoXnQ", - "checked": false - }, - { - "name": "familiar", - "trans": [ - "adj. 熟悉的,熟知的,不拘礼节的 n. 熟人,熟悉某种事物的人" - ], - "id": "Tkw7wL", - "checked": false - }, - { - "name": "Mach", - "trans": [ - "n. [物]马赫(速度单位) n. 马赫(奥地利物理学家, 心理学家、哲学家) abbr. 机器(=machine)" - ], - "id": "qQbtf9", - "checked": false - }, - { - "name": "incorrect", - "trans": [ - "adj. 不正确的, 错误的" - ], - "id": "BQE3It", - "checked": false - }, - { - "name": "cut", - "trans": [ - "n. 切口,割伤,降低,份额,删节,割下的一块肉 vt. 切割,减少,停止,修剪 vi. 切割,快速移动 [计算机] 剪掉" - ], - "id": "vre78T", - "checked": false - }, - { - "name": "lowest", - "trans": [ - "adj.最低的,最底下的,最小的" - ], - "id": "f5eet_", - "checked": false - }, - { - "name": "simple", - "trans": [ - "adj. 简单的,无辜的,天真的,基本的,纯粹的 n. 平民,精神病人,草药" - ], - "id": "Xk96gl", - "checked": false - }, - { - "name": "subsequent", - "trans": [ - "adj. 随后的,后来的" - ], - "id": "nQf1X-", - "checked": false - }, - { - "name": "compact", - "trans": [ - "adj. 紧凑的,紧密的,简洁的 v. 使装满,使简洁" - ], - "id": "lEr978", - "checked": false - }, - { - "name": "plain", - "trans": [ - "n. 平原,草原 adj. 简单的,平坦的,平常的,家常的 adj.纯的,不掺杂的" - ], - "id": "BsTrXO", - "checked": false - }, - { - "name": "noted", - "trans": [ - "adj. 著名的,有声望的 动词note的过去式和过去分词形式" - ], - "id": "eovPlX", - "checked": false - }, - { - "name": "desirable", - "trans": [ - "adj. 值得有的,令人满意的,有吸引力的 n. 有吸引力的人" - ], - "id": "qxj_q7", - "checked": false - }, - { - "name": "substitution", - "trans": [ - "n. 代理,替换,交换" - ], - "id": "ft8yQV", - "checked": false - }, - { - "name": "consume", - "trans": [ - "vt. 消耗,毁灭,吃,喝, 挥霍 vi. 耗尽生命, 被烧毁" - ], - "id": "s3dty9", - "checked": false - }, - { - "name": "forget", - "trans": [ - "vt. &vi. 忘记,忽略" - ], - "id": "sDl3Pn", - "checked": false - }, - { - "name": "keyed", - "trans": [ - "v.键入 vbl.键入" - ], - "id": "Nzfh1C", - "checked": false - }, - { - "name": "tornado", - "trans": [ - "n. 飓风,旋风,龙卷风" - ], - "id": "-RtMWI", - "checked": false - }, - { - "name": "quotation", - "trans": [ - "n. 1.引语,语录 2.报价单 3.行情表" - ], - "id": "KlrRtu", - "checked": false - }, - { - "name": "parse", - "trans": [ - "v.&n. 从语法上分析" - ], - "id": "lH4-5y", - "checked": false - }, - { - "name": "experience", - "trans": [ - "n. 经历, 经验 vt. 经历, 体验" - ], - "id": "kZanCI", - "checked": false - }, - { - "name": "manufacture", - "trans": [ - "n. 产品,制造,制造业 vt. 制造,加工 vi. 参与制造" - ], - "id": "fVeDGf", - "checked": false - }, - { - "name": "hundred", - "trans": [ - "n. 百,百个东西 adj. 百,百个" - ], - "id": "jzzfir", - "checked": false - }, - { - "name": "thousand", - "trans": [ - "adj. 千,成千" - ], - "id": "ZSwUx4", - "checked": false - }, - { - "name": "twentieth", - "trans": [ - "n. 二十分之一 num.&adj. 第二十" - ], - "id": "3W7dsw", - "checked": false - }, - { - "name": "understanding", - "trans": [ - "n. 了解, 理解, 个人见解, 非正式协议, 谅解, 同情心, 洞察力 adj. 有同情心的" - ], - "id": "lxwU_u", - "checked": false - }, - { - "name": "hand", - "trans": [ - "n. 手,掌握,协助 vt. 帮助,给 adv. 手动地,人工地" - ], - "id": "0P8qOt", - "checked": false - }, - { - "name": "fancy", - "trans": [ - "n. 想像力, 幻想, 喜好, 爱 adj. 想像的, 时髦的, 华丽装饰的, 奢侈的, 技巧的 vt. 想象, 自认为, 喜好" - ], - "id": "tLXYam", - "checked": false - }, - { - "name": "wide", - "trans": [ - "adj. 广泛的,宽阔的 adv. 广大地,全部地" - ], - "id": "u_u_oc", - "checked": false - } - ], - [ - { - "name": "fine", - "trans": [ - "n. 罚款,罚金,结尾 vt. 罚款 vi. 净化,细化 adj. 美好的, 优质的, 精致的,晴朗的, 健康的,纤细的,恭维的,辞藻华丽的 adv. 恰好地,合适地" - ], - "id": "uev9Wh", - "checked": false - }, - { - "name": "worry", - "trans": [ - "n. 烦恼,忧虑,苦恼 vt. 使...烦恼,使...焦虑, 叼住某物甩或拉 vi. 感到苦恼,感到焦虑" - ], - "id": "RyAh8P", - "checked": false - }, - { - "name": "quiet", - "trans": [ - "n. 安静,闲适,平静 adj. 安静的,静止的,宁静的 adv. 安静地 vt. &vi. 使...平静,使...安心" - ], - "id": "rY3Mew", - "checked": false - }, - { - "name": "purge", - "trans": [ - "n. 整肃,清除,泻药,净化 vt. 净化,清除,摆脱 vi. 清除,通便,腹泻,变得清洁" - ], - "id": "y4CyZ1", - "checked": false - }, - { - "name": "mod", - "trans": [ - "abbr. (=modern) 现代的,时髦的 abbr. (=modulus) 模数,绝对值" - ], - "id": "b35lCo", - "checked": false - }, - { - "name": "numeral", - "trans": [ - "adj. 数字的, 表示数字的 n. 数字, 数" - ], - "id": "FHPuk0", - "checked": false - }, - { - "name": "whichever", - "trans": [ - "adj. 无论哪个, 无论哪些 pron. 无论哪个" - ], - "id": "M-0lnn", - "checked": false - }, - { - "name": "purchase", - "trans": [ - "n. 购买, 购买的物品 n. 支点; 紧握, 抓紧 vt. 购买, 赢得; (用设备)举起, 移动" - ], - "id": "ECzWBY", - "checked": false - }, - { - "name": "care", - "trans": [ - "n. 小心,照料,忧虑,慎思,焦虑因素 vi. 关心,照顾,喜爱 vt. 介意,希望 abbr.=Cooperative for American Remittances to Europe 汇款到欧洲合作社" - ], - "id": "y5nIID", - "checked": false - }, - { - "name": "watch", - "trans": [ - "n. 手表,注视 vt. 观察,监视,注视,照顾,等待 vi. 留意,观察" - ], - "id": "ZiO-TJ", - "checked": false - }, - { - "name": "endeavor", - "trans": [ - "n. 努力, 尽力, 进取心 vt. 努力,尽力 vi. 企图, 谋求" - ], - "id": "6daHud", - "checked": false - }, - { - "name": "mismatch", - "trans": [ - "vt. 配错, 配合不当 n. 配错, 不相匹配" - ], - "id": "SHdxBf", - "checked": false - }, - { - "name": "printout", - "trans": [ - "n. (电脑)打印输出" - ], - "id": "6TAcRJ", - "checked": false - }, - { - "name": "ellipsis", - "trans": [ - "n. 省略" - ], - "id": "T4AhyX", - "checked": false - }, - { - "name": "ship", - "trans": [ - "n. 船,舰,船员,飞船 vt. 以船运送,乘船,运送,进水,在船上工作 vi. 上船,坐船,运送,在船上工作" - ], - "id": "JMpCm1", - "checked": false - }, - { - "name": "British", - "trans": [ - "adj. 英国的 n. 英国人, 英国英语" - ], - "id": "wdnX_3", - "checked": false - }, - { - "name": "parallel", - "trans": [ - "adj. 平行的,相同的,类似的,并联的 adv. 平行地 n. 平行线(面),相似物,对比 vt. 相比,相应,与...平行" - ], - "id": "n2gBQy", - "checked": false - }, - { - "name": "custom", - "trans": [ - "n. 习惯, 风俗, 海关" - ], - "id": "8pYqHZ", - "checked": false - }, - { - "name": "congratulation", - "trans": [ - "n. 祝贺" - ], - "id": "zsyiBZ", - "checked": false - }, - { - "name": "protection", - "trans": [ - "n. 保护,防卫" - ], - "id": "Tv6F6u", - "checked": false - }, - { - "name": "glass", - "trans": [ - "n. 玻璃, 玻璃器皿, 窗户, (复)眼镜,透镜 vt. 用玻璃把…盖(或罩、围)住,给...装上玻璃, 使成玻璃状, 反映, 反射, 审视 vi. 成为玻璃状, 用光学仪器眺望" - ], - "id": "b1sWnp", - "checked": false - }, - { - "name": "pattern", - "trans": [ - "n. 图案, 式样, 典范 v. 以图案装饰; 仿造, 模仿" - ], - "id": "2uRb4h", - "checked": false - }, - { - "name": "insure", - "trans": [ - "vt. 保险,确保 vi. 买保险" - ], - "id": "qLU1mc", - "checked": false - }, - { - "name": "factory", - "trans": [ - "n. 工厂, 制造场所" - ], - "id": "3eARDT", - "checked": false - }, - { - "name": "implement", - "trans": [ - "n. 工具, 器具; 当工具的物品 vt. 实施, 执行; 向...提供工具(或手段)" - ], - "id": "ENqrE4", - "checked": false - }, - { - "name": "effort", - "trans": [ - "n. 努力, 努力的成果" - ], - "id": "mdLUpj", - "checked": false - }, - { - "name": "worker", - "trans": [ - "n. 工人,工作者" - ], - "id": "7p9yac", - "checked": false - }, - { - "name": "ampersand", - "trans": [ - "n. 和,&(and 的符号)" - ], - "id": "zDaeL3", - "checked": false - }, - { - "name": "deal", - "trans": [ - "n. 交易,协定,份量 v. (dealt,dealt[delt])处理,应付,分配" - ], - "id": "Wnaa2v", - "checked": false - }, - { - "name": "power", - "trans": [ - "n. 力量, 权力,电力 vt. 供电,激励,全速前进 adj. 与力量有关的,与权力有关的,电力控制的" - ], - "id": "4_kYGY", - "checked": false - } - ], - [ - { - "name": "difficulty", - "trans": [ - "n. 困难,争议,反对,麻烦" - ], - "id": "UABQhQ", - "checked": false - }, - { - "name": "lose", - "trans": [ - "vt. 遗失,损失,失败,摆脱 vi. 丢失,失败 [计算机] 失去" - ], - "id": "EJ48L2", - "checked": false - }, - { - "name": "magic", - "trans": [ - "adj. 有魔力的, 神奇的 n. 魔法, 魔术 vt. 使用魔(变出等)" - ], - "id": "pkUo8M", - "checked": false - }, - { - "name": "proprietary", - "trans": [ - "adj. 专利的, 所有权的 n. 所有权, 所有人" - ], - "id": "bbP6wK", - "checked": false - }, - { - "name": "aware", - "trans": [ - "adj. 知道的, 意识到的" - ], - "id": "XADM13", - "checked": false - }, - { - "name": "numerous", - "trans": [ - "adj. 为数众多的,许多" - ], - "id": "DFbNhk", - "checked": false - }, - { - "name": "vowel", - "trans": [ - "n. 母音, 元音" - ], - "id": "L-0CWa", - "checked": false - }, - { - "name": "closely", - "trans": [ - "adv. 紧密地,接近地,严密地" - ], - "id": "nr_Kwz", - "checked": false - }, - { - "name": "accuracy", - "trans": [ - "n. 准确(性), 精确度" - ], - "id": "3-OoM7", - "checked": false - }, - { - "name": "traditional", - "trans": [ - "adj. 传统的" - ], - "id": "Wj_4jN", - "checked": false - }, - { - "name": "synchronization", - "trans": [ - "n.同步化" - ], - "id": "JZUhOm", - "checked": false - }, - { - "name": "fragment", - "trans": [ - "n. 碎片 vt. &vi. 变成碎片 [计算机] 碎片" - ], - "id": "xWqGMH", - "checked": false - }, - { - "name": "primary", - "trans": [ - "n. 最主要者 adj. 主要的, 初期的, 根本的" - ], - "id": "uqlxhw", - "checked": false - }, - { - "name": "safely", - "trans": [ - "adv. 安全地" - ], - "id": "cXvSm_", - "checked": false - }, - { - "name": "habit", - "trans": [ - "n. 习惯,习性;嗜好 vt. 使穿衣" - ], - "id": "Fv2Df5", - "checked": false - }, - { - "name": "comprise", - "trans": [ - "vt. 包含,构成" - ], - "id": "rzuHVg", - "checked": false - }, - { - "name": "landler", - "trans": [ - "n.兰德勒舞(奥地利农村的民间舞),兰德勒舞曲" - ], - "id": "mAWYn1", - "checked": false - }, - { - "name": "absence", - "trans": [ - "n. 没有;缺乏;缺席;不注意" - ], - "id": "1eRSMc", - "checked": false - }, - { - "name": "revolutionize", - "trans": [ - "vt. 使革命化,使彻底变革 vi. 变革 =revolutionise(英)" - ], - "id": "DDXrFJ", - "checked": false - }, - { - "name": "constantly", - "trans": [ - "adv. 不断地,经常地" - ], - "id": "aLV_2O", - "checked": false - }, - { - "name": "seldom", - "trans": [ - "adv. 很少 adj. 很少的" - ], - "id": "MaeXVu", - "checked": false - }, - { - "name": "unfortunately", - "trans": [ - "adv. 不幸地" - ], - "id": "CCt_md", - "checked": false - }, - { - "name": "expunge", - "trans": [ - "v. 擦掉, 删掉, 除去" - ], - "id": "0o2mf5", - "checked": false - }, - { - "name": "security", - "trans": [ - "n.安全; 保证,担保; 保护,防护; 有价证券 adj.安全的,保安的,保密的" - ], - "id": "XHCIH6", - "checked": false - }, - { - "name": "touch", - "trans": [ - "n. 触觉,接触,少许, 痕迹, 修饰 vt. 触摸,吃,喝,触及,感动 vi. 接触, 联系" - ], - "id": "EeFwQe", - "checked": false - }, - { - "name": "contrast", - "trans": [ - "n.对比,对照; 差异; 对照物,对立面; [摄]反差" - ], - "id": "aESluh", - "checked": false - }, - { - "name": "invent", - "trans": [ - "v. 发明 vt. 发明,创造" - ], - "id": "sAIo0A", - "checked": false - }, - { - "name": "reflect", - "trans": [ - "v. 反映, 反射, 归咎" - ], - "id": "mrzVHG", - "checked": false - }, - { - "name": "undone", - "trans": [ - "adj. 未完成的,未做完的 动词undo的过去分词形式" - ], - "id": "GnT0zV", - "checked": false - }, - { - "name": "unshift", - "trans": [ - "vi. 松开打字机或键盘的字型变换键" - ], - "id": "gbsew-", - "checked": false - } - ], - [ - { - "name": "complex", - "trans": [ - "adj. 复杂的 n. 复合体" - ], - "id": "hsqNDz", - "checked": false - }, - { - "name": "complexity", - "trans": [ - "n. 复杂,复杂性, 复杂的事物" - ], - "id": "G8YZsm", - "checked": false - }, - { - "name": "creation", - "trans": [ - "n. 创造, 创作" - ], - "id": "Kp381L", - "checked": false - }, - { - "name": "unknown", - "trans": [ - "adj. 未知的,不出名的" - ], - "id": "p6dLvP", - "checked": false - }, - { - "name": "greatly", - "trans": [ - "adv. 很, 非常" - ], - "id": "OZTtWo", - "checked": false - }, - { - "name": "cost", - "trans": [ - "n.价钱,代价; 花费,费用; 牺牲; [用复数][法律]诉讼费 vi.价钱为,花费; 估计成本 vt.付出代价; 估价; 使丧失; 使付出努力" - ], - "id": "3zBZLm", - "checked": false - }, - { - "name": "degrade", - "trans": [ - "vt. 贬低;使……丢脸;使……降级;使……降解 vi. 降级,降低;退化" - ], - "id": "A-Mgdb", - "checked": false - }, - { - "name": "suggestion", - "trans": [ - "n. 建议, 意见, 迹象, 暗示, 联想" - ], - "id": "HRTNA9", - "checked": false - }, - { - "name": "real", - "trans": [ - "adj. 实际的,现实的,真的,真实的 adv. 非常 n. 真实的事, 真实" - ], - "id": "GB_aRt", - "checked": false - }, - { - "name": "experimentation", - "trans": [ - "n. 实验, 试验" - ], - "id": "JA7_g_", - "checked": false - }, - { - "name": "experiment", - "trans": [ - "n. 实验,试验,尝试 vi. 做实验,尝试" - ], - "id": "hQS3H-", - "checked": false - }, - { - "name": "substantial", - "trans": [ - "n. 重要部份, 本质 adj. 大量的, 实质上的, 有内容的" - ], - "id": "D4IQuh", - "checked": false - }, - { - "name": "solely", - "trans": [ - "adv. 独自地,单独地" - ], - "id": "mbsUrR", - "checked": false - }, - { - "name": "announce", - "trans": [ - "vi.宣布参加竞选; 当播音员 vt.宣布; 述说; 声称; 预告" - ], - "id": "aMeYnX", - "checked": false - }, - { - "name": "squeeze", - "trans": [ - "n. 压榨,榨出的少量,佣金,经济拮据 vt. 紧握,挤压,使经济困难 vi. 让步,压迫,险胜" - ], - "id": "tseI_W", - "checked": false - }, - { - "name": "distribute", - "trans": [ - "vt. &vi. 分配,散布" - ], - "id": "bSrCWk", - "checked": false - }, - { - "name": "negate", - "trans": [ - "v. 否定, 否认, 打消" - ], - "id": "Xe2koA", - "checked": false - }, - { - "name": "capture", - "trans": [ - "n. 抓取,战利品,捕获之物 vt. 抓取,获得,迷住" - ], - "id": "zk28oW", - "checked": false - }, - { - "name": "father", - "trans": [ - "n. 父亲,鼻祖 vt. 作为父亲生育子女 vi. 像父亲般照顾" - ], - "id": "SSGrAM", - "checked": false - }, - { - "name": "reinstate", - "trans": [ - "v. 恢复(原职) vt. 使恢复原有的职位" - ], - "id": "TLG8-D", - "checked": false - }, - { - "name": "tutorial", - "trans": [ - "n. 个别指导 adj. 个别指导的" - ], - "id": "0aGebB", - "checked": false - }, - { - "name": "nicety", - "trans": [ - "n. 精确,谨慎,精细,细微的区别" - ], - "id": "OTtoYV", - "checked": false - }, - { - "name": "roll", - "trans": [ - "vt.辗; 使(眼球等)左右转动; (使)原地转圈; 滚动 vi.左右摇晃; 翻滚; 开始移动,启动 n.名册; 滚翻" - ], - "id": "9s8rKo", - "checked": false - }, - { - "name": "exponent", - "trans": [ - "n. 拥护者,说明者,楷模 n. 指数 n. 能手,大师 adj. 说明的" - ], - "id": "jRzg9u", - "checked": false - }, - { - "name": "exponential", - "trans": [ - "adj. 指数的 n. 指数" - ], - "id": "Y8uQ4N", - "checked": false - }, - { - "name": "prefer", - "trans": [ - "vt.更喜欢; 提升,提拔; 给予(债权人)优先权; 提出(控告) vi.更喜欢,宁愿" - ], - "id": "BK2rjq", - "checked": false - }, - { - "name": "complicated", - "trans": [ - "adj. 复杂的, 难懂的" - ], - "id": "Lzfh3j", - "checked": false - }, - { - "name": "reactivate", - "trans": [ - "v. 使重新活跃,恢复活动" - ], - "id": "JdUICP", - "checked": false - }, - { - "name": "spread", - "trans": [ - "n. 传布, 伸展 adj. 扩延的 v. 传布, 推广, 伸出" - ], - "id": "1Zp-3v", - "checked": false - }, - { - "name": "synchronize", - "trans": [ - "v. 使同时, 同时发生" - ], - "id": "mzVAkg", - "checked": false - } - ], - [ - { - "name": "formation", - "trans": [ - "n. 构造,编队,形成" - ], - "id": "NGMU18", - "checked": false - }, - { - "name": "widely", - "trans": [ - "adv. 广泛地" - ], - "id": "-izsMy", - "checked": false - }, - { - "name": "comma", - "trans": [ - "n. 逗号,停顿,间歇 n. 银纹多角蛱蝶" - ], - "id": "pGCijW", - "checked": false - }, - { - "name": "very", - "trans": [ - "adj. 真正的,完全的,自己的,仅仅的,同一个,特别的 adv. 真的,非常" - ], - "id": "QkGzT3", - "checked": false - }, - { - "name": "unnecessary", - "trans": [ - "adj. 不必要的,多余的 n. 不必要的东西" - ], - "id": "7PqZrH", - "checked": false - }, - { - "name": "unchanged", - "trans": [ - "adj. 无变化的" - ], - "id": "00Q1M8", - "checked": false - }, - { - "name": "cross", - "trans": [ - "n. 十字架,十字架形物件,交叉,交叉路 adj. 生气的,交叉的 vt. 划叉剔除,画横线于 vi. 穿越 prep. 穿过" - ], - "id": "Xk0Rrt", - "checked": false - }, - { - "name": "yet", - "trans": [ - "adv. 还,仍然,即刻 conj. 尽管,然而" - ], - "id": "IKRuXf", - "checked": false - }, - { - "name": "slowly", - "trans": [ - "adj. 慢慢地 adv. 缓慢地" - ], - "id": "VbmJ30", - "checked": false - }, - { - "name": "inexperienced", - "trans": [ - "adj. 无经验的, 不熟练的" - ], - "id": "sXvCvv", - "checked": false - }, - { - "name": "unwanted", - "trans": [ - "adj. 不必要的, 空闲的" - ], - "id": "d7Si7a", - "checked": false - }, - { - "name": "unused", - "trans": [ - "adj. 未用过的,不习惯的" - ], - "id": "_byUyN", - "checked": false - }, - { - "name": "unmarked", - "trans": [ - "adj. 无记号的, 未被注意的" - ], - "id": "HSTJpQ", - "checked": false - }, - { - "name": "nothing", - "trans": [ - "adv. 毫不 n. 微不足道的人或事 pron. 什么也没有" - ], - "id": "yLuzk6", - "checked": false - }, - { - "name": "chart", - "trans": [ - "n. 图表 vt. 制成图表" - ], - "id": "LNM5vl", - "checked": false - }, - { - "name": "dearly", - "trans": [ - "adv. 深深地, 真挚地,昂贵地" - ], - "id": "6pbdIU", - "checked": false - }, - { - "name": "extremely", - "trans": [ - "adv. 极其, 非常" - ], - "id": "IiWjf2", - "checked": false - }, - { - "name": "hardly", - "trans": [ - "adv. 几乎不" - ], - "id": "Nxvvel", - "checked": false - }, - { - "name": "placement", - "trans": [ - "n. 方位,位置,找工作,安排" - ], - "id": "ugnnTs", - "checked": false - }, - { - "name": "think", - "trans": [ - "vt.想; 思索; 以为; 看待 vi.思辩; 考虑; 构想; 回忆 adj.深思的; 供思考的 n.想; 想法" - ], - "id": "p-IvFE", - "checked": false - }, - { - "name": "technical", - "trans": [ - "adj. 工艺的, 技术的" - ], - "id": "GpHGGH", - "checked": false - }, - { - "name": "idea", - "trans": [ - "n. 主意, 想法, 观念" - ], - "id": "KOVvRf", - "checked": false - }, - { - "name": "stamp", - "trans": [ - "n. 印,邮票,打印器 vt. 捺印,顿足,贴上邮票" - ], - "id": "EvQbnK", - "checked": false - }, - { - "name": "equation", - "trans": [ - "n. 相等,方程(式),等式,均衡" - ], - "id": "fcyDOU", - "checked": false - }, - { - "name": "smooth", - "trans": [ - "adj. 平稳的,流畅的,安祥的,圆滑的,搅拌均匀的 vt. 使光滑,磨光,安慰,理顺(羽毛) vi. 变光滑" - ], - "id": "dWJjRV", - "checked": false - }, - { - "name": "attached", - "trans": [ - "adj. 附加的, 固定的" - ], - "id": "RlheN3", - "checked": false - }, - { - "name": "average", - "trans": [ - "n. 平均数,平均水平 adj. 一般的,通常的,平均的 vt. &vi. 取平均值,达到平均水平" - ], - "id": "ppl2lO", - "checked": false - }, - { - "name": "quietly", - "trans": [ - "adj. 寂静地, 静止地 adv. 安静地, 平静地" - ], - "id": "bwzLL1", - "checked": false - }, - { - "name": "discard", - "trans": [ - "n. 丢牌,废牌 vt. 丢弃,抛弃 vi. 丢牌" - ], - "id": "JxnKHQ", - "checked": false - }, - { - "name": "never", - "trans": [ - "adv. 从不,绝不" - ], - "id": "9cFqgR", - "checked": false - } - ], - [ - { - "name": "initiate", - "trans": [ - "n. 创始人 adj. 新加入的 vt. 开始,创始,启蒙,介绍加入" - ], - "id": "hS-fEh", - "checked": false - }, - { - "name": "powerful", - "trans": [ - "adj. 强有力的" - ], - "id": "kAK-96", - "checked": false - }, - { - "name": "purpose", - "trans": [ - "n. 目的, 意图; 意志, 决心; 议题 vt. 打算, 决意" - ], - "id": "IJ8U4n", - "checked": false - }, - { - "name": "regard", - "trans": [ - "vt.认为; 注视; 涉及; 尊敬 vi.凝视; 留意 n.凝视; 留意; 尊敬; 问候" - ], - "id": "DlpF_P", - "checked": false - }, - { - "name": "daily", - "trans": [ - "adj. 每日的, 按天计算的, 日常的 adv. 每日,天天 n. 日报, (复)工作样片" - ], - "id": "85zPle", - "checked": false - }, - { - "name": "possibly", - "trans": [ - "adv. 可能地, 也许" - ], - "id": "J7Kj9i", - "checked": false - }, - { - "name": "potentially", - "trans": [ - "adv. 潜在地" - ], - "id": "Hk7Z0Z", - "checked": false - }, - { - "name": "moreover", - "trans": [ - "adv.再者; 此外; 而且; 同时" - ], - "id": "TyVtF_", - "checked": false - }, - { - "name": "American", - "trans": [ - "adj. 美国的, 美式的 n. 美国人, 美式英语" - ], - "id": "_j09Xt", - "checked": false - }, - { - "name": "guard", - "trans": [ - "n. 守卫者,警戒, 护卫队, 保护 vt. &vi. 保卫,看守,警惕" - ], - "id": "peSRGd", - "checked": false - }, - { - "name": "world", - "trans": [ - "n. 世界(人),领域,俗世" - ], - "id": "Va_ArL", - "checked": false - }, - { - "name": "independent", - "trans": [ - "adj. 独立的, 自主的,私立的,无偏见的 n. 独立派人士, 无党派者" - ], - "id": "qFeEXW", - "checked": false - }, - { - "name": "independently", - "trans": [ - "adv.独立地,自立地" - ], - "id": "mw1lma", - "checked": false - }, - { - "name": "continuously", - "trans": [ - "adv.不断地,连续地" - ], - "id": "Oz-CP7", - "checked": false - }, - { - "name": "shield", - "trans": [ - "n. 盾,防卫物,盾状物 vt. 保护,遮蔽" - ], - "id": "hxXXRV", - "checked": false - }, - { - "name": "glance", - "trans": [ - "vi.一瞥; 闪微光; 掠过,擦过; 随便提到,简略地触及 n.浏览; 闪光; 歪斜,一掠" - ], - "id": "LhQEv-", - "checked": false - }, - { - "name": "happening", - "trans": [ - "n. 偶然发生的事 动词happen的现在分词形式" - ], - "id": "ZI8TqX", - "checked": false - }, - { - "name": "transaction", - "trans": [ - "n. 交易,处理,办理" - ], - "id": "rQmmdu", - "checked": false - }, - { - "name": "emulation", - "trans": [ - "n. 效法, 竞争,模仿" - ], - "id": "5r9QI8", - "checked": false - }, - { - "name": "strike", - "trans": [ - "n. 罢工, 打击, 殴打 v. 打, 撞, 罢工, 划燃" - ], - "id": "sBatLx", - "checked": false - }, - { - "name": "dump", - "trans": [ - "n. 垃圾场,堆放处 vt. 丢弃,抛售,导出 vi. 骤降,扔垃圾" - ], - "id": "ee0oBN", - "checked": false - }, - { - "name": "occasionally", - "trans": [ - "adv. 偶尔地" - ], - "id": "GwRBjO", - "checked": false - }, - { - "name": "tension", - "trans": [ - "n. 紧张,张力,拉力 vt. (使金属线、帆等)拉紧" - ], - "id": "1QNqvd", - "checked": false - }, - { - "name": "probable", - "trans": [ - "adj. 很可能的 n. 很可能的事" - ], - "id": "f541AK", - "checked": false - }, - { - "name": "talent", - "trans": [ - "n. 才能, 人才, 天资" - ], - "id": "9Glgst", - "checked": false - }, - { - "name": "financial", - "trans": [ - "adj. 金融的,财政的" - ], - "id": "s8nVnM", - "checked": false - }, - { - "name": "meter", - "trans": [ - "n. 公尺,韵律,计量器 vt. 用表测量[计量, 记录]" - ], - "id": "-JWfp-", - "checked": false - }, - { - "name": "logged", - "trans": [ - "adj. 记录的, 进水的, 锯成圆木的,沉重的 动词log的过去式及过去分词形式" - ], - "id": "UGY-Wk", - "checked": false - }, - { - "name": "ware", - "trans": [ - "n. 制品,器具,货物 vt. 留心,意识到 adj. 知道的,意识到的" - ], - "id": "O-Pqum", - "checked": false - }, - { - "name": "disregard", - "trans": [ - "n. 不理会, 漠视 vt. 忽视, 不顾" - ], - "id": "gn0kgq", - "checked": false - } - ], - [ - { - "name": "waiting", - "trans": [ - "n. 等候 adj. 候补 动词wait的现在分词" - ], - "id": "Ilbypa", - "checked": false - }, - { - "name": "preceding", - "trans": [ - "adj. 在前的,在先的" - ], - "id": "b291zH", - "checked": false - }, - { - "name": "comparison", - "trans": [ - "n. 比较" - ], - "id": "gqap0f", - "checked": false - }, - { - "name": "advanced", - "trans": [ - "adj. 高级的, 先进的" - ], - "id": "5LiGzP", - "checked": false - }, - { - "name": "rate", - "trans": [ - "n. 比率, 等级, 价格 vt. 估价, 认为, 定等级; 责骂 vi. 受欢迎, 受推崇; 责骂" - ], - "id": "B_4_SX", - "checked": false - }, - { - "name": "fly", - "trans": [ - "n. 苍蝇,两翼昆虫,飞行,升高 vt. &vi. 飞,飞翔,逃走,飞逝,猛然移动" - ], - "id": "zW34b5", - "checked": false - }, - { - "name": "programmable", - "trans": [ - "adj. 可编程的" - ], - "id": "R8sRQT", - "checked": false - }, - { - "name": "definable", - "trans": [ - "adj. 可定义的, 可确定的" - ], - "id": "a-3k0f", - "checked": false - }, - { - "name": "readable", - "trans": [ - "adj. 字迹易辨认的 adj. 可读的, 易读的, 读起来津津有味的" - ], - "id": "LdH6Ud", - "checked": false - }, - { - "name": "recoverable", - "trans": [ - "adj. 可恢复的,可收回的" - ], - "id": "QVyX_b", - "checked": false - }, - { - "name": "possibility", - "trans": [ - "n. 可能性,可能的事情,潜在的价值" - ], - "id": "wLLZNQ", - "checked": false - }, - { - "name": "finisher", - "trans": [ - "n. 运动中最后一击者,修整机(精整工)" - ], - "id": "1oTBxj", - "checked": false - }, - { - "name": "applicable", - "trans": [ - "adj. 合适的,适用的" - ], - "id": "a3IDrQ", - "checked": false - }, - { - "name": "printable", - "trans": [ - "可印刷的" - ], - "id": "hdSUw4", - "checked": false - }, - { - "name": "executable", - "trans": [ - "adj.实行的,执行的" - ], - "id": "CA3j_i", - "checked": false - }, - { - "name": "essentially", - "trans": [ - "adv. 本质上,本来" - ], - "id": "UOGv41", - "checked": false - }, - { - "name": "confuse", - "trans": [ - "vt. 混乱,狼狈,困惑" - ], - "id": "-Wx8Kp", - "checked": false - }, - { - "name": "familiarize", - "trans": [ - "vt. 使熟悉" - ], - "id": "eTRmkm", - "checked": false - }, - { - "name": "employe", - "trans": [ - "(=employee) n.雇工,从业员" - ], - "id": "ZAUO5w", - "checked": false - }, - { - "name": "suitable", - "trans": [ - "adj. 合适的, 适宜的" - ], - "id": "fpM9WJ", - "checked": false - }, - { - "name": "generation", - "trans": [ - "n. 代, 一代" - ], - "id": "cOuoIk", - "checked": false - }, - { - "name": "quality", - "trans": [ - "n. 品质, 特质, 才能 adj. 高品质的" - ], - "id": "pYPG0P", - "checked": false - }, - { - "name": "defective", - "trans": [ - "adj. 有缺陷的,欠缺,不完全变化动词 n. 有缺陷的人,不完全变化动词" - ], - "id": "upLw7w", - "checked": false - }, - { - "name": "interpretable", - "trans": [ - "adj.能说明的,能翻译的,可判断的" - ], - "id": "fkwgah", - "checked": false - }, - { - "name": "interest", - "trans": [ - "n. 兴趣, 嗜好, 利息; 股份 vt. 使...感兴趣" - ], - "id": "Hf92H1", - "checked": false - }, - { - "name": "fourscore", - "trans": [ - "adj. 八十的 n. 八十" - ], - "id": "4A5jZj", - "checked": false - }, - { - "name": "teach", - "trans": [ - "vt. 教,教书,教导,教训 vi. 给予指导" - ], - "id": "P3S6t-", - "checked": false - }, - { - "name": "procedural", - "trans": [ - "adj. 程序的 n.警察疑案作品" - ], - "id": "z4Ddt5", - "checked": false - }, - { - "name": "phrase", - "trans": [ - "n. 短语,习语,个人风格,乐句 vt. 措词表达,将(乐曲)分成乐句(来演奏)" - ], - "id": "RnN1xT", - "checked": false - }, - { - "name": "specifically", - "trans": [ - "adv. 特定地,明确地" - ], - "id": "prUnVK", - "checked": false - } - ], - [ - { - "name": "penalty", - "trans": [ - "n. 处罚,惩罚" - ], - "id": "AO1bba", - "checked": false - }, - { - "name": "violate", - "trans": [ - "vt. 违犯, 亵渎, 干扰, 侵犯, 强奸" - ], - "id": "2qX3DK", - "checked": false - }, - { - "name": "indefinitely", - "trans": [ - "adv. 无限地(在长时期内,无穷地)" - ], - "id": "mf4ycp", - "checked": false - }, - { - "name": "major", - "trans": [ - "n. 主修, 成年人, 陆军少校; 巨头 adj. 主要的, 较多的, 大部份的 vi. 主修" - ], - "id": "m1XLit", - "checked": false - }, - { - "name": "higher", - "trans": [ - "adj. 更高的" - ], - "id": "HNAYkh", - "checked": false - }, - { - "name": "wise", - "trans": [ - "adj. 明智的,有学问的,有智慧的,聪明的 n. 方式 vt. 引导 vi. 学" - ], - "id": "zsiau5", - "checked": false - }, - { - "name": "becoming", - "trans": [ - "adj. 合适的,适当的,好看的 动词become的现在分词形式" - ], - "id": "QLj-5A", - "checked": false - }, - { - "name": "equally", - "trans": [ - "adv. 相等地, 同样地, 平等地" - ], - "id": "pwJpVe", - "checked": false - }, - { - "name": "enjoy", - "trans": [ - "vt. &vi. 享受,喜欢" - ], - "id": "fDsm8i", - "checked": false - }, - { - "name": "forth", - "trans": [ - "adv.向前,向前方; 露着的,往外的; [废语]出外,离家 prep.出自,从…离开" - ], - "id": "qiXV_6", - "checked": false - }, - { - "name": "disappear", - "trans": [ - "vi. 消失,灭绝 vt. 引起消失" - ], - "id": "Bb90sK", - "checked": false - }, - { - "name": "crop", - "trans": [ - "n. 庄稼,收成, 一群,平头 vt. 割掉, 修剪, 剪短, 收割, 使谷物生长 vi. 啃青草, 种植谷物" - ], - "id": "Fj8_Gn", - "checked": false - }, - { - "name": "diagonally", - "trans": [ - "adv. 斜对地, 对角地" - ], - "id": "kZBbVu", - "checked": false - }, - { - "name": "decision", - "trans": [ - "n. 决定,决心" - ], - "id": "dB6sap", - "checked": false - }, - { - "name": "effective", - "trans": [ - "adj. 有效的,有影响的" - ], - "id": "QC68Zo", - "checked": false - }, - { - "name": "significant", - "trans": [ - "adj. 有意义的, 意味深长的; 相当数量的; 重要的, 重大的 n. (复)有意义的事物; 标志" - ], - "id": "ICiZtB", - "checked": false - }, - { - "name": "avail", - "trans": [ - "vi. 有利 vt. 有用 n. 益处" - ], - "id": "twJ7F9", - "checked": false - }, - { - "name": "hang", - "trans": [ - "vt.悬挂; (被)绞死; 贴,装饰; 使悬而未决 vi.悬垂; 被吊死; 附属,依靠; 悬而未决 n.悬挂的样子; (动作的)暂停; 〈口〉大意,要点; 〈口〉做法,诀窍" - ], - "id": "PzlhTv", - "checked": false - }, - { - "name": "craze", - "trans": [ - "n. 狂热, 大流行,(陶瓷器等表面的)裂纹 v. (使)发狂, (使)产生裂纹" - ], - "id": "0_nE_t", - "checked": false - }, - { - "name": "consequently", - "trans": [ - "adv. 所以, 因此" - ], - "id": "4YN8Ol", - "checked": false - }, - { - "name": "introduce", - "trans": [ - "vt. 介绍, 引进, 采用, 提出, 提倡, 放入" - ], - "id": "g1JN4s", - "checked": false - }, - { - "name": "team", - "trans": [ - "n. 队,组 vt. 协同工作 vi. 结成一队 adj. 团队的" - ], - "id": "nUCVnn", - "checked": false - }, - { - "name": "visual", - "trans": [ - "adj. 视觉的 n. 画面, 图象" - ], - "id": "W2gBpv", - "checked": false - }, - { - "name": "acknowledgment", - "trans": [ - "n. 承认, 承认书, 感谢 =acknowledgement" - ], - "id": "pUG9d2", - "checked": false - }, - { - "name": "efficiently", - "trans": [ - "adv.有效率地,有效地" - ], - "id": "6x4DfL", - "checked": false - }, - { - "name": "predict", - "trans": [ - "v. 预知, 预言, 预报" - ], - "id": "5hDm4j", - "checked": false - }, - { - "name": "anticipate", - "trans": [ - "vt. 预期,期望;占先,抢先;提前使用" - ], - "id": "J7jNHS", - "checked": false - }, - { - "name": "bypass", - "trans": [ - "vt. 绕开, 忽视 n. 支路,旁道" - ], - "id": "m2f2t4", - "checked": false - }, - { - "name": "nature", - "trans": [ - "n.自然,自然界,自然状态; 本性,天性,性质; 质; 性格; 性; 本质" - ], - "id": "D4-cIe", - "checked": false - }, - { - "name": "natural", - "trans": [ - "adj.自然的; 物质的; 天生的; 不做作的 n.自然的事情; (生来的)白痴; [乐](风琴等的)白键" - ], - "id": "lKoWW6", - "checked": false - } - ], - [ - { - "name": "grant", - "trans": [ - "vt.承认; 同意; 准许; 授予 n.拨款; 补助金; 授给物(如财产、授地、专有权、补助、拨款等) vi.同意" - ], - "id": "2aR3fW", - "checked": false - }, - { - "name": "logarithm", - "trans": [ - "n. [数]对数" - ], - "id": "eBkwJZ", - "checked": false - }, - { - "name": "reload", - "trans": [ - "v. 再装入" - ], - "id": "PAAKwq", - "checked": false - }, - { - "name": "occupy", - "trans": [ - "vt. 占领,占,住进" - ], - "id": "_3X5cT", - "checked": false - }, - { - "name": "photograph", - "trans": [ - "n. 相片 vi. 照相,摄影 vt. 给...照相" - ], - "id": "lsutXT", - "checked": false - }, - { - "name": "resolve", - "trans": [ - "n. 决定之事,决心,坚决 vt. 决定,解决,分离,表决 vi. 分离,决定" - ], - "id": "SbI9kt", - "checked": false - }, - { - "name": "unsafe", - "trans": [ - "adj. 不安全的, 不安稳的, 危险的" - ], - "id": "NmIpDI", - "checked": false - }, - { - "name": "separator", - "trans": [ - "n. 分隔符,分离器" - ], - "id": "fUGbqQ", - "checked": false - }, - { - "name": "hierarchical", - "trans": [ - "adj. 按等级划分的" - ], - "id": "n4T-zo", - "checked": false - }, - { - "name": "assortment", - "trans": [ - "n. 分类, 配合, 各色俱备之物" - ], - "id": "iNW5Ls", - "checked": false - }, - { - "name": "growing", - "trans": [ - "adj. 发展的, 扩大的" - ], - "id": "4bAP21", - "checked": false - }, - { - "name": "discussion", - "trans": [ - "n. 讨论 v. 讨论,商议" - ], - "id": "crJRFN", - "checked": false - }, - { - "name": "alphabet", - "trans": [ - "n. 字母表,基本原理(元素),符号系统" - ], - "id": "WK7omq", - "checked": false - }, - { - "name": "scattered", - "trans": [ - "adj. 分散的,稀疏的" - ], - "id": "AjvhlK", - "checked": false - }, - { - "name": "eventually", - "trans": [ - "adv. 终于, 最后" - ], - "id": "Q6WCtE", - "checked": false - }, - { - "name": "finally", - "trans": [ - "adv. 最后, 最终" - ], - "id": "xHPFFg", - "checked": false - }, - { - "name": "subgroup", - "trans": [ - "n. 隶属组织" - ], - "id": "mrIM7J", - "checked": false - }, - { - "name": "superimpose", - "trans": [ - "vt. 重叠(安装,添加)" - ], - "id": "FVF_BT", - "checked": false - }, - { - "name": "reorganization", - "trans": [ - "n. 改组, 再编制, 改造" - ], - "id": "NJOrpp", - "checked": false - }, - { - "name": "rewrite", - "trans": [ - "n. 重写, 改写 vt. 改写, 重写 vi. 修改" - ], - "id": "iX-B4y", - "checked": false - }, - { - "name": "university", - "trans": [ - "n. 大学" - ], - "id": "Mn-jhn", - "checked": false - }, - { - "name": "deter", - "trans": [ - "v. 制止,使...断念" - ], - "id": "X6njse", - "checked": false - }, - { - "name": "pool", - "trans": [ - "n. 水塘(池),游泳池,撞球 vi. 形成池塘 vt. 集中,积累" - ], - "id": "5AY7Ti", - "checked": false - }, - { - "name": "moment", - "trans": [ - "n. 片刻,瞬间,准确时刻,非常重要的时机,力矩" - ], - "id": "sLcDJs", - "checked": false - }, - { - "name": "shut", - "trans": [ - "adj. 关闭的,合拢的,围绕的 vt. 关上,防止进入,禁闭,合上,停止或中止 vi. 关闭,停止或中止 n. 关闭" - ], - "id": "Ey5ETy", - "checked": false - }, - { - "name": "closed", - "trans": [ - "adj. 关闭的, 封闭的, 停业的 动词close的过去式和过去分词" - ], - "id": "e_bnFw", - "checked": false - }, - { - "name": "respond", - "trans": [ - "vi. &vt. 回复,反应,响应,应答 n. 拱柱" - ], - "id": "kWs-e5", - "checked": false - }, - { - "name": "repeating", - "trans": [ - "adj. 重复的, 反复的 动词repeat的现在分词形式" - ], - "id": "VIjR2u", - "checked": false - }, - { - "name": "repetitive", - "trans": [ - "adj. 重复的" - ], - "id": "30sMFT", - "checked": false - }, - { - "name": "reenter", - "trans": [ - "v. 重新进入" - ], - "id": "EPd0Sp", - "checked": false - } - ], - [ - { - "name": "rearrange", - "trans": [ - "重新整理, 重新排序" - ], - "id": "IdCeO5", - "checked": false - }, - { - "name": "rectangular", - "trans": [ - "adj. 矩形的;成直角的" - ], - "id": "o0HHfN", - "checked": false - }, - { - "name": "tag", - "trans": [ - "n. 标签,附属物,名称,谚语 vt. 附以签条,尾随,添饰,指责,连接 vi. 紧随,尾随" - ], - "id": "_aKrDb", - "checked": false - }, - { - "name": "suppose", - "trans": [ - "vt.假定; 猜想,推测; 认为; 让(用于祈祷语气) vi.想象,猜想" - ], - "id": "Ns2l3p", - "checked": false - }, - { - "name": "supposed", - "trans": [ - "adj. 想象上的,假定的" - ], - "id": "ISx8gt", - "checked": false - }, - { - "name": "operator", - "trans": [ - "n. 操作员,管理者,技工,报务员" - ], - "id": "56OheV", - "checked": false - }, - { - "name": "masking", - "trans": [ - "n. 遮蔽 动词mask的现在分词形式" - ], - "id": "B7P_n6", - "checked": false - }, - { - "name": "price", - "trans": [ - "n. 价格,代价,价值 vt. 定格,标价,比较价格" - ], - "id": "rWe5LB", - "checked": false - }, - { - "name": "demonstrate", - "trans": [ - "vt. 示范, 演示, 证明 vi. 示威" - ], - "id": "T7SPf_", - "checked": false - }, - { - "name": "importance", - "trans": [ - "n. 重要,重要性" - ], - "id": "TVEdaF", - "checked": false - }, - { - "name": "pipe", - "trans": [ - "n. 管,烟斗,笛 vt. 以管输送,装管道,吹奏,尖声说,拷边 vi. 吹奏管乐,尖叫" - ], - "id": "iYYQD4", - "checked": false - }, - { - "name": "overall", - "trans": [ - "adj. 全部的, 全体的, 一切在内的 adv. 总的来说, 全部地 n. 防护服,罩衫" - ], - "id": "1PaCEj", - "checked": false - }, - { - "name": "turnkey", - "trans": [ - "n. 监狱的看守, 狱吏 adj. 即可使用的" - ], - "id": "5dhxS0", - "checked": false - }, - { - "name": "restricted", - "trans": [ - "vt. 限制,约束 adj. 受限制的,有限的,保密的" - ], - "id": "S1OSTu", - "checked": false - }, - { - "name": "suspension", - "trans": [ - "n. 悬挂,悬浮液,暂缓,未决,中止" - ], - "id": "cWGt0-", - "checked": false - }, - { - "name": "seamless", - "trans": [ - "无缝的" - ], - "id": "QozxSV", - "checked": false - }, - { - "name": "clipper", - "trans": [ - "n. 剪削者,大剪刀,理发剪 n. (十九世纪的)快速帆船 n. 快马" - ], - "id": "3NrFz8", - "checked": false - }, - { - "name": "unsigned", - "trans": [ - "adj. 未签署的,无符号的" - ], - "id": "tV0m40", - "checked": false - }, - { - "name": "unformatted", - "trans": [ - "adj. 无格式的" - ], - "id": "pKHwVG", - "checked": false - }, - { - "name": "infinite", - "trans": [ - "adj. 无限的,无穷的 n. 无限" - ], - "id": "X83WFu", - "checked": false - }, - { - "name": "useless", - "trans": [ - "adj. 无用的,无效的" - ], - "id": "ny4p8_", - "checked": false - }, - { - "name": "mountain", - "trans": [ - "n. 山,山脉,大量" - ], - "id": "odLvoa", - "checked": false - }, - { - "name": "redundant", - "trans": [ - "adj. 多余的,失业的" - ], - "id": "Vsr5WO", - "checked": false - }, - { - "name": "dependent", - "trans": [ - "adj. 附属的,依赖的,悬垂的 n. 受经济援助者" - ], - "id": "KXFH7b", - "checked": false - }, - { - "name": "background", - "trans": [ - "n. 背景,幕后,配音 vt. 提供背景" - ], - "id": "j9f4kM", - "checked": false - }, - { - "name": "product", - "trans": [ - "n. 产品,成果,乘积" - ], - "id": "YyvGig", - "checked": false - }, - { - "name": "assignment", - "trans": [ - "n. 分配,功课,任务,被指定的(课外)作业;(分派的)任务, 委派" - ], - "id": "L_2Atv", - "checked": false - }, - { - "name": "bad", - "trans": [ - "adj. 坏的,令人不满意的,有害的,有病的 n. 坏人,坏事" - ], - "id": "xfk9Yc", - "checked": false - }, - { - "name": "declare", - "trans": [ - "vt. &vi. 宣布,声明,申报" - ], - "id": "ZOhJay", - "checked": false - }, - { - "name": "adjust", - "trans": [ - "vt. 调整, 使...适于 vi. 适应" - ], - "id": "CEOHKH", - "checked": false - } - ], - [ - { - "name": "recognize", - "trans": [ - "vt. 认出,认可,承认,意识到,表示感激" - ], - "id": "ZUzUpu", - "checked": false - }, - { - "name": "route", - "trans": [ - "n. 航线,路线,途径 vt. 按路线发送, 改变路线" - ], - "id": "IPrQTL", - "checked": false - }, - { - "name": "respectively", - "trans": [ - "adv. 各自地, 分别地" - ], - "id": "GNiAcx", - "checked": false - }, - { - "name": "unsuccessful", - "trans": [ - "adj. 不成功的, 失败的" - ], - "id": "7rPDfz", - "checked": false - }, - { - "name": "received", - "trans": [ - "adj. 被一般承认的,公认的" - ], - "id": "Dz_KQN", - "checked": false - }, - { - "name": "navigate", - "trans": [ - "vi. 航行,驾驶,操纵 vt. 航行,驾驶" - ], - "id": "SH5WvC", - "checked": false - }, - { - "name": "considered", - "trans": [ - "adj.考虑过的,被尊重的" - ], - "id": "T5LN82", - "checked": false - }, - { - "name": "due", - "trans": [ - "adj.由于; 适当的; 预定; 到期 n.应有的权利; 应得到的东西; 应缴款 adv.正向; 正对着" - ], - "id": "bJCNdb", - "checked": false - }, - { - "name": "recently", - "trans": [ - "adv. 最近" - ], - "id": "aQh_wD", - "checked": false - }, - { - "name": "room", - "trans": [ - "房间, 空间" - ], - "id": "6p4HmW", - "checked": false - }, - { - "name": "descend", - "trans": [ - "vt. &vi. 降,传,降临" - ], - "id": "H3ir23", - "checked": false - }, - { - "name": "contiguous", - "trans": [ - "adj. 邻近的,接触的,连续的" - ], - "id": "wSv8ms", - "checked": false - }, - { - "name": "consistent", - "trans": [ - "adj. 始终如一的, 一致的, 坚持的" - ], - "id": "EliCh2", - "checked": false - }, - { - "name": "multiprocessing", - "trans": [ - "n. 多重处理, 多处理技术" - ], - "id": "gONcm-", - "checked": false - }, - { - "name": "architecture", - "trans": [ - "n. 建筑学, 建筑业, 建筑物, 结构 [总称]建筑物, 建筑风格" - ], - "id": "LtoHH4", - "checked": false - }, - { - "name": "structural", - "trans": [ - "adj. 结构的, 构造的,建筑的,建筑用的" - ], - "id": "GhKCK6", - "checked": false - }, - { - "name": "outcome", - "trans": [ - "n. 结果" - ], - "id": "l0o1nu", - "checked": false - }, - { - "name": "association", - "trans": [ - "n. 联合,结合,交往,协会,社团,联想" - ], - "id": "cnFAha", - "checked": false - }, - { - "name": "opinion", - "trans": [ - "n. 看法,意见 v. 判断,意见,主张" - ], - "id": "gupjqx", - "checked": false - }, - { - "name": "interpret", - "trans": [ - "v. 解释, 演出, 翻译 [计算机] 解释" - ], - "id": "iwJJj7", - "checked": false - }, - { - "name": "explanatory", - "trans": [ - "adj. 说明的, 解释的" - ], - "id": "xiynA4", - "checked": false - }, - { - "name": "assemble", - "trans": [ - "vt. 聚集,集合,装配 vi. 集合, 聚集" - ], - "id": "sZRE9Z", - "checked": false - }, - { - "name": "assembler", - "trans": [ - "n. 装配工 n. [计]汇编程序" - ], - "id": "Ny6PCF", - "checked": false - }, - { - "name": "cad", - "trans": [ - "n. 卑鄙的男人,下流人 abbr. (=computer-aided design)计算机辅助设计" - ], - "id": "NGdHp2", - "checked": false - }, - { - "name": "arithmetic", - "trans": [ - "n. 算术" - ], - "id": "qrOfe5", - "checked": false - }, - { - "name": "representative", - "trans": [ - "adj. 代表性的, 代议制的, 典型的 n. 代表, 众议员, 典型" - ], - "id": "Bksuhi", - "checked": false - }, - { - "name": "typical", - "trans": [ - "adj. 典型的, 有代表性的" - ], - "id": "fP0lOZ", - "checked": false - }, - { - "name": "sufficient", - "trans": [ - "adj. 足够的, 充分的" - ], - "id": "c38qlf", - "checked": false - }, - { - "name": "blast", - "trans": [ - "n. 爆破,冲击波,气流,一阵,汽笛声 vi. 爆破,突然发出声音 vt. 喷射,炸掉" - ], - "id": "7lrKuu", - "checked": false - }, - { - "name": "clean", - "trans": [ - "adj. 干净的, 正当的, 纯洁的, 完全的, 精准的, 空的 adv. 完全地 n. 清洁 vt. &vi. 打扫,清扫" - ], - "id": "ZOmC2d", - "checked": false - } - ], - [ - { - "name": "caret", - "trans": [ - "n. 脱字符号, ( 符号:^ 文章中插字使用)" - ], - "id": "nXQ2KJ", - "checked": false - }, - { - "name": "socket", - "trans": [ - "n. 插座,插口, 穴孔 vt. 装上或插入插座" - ], - "id": "r0afLA", - "checked": false - }, - { - "name": "stated", - "trans": [ - "adj. 决定了的, 一定的, 定期的 v. 陈述, 说明 vbl. 陈述, 说明" - ], - "id": "xhIgSh", - "checked": false - }, - { - "name": "protocol", - "trans": [ - "n. 草案, 协议,礼仪 vt 拟定议定书" - ], - "id": "fytfa0", - "checked": false - }, - { - "name": "presence", - "trans": [ - "n. 出席,在场者,举止" - ], - "id": "w0FVM_", - "checked": false - }, - { - "name": "telephone", - "trans": [ - "n.电话; 电话机; (电话机的)话筒; 受话器 vt.& vi.以电话传送(消息),给(某人)打电话; 用电话与(某人)交谈" - ], - "id": "uAzbgX", - "checked": false - }, - { - "name": "social", - "trans": [ - "adj. 社会的,群居的,社团的" - ], - "id": "5Fh0iA", - "checked": false - }, - { - "name": "equipment", - "trans": [ - "n. 设备,装备" - ], - "id": "lfh9P8", - "checked": false - }, - { - "name": "lending", - "trans": [ - "n. 借贷, 借贷物 动词lend的现在分词形式" - ], - "id": "IlScNS", - "checked": false - }, - { - "name": "book", - "trans": [ - "n. 书,本子 vt. 登记,预订 vi. 通过...预订" - ], - "id": "vIrcBH", - "checked": false - }, - { - "name": "situation", - "trans": [ - "n. 位置, 形势, 局面, 处境, 状况, 职位" - ], - "id": "jrs2KJ", - "checked": false - }, - { - "name": "desk", - "trans": [ - "n. 书桌" - ], - "id": "i9q-NC", - "checked": false - }, - { - "name": "please", - "trans": [ - "int. 请 vt. 取悦,请,合心意 vi. 取悦,愿意" - ], - "id": "dKqqpU", - "checked": false - }, - { - "name": "mixture", - "trans": [ - "n. 混合, 混合物" - ], - "id": "9RcjiQ", - "checked": false - }, - { - "name": "representation", - "trans": [ - "n. 表示法,表现,陈述,答辩" - ], - "id": "C2vy-3", - "checked": false - }, - { - "name": "esoteric", - "trans": [ - "adj. 秘传的,神秘的,难懂的" - ], - "id": "u7BaR-", - "checked": false - }, - { - "name": "depth", - "trans": [ - "n. 深度,强度,诚挚" - ], - "id": "1AtLhv", - "checked": false - }, - { - "name": "final", - "trans": [ - "adj. 最后的 决定了的 n. 决赛,期末考试" - ], - "id": "c3lF-w", - "checked": false - }, - { - "name": "physically", - "trans": [ - "adv. 身体上地" - ], - "id": "fhSc7z", - "checked": false - }, - { - "name": "aid", - "trans": [ - "n. 帮助,救护,辅助物 vt. &vi. 援助,帮助,救护 abbr.=Agency for International Development 国际开发署[美]" - ], - "id": "3zzcRU", - "checked": false - }, - { - "name": "successive", - "trans": [ - "adj. 接连的, 连续的, 接二连三的" - ], - "id": "10tXR_", - "checked": false - }, - { - "name": "succession", - "trans": [ - "n. 连续, 继承权, 继位" - ], - "id": "yQoOjP", - "checked": false - }, - { - "name": "unpack", - "trans": [ - "vt. 打开取出, 卸下" - ], - "id": "dbdrFD", - "checked": false - }, - { - "name": "chunk", - "trans": [ - "n. 厚块(片), 相当大的量,矮胖的人或物 vt. (高尔夫球)没击中 vi. 发出猛冲的声音" - ], - "id": "XDXvHA", - "checked": false - }, - { - "name": "alignment", - "trans": [ - "n. 队列,成直线;校准;结盟" - ], - "id": "5lfi5z", - "checked": false - }, - { - "name": "typewriter", - "trans": [ - "n. n. 打字机" - ], - "id": "C3PjKd", - "checked": false - }, - { - "name": "big", - "trans": [ - "adj. 大的,重要的 adv. 以郑重的方式,大数量 n. 杰出的组织和个人" - ], - "id": "WqDMRD", - "checked": false - }, - { - "name": "tone", - "trans": [ - "n. 音调,语气,品质,调子,色调 vt. 使更健壮,装腔作势地说, 定调, 调色 vi. 调和(颜色), 呈现悦目色调" - ], - "id": "ralNiK", - "checked": false - }, - { - "name": "sensitive", - "trans": [ - "adj. 敏感的,灵敏的,易受伤害的,感光的,善解人意的 n. 敏感的人" - ], - "id": "eAplha", - "checked": false - }, - { - "name": "reduction", - "trans": [ - "n. 减少,缩小, (化学)还原反应, (数学)约分" - ], - "id": "GTaty4", - "checked": false - } - ], - [ - { - "name": "indentation", - "trans": [ - "n. 刻痕,印压, 缩进, (海岸线等)凹进处" - ], - "id": "ZR8oiw", - "checked": false - }, - { - "name": "terminology", - "trans": [ - "n. 术语,术语学" - ], - "id": "9O5Gr0", - "checked": false - }, - { - "name": "ascending", - "trans": [ - "adj. 上升的" - ], - "id": "9XfLLz", - "checked": false - }, - { - "name": "augment", - "trans": [ - "vt. 增加,补充 vi.扩大 n. 增加,补充物" - ], - "id": "2F-NY5", - "checked": false - }, - { - "name": "increment", - "trans": [ - "n. 增加(增加物, 增量, 余差)" - ], - "id": "2g5Iig", - "checked": false - }, - { - "name": "gain", - "trans": [ - "n. 增益, 获得, 利润 vt. 得到, 增进, 获利 vi. 增加, 得到, (钟, 表等)走得快" - ], - "id": "eM_4WT", - "checked": false - }, - { - "name": "stream", - "trans": [ - "n. (人,车,气)流,水流,组 vt. 流出,飘动 vi. 流动,飘动,接踵而来" - ], - "id": "4zzlDp", - "checked": false - }, - { - "name": "obsolete", - "trans": [ - "adj. 已废弃的, 过时的" - ], - "id": "KUsI0o", - "checked": false - }, - { - "name": "accommodate", - "trans": [ - "vi. 使自己适应 vt. 使一致,和解;提供方便;容纳;顾及" - ], - "id": "MgcQ1A", - "checked": false - }, - { - "name": "motif", - "trans": [ - "n. 主题, 意念, 动机" - ], - "id": "qg7QcH", - "checked": false - }, - { - "name": "subject", - "trans": [ - "n. 科目, 主题; 缘由 n. (君主国)国民; 实验对象 adj. 服从的, 易患的 vt. 使隶属, 使服从; 使遭遇" - ], - "id": "S4RlcQ", - "checked": false - }, - { - "name": "job", - "trans": [ - "n. 工作,职责,任务 vt. 投机买卖,营私舞弊,不公正地判罚,分包任务 vi. 工作,假公济私,做分销商或批发商 adj. 与工作有关的" - ], - "id": "Fv7EOP", - "checked": false - }, - { - "name": "differentiate", - "trans": [ - "vt. 识别, 使差异, 求导数, 区分, 区别对待 vi. 区别,变异" - ], - "id": "ALonVF", - "checked": false - }, - { - "name": "distinction", - "trans": [ - "n. 区别; 卓越; 殊荣" - ], - "id": "hX3aZk", - "checked": false - }, - { - "name": "distinguish", - "trans": [ - "vt. 区别,辨认,特别关注 vi. 区别" - ], - "id": "QbaXV7", - "checked": false - }, - { - "name": "locking", - "trans": [ - "n. 锁定 动词lock的现在分词形式" - ], - "id": "jtda5O", - "checked": false - }, - { - "name": "progress", - "trans": [ - "n. 进步, 发展, 前进 vi. 促进,进步, 进行" - ], - "id": "eYUOFq", - "checked": false - }, - { - "name": "fundamental", - "trans": [ - "adj. 基本的,根本的,重要的 n. 基本原理,基础" - ], - "id": "XDaEP4", - "checked": false - }, - { - "name": "basis", - "trans": [ - "n. 基础,根据,主要成分" - ], - "id": "plTL76", - "checked": false - }, - { - "name": "underlying", - "trans": [ - "adj. 在下面的, 基本的, 隐含的" - ], - "id": "r3fkAM", - "checked": false - }, - { - "name": "sound", - "trans": [ - "vt. 听(诊);测量,测…深;使发声;试探;宣告 n. 声音,语音;噪音;海峡;吵闹;听力范围;[医] 探条 adj. 健全的,健康的;合理的;可靠的;有效彻底的 adv. 彻底地,充分地 vi. 听起来;发出声音;回响;测深" - ], - "id": "EeqFOs", - "checked": false - }, - { - "name": "vital", - "trans": [ - "adj. 至关重要的, 生死攸关的, 有活力的, 充满生机的" - ], - "id": "_Tnb1H", - "checked": false - }, - { - "name": "national", - "trans": [ - "adj. 国家的,民族的 n. 国民" - ], - "id": "jY61vb", - "checked": false - }, - { - "name": "sale", - "trans": [ - "n. 销售(量),削价出售" - ], - "id": "onaSRa", - "checked": false - }, - { - "name": "agree", - "trans": [ - "vt. 同意,赞成,承认 vi. 同意,一致,符合" - ], - "id": "yAphLN", - "checked": false - }, - { - "name": "iterative", - "trans": [ - "adj. 迭代的, 重复的" - ], - "id": "xe0kTh", - "checked": false - }, - { - "name": "inclusive", - "trans": [ - "adj. 包含...在内的, 包罗广泛的, 包括端点的 [计算机] 包括的" - ], - "id": "s6rBxL", - "checked": false - }, - { - "name": "charm", - "trans": [ - "n. 魔力, 魅力, 护身符, 小饰物 vt. 吸引, 使...迷醉, 对...施以魔法" - ], - "id": "7363Fm", - "checked": false - }, - { - "name": "hit", - "trans": [ - "n. 打(击),冲撞,讽刺,成功.一次毒品的剂量,点击量 vt. 打(击),碰撞,偶然发现,要求,符合 vi. 打(击),袭击,达到" - ], - "id": "0CqPPI", - "checked": false - }, - { - "name": "course", - "trans": [ - "n. 课程, 讲座, 过程, 路线, 一道(菜)" - ], - "id": "094vFP", - "checked": false - } - ], - [ - { - "name": "numerical", - "trans": [ - "adj. 数字的, 用数字表示的" - ], - "id": "cxatAX", - "checked": false - }, - { - "name": "digital", - "trans": [ - "adj. 手指的,数字的,数码的,电子的" - ], - "id": "hizabC", - "checked": false - }, - { - "name": "combo", - "trans": [ - "套餐,结合物" - ], - "id": "CY8KA5", - "checked": false - }, - { - "name": "cord", - "trans": [ - "n. 绳索,束缚 vt. 用绳索绑" - ], - "id": "Xzbj0I", - "checked": false - }, - { - "name": "organise", - "trans": [ - "vt.组织,创办" - ], - "id": "mnuImE", - "checked": false - }, - { - "name": "permit", - "trans": [ - "n. 许可证,执照 vt. &vi. 允许,许可" - ], - "id": "DqJXc9", - "checked": false - }, - { - "name": "still", - "trans": [ - "adj. 静止的, 不动的, 静寂的 adv. 仍然,更,静止地 conj. 然而,但是 vi. 变沉默 vt. 使冷静, 抓住, 使停止, 使放松 n. 沉默, 定格照, 酒厂" - ], - "id": "FXZ9AH", - "checked": false - }, - { - "name": "explicit", - "trans": [ - "adj. 明确的,详述的,明晰的,外在的" - ], - "id": "mtTfle", - "checked": false - }, - { - "name": "elapse", - "trans": [ - "v. 逝去, 过去" - ], - "id": "sghhqW", - "checked": false - }, - { - "name": "accidental", - "trans": [ - "adj. 意外的,偶然的,附属的 n. 偶然,不重要的东西,变调的临时符号" - ], - "id": "wZR0H1", - "checked": false - }, - { - "name": "sequential", - "trans": [ - "adj. 连续的(序贯的)" - ], - "id": "SvnSGx", - "checked": false - }, - { - "name": "indirect", - "trans": [ - "adj. 间接的, 迂回的,次要的,不坦率的,欺骗的" - ], - "id": "7HNDxm", - "checked": false - }, - { - "name": "reappear", - "trans": [ - "vi. 再出现" - ], - "id": "uVDdcF", - "checked": false - }, - { - "name": "circumstance", - "trans": [ - "n. 环境,(复数)境况,事件,详情" - ], - "id": "EFi7KA", - "checked": false - }, - { - "name": "mix", - "trans": [ - "n. 混合(物),融合 vt. &vi. 混合,掺入,合成,交往,联系 [计算机] 混合" - ], - "id": "z17ZTT", - "checked": false - }, - { - "name": "suppress", - "trans": [ - "vt. 镇压,使...止住,禁止" - ], - "id": "SFtCuC", - "checked": false - }, - { - "name": "E", - "trans": [ - "n.字母E" - ], - "id": "MNFYnv", - "checked": false - }, - { - "name": "recognition", - "trans": [ - "n. 认出,承认, 感知,知识" - ], - "id": "2Q3C80", - "checked": false - }, - { - "name": "arm", - "trans": [ - "n. 手臂, 港湾, 狭长地带, 扶手, 袖子, 枪 vt. 装备, 准备(炸弹) vi. 武装自己" - ], - "id": "QBf92Z", - "checked": false - }, - { - "name": "alphanumeric", - "trans": [ - "adj. 字母数字的" - ], - "id": "0cgJdb", - "checked": false - }, - { - "name": "analog", - "trans": [ - "n. (=analogue)类似(模拟量) adj. 类比的, 模拟的" - ], - "id": "m9SUrB", - "checked": false - }, - { - "name": "automation", - "trans": [ - "n. 自动化" - ], - "id": "LtfDm4", - "checked": false - }, - { - "name": "band", - "trans": [ - "n. 带;箍,队,乐队 vt. &vi. 联合,结合" - ], - "id": "-cG34D", - "checked": false - }, - { - "name": "batch", - "trans": [ - "n. 一次所烘的面包,一次所制之量,一组, 批, 分批 vi. 分批处理" - ], - "id": "QIJbjR", - "checked": false - }, - { - "name": "brush", - "trans": [ - "n. 刷子,画笔,轻擦,小冲突, 灌木丛 vt. 用刷子清洗,画,拭去,打发 vi. 轻擦,拂拭" - ], - "id": "oTmDmP", - "checked": false - }, - { - "name": "calculator", - "trans": [ - "n. 计算器" - ], - "id": "3Q81j1", - "checked": false - }, - { - "name": "punch", - "trans": [ - "n. 打洞器,钻孔机,殴打 n. 酒、水、糖等制成的鸡尾酒 vt. 以拳重击,开洞,剪票,按(键)" - ], - "id": "5LYBQY", - "checked": false - }, - { - "name": "reader", - "trans": [ - "n. 读者,读物, 读本" - ], - "id": "jVPfYH", - "checked": false - }, - { - "name": "cell", - "trans": [ - "n. 细胞, 电池, 小组, 小房间, 单人牢房, (蜂房的)巢室, 手机" - ], - "id": "DkSLJu", - "checked": false - }, - { - "name": "channel", - "trans": [ - "n. 通道,频道,海峡,方法 vt. 引导,开导,形成河道,输送" - ], - "id": "AzVn-b", - "checked": false - } - ], - [ - { - "name": "circuit", - "trans": [ - "n. 电路,一圈,巡回 vt. &vi. 巡回" - ], - "id": "RhIKZN", - "checked": false - }, - { - "name": "to", - "trans": [ - "prep. (表示方向)到,向;(表示间接关系)给;离,对于,为了 adv. (表示方向)去,(门)关上" - ], - "id": "FA4sr4", - "checked": false - }, - { - "name": "coder", - "trans": [ - "n. 编码器" - ], - "id": "VEIfV2", - "checked": false - }, - { - "name": "unit", - "trans": [ - "n. 单位, 单元" - ], - "id": "Fkgotg", - "checked": false - }, - { - "name": "core", - "trans": [ - "n.中心,核心,精髓; 果心,果核; [地质学]地核; [计] 磁心 vt.去(果)核,挖去…的果心; 提取岩芯(样品)" - ], - "id": "ElKAwV", - "checked": false - }, - { - "name": "cybernetics", - "trans": [ - "n. 控制论" - ], - "id": "9621Vl", - "checked": false - }, - { - "name": "disc", - "trans": [ - "n. 圆盘,[电子] 唱片(等于disk) vt. 灌唱片" - ], - "id": "W1kaC2", - "checked": false - }, - { - "name": "drum", - "trans": [ - "n. 鼓, 鼓声, 鼓状物, 冰丘 vi. 击鼓, 作鼓声, 引起兴趣 vt. 召集入伍, 逐出, (经过努力)推动..., 连续击打" - ], - "id": "MoBOJQ", - "checked": false - }, - { - "name": "electronics", - "trans": [ - "n. 电子学,电子器件" - ], - "id": "TUQJA5", - "checked": false - }, - { - "name": "emitter", - "trans": [ - "n.发射器" - ], - "id": "6Abxzo", - "checked": false - }, - { - "name": "encode", - "trans": [ - "vt. 编码, 译码" - ], - "id": "sR0w40", - "checked": false - }, - { - "name": "feedback", - "trans": [ - "n. 反馈,成果" - ], - "id": "XPyQst", - "checked": false - }, - { - "name": "flow", - "trans": [ - "vi.流; 垂; 流出; (谈话、文体等)流畅 n.流动; 滔滔不绝; 涨潮; 连贯 vt.使泛滥; 淹没; 排出" - ], - "id": "bhYvsy", - "checked": false - }, - { - "name": "frame", - "trans": [ - "n. 框,结构,骨架 v. 构成,把...框起来,陷害 adj. 木结构的" - ], - "id": "TeXav-", - "checked": false - }, - { - "name": "identifier", - "trans": [ - "n. 标识符" - ], - "id": "uEj1e5", - "checked": false - }, - { - "name": "inquiry", - "trans": [ - "n. 打听, 询问, 调查, 查问 =enquiry(英)" - ], - "id": "FOM6aJ", - "checked": false - }, - { - "name": "integrated", - "trans": [ - "adj. 整合的,综合的 vt.&vi. 使整合(integrate的过去式及过去分词)" - ], - "id": "RiJShZ", - "checked": false - }, - { - "name": "latency", - "trans": [ - "n. 潜伏, 潜在" - ], - "id": "T58eSc", - "checked": false - }, - { - "name": "linkage", - "trans": [ - "n. 连合, 连锁, 结合" - ], - "id": "fLosrH", - "checked": false - }, - { - "name": "logger", - "trans": [ - "n. 伐木工, 记录器, 注册器" - ], - "id": "iWVYGh", - "checked": false - }, - { - "name": "magnetic", - "trans": [ - "adj. 有磁性的,有吸引力的,催眠术的" - ], - "id": "h2FheD", - "checked": false - }, - { - "name": "matrix", - "trans": [ - "n. 母体,子宫 细胞 脉石,字母 n.矩阵" - ], - "id": "OQcwz8", - "checked": false - }, - { - "name": "microcomputer", - "trans": [ - "n. 微电脑 [计算机] 微机计算机" - ], - "id": "YaSjjv", - "checked": false - }, - { - "name": "nanosecond", - "trans": [ - "n. 毫微秒,极短的时间" - ], - "id": "lok5z0", - "checked": false - }, - { - "name": "octet", - "trans": [ - "n. [音] 八重唱, 八重奏 n. 八位位组" - ], - "id": "GSlAYj", - "checked": false - }, - { - "name": "optical", - "trans": [ - "adj. 眼睛的, 视觉的, 光学的" - ], - "id": "Ki9oTC", - "checked": false - }, - { - "name": "panel", - "trans": [ - "n.镶板; 面; (门、墙等上面的)嵌板; 控制板 vt.选定(陪审团); 把…分格; 在…上置鞍垫; 把…镶入框架内" - ], - "id": "G7yeXi", - "checked": false - }, - { - "name": "perforator", - "trans": [ - "n.穿孔器,穿孔员" - ], - "id": "h8uOE_", - "checked": false - }, - { - "name": "peripheral", - "trans": [ - "adj. 不重要的,外围的 n. 外围设备" - ], - "id": "sAJtm0", - "checked": false - }, - { - "name": "pulse", - "trans": [ - "n. 脉冲,脉波,脉搏 vt. &vi. 跳动,脉跳" - ], - "id": "pBxWUo", - "checked": false - } - ], - [ - { - "name": "redundancy", - "trans": [ - "n. 冗余,备份,多余信息" - ], - "id": "va5Iz7", - "checked": false - }, - { - "name": "selector", - "trans": [ - "n. 挑选者,选择器" - ], - "id": "NfWLto", - "checked": false - }, - { - "name": "sentinel", - "trans": [ - "n. 哨兵(标记,传送) vt 放哨(守卫)" - ], - "id": "roumtX", - "checked": false - }, - { - "name": "simulation", - "trans": [ - "n. 模拟,仿真,赝品" - ], - "id": "K3B6F9", - "checked": false - }, - { - "name": "simulator", - "trans": [ - "模拟程序" - ], - "id": "HV0VWH", - "checked": false - }, - { - "name": "sorter", - "trans": [ - "n.从事分类的人,把东西分类拣选的人" - ], - "id": "JfQlB5", - "checked": false - }, - { - "name": "symbolic", - "trans": [ - "n. 代号 adj. 象征的, 符号的" - ], - "id": "cwlxJG", - "checked": false - }, - { - "name": "tabulator", - "trans": [ - "n. 制表者, 制表机, 跳格键" - ], - "id": "Kz7vUm", - "checked": false - }, - { - "name": "teleprinter", - "trans": [ - "n. 电传打印机" - ], - "id": "dq8_23", - "checked": false - }, - { - "name": "timer", - "trans": [ - "n. 计时员,记时器, 跑表" - ], - "id": "JJP-kc", - "checked": false - }, - { - "name": "timing", - "trans": [ - "n. 时间的掌握(安排, 配合)" - ], - "id": "ypsCgc", - "checked": false - }, - { - "name": "transducer", - "trans": [ - "n. 转换器, 传感器" - ], - "id": "7Ji2nT", - "checked": false - }, - { - "name": "translator", - "trans": [ - "n. 翻译者" - ], - "id": "ReIhqc", - "checked": false - }, - { - "name": "Winchester", - "trans": [ - "n. 温彻斯特(英格兰南部城市)" - ], - "id": "dJ9GR1", - "checked": false - }, - { - "name": "multimedia", - "trans": [ - "adj. 多媒体的 n. 多媒体" - ], - "id": "HtkXnM", - "checked": false - }, - { - "name": "pentium", - "trans": [ - "Intel公司生产的CPU芯片,中文译名为\"奔腾\"" - ], - "id": "uyOow-", - "checked": false - }, - { - "name": "kilo", - "trans": [ - "pref. 表示“千” abbr. 千克,公斤(=kilogram/kilogramme)" - ], - "id": "wGBGMf", - "checked": false - }, - { - "name": "giga", - "trans": [ - "pref. 千兆" - ], - "id": "00Oneg", - "checked": false - }, - { - "name": "bracketed", - "trans": [ - "方括号;托架;括号" - ], - "id": "Q_jRC6", - "checked": false - }, - { - "name": "debugger", - "trans": [ - "调试器" - ], - "id": "rBneao", - "checked": false - } - ] - ], - "residueWords": [], - "chapterIndex": 0, - "wordIndex": 0, - "articles": [], - "statistics": [], - "isCustom": true, - "length": 1699, - "resourceId": "", - "url": "it-words.json", - "category": "代码练习", - "tags": [ - "通用" - ], - "translateLanguage": "zh-CN", - "type": "word", - "language": "code" - } - ], - "collectDictIds": [], - "current": { - "index": 3, - "practiceType": "word" - }, - "simpleWords": [ - "a", - "an", - "i", - "my", - "you", - "your", - "me", - "it", - "am", - "is", - "do", - "are", - "did", - "were", - "what", - "who", - "where", - "how", - "no", - "yes", - "not", - "can", - "could", - "the", - "to", - "of", - "for", - "and", - "that", - "this", - "be", - "for", - "and", - "at", - "not", - "no", - "yes" - ], - "load": true - }, - "version": 3 -} +"{\"val\":{\"myDictList\":[{\"id\":\"collect\",\"name\":\"收藏\",\"description\":\"\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[\"自带\"],\"translateLanguage\":\"common\",\"type\":\"collect\",\"language\":\"en\"},{\"id\":\"skip\",\"name\":\"简单词\",\"description\":\"\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[],\"translateLanguage\":\"common\",\"type\":\"simple\",\"language\":\"en\"},{\"id\":\"wrong\",\"name\":\"错词本\",\"description\":\"\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[],\"translateLanguage\":\"common\",\"type\":\"wrong\",\"language\":\"en\"},{\"id\":\"cet4\",\"name\":\"CET-4\",\"description\":\"大学英语四级词库\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":false,\"length\":2607,\"resourceId\":\"\",\"url\":\"CET4_T.json\",\"category\":\"中国考试\",\"tags\":[\"大学英语\"],\"translateLanguage\":\"common\",\"type\":\"word\",\"language\":\"en\"}],\"collectDictIds\":[],\"current\":{\"index\":3,\"practiceType\":\"word\"},\"simpleWords\":[\"a\",\"an\",\"i\",\"my\",\"you\",\"your\",\"me\",\"it\",\"what\",\"who\",\"where\",\"how\",\"when\",\"which\",\"be\",\"am\",\"is\",\"do\",\"are\",\"did\",\"were\",\"was\",\"can\",\"could\",\"will\",\"would\",\"the\",\"that\",\"this\",\"to\",\"of\",\"for\",\"and\",\"at\",\"not\",\"no\",\"yes\"],\"load\":true},\"version\":3}" diff --git a/src/pages/test/test.vue b/src/pages/test/test.vue index d5801b1c..6ae2809b 100644 --- a/src/pages/test/test.vue +++ b/src/pages/test/test.vue @@ -4,32 +4,11 @@ import BaseButton from "@/components/BaseButton.vue"; import {checkAndUpgradeSaveDict, shakeCommonDict} from "@/utils"; import localforage from "localforage"; import {SAVE_DICT_KEY} from "@/utils/const.ts"; +import str from './data.json' -let data = { - "title": "A cold welcome", - "titleTranslate": "冷遇", - "text": "On Wednesday evening, we went to the Town Hall. It was the last day of the year and a large crowd of people had gathered under the Town Hall clock. It would strike twelve in twenty minutes' time. Fifteen minutes passed and then, at five to twelve, the clock stopped. The big minute hand did not move. We waited and waited, but nothing happened. Suddenly someone shouted. 'It's two minutes past twelve! The clock has stopped!' I looked at my watch. It was true. The big clock refused to welcome the New Year. At that moment, everybody began to laugh and sing.\n", - "textTranslate": "星期三的晚上,我们去了市政厅。 那是一年的最后一天,一大群人聚集在市政厅的大钟下面。再过20分钟,大钟将敲响12下。15分钟过去了,而就在11点55分时,大钟停了。那根巨大的分针不动了。 我们等啊等啊,可情况没有变化。突然有人喊道:“已经12点零2分了!那钟已经停了!”我看了一下我的手表,果真如此。那座大钟不愿意迎接新年。此时,大家已经笑了起来,同时唱起了歌。", - "textNetworkTranslate": "", - "textTranslateIsFormat": false, - "useTranslateType": "custom", - "newWords": [], - "id": "UydP2M" -} -// data = { -// "title": "The best and the worst", -// "titleTranslate": "最好的和最差的", -// "text": "Joe Sanders has the most beautiful garden in our town. Nearly everybody enters for 'The Nicest Garden Competition' each year, but Joe wins every time. Bill Frith's garden is larger than Joe's. Bill works harder than Joe and grows more flowers and vegetables, but Joe's garden is more interesting. He has made neat paths and has built a wooden bridge over a pool. I like gardens too, but I do not like hard work. Every year I enter for the garden competition too, and I always win a little prize for the worst garden in the town!", -// "textTranslate": "乔.桑德斯拥有我们镇上最漂亮的花园。\n几乎每个人都参加每年举办的“最佳花园竞赛”,而每次都是乔获胜。\n比尔.弗里斯的花园比乔的花园大,\n他比乔也更为勤奋,种植的花卉和蔬菜也更多,但乔的花园更富有情趣。\n他修筑了一条条整洁的小路,并在一个池塘上架了一座小木桥。\n我也喜欢花园,但我却不愿意辛勤劳动。\n每年的花园竞赛我也参加,但总因是镇上最劣的花园而获得一个小奖!", -// "textNetworkTranslate": "", -// "textTranslateIsFormat": true, -// "useTranslateType": "custom", -// "newWords": [], -// "id": "TdAAqD" -// } -let origin ={"val":{"myDictList":[{"id":"collect","name":"收藏","description":"","sort":0,"originWords":[],"words":[],"chapterWordNumber":30,"chapterWords":[],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[],"statistics":[],"isCustom":true,"length":0,"resourceId":"","url":"","category":"自带字典","tags":["自带"],"translateLanguage":"common","type":"collect","language":"en"},{"id":"skip","name":"简单词","description":"","sort":0,"originWords":[],"words":[],"chapterWordNumber":30,"chapterWords":[],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[],"statistics":[],"isCustom":true,"length":0,"resourceId":"","url":"","category":"自带字典","tags":[],"translateLanguage":"common","type":"simple","language":"en"},{"id":"wrong","name":"错词本","description":"","sort":0,"originWords":[{"name":"cancel","trans":["vt.取消,注销,抵消,偿还,〈数〉约去","vi.抵消,中和","n.撤销,注销,〈数〉(相)约"],"usphone":"ˈkænsəl","ukphone":"ˈkænsl","id":"Lqj83e"},{"name":"explosive","trans":["adj.爆炸的,易爆炸的,突增的,暴躁的","n.爆炸物,炸药,语言学 爆破音"],"usphone":"ɪkˈsploʊsɪv","ukphone":"ɪkˈspləʊsɪv","id":"VrsZfS"},{"name":"numerous","trans":["adj.很多的,许多的,数量庞大的数量庞大的,数不清的"],"usphone":"ˈnu:mərəs","ukphone":"ˈnju:mərəs","id":"Ct3se2"},{"name":"analyse","trans":["vt.分析,分解,细察na.“analyze”的变体"],"usphone":"ˈænəˌlaɪz","ukphone":"ˈænəlaɪz","id":"t6XApd"},{"name":"salary","trans":["n.薪水,薪金,薪俸","vt.给…加薪,给…薪水,发…薪水,付…薪水"],"usphone":"ˈsælri","ukphone":"ˈsæləri","id":"_GVBbr","checked":false}],"words":[{"name":"cancel","trans":["vt.取消,注销,抵消,偿还,〈数〉约去","vi.抵消,中和","n.撤销,注销,〈数〉(相)约"],"usphone":"ˈkænsəl","ukphone":"ˈkænsl","id":"Lqj83e"},{"name":"explosive","trans":["adj.爆炸的,易爆炸的,突增的,暴躁的","n.爆炸物,炸药,语言学 爆破音"],"usphone":"ɪkˈsploʊsɪv","ukphone":"ɪkˈspləʊsɪv","id":"VrsZfS"},{"name":"numerous","trans":["adj.很多的,许多的,数量庞大的数量庞大的,数不清的"],"usphone":"ˈnu:mərəs","ukphone":"ˈnju:mərəs","id":"Ct3se2"},{"name":"analyse","trans":["vt.分析,分解,细察na.“analyze”的变体"],"usphone":"ˈænəˌlaɪz","ukphone":"ˈænəlaɪz","id":"t6XApd"},{"name":"salary","trans":["n.薪水,薪金,薪俸","vt.给…加薪,给…薪水,发…薪水,付…薪水"],"usphone":"ˈsælri","ukphone":"ˈsæləri","id":"_GVBbr","checked":false}],"chapterWordNumber":30,"chapterWords":[[{"name":"cancel","trans":["vt.取消,注销,抵消,偿还,〈数〉约去","vi.抵消,中和","n.撤销,注销,〈数〉(相)约"],"usphone":"ˈkænsəl","ukphone":"ˈkænsl","id":"Lqj83e"},{"name":"explosive","trans":["adj.爆炸的,易爆炸的,突增的,暴躁的","n.爆炸物,炸药,语言学 爆破音"],"usphone":"ɪkˈsploʊsɪv","ukphone":"ɪkˈspləʊsɪv","id":"VrsZfS"},{"name":"numerous","trans":["adj.很多的,许多的,数量庞大的数量庞大的,数不清的"],"usphone":"ˈnu:mərəs","ukphone":"ˈnju:mərəs","id":"Ct3se2"},{"name":"analyse","trans":["vt.分析,分解,细察na.“analyze”的变体"],"usphone":"ˈænəˌlaɪz","ukphone":"ˈænəlaɪz","id":"t6XApd"},{"name":"salary","trans":["n.薪水,薪金,薪俸","vt.给…加薪,给…薪水,发…薪水,付…薪水"],"usphone":"ˈsælri","ukphone":"ˈsæləri","id":"_GVBbr","checked":false}]],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[],"statistics":[],"isCustom":true,"length":0,"resourceId":"","url":"","category":"自带字典","tags":[],"translateLanguage":"common","type":"wrong","language":"en"},{"id":"cet4","name":"CET-4","description":"大学英语四级词库","sort":0,"originWords":[],"words":[],"chapterWordNumber":30,"chapterWords":[],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[],"statistics":[],"isCustom":false,"length":2607,"resourceId":"","url":"CET4_T.json","category":"中国考试","tags":["大学英语"],"translateLanguage":"common","type":"word","language":"en"},{"id":"T3sh6m","name":"新概念英语2-课文","description":"新概念英语2-课文","sort":0,"originWords":[],"words":[],"chapterWordNumber":30,"chapterWords":[],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[{"title":"Breakfast or lunch?","titleTranslate":"早餐还是午餐?","text":"It was Sunday. I never get up early on Sundays. I sometimes stay in bed until lunchtime. Last Sunday I got up very late. I looked out of the window. It was dark outside. 'What a day!' I thought. 'It's raining again.' Just then, the telephone rang. It was my aunt Lucy. 'I've just arrived by train,' she said. 'I'm coming to see you.'\n 'But I'm still having breakfast,' I said.\n 'What are you doing?' she asked.\n 'I'm having breakfast,' I repeated.\n 'Dear me,' she said. 'Do you always get up so late? It's one o'clock!'","textCustomTranslate":"那是个星期天,\n而在星期天我是从来不早起的,\n有时我要一直躺到吃午饭的时候。\n上个星期天,我起得很晚。\n我望望窗外,外面一片昏暗。\n“鬼天气!”\n我想,“又下雨了。”\n正在这时,电话铃响了。\n是我姑母露西打来的。\n“我刚下火车,”她说,\n“我这就来看你。”\n\n“但我还在吃早饭,”我说。\n\n“你在干什么?”她问道。\n\n“我正在吃早饭,”我又说了一遍。\n\n“天啊,”她说,\n“你总是起得这么晚吗?","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"useTranslateType":"custom","newWords":[],"id":"wi6k0e"},{"title":"Please send me a card","titleTranslate":"请给我寄一张明信片","text":"Postcards always spoil my holidays. Last summer, I went to Italy. I visited museums and sat in public gardens. A friendly waiter taught me a few words of Italian. Then he lent me a book. I read a few lines, but I did not understand a word. Everyday I thought about postcards. My holidays passed quickly, but I did not send cards to my friends. On the last day I made a big decision. I got up early and bought thirty-seven cards. I spent the whole day in my room, but I did not write a single card!","textCustomTranslate":"明信片总搅得我假日不得安宁。\n去年夏天,我去了意大利。\n我参观了博物馆,还去了公园。\n一位好客的服务员教了我几句意大利语,\n之后还借给我一本书。\n我读了几行,但一个字也不懂。\n我每天都想着明信片的事。\n假期过得真快,可我还没有给我的朋友们寄过一张明信片。\n到了最后一天,我作出了一项重大决定。\n我早早起了床,买来了37张明信片。\n我在房间里关了整整一天。\n然而竟连一张明信片也没写成!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"useTranslateType":"custom","newWords":[],"id":"CNGTqr"},{"title":"No wrong numbers","titleTranslate":"无错号之虞","text":"Mr.James Scott has a garage in Silbury and now he has just bought another garage in Pinhurst. Pinhurst is only five miles from Silbury, but Mr. Scott cannot get a telephone for his new garage, so he has just bought twelve pigeons. Yesterday, a pigeon carried the first message from Pinhurst to Silbury. The bird covered the distance in three minutes. Up to now, Mr.Scott has sent a great many requests for spare parts and other urgent messages from one garage to the other. In this way, he has begun his own private 'telephone' service.","textCustomTranslate":"詹姆斯.斯科特先生在锡尔伯里有一个汽车修理部,现在他刚在平赫斯特买了另一个汽车修理部。\n平赫特离锡尔伯里只有5英里,但詹姆斯.斯科特先生未能为他新的汽车修理部搞到一部电话机,所以他买了只鸽子。\n昨天,一只鸽子把第一封信从平赫特带到锡尔伯里。\n这只鸟只用了3分钟就飞完了全程。\n到目前为止,斯科特先生从一个汽车修理部向另一个发送了大量索取备件的信件和其他紧急函件。\n就这样,他开始自己的私人“电话”业务。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"useTranslateType":"custom","newWords":[],"id":"fr8V6q"},{"title":"Percy Buttons","titleTranslate":"珀西.巴顿斯","text":"I have just moved to a house in Bridge Street. Yesterday a beggar knocked at my door. He asked me for a meal and a glass of beer. In return for this, the beggar stood on his head and sang songs. I gave him a meal. He ate the food and drank the beer. Then he put a piece of cheese in his pocket and went away. Later a neighbour told me about him. Everybody knows him. His name is Percy Buttons. He calls at every house in the street once a month and always asks for a meal and a glass of beer.","textCustomTranslate":"我刚刚搬进了大桥街的一所房子。\n昨天一个乞丐来敲我的门,\n问我要一顿饭和一杯啤酒。\n作为回报,那乞丐头顶地倒立起来,嘴里还唱着歌。\n我给了他一顿饭。\n他把食物吃完,又喝了酒。\n然后把一块乳酪装进衣袋里走了。\n后来,一位邻居告诉了我他的情况。\n大家都认识他,\n他叫珀西.巴顿斯。\n他每月对这条街上的每户人家光顾一次,总是请求给他一顿饭和一杯啤酒。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"useTranslateType":"custom","newWords":[],"id":"WhEquc"},{"id":"G-pCwp","title":"Not for jazz","titleTranslate":"不适于演奏爵士乐","text":"We have an old musical instrument. It is called a clavichord. It was made in Germany in 1681. Our clavichord is kept in the living room. It has belonged to our family for a long time. The instrument was bought by my grandfather many years ago. Recently it was damaged by a visitor. She tried to play jazz on it! She struck the keys too hard and two of the strings were broken. My father was shocked. Now we are not allowed to touch it. It is being repaired by a friend of my fathers.","textCustomTranslate":"","textNetworkTranslate":"我们有一件旧乐器。\n它被称为古钢琴。\n它于1681年在德国制造。\n我们的古钢琴放在客厅里。\n它属于我们家已经很久了。\n这乐器是我爷爷多年前买的。\n最近它被一位游客损坏了。\n她试着在上面演奏爵士乐!\n她用力敲击琴键,导致两根琴弦断裂。\n我父亲很震惊。\n现在我们不能碰它。\n我父亲的一个朋友正在修理它。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"GBqsK3","title":"One good turn deserves another","titleTranslate":"礼尚往来","text":"I was having dinner at a restaurant when Tony Steele came in. Tony worked in a lawyer's office years ago, but he is now working at a bank. He gets a good salary, but he always borrows money from his friends and never pays it back. Tony saw me and came and sat at the same table. He has never borrowed money from me. While he was eating, I asked him to lend me twenty pounds. To my surprise, he gave me the money immediately. I have never borrowed any money from you, Tony said, so now you can pay for my dinner!","textCustomTranslate":"","textNetworkTranslate":"托尼·斯蒂尔进来的时候,我正在一家餐馆吃晚饭。\n托尼几年前在律师事务所工作,但现在在一家银行工作。\n他薪水不错,但他总是向朋友借钱,从不还。\n托尼看到了我,走了过来,坐在同一张桌子旁。\n他从来没有向我借钱。\n他吃饭的时候,我请他借我二十英镑。\n令我惊讶的是,他立即把钱给了我。\n“我从来没有向你借过钱,”托尼说,“所以现在你可以支付我的晚餐了!”!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"J2b4ER","title":"Goodbye and good luck","titleTranslate":"再见, 一路顺风","text":"Our neighbour, Captain Charles Alison, will sail from Portsmouth tomorrow. Well meet him at the harbour early in the morning. He will be in his small boat, Topsail. Topsail is a famous little boat. It has sailed across the Atlantic many times. Captain Alison will set out at eight oclock, so well have plenty of time. Well see his boat and then well say goodbye to him. He will be away for two months. We are very proud of him. He will take part in an important race across the Atlantic.","textCustomTranslate":"","textNetworkTranslate":"我们的邻居查尔斯·阿利森船长明天将从朴茨茅斯启航。\n我们一大早在港口接他。\n他将乘坐他的小船托普赛尔号。\n托普赛尔号是一艘著名的小船。\n它已经多次横渡大西洋。\n艾莉森船长八点钟出发,所以我们有充足的时间。\n我们看看他的船,然后和他说再见。\n他将离开两个月。\n我们为他感到骄傲。\n他将参加一场横渡大西洋的重要比赛。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"Q-GlAu","title":"The Greenwood Boys","titleTranslate":"绿林少年","text":"The Greenwood Boys are a group of pop singers. At present, they are visiting all parts of the country. They will be arriving here tomorrow. They will be coming by train and most of the young people in the town will be meeting them at the station. Tomorrow evening they will be singing at the Workers Club. The Greenwood Boys will be staying for five days. During this time, they will give five performances. As usual, the police will have a difficult time. They will be trying to keep order. It is always the same on these occasions.","textCustomTranslate":"","textNetworkTranslate":"格林伍德男孩是一群流行歌手。\n目前,他们正在访问全国各地。\n他们明天将到达这里。\n他们将乘火车来,镇上的大多数年轻人将在车站迎接他们。\n明晚他们将在工人俱乐部唱歌。\n格林伍德男孩将在这里呆五天。\n在此期间,他们将进行五场演出。\n和往常一样,警察会遇到困难。\n他们将努力维持秩序。\n在这些场合总是一样。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"Bu5BBT","title":"Do you speak English?","titleTranslate":"你会讲英语吗?","text":"I had an amusing experience last year. After I had left a small village in the south of France, I drove on to the next town. On the way, a young man waved to me. I stopped and he asked me for a lift. As soon as he had got into the car, I said good morning to him in French and he replied in the same language. Apart from a few words, I do not know any French at all. Neither of us spoke during the journey. I had nearly reached the town, when the young man suddenly said, very slowly, \"Do you speak English? As I soon learnt, he was English himself!","textCustomTranslate":"","textNetworkTranslate":"去年我有一次有趣的经历。\n离开法国南部的一个小村庄后,我驱车前往下一个城镇。\n在路上,一个年轻人向我挥手。\n我停下来,他让我搭便车。\n他一上车,我就用法语和他说早上好,他也用同样的语言回答。\n除了几个字,我一点法语都不懂。\n旅途中我们俩都没说话。\n我快到城里的时候,年轻人突然很慢地说:“你会说英语吗?\n我很快就知道了,他自己就是英国人!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"zFHNU5","title":"Good news","titleTranslate":"佳音","text":"The secretary told me that Mr. Harmsworth would see me. I felt very nervous when I went into his office. He did not look up from his desk when I entered. After I had sat down, he said that business was very bad. He told me that the firm could not afford to pay such large salaries. Twenty people had already left. I knew that my turn had come.\nMr.Harmsworth, I said in a weak voice.\nDon't interrupt, he said.\nThen he smiled and told me I would receive an extra thousand pounds a year!","textCustomTranslate":"秘书告诉我说哈姆斯沃斯先生要见我。\r\n我走进他的办公室,感到非常紧张。\r\n我进去的时候,他连头也没抬。\r\n待我坐下后,他说生意非常不景气。\r\n他还告诉我,公司支付不起这么庞大的工资开支,\r\n有20个人已经离去。\r\n我知道这次该轮到我了。\r\n\r\n“哈姆斯沃斯先生,”我无力地说。\r\n\r\n“不要打断我的话,”他说。\r\n\r\n然后他微笑了一下告诉我说,我每年将得到1,000 英镑的额外收入。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"8S9YbR","title":"A polite request","titleTranslate":"彬彬有礼的要求","text":"If you park your car in the wrong place, a traffic policeman will soon find it. You will be very lucky if he lets you go without a ticket. However, this does not always happen. Traffic police are sometimes very polite. During a holiday in Sweden, I found this note on my car: sir, we welcome you to our city. This is a \"No Parking\" area. You will enjoy your stay here if you pay attention to our street signs. This note is only a reminder. If you receive a request like this, you cannot fail to obey it!","textCustomTranslate":"一旦你把汽车停错了地方,交通警很快就会发现。\n如果他没给你罚单就放你走了,算你走运。\n然而,情况并不都是这样,\n交通警有时也很客气。\n有一次在瑞典度假,我发现我的车上有这样一个字条:“先生,欢迎您光临我们的城市。\n此处是‘禁止停车’区。\n如果您对我们街上的标牌稍加注意,您在此会过得很愉快的。\n谨此提请注意。\n如果你收到这样的恳求,你是不会不遵照执行的!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"YV14mY","title":"Always young","titleTranslate":"青春常驻","text":"My aunt Jennifer is an actress. She must be at least thirty-five years old. In spite of this, she often appears on the stage as a young girl. Jennifer will have to take part in a new play soon. This time, she will be a girl of seventeen. In the play, she must appear in a bright red dress and long black stockings. Last year in another play, she had to wear short socks and a bright, orange-coloured dress. If anyone ever asks her how old she is, she always answers, ‘Darling, it must be terrible to be grown up!","textCustomTranslate":"我的姑姑詹妮弗是位演员,\n她至少也有35岁了。\n尽管如此,她却常在舞台上扮演小姑娘。\n詹妮弗很快又要参加一个新剧的演出。\n这一次,她将扮演一个17岁的少女。\n演出时她必须穿一条鲜红色的裙子和黑色的长筒袜。\n去年在演另一个剧时,她不得不穿短袜和一件鲜艳的橘红色的衣服。\n一旦有人问起她有多大年纪,她总是回答:“亲爱的,长成大人真可怕啊!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"PaT-lG","title":"He often does this!","titleTranslate":"他经常干这种事!","text":"After I had had lunch at a village pub, I looked for my bag. I had left it on a chair beside the door and now it wasnt there! As I was looking for it, the landlord came in.\nDid you have a good meal?\" he asked.\nYes, thank you, I answered, but I cant pay the bill. I havent got my bag.\nThe landlord smiled and immediately went out. In a few minutes he returned with my bag and gave it back to me.\nIm very sorry, he said. My dog had taken it into the garden. He often does this!","textCustomTranslate":"我在一家乡村小酒店吃过午饭后,就找我的提包。\n我曾把它放在门边的椅子上,可这会儿不见了!\n当我正在寻找时,酒店老板走了进来。\n\n“您吃得好吗?” 他问。\n\n“很好,谢谢。” 我回答,但我付不了帐,\n我的提包没有了。”\n\n酒店老板笑了笑,马上走了出去。\n一会儿工夫他拿着我的提包回来了,把它还给了我。\n\n“实在抱歉,”他说,\n“我的狗把它弄到花园里去了,\n他常干这种事!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"3GEdgN","title":"Sold out","titleTranslate":"票已售完","text":"'The play may begin at any moment,' I said.\n\n'It may have begun already,' Susan answered.\n\nI hurried to the ticket office. 'May I have two tickets please?' I asked.\n\n'I'm sorry, we've sold out,' the girl said.\n\n'What a pity!' Susan exclaimed.\n\nJust then, a man hurried to the ticket office.\n\n'Can I return these two tickets?' he asked.\n\n'Certainly,' the girl said.\n\nI went back to the ticket office at once.\n\n'Could I have those two tickets please?' I asked.\n\n'Certainly,' the girl said, 'but they're for next Wednesday's performance. Do you still want them?'\n\n'I might as well have them,' I said sadly.","textCustomTranslate":"“剧马上就要开演了,”我说。\n\n“也许已经开演了呢,”苏珊回答说。\n\n我匆匆赶到售票处,\n问:“我可以买两张票吗?”\n\n“对不起,票已售完。”那位姑娘说。\n\n“真可惜!”苏珊大声说。\n\n正在这时,一个男子匆匆奔向售票处。\n\n“我可以退掉这两张票吗?”他问。\n\n“当然可以,”那姑娘说。\n\n我马上又回到售票处。\n\n“我可以买那两张票吗?”我问。\n\n“当然可以,不过这两张票是下星期三的,您是否还要呢?”\n\n\n“我还是买下的好,”我垂头丧气地说。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"U5f9tb","title":"One man in a boat","titleTranslate":"独坐孤舟","text":"Fishing is my favourite sport. I often fish for hours without catching anything. But this does not worry me. Some fishermen are unlucky. Instead of catching fish, they catch old boots and rubbish. I am even less lucky. I never catch anything -- not even old boots. After having spent whole mornings on the river, I always go home with an empty bag. You must give up fishing! my friends say. Its a waste of time. But they dont realize one important thing. Im not really interested in fishing. I am only interested in sitting in a boat and doing nothing at all!","textCustomTranslate":"钓鱼是我特别喜爱的一项运动。\n我经常一钓数小时却一无所获,\n但我从不为此烦恼。\n有些垂钓者就是不走运,\n他们往往鱼钓不到,却钓上来些旧靴子和垃圾。\n我的运气甚至还不及他们。\n我什么东西也未钓到过 -- 就连旧靴子也没有。\n我总是在河上呆上整整一上午,然后空着袋子回家。\n“你可别再钓鱼了!”\n我的朋友们说,\n“这是浪费时间。”\n然而他们没有认识到重要的一点,\n我并不是真的对钓鱼有兴趣,\n我感兴趣的只是独坐孤舟,无所事事!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"g0kSja","title":"Mad or not?","titleTranslate":"是不是疯了","text":"Aeroplanes are slowly driving me mad. I live near an airport and passing planes can be heard night and day. The airport was built years ago, but for some reason it could not be used then. Last year, however, it came into use. Over a hundred people must have been driven away from their homes by the noise. I am one of the few people left. Sometimes I think this house will be knocked down by a passing plane. I have been offered a large sum of money to go away, but I am determined to stay here. Everybody says I must be mad and they are probably right.","textCustomTranslate":"飞机正在逐渐把我逼疯。\n我住在一个机场附近,过往飞机日夜不绝于耳。\n机场是许多年前建的,但由于某种原因当时未能启用。\n然而去年机场开始使用了。\n有100多人肯定是被噪音逼得已经弃家远去,\n我是少数留下来的人中的一个。\n有时我觉得这房子就要被一架飞过的飞机撞倒。\n他们曾向我提供一大笔钱让我搬走,但我决定留在这儿。\n大家都说我肯定是疯了,也许他们说的是对的。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"rtW-7v","title":"A glass envelope","titleTranslate":"玻璃信封","text":"My daughter, Jane, never dreamed of receiving a letter from a girl of her own age in Holland. Last year, we were travelling across the Channel and Jane put a piece of paper with her name and address on it into a bottle. She threw the bottle into the sea. She never thought of it again, but ten months later, she received a letter from a girl in Holland. Both girls write to each other regularly now. However, they have decided to use the post office. Letters will cost a little more, but they will certainly travel faster.","textCustomTranslate":"我的女儿简从未想过会接到荷兰一位同龄姑娘的来信。\n去年,当我们横渡英吉利海峡时,简把写有她姓名和住址的一张纸条装进了一只瓶子,\n又将瓶子扔进了大海。\n此后她就再没去想那只瓶子。但10个月以后,她收到了荷兰一位姑娘的来信。\n现在这两位姑娘定期通信了。\n然而她们还是决定利用邮局。\n这样会稍微多花点钱,但肯定是快得多了。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"lBw4bU","title":"A new house","titleTranslate":"新居","text":"I had a letter from my sister yesterday. She lives in Nigeria. In her letter, she said that she would come to England next year. If she comes, she will get a surprise. We are now living in a beautiful new house in the country. Work on it had begun before my sister left. The house was completed five months ago. In my letter, I told her that she could stay with us. The house has many large rooms and there is a lovely garden. It is a very modern house, so it looks strange to some people. It must be the only modern house in the district.","textCustomTranslate":"昨天我收到了姐姐的一封信,\n她住在尼日利亚。\n在信中她说她明年将到英国来。\n如果她来了,她会感到非常惊奇了。\n我们现在住在乡间的一栋漂亮的新住宅里。\n这栋房子在我姐姐离开之前就已动工了,\n是在5个月以前竣工的。\n我在信中告诉她,她可以和我们住在一起。\n这栋房子里有许多房间,还有一个漂亮的花园。\n它是一栋非常现代化的住宅,因此在有些人看来很古怪。\n它肯定是这个地区唯一的一栋现代化住宅。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"kHuKbq","title":"It could be worse","titleTranslate":"不幸中之万幸","text":"I entered the hotel managers office and sat down. I had just lost $50 and I felt very upset. I left the money in my room, I said, and its not there now. The manager was sympathetic, but he could do nothing. Everyones losing money these days, he said. He started to complain about this wicked world but was interrupted by a knock at the door. A girl came in and put an envelope on his desk. It contained $50. I found this outside this gentlemans room, she said. Well, I said to the manager, there is still some honesty in this world!","textCustomTranslate":"我走进饭店经理的办公室,坐了下来。\n我刚刚丢了50英镑,感到非常烦恼。\n“我把钱放在房间里,”我说,“可现在没有了。”\n经理深表同情,但却无能为力。\n“现在大家都在丢钱,”他说。\n他开始抱怨起这个邪恶的世道来,却被一阵敲门声打断了。\n一个姑娘走了进来,把一个信封放在了他桌上。\n它里面装着50英镑。\n“这是我在这位先生的房门外捡到的,”她说。\n“是啊,”我对那位经理说,“这世界上还是有诚实可言的!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"mEPUpv","title":"Do the English speak English?","titleTranslate":"英国人讲的是英语吗?","text":"I arrived in London at last. The railway station was big, black and dark. I did not know the way to my hotel, so I asked a porter. I not only spoke English very carefully, but very clearly as well. The porter, however, could not understand me. I repeated my question several times and at last he understood. he answered me, but he spoke neither slowly nor clearly. I am a foreigner, I said. Then he spoke slowly, but I could not understand him. My teacher never spoke English like that! The porter and I looked at each other and smiled. Then he said something and I understood it. Youll soon learn English! he said. I wonder. In England, each person speaks a different language. The English understand each other, but I dont understand them! Do they speak English?","textCustomTranslate":"我终于到了伦敦。\n火车站很大,又黑又暗。\n我不知道去饭店的路该怎么走,于是向一个搬运工打听。\n我的英语讲得不但非常认真,而且咬字也非常清楚。\n然而搬运工却不明白我的话。\n我把问话重复了很多遍。他终于听懂了。\n他回答了,但他讲得既不慢也不清楚。\n“我是个外国人,”我说。\n于是他说得慢了,可我还是听不懂。\n我的老师从来不那样讲英语!\n我和搬运工相视一笑。\n接着,他说了点什么,这回我听懂了。\n“您会很快学会英语的!”\n他说。\n我感到奇怪。\n在英国,人们各自说着一种不同的语言。\n英国人之间相互听得懂,可我却不懂他们的话!\n他们说的是英语吗?","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"4EO25Y","title":"The best art critics","titleTranslate":"最佳艺术评论家","text":"I am an art student and I paint a lot of pictures. Many people pretend that they understand modern art. They always tell you what a picture is about. Of course, many pictures are not about anything. They are just pretty patterns. We like them in the same way that we like pretty curtain material. I think that young children often appreciate modern pictures better than anyone else. They notice more. My sister is only seven, but she always tells me whether my pictures are good or not. She came into my room yesterday.\n\nWhat are you doing? she asked.\n\nIm hanging this picture on the wall, I answered. Its a new one. Do you like it?\nShe looked at it critically for a moment. Its all right, she said, but isnt it upside down?\nI looked at it again. She was right! It was!","textCustomTranslate":"我是个学艺术的学生,画了很多画。\r\n有很多人装成很懂现代艺术的样子,\r\n总是告诉你一幅画的“意思”是什么。\r\n当然,有很多画是什么“意思”也没有的。\r\n它们就是些好看的图案,\r\n我们喜爱它们就像我们喜欢漂亮的窗帘布一样。\r\n我觉得小孩子们往往比任何人都更能欣赏现代绘画,\r\n他们观察到的东西更多。\r\n我的妹妹只有7岁,但她总能说出我的画是好还是坏。\r\n昨天她到我房里来了。\r\n\r\n“你在干什么呢?”\r\n她问。\r\n\r\n“我正把这幅画挂到墙上去。”我回答说,\r\n“这是幅新画,\r\n你喜欢吗?”\r\n\r\n她用挑剔的目光看了一会儿。\r\n“还可以吧。”她说,“不过,是不是挂倒了?”\r\n\r\n我再次看了看画。\r\n她说对了!\r\n是挂倒了!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"m1I7bK","title":"A wet night","titleTranslate":"雨夜","text":"Late in the afternoon, the boys put up their tent in the middle of a field. As soon as this was done, they cooked a meal over an open fire. They were all hungry and the food smelled good. After a wonderful meal, they told stories and sang songs by the campfire. But some time later it began to rain. The boys felt tired so they put out the fire and crept into their tent. Their sleeping bags were warm and comfortable, so they all slept soundly. In the middle of the night, two boys woke up and began shouting. The tent was full of water! They all leapt out of their sleeping bags and hurried outside. It was raining heavily and they found that a stream had formed in the field. The stream wound its way across the field and then flowed right under their tent!","textCustomTranslate":"傍晚时分,孩子们在田野中央搭起了帐篷。\n这件事刚刚做完,他们就在篝火上烧起了饭。\n他们全都饿了,饭菜散发出阵阵香味。\n他们美美地吃了一顿饭后,就围在营火旁讲起了故事,唱起了歌。\n但过了一阵子。天下起雨来,\n孩子们感到累了,于是他们扑灭了火,爬进了帐篷。\n睡袋既暖和又舒服,所以,他们都睡得很香。\n午夜前后,有两个孩子醒了,大声叫了起来。\n原来帐篷里到处都是水!\n他们全都跳出睡袋,跑到外面。\n雨下得很大,他们发现地上已经形成了一条小溪。\n那小溪弯弯曲曲穿过田野,然后正好从他们的帐篷底下流过去。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"rsgV1j","title":"No parking","titleTranslate":"禁止停车","text":"Jasper White is one of those rare people who believes in ancient myths. he has just bought a new house in the city, but ever since he moved in, he has had trouble with cars and their owners. When he returns home at night, he always finds that someone has parked a car outside his gate. Because of this, he has not been able to get his own car into his garage even once. Jasper has put up No Parking signs outside his gate, but these have not had any effect. Now he has put an ugly stone head over the gate. It is one of the ugliest faces I have ever seen. I asked him what it was and he told me that it was Medusa, the Gorgon. jasper hopes that she will turn cars and their owners to stone. But none of them has been turned to stone yet!","textCustomTranslate":"贾斯珀.怀特是少有的相信古代神话的人之一。\n他刚在城里买下一所新房子,但自从搬进去后,就和汽车及车主们发生了磨擦。\n当他夜里回到家时,总是发现有人把车停在他家大门外。\n为此,他甚至一次也没能把自己的车开进车库。\n贾斯珀曾把几块“禁止停车”的牌子挂在大门外边,但没有任何效果。\n现在他把一个丑陋的石雕头像放在了大门上边,\n这是我见过的最丑陋的头像之一。\n我问他那是什么?他告诉我那是蛇发女怪美杜莎。\n贾斯珀希望她把汽车和车主们都变成石头。\n但到目前为止还没有一个变成石头呢!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"s6BCn3","title":"Taxi!","titleTranslate":"出租汽车","text":"Captain Ben Fawcett has bought an unusual taxi and has begun a new service. The taxi is a small Swiss aeroplane called a Pilatus Porter. This wonderful plane can carry seven passengers. The most surprising thing about it, however, is that it can land anywhere: on snow, water, or even on a ploughed field. Captain Fawcetts first passenger was a doctor who flew from Birmingham to a lonely village in the Welsh mountains. Since then, Captain Fawcett has flown passengers to many unusual places. Once he landed on the roof of a block of flats and on another occasion, he landed in a deserted car park. Captain Fawcett has just refused a strange request from a businessman. The man wanted to fly to Rockall, a lonely island in the Atlantic Ocean, but Captain Fawcett did not take him because the trip was too dangerous.","textCustomTranslate":"本.弗西特机长买了一辆不同寻常的出租汽车,并开始了一项新的业务。\n这辆“出租汽车”是一架小型瑞士飞机,叫“皮勒特斯.波特“号。\n这架奇妙的飞机可以载7名乘客。\n然而,最令人惊奇的是它能够在任何地方降落:雪地上,水面上,甚至刚耕过的田里。\n弗西特机长的第一名乘客是位医生,他从伯明翰飞往威尔士山区一个偏僻的村庄。\n从那时开始,弗西特机长已经载送乘客到过许多不寻常的地方。\n一次,他把飞机降落在了一栋公寓楼的屋顶上;还有一次,降落在了一个废弃的停车场上。\n弗西特机长刚刚拒绝了一位商人的奇怪要求。\n这个人想要飞往大西洋上的一个孤岛 -- 罗卡尔岛,弗西特机长之所以不送他去,是因为那段飞行太危险了。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"_6z4W_","title":"Football or polo?","titleTranslate":"足球还是水球?","text":"The Wayle is a small river that cuts across the park near my home. I like sitting by the Wayle on fine afternoons. It was warm last Sunday, so I went and sat on the river bank as usual. Some children were playing games on the bank and there were some people rowing on the river. Suddenly, one of the children kicked a ball very hard and it went towards a passing boat. Some people on the bank called out to the man in the boat, but he did not hear them. The ball struck him so hard that he nearly fell into the water. I turned to look at the children, but there werent any in sight: they had all run away! The man laughed when he realized what had happened. He called out to the children and threw the ball back to the bank.","textCustomTranslate":"威尔河是横穿过我家附近公园的一条小河。\n我喜欢在天气晴朗的下午到河边坐坐。\n上星期日天气很暖和。于是我和往常一样,又去河边坐着。\n河岸上有些孩子正在玩耍,河面上有些人正在划船。\n突然,一个孩子狠狠地踢了一脚球,球便向着一只划过来的小船飞去。\n岸上的一些人对着小船上的人高喊,但他没有听见。\n球重重地打在他身上,使他差点儿落入水中。\n我转过头去看那些孩子,但一个也不见,全都跑了!\n当那个人明白了发生的事情时,笑了起来。\n他大声叫着那些孩子,把球扔回到岸上。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"ufrSHh","title":"Success story","titleTranslate":"成功者的故事","text":"Yesterday afternoon Frank Hawkins was telling me about his experiences as a young man. Before he retired, Frank was the head of a very large business company, but as a boy he used to work in a small shop. It was his job to repair bicycles and at that time he used to work fourteen hours a day. He saved money for years and in 1958 he bought a small workshop of his own. In his twenties Frank used to make spare parts for aeroplanes. At that time he had two helpers. In a few years the small workshop had become a large factory which employed seven hundred and twenty-eight people. Frank smiled when he remembered his hard early years and the long road to success. He was still smiling when the door opened and his wife came in. She wanted him to repair their grandsons bicycle!","textCustomTranslate":"昨天下午弗兰克.霍金斯向我讲述了他年轻时的经历。\n在退休前,弗兰克是一家非常大的商业公司的经理,但他小时候却在一家小铺里做工。\n他那时的工作是修理自行车,并且通常是一天工作14个小时。\n他靠多年积蓄,于1958年买下了自己的一个小铺子。\n20多岁的时候,弗兰克曾生产飞机零配件。\n那时他有两个帮手。\n几年之后,小铺子已经发展成了一个雇有728人的大工厂。\n弗兰克回想着他早年的艰难经历和走过的漫长的成功之路,微笑了。\n他正笑着的时候门开了,他的妻子走了进来。\n她叫他去修理孙子的自行车。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"ln_Wnx","title":"Shopping made easy","titleTranslate":"购物变得很方便","text":"People are not so honest as they once were. The temptation to steal is greater than ever before -- especially in large shops. A detective recently watched a well-dressed woman who always went into a large store on Monday mornings. One Monday, there were fewer people in the shop than usual when the woman came in, so it was easier for the detective to watch her. The woman first bought a few small articles. After a little time, she chose one of the most expensive dresses in the shop and handed it to an assistant who wrapped it up for her as quickly as possible. Then the woman simply took the parcel and walked out of the shop without paying. When she was arrested, the detective found out that the shop assistant was her daughter. The girl gave her mother a free dress once a week!","textCustomTranslate":"人们不再像以前那样诚实了。\n偷窃的诱惑力比以往任何时候都更强烈 -- 特别是在大的商店里。\n一名侦探最近注意上了一位穿着讲究的妇女,她总是在星期一上午进入一家大商场。\n有一个星期一,当这位妇女走进这家商场时,里面的人比往常少,因此,侦探比较容易监视她。\n这位妇女先是买了几样小商品。\n过了一会儿,她又选了商场里最昂贵的一件衣服,把它递给了售货员。那售货员以最快的速度为她包好了衣服。\n然后,那妇女拿过包就走出了商场,根本没有付钱。\n她被逮捕后。侦探发现原来那售货员是她的女儿。\n那姑娘每星期“送”她母亲一件免费的衣服!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"Ox07WU","title":"Out of the darkness","titleTranslate":"冲出黑暗","text":"Nearly a week passed before the girl was able to explain what had happened to her. One afternoon she set out from the coast in a small boat and was caught in a storm. Towards evening, the boat struck a rock and the girl jumped into the sea. Then she swam to the shore after spending the whole night in the water. During that time she covered a distance of eight miles. Early next morning, she saw a light ahead. She knew she was near the shore because the light was high up on the cliffs. On arriving at the shore, the girl struggled up the cliff towards the light she had seen. That was all she remembered. When she woke up a day later, she found herself in hospital.","textCustomTranslate":"几乎过了一个星期,那姑娘才能讲述自己的遭遇。\n一天下午,她乘小船从海岸出发,遇上了风暴。\n天将黑时,小船撞在了一块礁石上,姑娘跳进了海里。\n她在海里游了整整一夜才游到岸边。\n在那段时间里,她游了8英里。\n第二天凌晨,她看到前方有灯光,\n知道自己已经接近岸边了,因为那灯光是在高高的峭壁上。\n到达岸边后,姑娘朝着她看到的灯光方向挣扎着往峭壁上爬去。\n她所记得的就是这些。\n第二天她醒来时,发现自己躺在医院里。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"5rw_JK","title":"Quick work","titleTranslate":"破案“神速”","text":"Dan Robinson has been worried all week. Last Tuesday he received a letter from the local police. In the letter he was asked to call at the station. Dan wondered why he was wanted by the police, but he went to the station yesterday and now he is not worried anymore. At the station, he was told by a smiling policeman that his bicycle had been found. Five days ago, the policeman told him, the bicycle was picked up in a small village four hundred miles away. It is now being sent to his home by train. Dan was most surprised when he heard the news. He was amused too, because he never expected the bicycle to be found. It was stolen twenty years ago when Dan was a boy of fifteen!","textCustomTranslate":"丹.鲁宾逊焦虑了整整一个星期。\n上星期二他收到当地警察局的一封信,\n要他到警察局去一趟。\n丹奇怪警察为什么找他,但昨天还是去了,结果他一再担心了。\n在警察局里,一位面带笑容的警察告诉他,他的自行车找到了。\n那位警察对他说,那辆自行车是5天前在400英里外的一个小村里发现的,\n现在正用火车给他运回家来。\n丹听到这个消息后,惊奇万分,\n但又感到非常好笑,因为他从未指望那辆自行车还能找到。\n这是20年前丹还是一个15岁的孩子时被人偷走的!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"rMLf3d","title":"Stop thief!","titleTranslate":"捉贼!","text":"Roy Trenton used to drive a taxi. A short while ago, however, he became a bus driver and he has not regretted it. He is finding his new work far more exciting. When he was driving along Catford Street recently, he saw two thieves rush out of a shop and run towards a waiting car. One of them was carrying a bag full of money. Roy acted quickly and drove the bus straight at the thieves. The one with the money got such a fright that he dropped the bag. As the thieves were trying to get away in their car, Roy drove his bus into the back of it. While the battered car was moving away, Roy stopped his bus and telephoned the police. The thieves car was badly damaged and easy to recognize. Shortly afterwards, the police stopped the car and both men were arrested.","textCustomTranslate":"罗伊.特雷顿原是开出租汽车的,\n然而就在前不久,他开上了公共汽车,也并不为此而感到后悔。\n他发觉自己的新工作令人兴奋得多。\n最近,当他正开车在凯特福德街上行驶时,看到有两个小偷从一家商店里冲出来,奔向等在那里的一辆汽车,\n其中一个提着一只装满钞票的提包。\n罗伊行动迅速,开车直冲窃贼而去。\n拿钱的那个小偷吓得把提包都扔了。\n当那两个小偷企图乘车逃跑时,罗伊驾驶他的公共汽车撞在了那辆车的后尾上。\n当那辆被撞坏的车开走后,罗伊停下车,给警察挂了电话。\n小偷的车损坏严重,很容易辨认。\n没过多久,警察就截住了那辆车,两个小偷都被抓住了。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"PErgUJ","title":"Across the Channel","titleTranslate":"横渡海峡","text":"Debbie Hart is going to swim across the English Channel tomorrow. She is going to set out from the French coast at five oclock in the morning. Debbie is only eleven years old and she hopes to set up a new world record. She is a strong swimmer and many people feel that she is sure to succeed. Debbies father will set out with her in a small boat. Mr. Hart has trained his daughter for years. Tomorrow he will be watching her anxiously as she swims the long distance to England. Debbie intends to take short rests every two hours. She will have something to drink but she will not eat any solid food. Most of Debbies school friends will be waiting for her on the English coast. Among them will be Debbies mother, who swam the Channel herself when she was a girl.","textCustomTranslate":"黛比.哈特准备明天横渡英吉利海峡。\n她打算早上5点钟从法国海岸出发。\n黛比只有11岁,她希望创一项新的世界纪录。\n她是一个游泳能手,很多人认为她一定能成功。\n黛比的父亲将乘一条小船同她一道出发。\n哈特先生训练她的女儿已经多年了,\n明天他将焦急地注视着女儿游过这段漫长的距离到达英国。\n黛比计划每两小时休息一下。\n她将喝些饮料,但不吃固体食物。\n黛比的大部分同学将在英国海岸等候她。\n他们当中还会有黛比的母亲,她本人还是个姑娘时,也曾横渡过英吉利海峡!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"VBTjoI","title":"The Olympic Games","titleTranslate":"奥林匹克运动会","text":"The Olympic Games will be held in our country in four years time. As a great many people will be visiting the country, the government will be building new hotels, an immense stadium, and a new Olympic-standard swimming pool. They will also be building new roads and a special railway line. The Games will be held just outside the capital and the whole area will be called Olympic City. Workers will have completed the new roads by the end of this year. By the end of next year, they will have finished work on the new stadium. The fantastic modern buildings have been designed by Kurt Gunter. Everybody will be watching anxiously as the new buildings go up. We are all very excited and are looking forward to the Olympic Games because they have never been held before in this country.","textCustomTranslate":"4年以后,奥林匹克运动会将在我们国家举行。\n由于将有大批的人到我们国家来,所以政府准备建造一些新的饭店、一个大型体育场和一个新的奥运会标准游泳池。\n他们还将修筑一些新的道路和一条铁路专线。\n奥运会就在首都市郊举办,整个地区将被称作“奥林匹克城”。\n工人们将在今年年底前把新路铺好,\n到明年年底,他们将把新体育场建成。\n这些巨大的现代化建筑是由库尔特.冈特设计的。\n大家都将急切地注视着新建筑的建成。\n我们都非常激动,盼望着奥运会的到来,因为在这个国家里还从未举办过奥运会。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"qCMKlI","title":"Everything except the weather","titleTranslate":"唯独没有考虑到天气","text":"My old friend, Harrison, had lived in the Mediterranean for many years before he returned to England. He had often dreamed of retiring in England and had planned to settle down in the country. He had no sooner returned than he bought a house and went to live there. Almost immediately he began to complain about the weather, for even though it was still summer, it rained continually and it was often bitterly cold. After so many years of sunshine, Harrison got a shock. He acted as if he had never lived in England before. In the end, it was more than he could bear. He had hardly had time to settle down when he sold the house and left the country. The dream he had had for so many years ended there. Harrison had thought of everything except the weather.","textCustomTranslate":"我的老朋友哈里森在回到英国以前曾多年居住在地中海地区。\n过去他常幻想退休后到英国,并计划在乡间安顿下来。\n他刚一回到英国便买下了一幢房子住了进去。\n但紧接着他就开始抱怨那里的天气了。因为即使那时仍为夏季,但雨总是下个不停,而且常常冷得厉害。\n在阳光下生活了那么多年的哈里森对此感到惊奇。\n他的举动就好像他从未在英国生活过一样。\n最后,他再也忍受不住,\n还没等安顿下来就卖掉了房子,离开了这个国家。\n他多年来的幻想从此破灭。\n哈里森把每件事情都考虑到了,唯独没想到天气。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"_BXuGK","title":"Am I all right?","titleTranslate":"我是否痊愈?","text":"While John Gilbert was in hospital, he asked his doctor to tell him whether his operation had been successful, but the doctor refused to do so. The following day, the patient asked for a bedside telephone. When he was alone, he telephoned the hospital exchange and asked for Doctor Millington. When the doctor answered the phone, Mr. Gilbert said he was inquiring about a certain patient, a Mr. John Gilbert. He asked if Mr. Gilberts operation had been successful and the doctor told him that it had been. He then asked when Mr. Gilbert would be allowed to go home and the doctor told him that he would have to stay in hosptial for another two weeks. Then Dr. Millington asked the caller if he was a relative of the patient. No, the patient answered, I am Mr. John Gilbert.","textCustomTranslate":"当约翰.吉尔伯特住院的时候,他问医生他的手术是否成功,但医生拒绝告诉他。\n第二天,这位病人要了一部床头电话。\n当房里只剩他一个人时,他挂通了医院的交换台,要求与米灵顿医生讲话。\n当这位医生接过电话时,吉尔伯特先生说他想询问一个病人的情况,是一位名叫约翰.吉尔伯特的先生。\n他问吉尔伯特先生的手术中否成功,医生告诉他手术很成功。\n然后他又问吉尔伯特先生什么时候可以回家,医生说他在医院还必须再住上两个星期。\n之后,米灵顿医生问打电话的人是否是病人的亲属。\n“不是,”病人回答说,“我就是约翰.吉尔伯特先生。”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"BRPOAT","title":"Food and talk","titleTranslate":"进餐与交谈","text":"Last week at a dinner party, the hostess asked me to sit next to Mrs. Rumbold. Mrs. Rumbold was a large, unsmiling lady in a tight black dress. She did not even look up when I took my seat beside her. Her eyes were fixed on her plate and in a short time, she was busy eating. I tried to make conversation.\nA new play is coming to \"The Globe\" soon, I said. Will you be seeing it?\nNo, she answered.\nWill you be spending your holidays abroad this year? I asked.\nNo, she answered.\nWill you be staying in England? I asked.\nNo, she answered.\nIn despair, I asked her whether she was enjoying her dinner.\nYoung man, she answered, if you ate more and talked less, we would both enjoy our dinner!\"","textCustomTranslate":"在上星期的一次宴会上,女主人安排我坐在兰伯尔德夫人的身旁。\n兰伯尔德夫人是一位身材高大、表情严肃的女人,穿一件紧身的黑衣服。\n当我在她身旁坐下来的时候,她甚至连头都没有抬一下。\n她的眼睛盯着自己的盘子,不一会儿就忙着吃起来了。\n我试图找个话题和她聊聊。\n\n“一出新剧要来‘环球剧场’上演了,”我说,\n“您去看吗?”\n\n“不,”她回答。\n\n“您今年去国外度假吗?”\n我又问。\n\n“不,”她回答。\n\n“您就呆在英国吗?”\n我问。\n\n“不,”她回答。\n\n失望之中我问她饭是否吃得满意。\n\n“年轻人,”她回答说,“如果你多吃点,少说点,我们两个都会吃得好的!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"4z30eQ","title":"Do you call that a hat?","titleTranslate":"你把那个叫帽子吗?","text":"Do you call that a hat? I said to my wife.\nYou neednt be so rude about it, my wife answered as she looked at herself in the mirror.\nI sat down on one of those modern chairs with holes in it and waited. We had been in the hat shop for half an hour and my wife was still in front of the mirror.\nWe mustnt buy things we dont need, I remarked suddenly. I regretted saying it almost at once.\nYou neednt have said that, my wife answered. I neednt remind you of that terrible tie you bought yesterday.\nI find it beautiful, I said. A man can never have too many ties.\nAnd a woman cant have too many hats, she answered.\nTen minutes later we walked out of the shop together. My wife was wearing a hat that looked like a lighthouse!","textCustomTranslate":"“你把那个叫帽子吗?”\n我对妻子说。\n\n“你说话没必要这样不客气,”我的妻子边回答边照着镜子。\n\n我坐在一个新式的满是网眼儿的椅子上,等待着。\n我们在这家帽店已经呆了半个小时了,而我的妻子仍在镜子面前。\n\n“我们不应该买我们不需要的东西,”我突然发表意见说,\n但马上又后悔说了这话。\n\n“你没必要这么说,”我妻子回答说,\n“我也不必提醒你昨天买的那条糟糕透了的领带。”\n\n“我觉得它好看,”我说,\n“男人有多少领带也不会嫌多。”\n\n“女人有多少帽子也不嫌多。” 她回答。\n\n10分钟以后,我们一道走出了商店。\n我妻子戴着一顶像灯塔一样的帽子。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"jn2zyr","title":"Not very musical","titleTranslate":"并非很懂音乐","text":"As we had had a long walk through one of the markets of old Delhi, we stopped at a square to have a rest. After a time, we noticed a snake charmer with two large baskets at the other side of the square, so we went to have a look at him. As soon as he saw us, he picked up a long pipe which was covered with coins and opened one of the baskets. When he began to play a tune, we had our first glimpse of the snake. It rose out of the basket and began to follow the movements of the pipe. We were very much surprised when the snake charmer suddenly began to play jazz and modern pop songs. The snake, however, continued to dance slowly. It obviously could not tell the difference between Indian music and jazz!","textCustomTranslate":"当我们穿过旧德里的市场时走了很长一段路,我们在一个广场上停下来休息。\n过了一会儿,我们注意到广场的那一边有一个带着两个大筐的耍蛇人,于是就走过去看看。\n他一见我们,就拿起了一个长长的上面镶有硬币的管乐器,并掀开了一个筐的盖子。\n当他开始吹奏一支曲子时,我们才第一次看到那条蛇。\n它从筐里探出身子,随着乐器的摆动而扭动。\n当耍蛇人突然又吹奏起爵士乐和现代流行乐曲时,我们感到非常惊奇。\n然而那蛇却还是缓慢地“舞动”着。\n显然,它分辨不出印度音乐和爵士乐!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"or9sg0","title":"Over the South Pole","titleTranslate":"飞越南极","text":"In 1929, three years after his flight over the North Pole, the American explorer, R.E. Byrd, successfully flew over the South Pole for the first time. Though, at first, Byrd and his men were able to take a great many photographs of the mountains that lay below, they soon ran into serious trouble. At one point, it seemed certain that their plane would crash. It could only get over the mountains if it rose to 10,000 feet. Byrd at once ordered his men to throw out two heavy food sacks. The plane was then able to rise and it cleared the mountains by 400 feet. Byrd now knew that he would be able to reach the South Pole which was 300 miles away, for there were no more mountains in sight. The aircraft was able to fly over the endless white plains without difficulty.","textCustomTranslate":"美国探险家 R.E.伯德在飞越北极3年之后,于1929年第一次飞越了南极。\n虽然开始时伯德和他的助手们拍下了飞机下面连绵群山的大量照片,但他们很快就陷入了困境。\n在有个地方,飞机似乎肯定要坠毁了。\n只有在飞至10,000英尺的高度时,它才能飞过这些山头。\n伯德马上命令他的助手们把两个沉重的食物袋扔掉,\n于是飞机可以上升了,它在离山头400英尺的高度飞越了过去。\n伯德这时知道他能够顺利飞抵300英里以外的南极了,因为前面再没有山了。\n飞机可以毫无困难地飞过这片茫茫无际的白色原野!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"V3Ruqp","title":"Through the forest","titleTranslate":"穿过森林","text":"Mrs. Anne Sterling did not think of the risk she was taking when she ran through a forest after two men. They had rushed up to her while she was having a picnic at the edge of a forest with her children and tried to steal her handbag. In the struggle, the strap broke and, with the bag in their possession, both men started running through the trees. Mrs. Sterling got so angry that she ran after them. She was soon out of breath, but she continued to run. When she caught up with them, she saw that they had sat down and were going through the contents of the bag, so she ran straight at them. The men got such a fright that they dropped the bag and ran away. The strap needs mending, said Mrs. Sterling later, but they did not steal anything.","textCustomTranslate":"安.斯特林夫人在穿过森林追赶两个男人时,她并没有考虑到所冒的风险。\n刚才,当她和孩子们正在森林边上野餐的时候,这两个人冲到她跟前,企图抢走她的手提包。\n在争抢中,手提包的带断了,包落入这两个人手里,他们拔腿跑进了树林。\n斯特林夫人非常气愤,向着他们追了过去。\n只追了一会儿便上气不接下气了,但她还是继续追赶。\n当她赶上他们时,发现他们已经坐了下来,正翻着包里的东西。于是她直冲过去。\n这两个人吓了一跳,扔下提包逃跑了。\n“这提包带需要修理,”斯特林夫人事后说道,“不过他们什么也没偷走。”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"AkyRbu","title":"A clear conscience","titleTranslate":"问心无愧","text":"The whole village soon learnt that a large sum of money had been lost. Sam Benton, the local butcher, had lost his wallet while taking his savings to the post office. Sam was sure that the wallet must have been found by one of the villagers, but it was not returned to him. Three months passed, and then one morning, Sam found his wallet outside his front door. It had been wrapped up in newspaper and it contained half the money he had lost, together with a note which said: A thief, yes, but only 50 per cent a thief! Two months later, some more money was sent to Sam with another note: Only 25 per cent a thief now! In time, all Sams money was paid back in this way. The last note said: I am 100 per cent honest now!","textCustomTranslate":"整个村子很快知道,有一大笔钱丢失了。\n当地的屠户萨姆.本顿在把存款送往邮局的途中把钱包丢了。\n萨姆确信那钱包一定是被某个村民捡到了,可是却不见有人来送还给他。\n3个月过去了,后来在一天早晨,萨姆在自己的大门外发现了他的钱包。\n钱包是用报纸包着的,里面有他丢失的钱的一半,而且还附着一张纸条,上面写着:“一个小偷,是的,但只是一个50%的小偷!”\n又过了两个月,又有一些钱送还给了萨姆,又附了一张字条:“这回只是25%的小偷了!”\n很快,萨姆全部的钱都用同样的方式还了回来。\n最后的那张字条上写道:“我现在是一个100%的诚实人了!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"R8uxOR","title":"Expensive and uncomfortable","titleTranslate":"既昂贵又受罪","text":"When a plane from London arrived at Sydney airport, workers began to unload a number of wooden boxes which contained clothing. No one could account for the fact that one of the boxes was extremely heavy. It suddenly occurred to one of the workers to open up the box. He was astonished at what he found. A man was lying in the box on top of a pile of woolen goods. He was so surprised at being discovered that he did not even try to run away. After he was arrested, the man admitted hiding in the box before the plane left London. He had had a long and uncomfortable trip, for he had been confined to the wooden box for over eighteen hours. The man was ordered to pay $3,500 for the cost of the trip. The normal price of a ticket is $2,000!","textCustomTranslate":"当一架来自伦敦的飞机抵达悉尼机场时,工人们开始卸下装有服装的一批木箱。\n其中有只箱子特别重,可谁也弄不清是怎么回事。\n突然一个工人想到打开箱子看看。\n看到的情景使吃惊,\n箱内有一个人正躺在一堆毛织品之上。\n他由于被人发现而感到非常吃惊,甚至都没有企图逃跑。\n此人被逮捕后,承认他是在飞机离开伦敦前躲进箱里的。\n他经历了一次漫长而又难受的旅程,因为他在那木箱里闷了18个多小时。\n此人被责令交付旅费3,500英镑,\n而正常票价是2,000英镑!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"yoj1Gh","title":"A thirsty ghost","titleTranslate":"嗜酒的鬼魂","text":"A public house which was recently bought by Mr.Ian Thompson is up for sale. Mr.Thompson is going to sell it because it is haunted. He told me that he could not go to sleep one night because he heard a strange noise coming from the bar. The next morning, he found that the doors had been blocked by chairs and the furniture had been moved. Though Mr.Thompson had turned the lights off before he went to bed, they were on in the morning. He also said that he had found five empty whisky bottles which the ghost must have drunk the night before. When I suggested that some villagers must have come in for a free drink, Mr.Thompson shook his head. The villagers have told him that they will not accept the pub even if he gives it away.","textCustomTranslate":"伊恩.汤普森先生最近才买的一个小酒店现在又要卖出去。\n汤普森先生之所以想卖它,是因为那里常闹鬼。\n他告诉我有天夜里他怎么也睡不着,因为他听到酒吧里传来一阵奇怪的响声。\n第二天早上,他发现酒吧间的门被椅子堵上了,家具也被挪动过。\n虽然汤普森临睡觉时把灯关了,但早晨灯却都亮着。\n他还说他发现了5只空的威士忌瓶子,肯定是鬼魂昨天晚上喝的。\n当我暗示说一定是村里有些人来喝不花钱的酒时,汤普森先生摇了摇头。\n村里的人已经告诉他,即使他把小酒店白送人,他们也不要。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"HEZmNe","title":"Did you want to tell me something?","titleTranslate":"你想对我说什么吗?","text":"Dentists always ask questions when it is impossible for you to answer. My dentist had just pulled out one of my teeth and had told me to rest for a while. I tried to say something, but my mouth was full of cotton wool. He knew I collected match boxes and asked me whether my collection was growing. He then asked me how my brother was and whether I liked my new job in London. In answer to these questions I either nodded or made strange noises. Meanwhile, my tongue was busy searching out the hole where the tooth had been. I suddenly felt very worried, but could not say anything. When the dentist at last removed the cotton wool from my mouth, I was able to tell him that he had pulled out the wrong tooth.","textCustomTranslate":"牙科医生们总是在你无法作出回答的时候向你提出问题。\n我的牙科医生刚刚给我拔掉了一颗牙,叫我休息一会儿。\n我想说点什么,但我嘴里塞满了药棉。\n他知道我收集火柴盒,于是问我收藏的米柴盒是否在增加。\n接着他又问我的兄弟近来如何,问我是否喜欢伦敦的新工作。\n作为对这些问题的回答,我不是点头,就是发出奇怪的声音。\n与此同时,我的舌头正在忙着寻找刚拔掉的那颗牙的伤口。\n我突然非常着急起来,但却什么也说不出来。\n当那位牙医最后将药棉从我嘴中取出时,我总算有可能告诉他,他拔错了牙。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"7dSeQX","title":"The end of a dream","titleTranslate":"美梦告终","text":"Tired of sleeping on the floor, a young man in Teheran saved up for years to buy a real bed. For the first time in his life, he became the proud owner of a bed which had springs and a mattress. Because the weather was very hot, he carried the bed on to the roof of his house. He slept very well for the first two nights, but on the third night, a storm blew up. A gust of wind swept the bed off the roof and sent it crashing into the courtyard below. The young man did not wake up until the bed had struck the ground. Although the bed was smashed to pieces, the man was miraculously unhurt. When he woke up, he was still on the mattress. Glancing at the bits of wood and metal that lay around him, the man sadly picked up the mattress and carried it into his house. After he had put it on the floor, he promptly went to sleep again.","textCustomTranslate":"德黑兰的一个人年轻人由于对睡地板感到厌倦,于是积蓄多年买了一张真正的床。\n他平生第一次自豪地拥有了一张既有弹簧又带床垫的床。\n由于天气很热,他便把床搬到了他的屋顶上。\n头两天晚上,他睡得非常好。但第三天晚上起了风暴。\n一阵大风把床从屋顶上刮了下来,把它摔碎在下面的院子里。\n那年轻人直到床撞到地上才醒了过来。\n尽管床摔成了碎片,但年轻人却奇迹地没有受伤。\n他醒来时,仍然躺在床垫上。\n年轻人看了一眼周围的碎木片和碎金属片,伤心地捡起了床垫,把它拿进了屋。\n他把床垫往地板上一放,很快又睡着了。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"1MQUC5","title":"Taken for a ride","titleTranslate":"乘车兜风","text":"I love travelling in the country, but I dont like losing my way.\nI went on an excursion recently, but my trip took me longer than I expected.\nIm going to Woodford Green, I said to the conductor as I got on the bus, but I dont know where it is.\nI'll tell you where to get off. answered the conductor.\nI sat in the front of the bus to get a good view of the countryside. After some time, the bus stopped. Looking round, I realized with a shock that I was the only passenger left on the bus.\nYoull have to get off here, the conductor said. This is as far as we go.\nIs this Woodford Green? I asked.\nOh dear, said the conductor suddenly. I forgot to put you off.\nIt doesnt matter, I said. Ill get off here.\nWere going back now, said the conductor.\nWell, in that case, I prefer to stay on the bus, I answered.","textCustomTranslate":"我喜欢在乡间旅行,但却不愿意迷路。\n\n最近我作了一次短途旅行,但这次旅行所花费的时间比我预计的要长。\n\n“我要去伍德福德草地,”我一上车就对售票员说,“但我不知道它在那儿。”\n\n“我来告诉您在哪儿下车,”\n售票员回答说。\n\n我坐在汽车的前部,以便饱览农村风光。\n过了一些时候,车停了。\n我环视了一下身旁,惊奇地发现车里就只剩我一个乘客了。\n\n“您得在这里下车,”售票员说,\n“我们的车就到此为止了。”\n\n“这里是伍德福德草地吗?”\n我问道。\n\n“哎呀,”售票员突然说,\n“我忘了让您下车了。”\n\n“没关系,”我说,\n“我就在这儿下吧。”\n\n“我们现在要返回去,”售票员说。\n\n“好吧,既然如此,我还是留在车上吧。”\n我回答说。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"pPg4Pm","title":"Reward for virtue","titleTranslate":"对美德的奖赏","text":"My friend, Hugh, has always been fat, but things got so bad recently that he decided to go on a diet. He began his diet a week ago. First of all, he wrote out a long list of all the foods which were forbidden. The list included most of the things Hugh loves: butter, potatoes, rice, beer, milk, chocolate; and sweets. Yesterday I paid him a visit. I rang the bell and was not surprised to see that Hugh was still as fat as ever. He led me into his room and hurriedly hid a large parcel under his desk. It was obvious that he was very embarrassed. When I asked him what he was doing, he smiled guiltily and then put the parcel on the desk. He explained that his diet was so strict that he had to reward himself occasionally. Then he showed me the contents of the parcel. It contained five large bars of chocolate and three bags of sweets!","textCustomTranslate":"我的朋友休一直很胖,但是近来情况变得越发糟糕,以致他决定节食。\n他是一星期前开始节食的。\n首先,他开列了一张长长的单子,上面列了所有禁吃的食物。\n这张单子上的大多数食物都是休喜欢吃的:黄油、土豆、米饭、啤酒、牛奶、巧克力和糖果。\n昨天我去看望了他。\n我按响了门铃,当看到休仍和往常一样胖时,我并不感到惊奇。\n他把我领进屋,慌忙把一个大包藏到了桌子下面。\n显然他感到很尴尬。\n当我问他正干什么时,他内疚地笑了,然后把那个大包拿到了桌上。\n他解释说,他的饮食控制得太严格了,以致不得不偶尔奖赏自己一下。\n接着他给我看了包里的东西。\n里面装了5大块巧克力和3袋糖果!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"-89CcM","title":"A pretty carpet","titleTranslate":"漂亮的地毯","text":"We have just moved into a new house and I have been working hard all morning. I have been trying to get my new room in order. This has not been easy because I own over a thousand books. To make matters worse, the room is rather small, so I have temporarily put my books on the floor. At the moment, they cover every inch of floor space and I actually have to walk on them to get in or out of the room. A short while ago, my sister helped me to carry one of my old bookcases up the stairs. She went into my room and got a big surprise when she saw all those books on the floor. This is the prettiest carpet I have ever seen, she said. She gazed at it for some time then added, You dont need bookcases at all. You can sit here in your spare time and read the carpet!","textCustomTranslate":"我们刚刚搬进一所新房子,我辛辛苦苦地干了整整一个上午。\n我试图把我的新房间收拾整齐,\n但这并不容易,因为我有1,000多本书。\n更糟糕的是房间还非常小,所以我暂时把书放在了地板上。\n这会儿,书把地板的每一点空隙都占据了,我实际上是踩着这些书进出房间的。\n几分钟前,我妹妹帮我把一个旧书橱抬上了楼。\n她走进我的房间,当她看到地板上的那些书时,大吃一惊。\n“这是我见过的最漂亮的地毯,”她说。\n她盯着“地毯”看了一会儿,又说:“你根本用不着书橱,\n空闲时你可以坐在这儿读地毯!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"u-Me1F","title":"Hot snake","titleTranslate":"触电的蛇","text":"At last firemen have put out a big forest fire in California. Since then, they have been trying to find out how the fire began. Forest fires are often caused by broken glass or by cigarette ends which people carelessly throw away. Yesterday the firemen examined the ground carefully, but were not able to find any broken glass. They were also quite sure that a cigarette end did not start the fire. This morning, however, a firemen accidentally discovered the cause. He noticed the remains of a snake which was wound round the electric wires of a 16,000-volt power line. In this way, he was able to solve the mystery. The explanation was simple but very unusual. A bird had snatched up the snake from the ground and then dropped it on to the wires. The snake then wound itself round the wires. When it did so, it sent sparks down to the ground and these immediately started a fire.","textCustomTranslate":"消防队员们终于扑灭了加利福尼亚的一场森林大火。\n从那时起,他们一直试图找出起火的原因。\n森林火灾时常由破碎的玻璃或人们随手扔掉的香烟头引起。\n昨天,消防队员仔细查看了地面,但未能发现碎玻璃。\n他们还十分肯定火灾也不是由烟头引起的。\n然而今天上午,一个消防队员偶然发现了起火的原因。\n他发现了缠绕在16,000伏高压线上的一条死蛇。\n就这样,他解开了起火之谜。\n解释很简单,却异乎寻常。\n一只鸟把蛇从地上抓起来,然后把它扔到了电线上。\n于是蛇就缠住了几根电线。\n当它这样做时,把火花送到了地面,这些火花立刻引起了一场大火。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"GJv23M","title":"Sticky fingers","titleTranslate":"粘糊的手指","text":"After breakfast, I sent the children to school and then I went to the shops. It was still early when I returned home. The children were at school, my husband was at work and the house was quiet. So I decided to make some meat pies. In a short time I was busy mixing butter and flour and my hands were soon covered with sticky pastry. At exactly that moment, the telephone rang. Nothing could have been more annoying. I picked up the receiver between two sticky fingers and was dismayed when I recognized the voice of Helen Bates. It took me ten minutes to persuade her to ring back later. At last I hung up the receiver. What a mess! There was pastry on my fingers, on the telephone, and on the doorknobs. I had no sooner got back to the kitchen than the doorbell rang loud enough to wake the dead. This time it was the postman and he wanted me to sign for a registered letter!","textCustomTranslate":"早饭后,我送孩子们上学,然后就去了商店。\n我回到家时,时间还早。\n孩子们在上学,我丈夫在上班,家里清静得很。\n于是我决定做些肉馅饼。\n不一会儿我就忙着调拌起了黄油和面粉,很快我的手上就沾满了粘粘的面糊。\n恰恰在此时,电话铃响了。\n没有什么能比这更烦人了。\n我用两个沾满面糊的手指捏起了话筒。当听出是海伦.贝茨的声音时,非常丧气。\n我用了10分钟的时间才说服她过会儿再来电话。\n我终于挂上了话筒。\n真是糟糕透了!\n我的手指上、电话机上以及门的把手上,都沾上了面糊。\n我刚回到厨房,门铃又响了起来,响声足以把死人唤醒。\n这次是邮递员,他要我签收一封挂号信!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"vTEfM6","title":"Not a gold mine","titleTranslate":"并非金矿","text":"Dreams of finding lost treasure almost came true recently. A new machine called The Revealer has been invented and it has been used to detect gold which has been buried in the ground. The machine was used in a cave near the seashore where -- it is said -- pirates used to hide gold. The pirates would often bury gold in the cave and then fail to collect it. Armed with the new machine, a search party went into the cave hoping to find buried treasure. The leader of the party was examining the soil near the entrance to the cave when the machine showed that there was gold under the ground. Very excited, the party dug a hole two feet deep. They finally found a small gold coin which was almost worthless. The party then searched the whole cave thoroughly but did not find anything except an empty tin trunk. In spite of this, many people are confident that The Revealer may reveal something of value fairly soon.","textCustomTranslate":"最近,找到失踪宝藏的梦想差一点儿变成现实。\n一种叫“探宝器”的新机器已经发明出来,并被人们用来探测地下埋藏的金子。\n在靠近海边的一个据说过去海盗常在里面藏金子的岩洞里,这种机器被派上了用场。\n海盗们过去常把金子埋藏在那个洞里,可后来却没能取走。\n一支用这种新机器装备起来的探宝队进入了这个岩洞,希望找到埋藏着的金子。\n当这个队的队长正在检查洞口附近的土壤时,那台机器显示出它的下面埋有金子。\n队员们异常激动,就地挖了一个两英尺深的坑,\n但最后找到的是一枚几乎一钱不值的小金币。\n队员们接着又把整个洞彻底搜寻了一遍,但除了一只空铁皮箱外什么也没找到。\n尽管如此,很多人仍然相信“探宝器”很快就会探出值钱的东西来。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"ZL7Pn2","title":"Faster than sound!","titleTranslate":"比声音还快!","text":"Once a year, a race is held for old cars. A lot of cars entered for this race last year and there was a great deal of excitement just before it began. One of the most handsome cars was a Rolls-Royce Silver Ghost. The most unusual car was a Benz which had only three wheels. Built in 1885, it was the oldest car taking part. After a great many loud explosions, the race began. Many of the cars broke down on the course and some drivers spent more time under their cars than in them! A few cars, however, completed the race. The winning car reached a speed of forty miles an hour -- much faster than any of its rivals. It sped downhill at the end of the race and its driver had a lot of trouble trying to stop it. The race gave everyone a great deal of pleasure. It was very different from modern car races but no less exciting.","textCustomTranslate":"旧式汽车的比赛每年举行一次。\n去年有很多汽车参加了这项比赛。比赛开始之前,人们异常激动。\n最漂亮的汽车之一是罗尔斯--罗伊斯生产的银鬼汽车,\n而最不寻常的一辆则要属只有3只轮子的奔驰牌汽车了。\n该车造于1885年,是参赛车中最老的一辆。\n在好一阵喧闹的爆炸声之后,比赛开始了。\n很多汽车在途中就抛了锚,而有些驾驶员花在汽车底下的时间比坐在汽车里面的时间还长。\n然而还是有几辆汽车跑完了全程。\n获胜的那辆车达到了时速40英里--远远超过任何对手。\n它在接近终点时,冲下了山坡,驾驶员费了好大劲才把车停下来。\n这次比赛使每个人都挺开心。\n它虽然与现代汽车比赛大不相同,但激动人心的程度并不亚于现代化汽车大赛。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"hSgPSL","title":"Can I help you, madam?","titleTranslate":"您要买什么,夫人?","text":"A woman in jeans stood at the window of an expensive shop. Though she hesitated for a moment, she finally went in and asked to see a dress that was in the window. The assistant who served her did not like the way she was dressed. Glancing at her scornfully, he told her that the dress was sold. The woman walked out of the shop angrily and decided to punish the assistant next day. She returned to the shop the following morning dressed in a fur coat, with a handbag in one hand and a long umbrella in the other. After seeking out the rude assistant, she asked for the same dress. Not realizing who she was, the assistant was eager to serve her this time. With great difficulty, he climbed into the shop window to get the dress. As soon as she saw it, the woman said she did not like it. She enjoyed herself making the assistant bring almost everything in the window before finally buying the dress she had first asked for.","textCustomTranslate":"一位穿着牛仔裤的妇女站在一家高档商店的橱窗前。\n她虽然犹豫了片刻,但终于还是走进了商店,要求把陈列在橱窗里的一件衣服拿给她看。\n接待她的售货员不喜欢她的那副打扮,\n轻蔑地看了她一眼后,便告诉她那件衣服已经卖出去了。\n这位妇女怒气冲冲地走出了商店,决定第二天教训一下那个售货员。\n第二天上午,她又来到这家商店,穿了一件裘皮大衣,一只手拎着一只手提包,另一只手拿着一把长柄伞。\n找到那个无礼的售货员后,她还要看昨天的那件衣服。\n那个售货员没有认出她是谁,这一回接待她的态度非常殷勤。\n费了好大劲儿,他爬进橱窗去取那件衣服。\n这位妇女对那件衣服只看一眼,就说不喜欢。\n她开心地迫使那位售货员把橱窗里几乎所有的东西都拿了出来,最后才买下了她最先要看的那一件。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"EzpQiI","title":"A blessing in disguise?","titleTranslate":"是因祸得福吗?","text":"The tiny village of Frinley is said to possess a cursed tree. Because the tree was mentioned in a newspaper, the number of visitors to Frinley has now increased. The tree was planted near the church fifty years ago, but it is only in recent years that it has gained an evil reputation. It is said that if anyone touches the tree, he will have bad luck; if he picks a leaf, he will die. Many villagers believe that the tree has already claimed a number of victims. The vicar has been asked to have the tree cut down, but so far he has refused. He has pointed out that the tree is a useful source of income, as tourists have been coming from all parts of the country to see it. In spite of all that has been said, the tourists have been picking leaves and cutting their names on the tree-trunk. So far, not one of them has been struck down by sudden death!","textCustomTranslate":"据说弗林利这个小村里有一棵“该诅咒的树”。\n就因为报上提到过这棵树,所以现在来弗林利参观的人越来越多。\n该树是50年前栽在教堂附近的,但只是近几年才得到了一个坏名声。\n据说,谁要是触摸了这棵树,谁就会交上恶运;如果谁摘了一片树叶,谁就会死去。\n很多村民相信此树已经害了不少人。\n人们曾请求教区的牧师叫人把树砍掉,但他直到现在也没有同意。\n他指出,由于人们从全国各地纷纷前来参观这棵树,它成了一个有用的财源。\n尽管有上述种种说法,但游客们还是照常摘树叶和把他们的名字刻在树干上。\n然而到目前为止,还没有一个人暴死呢!","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"Zwe7w7","title":"In or out?","titleTranslate":"进来还是出去?","text":"Our dog, Rex, used to sit outside our front gate and bark. Every time he wanted to come into the garden he would bark until someone opened the gate. As the neighbours complained of the noise, my husband spent weeks training him to press his paw on the latch to let himself in. Rex soon became an expert at opening the gate. However, when I was going out shopping last week, I noticed him in the garden near the gate. This time he was barking so that someone would let him out! Since then, he has developed another bad habit. As soon as he opens the gate from the outside, he comes into the garden and waits until the gate shuts. Then he sits and barks until someone lets him out. After this he immediately lets himself in and begins barking again. Yesterday my husband removed the gate and Rex got so annoyed we have not seen him since.","textCustomTranslate":"我家的狗雷克斯,过去常坐在大门外面叫。\n每当它想到花园里来时,便汪汪叫个不停,直到有人把门打开。\n由于邻居们对狗叫很有意见,所以我丈夫花了几个星期的时间训练它用脚爪按住门闩把自己放进来。\n雷克斯很快成了开门的专家。\n然而上星期我正要出去买东西时,发现它正呆在花园里边靠门的地方。\n这次它叫着让人把它放出去!\n从那以后,它养成了另外一种坏习惯。\n它从外面把门一打开,就走进花园,等着门自动关上。\n这之后他就坐下汪汪叫起来,直到有人来把它放出去。\n出去之后,它又马上把自己放进来,接着再开始叫。\n昨天,我丈夫把门卸了下来,雷克斯很生气,此后我们便再也没有见到它。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"GvgYGK","title":"The future","titleTranslate":"卜算未来","text":"At a village fair, I decided to visit a fortune-teller called Madam Bellinsky. I went into her tent and she told me to sit down. After I had given her some money, she looked into a crystal ball and said: A relation of yours is coming to see you. She will be arriving this evening and intends to stay for a few days. The moment you leave this tent, you will get a big surprise. A woman you know well will rush towards you. She will speak to you and then she will lead you away from this place. That is all.\nAs soon as I went outside, I forgot all about Madam Bellinsky because my wife hurried towards me. Where have you been hiding? she asked impatiently. Your sister will be here in less than an hour and we must be at the station to meet her. We are late already. As she walked away, I followed her out of the fair.","textCustomTranslate":"在一个乡村集市上,我决定去拜访一位称作别林斯夫人的算命人。\n我走进她的帐篷,她叫我坐下。\n我给了她一些钱后,她便查看着一个水晶球说道:“您的一个亲戚 就要来看您了。\n她将于今天傍晚到达,并准备住上几天。\n您一走出这个帐篷,就会大吃一惊。\n一位您很熟悉的女人将向您冲来。\n她会对您说点什么,然后带您离开这 个地方。\n就是这些。”\n\n我一走出帐篷,就把别林斯基夫人给算卦的事忘得一干二净了,因为我的妻子正匆匆向我跑来。\n“你躲到哪儿去了?”\n她不耐烦地问,\n“再有不到一个小时你姐姐就要到这儿了,我们得去车站接她。\n现在就已经晚了。”\n当她走开时,我也跟着她出了集市。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"szjJat","title":"Trouble with the Hubble","titleTranslate":"哈勃望远镜的困境","text":"The Hubble telescope was launched into space by NASA on April 20,1990 at a cost of over a billion dollars. Right from the start there was trouble with the Hubble. The pictures it sent us were very disappointing because its main mirror was faulty! NASA is now going to put the telescope right, so it will soon be sending up four astronauts to repair it. The shuttle Endeavour will be taking the astronauts to the Hubble. A robot-arm from the Endeavour will grab the telescope and hold it while the astronauts make the necessary repairs. Of course, the Hubble is above the earths atmosphere, so it will soon be sending us the clearest pictures of the stars and distant galaxies that we have ever seen. The Hubble will tell us a great deal about the age and size of the universe. By the time you read this, the Hubbles eagle eye will have sent us thousands and thousands of wonderful pictures.","textCustomTranslate":"哈勃望远镜于1990年4月20日由国家航空航天局发射升空,耗资10多亿美元。\n从最开始哈勃望远镜就有问题。\n它传送给我们的图像很令人失望,因为它的主要镜子有误差。\n国家航天局准备纠正这一错误,为此将把4名宇航员送入太空修复望远镜。\n“奋进”号航天飞机将把宇航员送上哈勃。\n当宇航员进行必要的修复工作时,“奋进”号上的一只机器手将抓住望远镜并托住它。\n当然,哈勃位于地球的大气层之外,因此,它很快就会给我们传送我们所见到过的、有关行星和远距离星系的最清晰的照片。\n哈勃将告诉我们有关宇宙的年龄和大小的许多事情。\n等到你读到这篇文章时,敏锐的哈勃望远镜已经为我们送来了成千上万张精彩的照片。","textNetworkTranslate":"1990年4月20日,美国国家航空航天局将哈勃望远镜发射到太空,耗资超过10亿美元。\n哈勃望远镜从一开始就有问题。\n它发给我们的照片非常令人失望,因为它的主镜出了故障!\n美国国家航空航天局现在将修复望远镜,因此很快将派出四名宇航员对其进行维修。\n奋进号航天飞机将把宇航员送往哈勃望远镜。\n奋进号的一个机械臂将抓住望远镜并在宇航员进行必要的维修时握住它。\n当然,哈勃望远镜位于地球大气层上方,因此它将很快向我们发送我们所见过的最清晰的恒星和遥远星系的照片。\n哈勃望远镜将告诉我们许多关于宇宙年龄和大小的信息。\n当你读到这篇文章的时候,Hubbles鹰眼已经给我们发送了成千上万的精彩图片。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"0Y7fXy","title":"After the fire","titleTranslate":"大火之后","text":"Firemen had been fighting the forest for nearly three weeks before they could get it under control. A short time before, great trees had covered the countryside for miles around. Now, smoke still rose up from the warm ground over the desolate hills. Winter was coming on and the hills threatened the surrounding villages with destruction, for heavy rain would not only wash away the soil but would cause serious floods as well. When the fire had at last been put out, the forest authorities ordered several tons of a special type of grass-seed which would grow quickly. The seed was sprayed over the ground in huge quantities by aeroplanes. The planes had been planting seed for nearly a month when it began to rain. By then, however, in many places the grass had already taken root. In place of the great trees which had been growing there for centuries patches of green had begun to appear in the blackened soil.","textCustomTranslate":"消防队员们同那场森林大火搏斗了将近3个星期才最后把火势控制住。\n就在不久之前,参天大树还覆盖着方圆数英里的土地。\n而现在,发热的地面上仍然升腾着烟雾,弥漫在荒凉的山丘上。\n冬季即将来临,这些山丘对周围的村庄具有毁灭性的威胁,因为大雨不仅会冲走土壤,而且还会引起严重的水灾。\n在大火最后被扑灭后,森林管理当局订购了好几吨一种生长迅速的特殊类型的草籽。\n飞机把这种草籽大量地撒播在地上。\n飞机撒播近一个月后,开始下起雨来。\n然而到那时,很多地方的草已经生了根。\n一片片的绿草开始出现在这片烧焦的土地上,代替了多少世纪以来一直生长在那里的参天大树。","textNetworkTranslate":"消防员在控制森林之前已经与森林搏斗了近三个星期。\n不久前,大树已经覆盖了方圆数英里的乡村。\n现在,烟雾仍然从温暖的地面上升起,笼罩在荒凉的山丘上。\n冬天即将来临,山丘威胁着周围的村庄,因为大雨不仅会冲走土壤,还会引发严重的洪水。\n当大火最终被扑灭后,森林管理部门订购了几吨能快速生长的特殊草籽。\n飞机把种子大量地撒在地上。\n飞机已经播种了将近一个月,这时开始下雨了。\n然而,到那时,许多地方的草已经生根了。\n变黑的土壤中开始出现一片绿色,取代了在那里生长了几个世纪的大树。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"6R-KFQ","title":"She was not amused","titleTranslate":"她并不觉得好笑","text":"Jeremy Hampden has a large circle of friends and is very popular at parties. Everybody admires him for his great sense of humour -- everybody, that is, except his six-year-old daughter, Jenny. Recently, one of Jeremys closest friends asked him to make a speech at a wedding reception. This is the sort of thing that Jeremy loves. He prepared the speech carefully and went to the wedding with Jenny. he had included a large number of funny stories in the speech and, of course, it was a great success. As soon as he had finished, Jenny told him she wanted to go home. Jeremy was a little disappointed by this but he did as his daughter asked. On the way home, he asked Jenny if she had enjoyed the speech. To his surprise, she said she hadnt. Jeremy asked her why this was so and she told him that she did not like to see so many people laughing at him!","textCustomTranslate":"杰里米.汉普登交际甚广,是各种聚会上深受大家欢迎的人。\n人人都钦佩他那绝妙的幽默感 -- 人人,就是说,除他6岁的女儿珍妮之外的每一个人。\n最近,杰里米的一个最亲密的朋友请他在一个婚礼上祝词。\n这正是杰里米喜欢做的事情。\n他认真准备了讲稿,带着珍妮一道去参加了婚礼。\n他的祝词里面加进了大量逗人的故事,自然大获成功。\n他刚一讲完,珍妮就对他说她要回家。\n这不免使杰里米有点扫兴,但他还是按照女儿的要求做了。\n在回家的路上,他问珍妮是否喜欢他的祝词。\n使他吃惊的是,她说她不喜欢。\n杰里米问他为何不喜欢,她说她不愿意看到那么多的人嘲笑他!","textNetworkTranslate":"Jeremy Hampden有一大群朋友,在聚会上很受欢迎。\n每个人都钦佩他的幽默感——每个人,也就是说,除了他六岁的女儿珍妮。\n最近,Jeremy的一个最亲密的朋友邀请他在婚礼招待会上发表演讲。\n这就是Jeremy喜欢的东西。\n他精心准备了演讲稿,和珍妮一起去参加了婚礼。\n他在演讲中加入了许多有趣的故事,当然,这是一个巨大的成功。\n他刚说完,珍妮就告诉他她想回家。\nJeremy对此有点失望,但他按照女儿的要求做了。\n在回家的路上,他问珍妮是否喜欢这次演讲。\n令他惊讶的是,她说她没有。\nJeremy问她为什么会这样,她告诉他,她不喜欢看到这么多人嘲笑他!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"xlYzpJ","title":"The Channel Tunnel","titleTranslate":"海峡隧道","text":"In 1858, a French engineer, Aime Thome de Gamond, arrived in England with a plan for a twenty-one-mile tunnel under the English Channel. He said that it would be possible to build a platform in the centre of the Channel. This platform would serve as a port and a railway station. The tunnel would be well-ventilated if tall chimneys were built above sea level. In 1860, a better plan was put forward by an Englishman, William Low. He suggested that a double railway-tunnel should be built. This would solve the problem of ventilation, for if a train entered this tunnel, it would draw in fresh air behind it. Forty-two years later a tunnel was actually begun. If, at the time, the British had not feared invasion, it would have been completed. The world had to wait almost another 100 years for the Channel Tunnel. It was officially opened on March 7,1994, finally connecting Britain to the European continent.","textCustomTranslate":"1858年,一位名叫埃梅.托梅.德.干蒙的法国工程师带着建造一条长21英里、穿越英吉利海陕的隧道计划到了英国。\n他说,可以在隧道中央建造一座平台,这座平台将用作码头和火车站。\n如果再建些伸出海面的高大的烟囱状通风管,隧道就具备了良好的通风条件。\n1860年,一位名叫威廉.洛的英国人提出了一项更好的计划。\n他提议建一条双轨隧道,这样就解决了通风问题。\n因为如果有列火车开进隧道,它就把新鲜空气随之抽进了隧道。\n42年以后,隧道实际已经开始建了。\n如果不是因为那时英国人害怕入侵,隧道早已建成了。\n世界不得不再等将近100年才看到海峡隧道竣工。\n它于1994年3月7日正式开通,将英国与欧洲大陆连到了一起。","textNetworkTranslate":"1858年,法国工程师Aime Thome de Gamond抵达英国,计划在英吉利海峡下修建一条21英里长的隧道。\n他说,有可能在海峡中心建造一个平台。\n这个站台将用作港口和火车站。\n如果高高的烟囱建在海平面以上,隧道就会通风良好。\n1860年,英国人William Low提出了一个更好的计划。\n他建议修建一条双线隧道。\n这将解决通风问题,因为如果火车进入隧道,它会在后面吸入新鲜空气。\n四十二年后,一条隧道真正开始了。\n如果当时英国人不害怕入侵,它早就完成了。\n全世界不得不再等将近100年才能看到英吉利海峡隧道。\n它于1994年3月7日正式开放,最终将英国与欧洲大陆连接起来。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"phsCYn","title":"Jumbo versus the police","titleTranslate":"小象对警察","text":"Last Christmas, the circus owner, Jimmy Gates, decided to take some presents to a childrens hospital. Dressed up as Father Christmas and accompanied by a guard of honour of six pretty girls, he set off down the main street of the city riding a baby elephant called Jumbo. He should have known that the police would never allow this sort of thing. A policeman approached Jimmy and told him he ought to have gone along a side street as Jumbo was holding up the traffic. Though Jimmy agreed to go at once, Jumbo refused to move. Fifteen policemen had to push very hard to get him off the main street. The police had a difficult time, but they were most amused. Jumbo must weigh a few tons, said a policeman afterwards, so it was fortunate that we didnt have to carry him. Of course, we should arrest him, but as he has a good record, we shall let him off this time.","textCustomTranslate":"去年圣诞节,马戏团老板吉米.盖茨决定送些礼物给儿童医院。\n他打扮成圣诞老人,在由6个漂亮姑娘组成的“仪仗队”的陪同下,骑上一头名叫江伯的小象,沿着城里的主要街道出发了。\n他本该知道警察绝不会允许这类事情发生。\n一个警察走过来告诉吉米,他应该走一条小路,因为江泊阻碍了交通。\n虽然吉米同意马上就走,但江伯却拒绝移动。\n15个警察不得不用很大的力气把它推离主要街道。\n警察虽然吃了苦头,但他们还是感到很有趣。\n“江伯一定有好几吨重,”一个警察事后这样说,“值得庆幸的是它没让我们抬它走。\n当然,我们应该逮捕它,但由于它一贯表现很好,这次我们饶了它。”","textNetworkTranslate":"去年圣诞节,马戏团老板吉米·盖茨决定带一些礼物去儿童医院。\n他打扮成圣诞老人,在六个漂亮女孩的仪仗队的陪同下,骑着一头名叫Jumbo的小象沿着城市的主要街道出发。\n他应该知道警察绝不允许这种事情发生。\n一名警察走近吉米,告诉他他应该沿着一条小街走,因为Jumbo阻碍了交通。\n虽然吉米同意马上走,但琼博拒绝动。\n为了把他从大街上救下来,15名警察不得不奋力推挤。\n警察们度过了一段艰难的时光,但他们最开心的是。\n一位警察事后说:“这只巨鲸一定有几吨重,所以幸运的是我们不用背它。”。\n当然,我们应该逮捕他,但由于他有良好的记录,这次我们会放过他。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"uDtDYX","title":"Sweet as honey!","titleTranslate":"像蜜一样甜!","text":"In 1963 a Lancaster bomber crashed on Wallis Island, a remote place in the South Pacific, a long way west of Samoa. The plane wasnt too badly damaged, but over the years, the crash was forgotten and the wreck remained undisturbed. Then in 1989, twenty-six years after the crash, the plane was accidentally rediscovered in an aerial survey of the island. By this time, a Lancaster bomber in reasonable condition was rare and worth rescuing. The French authorities had the plane packaged and moved in parts back to France. Now a group of enthusiasts are going to have the plane restored. It has four Rolls-Royce Merlin engines, but the group will need to have only three of them rebuilt. Imagine their surprise and delight when they broke open the packing cases and found that the fourth engine was sweet as honey -- still in perfect condition. A colony of bees had turned the engine into a hive and it was totally preserved in beeswax!","textCustomTranslate":"1963年,一架兰开斯特轰炸机在瓦立斯岛毁。\n那是南太洋中一个很偏僻的小岛,位于萨摩亚群岛以西,距离群岛还有很长一段距离。\n飞机损坏的程度并不严重,但是,多年来这起飞机失事已被遗忘,飞机残骸也没受到破坏。\n于是,到了1989年,飞机失事26年后,在对小岛的一次航空勘查中那架飞机被意外地发现了。\n到了那个时候,状况良好的兰开斯特轰炸机实属罕见,值得抢救。\n法国政府让人把飞机包装起来,一部分一部分地搬回法国。\n一群热心人计划修复这架飞机。\n该飞机装装配有4台罗尔斯-罗伊斯的默林发动机,但是他们只需要修复其中的3台。\n想一想他们所感受到的惊奇和兴奋 —— 当他们拆开包装箱时,他们发现第4台发动机就像蜂蜜一样甜 —— 发动机完好无损。\n一群蜜蜂把发动机当作了蜂房,发动机在蜂蜡中被完整地保存了下来。","textNetworkTranslate":"1963年,一架兰开斯特轰炸机在萨摩亚以西很远的南太平洋偏远地区瓦利斯岛坠毁。\n这架飞机没有受到太严重的损坏,但多年来,坠机事件被遗忘了,残骸也没有受到干扰。\n1989年,也就是坠机26年后,这架飞机在对该岛的一次空中调查中意外被重新发现。\n此时,一架状况良好的兰开斯特轰炸机已经很少见,值得抢救。\n法国当局已将这架飞机包装好,并将其零件运回法国。\n现在,一群爱好者将修复这架飞机。\n它有四台劳斯莱斯梅林发动机,但该集团只需要重建其中三台。\n想象一下,当他们打开包装箱,发现第四台发动机像蜂蜜一样甜——仍然完好无损时,他们的惊讶和喜悦。\n一群蜜蜂把发动机变成了蜂箱,它完全保存在蜂蜡中!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"iEKPy1","title":"Volcanoes","titleTranslate":"火山","text":"Haroun Tazieff, the Polish scientist, has spent his lifetime studying active volcanoes and deep caves in all parts of the world. In 1948, he went to Lake Kivu in the Congo to observe a new volcano which he later named Kituro. Tazieff was able to set up his camp very close to the volcano while it was erupting violently. Though he managed to take a number of brilliant photographs, he could not stay near the volcano for very long. He noticed that a river of liquid rock was coming towards him. It threatened to surround him completely, but Tazieff managed to escape just in time. He waited until the volcano became quiet and he was able to return two days later. This time, he managed to climb into the mouth of Kituro so that he could take photographs and measure temperatures. Tazieff has often risked his life in this way. He has been able to tell us more about active volcanoes than any man alive.","textCustomTranslate":"波兰科学家哈罗恩.塔捷耶夫花了毕生的精力来研究世界各地的活火山和探洞。\n1948年他去了刚果的基伍湖,对一座后来被他命名为基图罗的新火山进行观察。\n当火山正在猛烈地喷发时,塔捷耶夫有办法把帐篷搭在离它非常近的地方。\n尽管他设法拍了一些十分精彩的照片,但他却不能在火山附近停留太长的时间。\n他发现有一股岩浆正向他流过来,眼看就要将他团团围住,但塔捷耶夫还是设法及时逃离了。\n他等到火山平静下来,两天以后又返回去。\n这次他设法爬进了基图罗火山口,以便能拍摄照片和测试温度。\n塔捷耶夫经常冒这样的生命危险。\n他能告诉我们的有关活火山的情况比任何在世的人都要多。","textNetworkTranslate":"波兰科学家Haroun Tazieff毕生致力于研究世界各地的活火山和深洞穴。\n1948年,他前往刚果的基伍湖观察一座新火山,后来他将其命名为基图罗火山。\n当火山猛烈喷发时,塔齐耶夫能够在离火山很近的地方扎营。\n尽管他成功地拍下了许多精彩的照片,但他无法在火山附近呆很长时间。\n他注意到一条液态岩石的河流正向他袭来。\n它威胁要完全包围他,但塔齐耶夫及时逃脱了。\n他一直等到火山安静下来,两天后才得以返回。\n这一次,他设法爬进了Kituro河口,以便拍照和测量温度。\n塔齐耶夫经常以这种方式冒着生命危险。\n他比任何活着的人都能告诉我们更多关于活火山的信息。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"Q3DySe","title":"Persistent","titleTranslate":"纠缠不休","text":"I crossed the street to avoid meeting him, but he saw me and came running towards me. It was no use pretending that I had not seen him, so I waved to him. I never enjoy meeting Nigel Dykes. He never has anything to do. No matter how busy you are, he always insists on coming with you. I had to think of a way of preventing him from following me around all morning.\nHello, Nigel, I said. Fancy meeting you here!\nHi, Elizabeth, Nigel answered. I was just wondering how to spend the morning -- until I saw you. Youre not busy doing anything, are you?\nNo, not at all, I answered. Im going to...\nWould you mind my coming with you? he asked, before I had finished speaking.\nNot at all, I lied, but Im going to the dentist.\nThen Ill come with you, he answered. Theres always plenty to read in the waiting room!","textCustomTranslate":"我穿过马路以便避开他,但他看到我并朝我跑过来。\n若再装作没看见他已是没有用了,我只好向他招手。\n我就怕遇到奈杰尔.戴克斯。\n他从来都是无事可做,不管你多忙,他总是坚持要跟你去。\n我得想办法不让他整个上午缠着我。\n\n“你好,奈杰尔,想不到在这儿见到你。”\n我说。\n\n“你好,伊丽莎白,”奈杰尔回答说,“我正不知道怎么消磨这一上午呢,正好见到好。\n你不忙,是吗?”\n\n“不,不忙,我打算去......”我回答。\n\n“我跟你一道去行吗?”\n没等我说完话他就问道。\n\n“没关系,但我准备去牙医那里。”\n我说了个谎。\n\n“那我也跟你去,候诊室里总有很多东西可供阅读!”\n他回答。","textNetworkTranslate":"我过马路以免碰到他,但他看到了我,朝我跑过来。\n假装没看见他是没有用的,所以我向他挥手。\n我从不喜欢见到奈杰尔·戴克斯。\n他从来没有什么事可做。\n不管你有多忙,他总是坚持要和你一起去。\n我不得不想办法防止他整个上午都跟着我。\n\n你好,奈杰尔,我说。\n真想在这里见到你!\n\n嗨,伊丽莎白,奈杰尔回答。\n我只是想知道如何度过这个上午——直到我见到你。\n你什么都不忙,是吗?\n\n不,一点也不,我回答。\n我要。。。\n\n你介意我和你一起去吗?\n我还没说完,他就问道。\n\n一点也不,我撒谎了,但我要去看牙医。\n\n“那我跟你一起去,”他回答。\n候诊室里总是有很多书要读!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"BeEZY0","title":"But not murder!","titleTranslate":"并非谋杀!","text":"I was being tested for a driving licence for the third time. I had been asked to drive in heavy traffic and had done so successfully. After having been instructed to drive out of town, I began to acquire confidence. Sure that I had passed, I was almost beginning to enjoy my test. The examiner must have been pleased with my performance, for he smiled and said. Just one more thing, Mr.Eames. Let us suppose that a child suddenly crosses the road in front of you. As soon as I tap on the window, you must stop within five feet. I continued driving and after some time, the examiner tapped loudly, Though the sound could be heard clearly, it took me a long time to react. I suddenly pressed the brake pedal and we were both thrown forward. The examiner looked at me sadly. Mr.Eames, he said, in a mournful voice, you have just killed that child!","textCustomTranslate":"我第3次接受驾驶执照考试。\n按照要求在车辆拥挤的路上驾驶,我圆满地完成了。\n在接到把车开出城的指令后,我开始有了信心。\n确信我已通过考试,所以我几乎开始喜欢起这次考试。\n主考人对我的驾驶想必是满意的,因为他微笑着说:“埃姆斯先生,只剩1项了。\n让我们假设一个小孩子突然在你前面穿过马路。\n我一敲车窗,你必须把车停在5英尺之内。”\n我继续往前开着。\n过了一会儿,主考人砰砰地敲了起来。\n虽然声音听得很清楚,但我过了好一会儿才作出反应。\n我突然用力踩紧刹车踏板,结果我俩的身体都向前冲去。\n主考人伤心地看着我。\n“埃姆斯先生,”他以悲伤的声调说,“你刚刚把那个小孩压死了!”","textNetworkTranslate":"我正在接受第三次驾驶执照考试。\n我被要求在交通繁忙的时候开车,而且我成功地做到了。\n在接到开车出城的指示后,我开始有了信心。\n确信我已经通过了考试,我几乎开始享受我的考试了。\n考官一定对我的表现很满意,因为他笑着说。\n还有一件事,埃姆斯先生。\n让我们假设一个孩子突然在你面前过马路。\n我一敲窗户,你就必须在五英尺以内停下。\n我继续开车,过了一段时间,考官大声地拍了拍。虽然声音听得很清楚,但我花了很长时间才做出反应。\n我突然踩下刹车踏板,我们都被向前甩了出去。\n考官悲伤地看着我。\n埃姆斯先生,他悲伤地说,你刚刚杀了那个孩子!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"T0qUYr","title":"Red for danger","titleTranslate":"危险的红色","text":"During a bullfight, a drunk suddenly wandered into the middle of the ring. The crowd began to shout, but the drunk was unaware of the danger. The bull was busy with the matador at the time, but it suddenly caught sight of the drunk who was shouting rude remarks and waving a red cap. Apparently sensitive to criticism, the bull forgot all about the matador and charged at the drunk. The crowd suddenly grew quiet. The drunk, however, seemed quite sure of himself. When the bull got close to him, he clumsily stepped aside to let it pass. The crowd broke into cheers and the drunk bowed. By this time, however, three men had come into the ring and they quickly dragged the drunk to safety. Even the bull seemed to feel sorry for him, for it looked on sympathetically until the drunk was out of the way before once more turning its attention to the matador.","textCustomTranslate":"在一次斗牛时,一个醉汉突然溜达到斗牛场中间,人们开始大叫起来,但醉汉却没有意识到危险。\n当时那公牛正忙于对付斗牛士,但突然它看见了醉汉,只见他正大声说着粗鲁的话,手里挥动着一顶红帽子。\n对挑衅显然非常敏感的公牛完全撇开斗牛士,直奔醉汉而来。\n观众突然静了下来,可这醉汉像是很有把握似的。\n当公牛逼近他时,他踉跄地住旁边一闪,牛扑空了。\n观众欢呼起来,醉汉向人们鞠躬致谢。\n然而,此时已有3个人进入斗牛场,迅速把醉汉拉到安全的地方。\n好像连牛也在为他感到遗憾,因为它一直同情地看着醉汉,直到他的背影消逝,才重新将注意力转向斗牛士。","textNetworkTranslate":"在一次斗牛中,一个醉汉突然溜进了斗牛场的中央。\n人群开始喊叫,但醉汉没有意识到危险。\n公牛当时正忙着和斗牛士打交道,但它突然看到了那个醉汉,他大声说着粗鲁的话,挥舞着一顶红帽子。\n公牛显然对批评很敏感,忘记了斗牛士,冲着醉汉冲去。\n人群突然安静下来。\n然而,醉汉似乎对自己很有把握。\n当公牛靠近他时,他笨拙地走到一边让它过去。\n人群爆发出欢呼声,醉汉鞠了一躬。\n然而,这时,三名男子已经进入拳击场,他们迅速将醉汉拖到安全地带。\n甚至公牛似乎也为他感到难过,因为它同情地看着他,直到醉汉让开,才再次将注意力转向斗牛士。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"bGuwl4","title":"A famous clock","titleTranslate":"一个著名的大钟","text":"When you visit London, one of the first things you will see is Big Ben, the famous clock which can be heard all over the world on the B.B.C. If the Houses of Parliament had not been burned down in 1834, the great clock would never have been erected. Big Ben takes its name from Sir Benjamin Hall who was responsible for the making of the clock when the new Houses of Parliament were being built. It is not only of immense size, but is extremely accurate as well. Officials from Greenwich Observatory have the clock checked twice a day. On the B.B.C. you can hear the clock when it is actually striking because microphones are connected to the clock tower. Big Ben has rarely gone wrong. Once, however, it failed to give the correct time. A painter who had been working on the tower hung a pot of paint on one of the hands and slowed it down!","textCustomTranslate":"当你游览伦敦时,首先看到的东西之一就是“大本”钟,即那座从英国广播公司的广播中全世界都可以听到它的声音的著名大钟。\n如果不是国会大厦在1834年被焚毁的话,这座大钟永远也不会建造。\n“大本”钟得名于本杰明.霍尔爵士,因为当建造新的国会大厦时,他负责建造大钟。\n此钟不仅外型巨大,而且走时也非常准确。\n格林尼治天文台的官员们每天两次派人矫正此钟。\n当大钟打点的时候,你可以从英国广播公司的广播中听到,因为钟塔上接了麦克风。\n“大本”钟很少出差错。\n然而有一次,它却把时间报错。\n在钟塔上干活的一位油漆工把一只油漆桶挂在了一根指针上,把钟弄慢了!","textNetworkTranslate":"当你参观伦敦时,你首先会看到的是大本钟,这座著名的大钟在不列颠哥伦比亚省的世界各地都能听到。如果国会大厦没有在1834年被烧毁,这座大钟就永远不会竖立起来。\n大本钟的名字取自本杰明·霍尔爵士,他在建造新的议会大厦时负责制作大钟。\n它不仅体积巨大,而且非常精确。\n格林尼治天文台的官员每天检查两次时钟。\n在不列颠哥伦比亚省,当时钟真正敲响时,你可以听到它的声音,因为麦克风连接到钟楼上。\n大本钟很少出错。\n然而,有一次,它没有给出正确的时间。\n一位在塔上工作的画家把一壶油漆挂在其中一只手上,然后放慢了速度!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"BjWKB1","title":"A car called bluebird","titleTranslate":"“蓝鸟”汽车","text":"The great racing driver, Sir Malcolm Campbell, was the first man to drive at over 300 miles per hour. He set up a new world record in September 1935 at Bonneville Salt Flats, Utah. Bluebird, the car he was driving, had been specially built for him. It was over 30 feet in length and had a 2,500-horsepower engine. Although Campbell reached a speed of over 304 miles per hour, he had great difficulty in controlling the car because a tyre burst during the first run. After his attempt, Campbell was disappointed to learn that his average speed had been 299 miles per hour. However, a few days later, he was told that a mistake had been made. His average speed had been 301 miles per hour. Since that time, racing drivers have reached speeds over 600 miles an hour. Following in his fathers footsteps many years later, Sir Malcolms son, Donald, also set up a world record. Like his father, he was driving a car called Bluebird.","textCustomTranslate":"杰出的赛车选手马尔科姆.坎贝尔爵士是第一个以每小时超过300英里的速度驾车的人。\n他于1935年9月在犹他州的邦纳维尔盐滩创造了一项新的世界纪录。\n他驾驶的“蓝鸟”牌汽车是专门为他制造的。\n它的车身长30英尺,有一个2,500 马力的发动机。\n尽管坎贝尔达到了每小时超过304英里的速度,但他很难把汽车控制住,因为在开始的行程中爆了一只轮胎。\n比赛结束后,坎贝尔非常失望地得知他的平均时速是299英里。\n然而,几天之后,有人告诉他说弄错了。\n他的平均时速实际是301英里。\n从那时以来,赛车选手已达到每小时600英里的速度。\n很多年之后,马尔科姆爵士的儿子唐纳德踏着父亲的足迹,也创造了一项世界纪录。\n同他父亲一样,他也驾驶着一辆名叫“蓝鸟”的汽车。","textNetworkTranslate":"伟大的赛车手马尔科姆·坎贝尔爵士是第一个以每小时300英里以上的速度驾驶的人。\n1935年9月,他在犹他州的邦纳维尔盐滩创造了一项新的世界纪录。\n蓝鸟,他驾驶的汽车,是专门为他造的。\n它的长度超过30英尺,拥有2500马力的发动机。\n尽管坎贝尔的速度超过了每小时304英里,但由于第一次跑步时轮胎爆裂,他很难控制赛车。\n在尝试后,坎贝尔失望地得知自己的平均速度为每小时299英里。\n然而,几天后,他被告知犯了一个错误。\n他的平均速度是每小时301英里。\n从那时起,赛车手的速度已经超过了每小时600英里。\n多年后,马尔科姆斯爵士的儿子唐纳德也追随父亲的脚步,创造了世界纪录。\n和他父亲一样,他也开着一辆叫蓝鸟的车。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"HNNWxc","title":"The record-holder","titleTranslate":"纪录保持着","text":"Children who play truant from school are unimaginative. A quiet days fishing, or eight hours in a cinema seeing the same film over and over again, is usually as far as they get. They have all been put to shame by a boy who, while playing truant, travelled 1,600 miles. He hitchhiked to Dover and, towards evening, went into a boat to find somewhere to sleep. When he woke up next morning, he discovered that the boat had, in the meantime, travelled to Calais. No one noticed the boy as he crept off. From there, he hitchhiked to Paris in a lorry. The driver gave him a few biscuits and a cup of coffee and left him just outside the city. The next car the boy stopped did not take him into the centre of Paris as he hoped it would, but to Perpignan on the French-Spanish border. There he was picked up by a policeman and sent back to England by the local authorities. He has surely set up a record for the thousands of children who dream of evading school.","textCustomTranslate":"逃学的孩子们都缺乏想像力。\n他们通常能够做到的,至多也就是安静地钓上一天鱼,或在电影院里坐上8个小时,一遍遍地看同一部电影。\n而有那么一个小男孩,他在逃学期间旅行了1,600英里,从而使上述所有逃学的孩子们都相形见绌了。\n他搭便车到了多佛,天快黑时钻进了一条船,想找个地方睡觉。\n第二天早上他醒来时,发现船在这段时间已经到了加。\n当男孩从船里爬出来时,谁也没有发现他。\n从那里他又搭上卡车到了巴黎。\n司机给了他几块饼干和一杯咖啡,就把他丢在了城外。\n男孩截住的下一辆车,没有像他希望的那样把他带到巴黎市中心,而是把他带到了法国和西班牙边界上的佩皮尼昂。\n他在那儿被一个警察抓住了,之后被当局送回了英国。\n他无疑为成千上万梦想逃避上学的孩子们创造了一项纪录。","textNetworkTranslate":"逃学的孩子缺乏想象力。\n平静的几天钓鱼,或者在电影院里看八个小时一遍又一遍地看同一部电影,通常是他们所能做到的。\n他们都被一个逃学时跑了1600英里的男孩羞辱了。\n他搭便车到多佛,傍晚时分,他上了一艘船,想找个地方睡觉。\n当他第二天早上醒来时,他发现这艘船在此期间已经驶向加莱。\n男孩悄悄地走了,没人注意到。\n从那里,他搭卡车去了巴黎。\n司机给了他几块饼干和一杯咖啡,然后把他留在城外。\n男孩停下的下一辆车并没有像他希望的那样把他送到巴黎市中心,而是送到了法西边境的佩皮尼昂。\n在那里,他被一名警察接走,并被当地政府送回英国。\n他无疑为成千上万梦想逃学的孩子创造了一项记录。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"ImIknW","title":"Out of the limelight","titleTranslate":"舞台之外","text":"An ancient bus stopped by a dry river bed and a party of famous actors and actresses got off. Dressed in dark glasses and old clothes, they had taken special precautions so that no one should recognize them. But as they soon discovered, disguises can sometimes be too perfect.\n'This is a wonderful place for a picnic,' said Gloria Gleam.\n'It couldn't be better, Gloria,' Brinksley Meers agreed. 'No newspaper men, no film fans! Why don't we come more often?'\nMeanwhile, two other actors, Rockwall Slinger and Merlin Greeves, had carried two large food baskets to a shady spot under some trees. When they had all made themselves comfortable, a stranger appeared. He looked very angry. 'Now you get out of here, all of you!' he shouted. 'I'm sheriff here. Do you see that notice? It says \"No Camping\" -- in case you can't read!'\n'Look, sheriff,' said Rockwall, 'don't be too hard on us. I'm Rockwall Slinger and this is Merlin Greeves.'\n'Oh, is it?' said the sheriff with a sneer. 'Well, I'm Brinksley Meers, and my other name is Gloria Gleam. Now you get out of here fast!'","textCustomTranslate":"一辆古旧的汽车停在一条干涸的河床边,一群著名男女演员下了车。\n他们戴着墨镜,穿着旧衣裳,特别小心以防别人认出他们。\n但他们很快就发觉,化装的效果有时过分完美了。\n\n“在这个地方野餐简直太妙了,”格格利亚.格利姆说。\n\n“是再好不过的了,格格利亚。”布林克斯利.米尔斯表示同意,\n“没有记者,没有影迷!我们为什么不经常来这里呢?”\n\n\n“此时,另外两位演员,罗克沃尔.斯林格和默林.格里夫斯,已经把两个大食品篮子提到了一片树荫下。\n当他们都已安排舒适时,一个陌生人出现了。\n他看上去非常气愤。\n“你们都从这里走开,全都走开!”他大叫着,\n“我是这里的司法长官。\n你们看到那个布告牌了吗?\n上面写着‘禁止野营’--除非你们不识字!”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"PSRK0z","title":"SOS","titleTranslate":"呼救信号","text":"When a light passenger plane flew off course some time ago, it crashed in the mountains and its pilot was killed. The only passengers, a young woman and her two baby daughters, were unhurt. It was the middle of winter. Snow lay thick on the ground. The woman knew that the nearest village was miles away. When it grew dark, she turned a suitcase into a bed and put the children inside it, covering them with all the clothes she could find. During the night, it got terribly cold. The woman kept as near as she could to the children and even tried to get into the case herself, but it was too small. Early next morning, she heard planes passing overhead and wondered how she could send a signal. Then she had an idea. She stamped out the letters 'SOS' in the snow. Fortunately, a pilot saw the signal and sent a message by radio to the nearest town. It was not long before a helicopter arrived on the scene to rescue the survivors of the plane crash.","textCustomTranslate":"不久前,一架轻型客机偏离了航线,在山区坠毁,飞行员丧生。\n机上仅有的乘客,一位年轻的妇女和她的两个女婴却平安无事。\n此时正值隆冬季节,地上积着厚厚的雪。\n这位妇女知道,即使最近的村庄也有数英里远。\n天黑下来的时候,她把提箱当作小床,把两个孩子放了进去,又把所有能找到的衣服都盖在了孩子们身上。\n夜里,天冷得厉害。\n这位妇女尽可能地靠近孩子,甚至自己也想钻进箱子里去,只是箱子太小了。\n第二天一大早,她听到头顶上有飞机飞过,但不知道怎样才能发个信号。\n后来她有了一个主意。\n她在雪地上踩出了“SOS”这3个字母。\n幸运得很,一位飞行员看到这个信号,用无线电给最近的城镇发了报。\n不久,一架直升飞机飞抵飞机失事现场,来搭救这几个幸存者。","textNetworkTranslate":"不久前,一架轻型客机偏离航线,坠入山区,飞行员遇难。\n唯一的乘客是一名年轻女子和她的两个女儿,没有受伤。\n那是隆冬。\n地上积着厚厚的雪。\n这个女人知道最近的村子在几英里之外。\n天黑后,她把一个手提箱变成了床,把孩子们放在里面,用她能找到的所有衣服盖住他们。\n晚上,天气变得非常冷。\n这名妇女尽可能靠近孩子们,甚至试图自己进入箱子,但箱子太小了。\n第二天一早,她听到飞机从头顶飞过,想知道如何才能发出信号。\n然后她有了一个主意。\n她在雪地里踩出了“SOS”字母。\n幸运的是,一名飞行员看到了信号,并通过无线电向最近的城镇发送了信息。\n不久,一架直升机抵达现场,营救飞机失事的幸存者。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"EIDPKj","title":"April Fools' Day","titleTranslate":"愚人节","text":"'To end our special news bulletin,' said the voice of the television announcer, 'we're going over to the macaroni fields of Calabria. Macaroni has been grown in this area for over six hundred years. Two of the leading growers, Giuseppe Moldova and Riccardo Brabante, tell me that they have been expecting a splendid crop this year and harvesting has begun earlier than usual. Here you can see two workers who, between them, have just finished cutting three cartloads of golden brown macaroni stalks. The whole village has been working day and night gathering and threshing this year's crop before the September rains. On the right, you can see Mrs. Brabante herself. She has been helping her husband for thirty years now. Mrs. Brabante is talking to the manager of the local factory where the crop is processed. This last scene shows you what will happen at the end of the harvest: the famous Calabrian macaroni-eating competition! Signor Fratelli, the present champion, has won it every year since 1991. And that ends our special bulletin for today, Thursday, April lst. We're now going back to the studio.'","textCustomTranslate":"“作为我们专题新闻节目的结尾,”电视广播员说,“我们现在到克拉布利亚的通心粉田里。\n通心粉在这个地区已经种植了600多年了。\n两个主要种植者,朱塞皮.莫尔道瓦和里卡多.布拉班特告诉我,他们一直期待着今年获得一个大丰收,收割工作比往年开始要早些。\n这里您可以看到两个工人,他们协力割下了3车金黄色的通心粉秸。\n全村的人都日夜奋战,要赶在9月的雨季之前把今年的庄稼收获上来,打完场。\n在屏幕的右侧,您可以看到布拉班特太太本人,她已经帮了她的丈夫30年了。\n布拉班特太太现在正和负责通心粉加工的当地加工厂的经理交谈。\n这最后一个镜头向您展示了收获之后将发生的事情:著名的克拉布利亚人吃通心粉大赛!\n目前的冠军弗拉特里先生,自1991年以来,年年获胜。\n今天 -- 4月1日,星期四--的专题新闻节目到此结束。\n现在我们回到电视演播室。”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"_jpSrG","title":"A successful operation","titleTranslate":"一例成功的手术","text":"The mummy of an Egyptian woman who died in 800 B.C. has just had an operation. The mummy is that of Shepenmut who was once a singer in the Temple of Thebes. As there were strange marks on the X-ray plates taken of the mummy, doctors have been trying to find out whether the woman died of a rare disease. The only way to do this was to operate. The operation, which lasted for over four hours, proved to be very difficult because of the hard resin which covered the skin. The doctors removed a section of the mummy and sent it to a laboratory. They also found something which the X-ray plates did not show: a small wax figure of the god Duamutef. This god which has the head of a cow was normally placed inside a mummy. The doctors have not yet decided how the woman died. They feared that the mummy would fall to pieces when they cut it open, but fortunately this has not happened. The mummy successfully survived the operation.","textCustomTranslate":"死于公元前800年的一位埃及妇女的木乃伊刚刚接受了一次手术。\n这是曾在底比斯神殿里当过歌手的赛潘姆特的木乃伊。\n由于在给这个木乃伊拍摄的X光片子上有点奇怪的斑点,所以,医生们一直试图搞清这位妇女是否死于一种罕见的疾病。\n搞清的唯一办法就是手术。\n手术持续了4个多小时,非常难做,因为皮肤上覆盖着一层硬硬的树脂。\n医生们从木乃伊身上取下一个切片,送去化验。\n他们还发现了X光片所没有显示的东西:一个蜡制的杜瓦木特夫神小塑像。\n这种牛头人身的神像通常被放在木乃伊体内。\n医生们至今还未确定这位妇女的死因。\n他们曾担心在把木乃伊切开后,它会散成碎片,但幸运得很,这种情况并未发生。\n这具木乃伊成功地经受了这次手术。","textNetworkTranslate":"一位死于公元前800年的埃及妇女的木乃伊刚刚接受了手术。\n这具木乃伊是谢彭穆特的,他曾是底比斯神庙的一名歌手。\n由于这具木乃伊的X光片上有奇怪的痕迹,医生们一直在努力查明这名妇女是否死于罕见疾病。\n唯一的办法就是手术。\n手术持续了四个多小时,由于皮肤上覆盖着坚硬的树脂,手术非常困难。\n医生取出了木乃伊的一部分,并将其送往实验室。\n他们还发现了一些X光片没有显示的东西:一个小的杜阿穆特夫神蜡像。\n这个长着牛头的神通常被放在木乃伊里面。\n医生们还没有决定这个女人是怎么死的。\n他们担心当他们切开木乃伊时,它会摔成碎片,但幸运的是,这并没有发生。\n这具木乃伊在手术中成功地活了下来。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"mdpJ80","title":"The last one?","titleTranslate":"最后一枝吗?","text":"After reading an article entitled 'Cigarette Smoking and Your Health' I lit a cigarette to calm my nerves. I smoked with concentration and pleasure as I was sure that this would be my last cigarette. For a whole week I did not smoke at all and during this time, my wife suffered terribly. I had all the usual symptoms of someone giving up smoking: a bad temper and an enormous appetite. My friends kept on offering me cigarettes and cigars. They made no effort to hide their amusement whenever I produced a packet of sweets from my pocket. After seven days of this I went to a party. Everybody around me was smoking and I felt extremely uncomfortable. When my old friend Brian urged me to accept a cigarette, it was more than I could bear. I took one guiltily, lit it and smoked with satisfaction. My wife was delighted that things had returned to normal once more. Anyway, as Brian pointed out, it is the easiest thing in the world to give up smoking. He himself has done it lots of times!","textCustomTranslate":"读完一篇题为《吸烟与健康》的文章之后,我点上了一枝香烟,来镇定一下自己紧张的神经。\n我聚精会神而又愉快地吸着这枝烟。\n因为我确信这是我最后一枝烟了。\n整整一个星期我根本没有吸烟。\n在此期间,我妻子吃尽了苦头。\n我具备了戒烟者通常表现出来的所有症状:脾气暴躁和食欲旺盛。\n我的朋友们不断地向我递香烟和雪茄。\n每当我从口袋里掏出一包糖果时,他们都毫不掩饰地表现出他们对此感到非常好笑。\n这样过了7天以后,我去参加一次聚会。\n我周围的每个人都在吸烟,我感到非常不自在。\n当我的老朋友布赖恩极力劝我接受一枝香烟时,我再也忍不住了。\n我内疚地接过一枝点上,心满意足地抽起来。\n一切又都恢复了正常,为此我妻子十分高兴。\n不管怎么说,正如布赖恩指出的那样,戒烟是世界上最容易的事情,他自己就已戒了很多次了!","textNetworkTranslate":"在读了一篇题为《吸烟与健康》的文章后,我点了一支烟来安抚我的神经。\n我全神贯注地愉快地抽着烟,因为我确信这将是我的最后一支烟。\n整整一周我都不抽烟,在这段时间里,我妻子遭受了巨大的痛苦。\n我有戒烟者的所有常见症状:脾气不好,食欲大。\n我的朋友们不停地给我香烟和雪茄。\n每当我从口袋里拿出一包糖果时,他们都毫不掩饰自己的乐趣。\n七天后,我去参加了一个聚会。\n我周围的每个人都在抽烟,我感到非常不舒服。\n当我的老朋友布赖恩催促我接受一支香烟时,我无法忍受。\n我内疚地拿了一支,点燃了它,满意地抽着烟。\n我妻子很高兴事情又恢复了正常。\n无论如何,正如布莱恩所指出的,戒烟是世界上最容易的事情。\n他自己已经做了很多次了!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"Q4I3If","title":"By air","titleTranslate":"乘飞机","text":"I used to travel by air a great deal when I was a boy. My parents used to live in South America and I used to fly there from Europe in the holidays. A flight attendant would take charge of me and I never had an unpleasant experience. I am used to traveling by air and only on one occasion have I ever felt frightened. After taking off, we were flying low over the city and slowly gaining height, when the plane suddenly turned round and flew back to the airport. While we were waiting to land, a flight attendant told us to keep calm and to get off the plane quietly as soon as it had touched down. Everybody on board was worried and we were curious to find out what had happened. Later we learnt that there was a very important person on board. The police had been told that a bomb had been planted on the plane. After we had landed, the plane was searched thoroughly. Fortunately, nothing was found and five hours later we were able to take off again.","textCustomTranslate":"我在幼年的时候,曾多次乘飞机旅行。\n我的父母曾经住在南美洲,所以假期里我常从欧洲乘飞机到他们那里。\n我总是由一位空中乘务员照管,从未遇到过不愉快的经历。\n我习惯了乘飞机旅行,只是有一次把我吓坏了。\n起飞之后,我们在城市上空低低地飞行,然后慢慢爬高。\n这时飞机突然调转头来,飞回了机场。\n在我们等待降落时,一位空中乘务员告诉我们要保持镇静,待飞机一着陆,就马上不声不响地离开飞机。\n飞机上的人都很着急,大家都急于想知道究竟出了什么事。\n后来我们才得知,飞机上坐了一位非常重要的人物。\n有人报告警察,说飞机上安放了一枚炸弹。\n我们降落之后,飞机被彻底搜查了一遍。\n幸运的是,什么也没有找到。\n5个小时后,我们又起飞了。","textNetworkTranslate":"我小时候经常乘飞机旅行。\n我的父母曾经住在南美洲,我过去常常在假期从欧洲飞到那里。\n空乘人员会照顾我,我从未有过不愉快的经历。\n我习惯了乘飞机旅行,只有一次我感到害怕。\n起飞后,我们在城市上空低空飞行,并慢慢上升,这时飞机突然掉头飞回机场。\n当我们等待降落时,一名乘务员告诉我们保持冷静,飞机一着陆就安静地下飞机。\n船上的每个人都很担心,我们很想知道发生了什么。\n后来我们了解到船上有一个非常重要的人。\n警方被告知飞机上安放了一枚炸弹。\n我们着陆后,对飞机进行了彻底搜查。\n幸运的是,什么也没找到,五个小时后我们又起飞了。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"H9t9HC","title":"The Crystal Palace","titleTranslate":"水晶宫","text":"Perhaps the most extraordinary building of the nineteeth century was the Crystal Palace, which was built in Hyde Park for the Great Exhibition of 1851. The Crystal Palace was different from all other buildings in the world, for it was made of iron and glass. It was one of the biggest buildings of all time and a lot of people from many countries came to see it. A great many goods were sent to the exhibition from various parts of the world. There was also a great deal of machinery on display. The most wonderful piece of machinery on show was Nasmyth's steam hammer. Though in those days, traveling was not as easy as it is today, steam boats carried thousands of visitors across the Channel from Europe. On arriving in England, they were taken to the Crystal Palace by train. There were six million visitors in all, and the profits from the exhibition were used to build museums and colleges. Later, the Crystal Palace was moved to South London. It remained one of the most famous buildings in the world until it was burnt down in 1936.","textCustomTranslate":"19世纪最不寻常的建筑也许要数水晶宫了,它是为1851年的“世界博览会”而建在海德公园的。\n这座水晶宫不同于世界上所有的其他建筑,因为它是用钢和玻璃建成的。\n它是有史以来最高大的建筑物之一,因此,人们从各个国家纷纷前来参观。\n大量的商品从世界各地运送到了博览会,参展的还有很多机器,其中最奇妙的是内史密斯的蒸汽锤。\n尽管在当时旅行不像现在这么容易,但汽船还是把成千上万的参观者从欧洲大陆送过了英吉利海峡。\n一到英国,火车就把他们送到了水晶宫。\n参观的人数总共是600万。\n博览会的赢利用来建造博物馆和高等学校。\n后来,“水晶宫”被移到了伦敦南部。\n在1936年被焚毁之前,它一直是世界上最著名的建筑物之一。","textNetworkTranslate":"也许九齿世纪最非凡的建筑是水晶宫,它是为1851年的大展览而建在海德公园的。\n水晶宫不同于世界上所有其他建筑,因为它是由铁和玻璃制成的。\n它是有史以来最大的建筑之一,来自许多国家的许多人都来看它。\n许多货物从世界各地运往展览会。\n这里还展出了大量的机械设备。\n展出的最精彩的机器是纳斯米斯特的蒸汽锤。\n尽管在那些日子里,旅行不像今天那么容易,但蒸汽船载着成千上万的游客从欧洲穿越英吉利海峡。\n抵达英国后,他们被火车带到水晶宫。\n总共有600万游客,展览的利润被用于建造博物馆和学院。\n后来,水晶宫搬到了伦敦南部。\n它一直是世界上最著名的建筑之一,直到1936年被烧毁。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"XN1IjL","title":"Escape","titleTranslate":"脱逃","text":"When he had killed the guard, the prisoner of war quickly dragged him into the bushes. Working rapidly in the darkness, he soon changed into the dead man's clothes. Now, dressed in a blue uniform and with a rifle over his shoulder, the prisoner marched boldly up and down in front of the camp. He could hear shouting in the camp itself. Lights were blazing and men were running here and there: they had just discovered that a prisoner had escaped. At that moment, a large black car with four officers inside it, stopped at the camp gates. The officers got out and the prisoner stood to attention and saluted as they passed. When they had gone, the driver of the car came towards him. The man obviously wanted to talk. He was rather elderly with grey hair and clear blue eyes. The prisoner felt sorry for him, but there was nothing else he could do. As the man came near, the prisoner knocked him to the ground with a sharp blow. Then, jumping into the car, he drove off as quickly as he could.","textCustomTranslate":"那个战俘杀死卫兵以后,迅速地把尸体拖进了灌木丛。\n他在黑暗中忙活了一阵儿,很快就换上了死者的衣服。\n现在他身穿蓝军装,肩扛步枪,在军营门前大胆地来回走看。\n他听得军营里面的喧闹声。\n那里灯米通明,人们在东奔西跑:他们刚刚发现有一个俘虏跑了。\n正在此时,一辆黑色大轿车在军营门口停了下来。\n里面坐了4个军官。\n军官们下了车,战俘立正站好,并在他们从他面前经过时敬了礼。\n他们走后,汽车司机向他走来,这人显然是想聊天。\n他上了年纪,有着灰白的头发和明亮的蓝眼睛。\n战俘为他感到惋惜,但却没有别的选择。\n当这个人走近时,战俘一拳把他打倒在地,然后跳进车里,以最快的速度把车开走了。","textNetworkTranslate":"当他杀死警卫后,战俘迅速把他拖进灌木丛。\n他在黑暗中迅速工作,很快就换上了死者的衣服。\n现在,这名囚犯身穿蓝色制服,肩上扛着步枪,大胆地在营地前走来走去。\n他能听到营地里的呼喊声。\n灯火通明,人们到处乱跑:他们刚刚发现一个囚犯逃跑了。\n就在这时,一辆载有四名军官的黑色大轿车停在营地门口。\n军官们下车,囚犯立正,在他们经过时敬礼。\n他们走后,汽车司机向他走来。\n那人显然想谈谈。\n他年事已高,一头白发,一双清澈的蓝眼睛。\n犯人为他感到难过,但他也无能为力。\n当那个人走近时,犯人猛地一拳把他打倒在地。\n然后,他跳上车,以最快的速度开车离开。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"KYmXrr","title":"Monster or fish?","titleTranslate":"是妖还是鱼?","text":"Fishermen and sailors sometimes claim to have seen monsters in the sea. Though people have often laughed at stories told by seamen, it is now known that many of these 'monsters' which have at times been sighted are simply strange fish. Occasionally, unusual creatures are washed to the shore, but they are rarely caught out at sea. Some time ago, however, a peculiar fish was caught near Madagascar. A small fishing boat was carried miles out to sea by the powerful fish as it pulled on the line. Realizing that this was no ordinary fish, the fisherman made every effort not to damage it in any way. When it was eventually brought to shore, it was found to be over thirteen feet long. It had a head like a horse, big blue eyes, shining silver skin, and a bright red tail. The fish, which has since been sent to a museum where it is being examined by a scientist, is called an oarfish. Such creatures have rarely been seen alive by man as they live at a depth of six hundred feet.","textCustomTranslate":"渔夫和水手们有时声称自己看到过海里的妖怪。\n虽然人们常常对水手们讲的故事付诸一笑,但现在看来,人们有时看到的这些“妖怪”很多不过是些奇怪的鱼。\n一些异常的生物偶尔会被冲到岸上来,但它们在海上却极少能被捕到。\n然而不久前,在马达加斯加附近的海里却捕到了一条奇怪的鱼。\n一条小渔船被一条咬住钩的强壮的大鱼拖到了几英里以外的海面上。\n那位渔民意识到这根本不是一条普通的鱼,于是千方百计不让它受到丝毫伤害。\n当终于把它弄上岸后,人们发现它身长超过了13英尺。\n它长着一个像马一样的头,有着大的蓝眼睛和闪闪发光的银色皮肤,还有一条鲜红色的尾巴。\n此鱼叫桨鱼,被送进了博物馆,现正接受一位科学家的检查。\n人们很少能看到活着的这类动物,因为它们生活在600英尺深的水下。","textNetworkTranslate":"渔民和水手有时声称在海里见过怪物。\n尽管人们经常嘲笑海员讲的故事,但现在人们已经知道,许多有时被看到的“怪物”只是奇怪的鱼。\n偶尔,不寻常的生物会被冲到岸边,但它们很少在海上被捕获。\n然而,不久前,在马达加斯加附近捕获了一种奇特的鱼。\n一艘小渔船在拉动绳索时被强大的鱼带到了几英里外的大海。\n意识到这不是一条普通的鱼,渔夫竭尽全力不去破坏它。\n当它最终被带到岸边时,人们发现它超过13英尺长。\n它有一个像马一样的头,蓝色的大眼睛,闪闪发光的银色皮肤,和一条鲜红色的尾巴。\n这种鱼被送往博物馆接受科学家的检查,被称为桨鱼。\n这种生物很少被人类看到,因为它们生活在600英尺深的地方。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"-_QLVE","title":"After the elections","titleTranslate":"大选之后","text":"The former Prime Minister, Mr. Wentworth Lane, was defeated in the recent elections. He is now retiring from political life and has gone abroad. My friend, Patrick, has always been a fanatical opponent of Mr. Lane's Radical Progressive Party. After the elections, Patrick went to the former Prime Minister's house. When he asked if Mr. Lane lived there, the policeman on duty told him that since his defeat, the ex-Prime Minister had gone abroad. On the following day, Patrick went to the house again. The same policeman was just walking slowly past the entrance, when Patrick asked the same question. Though a little suspicious this time, the policeman gave him the same answer. The day after, Patrick went to the house once more and asked exactly the same question. This time, the policeman lost his temper. 'I told you yesterday and the day before yesterday,' he shouted, 'Mr. Lane was defeated in the elections. He has retired from political life and gone to live abroad!\"\n'I know,' answered Patrick, 'but I love to hear you say it!'","textCustomTranslate":"前首相温特沃兹.莱恩先生在最近的大选中被击败。\n他现在退出了政界,到国外去了。\n我的朋友帕特里克一直是莱恩先生的激进党的强烈反对者。\n大选结束后,帕特里克来到了前首相的住处。\n当他询问莱恩先生是否住在那里时,值班的警察告诉他这位前首相落选后出国去了。\n第二天,帕特里克再次来到首相的住处。\n昨天的那位警察正从门口慢慢走过,帕特里克上前问了和昨天同样的问题。\n虽然那位警察这次有点疑心,但还是对他作了同样的回答。\n第三天,帕特里克又去了,提出了同前两天完全一样的问题。\n这一次警察火了。\n“我昨天和前天都告诉过您了,”他大叫着,“莱恩先生在大选中被击败了,他已经退出了政界去国外了!”\n\n“这我都知道,”帕特里克说,“可我就是喜欢听你说出这此!”","textNetworkTranslate":"前总理温特沃斯·莱恩先生在最近的选举中落败。\n他现在要退出政治生活,已经出国了。\n我的朋友帕特里克一直是莱恩先生的激进进步党的狂热反对者。\n选举结束后,帕特里克去了前首相的家。\n当他问莱恩先生是否住在那里时,值班警察告诉他,自从他失败后,这位前首相就出国了。\n第二天,帕特里克又去了那所房子。\n当帕特里克问同样的问题时,同一名警察正慢慢走过入口。\n虽然这次有点可疑,但警察还是给了他同样的答案。\n第二天,帕特里克再次回到家中,问了完全相同的问题。\n这一次,警察发了脾气。\n他喊道:“我昨天和前天都告诉过你了。\n莱恩在选举中落败。\n他已经从政治生活中退休,去国外生活了!“\n\n“我知道,”帕特里克回答,“但我很想听你这么说!”","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"Z9oEcS","title":"On strike","titleTranslate":"罢工","text":"Busmen have decided to go on strike next week. The strike is due to begin on Tuesday. No one knows how long it will last. The busmen have stated that the strike will continue until general agreement is reached about pay and working conditions. Most people believe that the strike will last for at least a week. Many owners of private cars are going to offer 'free rides' to people on their way to work. This will relieve pressure on the trains to some extent. Meanwhile, a number of university students have volunteered to drive buses while the strike lasts. All the students are expert drivers, but before they drive any of the buses, they will have to pass a special test. The students are going to take the test in two days' time. Even so, people are going to find it difficult to get to work. But so far, the public has expressed its gratitude to the students in letters to the Press. Only one or two people have objected that the students will drive too fast!","textCustomTranslate":"公共汽车司机决定下星期罢工。\n罢工定于星期二开始,谁也不知道会持续多久。\n司机们声称此次罢工将一直持续到就工资和工作条件问题达成全面协议的时候为止。\n多数人认为此次罢工至少会持续一个星期。\n很多私人汽车的车主正准备为乘车上班的人们提供“免费乘车”的服务,这将在某种程度上减轻对火车的压力。\n与此同时,有一部分大学生自愿在罢工期间驾驶公共汽车。\n所有的学生都是开车的能手,但在驾驶公共汽车之前,他们必须通过一项专门测验。\n学生们准备在两天后就接受测验。\n即使这样,人们仍会感到上班有困难。\n但到目前为止,公众已经向新闻界写信表达他们对学生们的感激之情了。\n只有一两个人提出反对意见,说学生们会把车开得太快!","textNetworkTranslate":"巴斯曼决定下周举行罢工。\n罢工定于星期二开始。\n没有人知道它会持续多久。\n巴士司机表示,罢工将持续到就工资和工作条件达成普遍协议为止。\n大多数人认为罢工至少会持续一周。\n许多私家车车主将为上班路上的人们提供“免费乘车”服务。\n这将在一定程度上缓解列车的压力。\n与此同时,一些大学生自愿在罢工期间驾驶公共汽车。\n所有的学生都是专业的司机,但在驾驶任何一辆公交车之前,他们都必须通过一项特殊的考试。\n学生们将在两天后参加考试。\n即便如此,人们还是会发现上班很困难。\n但到目前为止,公众已经在给新闻界的信中表达了对学生们的感谢。\n只有一两个人反对学生们开得太快!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"4Jzr35","title":"Never too old to learn","titleTranslate":"活到老学到老","text":"I have just received a letter from my old school, informing me that my former headmaster, Mr. Stuart Page, will be retiring next week. Pupils of the school, old and new, will be sending him a present to mark the occasion. All those who have contributed towards the gift will sign their names in a large album which will be sent to the headmaster's home. We shall all remember Mr. Page for his patience and understanding and for the kindly encouragement he gave us when we went so unwillingly to school. A great many former pupils will be attending a farewell dinner in his honour next Thursday. It is a curious coincidence that the day before his retirement, Mr. Page will have been teaching for a total of forty years. After he has retired, he will devote himself to gardening. For him, this will be an entirely new hobby. But this does not matter, for, as he has often remarked, one is never too old to learn.","textCustomTranslate":"我刚刚收到母校的一封信,通知我说以前的校长斯图亚特.佩奇先生下星期就退休了。\n为了纪念这个日子,学校的学生——无论老同学还是新同学——将送他一件礼物。\n所有凑钱买此礼品的人都将自己的名字签在一本大签名簿上,签名簿将被送到校长的家里。\n我们不会忘记佩奇先生对我们既有耐心又充满理解,也不会忘记在我们不愿去上学时他给予我们的亲切鼓励。\n很多老同学都准备参加下星期四为他举行的告别宴会。\n佩奇先生退休的前一天正好是他执教满40年的日子,这真是奇妙的巧合。\n他退休后,将致力于园艺。\n对于他来说,这将是一种全新的爱好。\n但这没有关系,因为正如他常说的那样,人要活到老学到老。","textNetworkTranslate":"我刚刚收到母校的一封信,通知我我的前校长斯图尔特·佩奇先生将于下周退休。\n这所学校的学生,无论是老的还是新的,都将送他一份礼物来纪念这一时刻。\n所有为礼物捐款的人都将在一本大相册上签名,相册将被送到校长家中。\n我们都将记住佩奇先生的耐心和理解,以及当我们如此不情愿地上学时,他给予我们的善意鼓励。\n许多以前的学生将于下周四参加为纪念他而举行的告别晚宴。\n一个奇怪的巧合是,在佩奇退休的前一天,他将教书整整四十年。\n他退休后将致力于园艺工作。\n对他来说,这将是一个全新的爱好。\n但这并不重要,因为正如他经常说的那样,人永远不会老到不能学。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"36XBxH","title":"Out of control","titleTranslate":"失控","text":"As the man tried to swing the speedboat round, the steering wheel came away in his hands. He waved desperately to his companion, who had been water skiing for the last fifteen minutes. Both men had hardly had time to realize what was happening when they were thrown violently into the sea. The speedboat had struck a buoy, but it continued to move very quickly across the water. Both men had just begun to swim towards the shore, when they noticed with dismay that the speedboat was moving in a circle. It now came straight towards them at tremendous speed. In less than a minute, it roared past them only a few feet away. After it had passed, they swam on as quickly as they could because they knew that the boat would soon return. They had just had enough time to swim out of danger when the boat again completed a circle. On this occasion, however, it had slowed down considerably. The petrol had nearly all been used up. Before long, the noise dropped completely and the boat began to drift gently across the water.","textCustomTranslate":"当那人试图让快艇转弯时,方向盘脱手了。\n他绝望地向他的伙伴挥手,他的伙伴在过去的15分钟里一直在滑水。\n他们两个还没来得及意识到究竟发生了什么事情,就被猛地抛入了海里。\n快艇撞上了一个浮标,但它仍在水面上快速行驶着。\n两个人刚开始向岸边游去,就突然惊愕地发现快艇正在转着圈行驶,它现在正以惊人的速度直冲他们驶来。\n不到1分钟的工夫,它从离他们只有几英尺远的地方呼啸着驶了过去。\n快艇过去之后,他们以最快的速度向前游去,因为他们知道快艇马上就要转回来。\n他们刚刚来得及游出危险区,快艇就又转完了一圈。\n然而这一次它的速度慢多了。\n汽油几乎已经用光。\n没过多久,噪音便彻底消失,快艇开始在水面上慢悠悠地漂流。","textNetworkTranslate":"当这名男子试图使快艇回转时,方向盘在他手中松开了。\n他拼命地向同伴挥手,同伴已经滑水十五分钟了。\n两人还没来得及意识到发生了什么,就被猛地抛入大海。\n快艇撞上了浮标,但它继续在水面上快速移动。\n两人刚开始向岸边游去,就沮丧地注意到快艇在转一圈。\n现在它正以惊人的速度向他们直冲过来。\n在不到一分钟的时间里,它呼啸而过,离他们只有几英尺远。\n船过去后,他们以最快的速度继续游,因为他们知道船很快就会回来。\n他们刚刚有足够的时间游出危险,船又绕了一圈。\n然而,在这一次,它已经大大放慢了速度。\n汽油几乎都用完了。\n不久,噪音完全消失了,船开始轻轻地在水面上漂移。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"TiUjXW","title":"A perfect alibi","titleTranslate":"极好的不在犯罪现场的证据","text":"'At the time the murder was committed, I was travelling on the 8 o'clock train to London,' said the man.\n'Do you always catch such an early train?' asked the inspector.\n'Of course I do,' answered the man. 'I must be at work at 10 o'clock. My employer will confirm that I was there on time.'\n'Would a later train get you to work on time?' asked the inspector.\n'I suppose it would, but I never catch a later train.'\n'At what time did you arrive at the station?'\n'At ten to eight. I bought a paper and waited for the train.'\n'And you didn't notice anything unusual?'\n'Of course not.'\n'I suggest,' said the inspector, 'that you are not telling the truth. I suggest that you did not catch the 8 o'clock train, but that you caught the 8.25 which would still get you to work on time. You see, on the morning of the murder, the 8 o'clock train did not run at all. It broke down at Ferngreen station and was taken off the line.'","textCustomTranslate":"“在凶杀发生的时候,我正坐在8点钟开往伦敦的火车上。”\n那人说。\n\n“您总是赶这样早的火车?”\n探长问。\n\n“当然是的,”那人回答。\n“我必须在10点钟上班,我的雇主会证明我是按时到了那儿的。”\n\n“晚一点儿的车也能送您按时上班吗?”\n\n“我认为可以,但我从来不乘晚一点儿的车。”\n\n“您几点钟到的火车站?”\n\n“7点50分。\n我买了张报纸,等着车来。”\n\n“您没有注意到有什么异常情况发生吗?”\n\n“当然没有。”\n\n“我提醒您,”探长说,“您讲的不是实话。\n您乘的不是8点钟的火车,而是8点25分的,这次车同样能使您按时上班。\n您看,在凶杀发生的那天早晨,8点钟的那次车根本没有发。\n它在芬格林车站出了故障而被取消了。”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"um0V62","title":"Trapped in a mine","titleTranslate":"困在矿井里","text":"Six men have been trapped in a mine for seventeen hours. If they are not brought to the surface soon they may lose their lives. However, rescue operations are proving difficult. If explosives are used, vibrations will cause the roof of the mine to collapse. Rescue workers are therefore drilling a hole on the north side of the mine. They intend to bring the men up in a special capsule. If there had not been a hard layer of rock beneath the soil, they would have completed the job in a few hours. As it is, they have been drilling for sixteen hours and they still have a long way to go. Meanwhile, a microphone, which was lowered into the mine two hours ago, has enabled the men to keep in touch with their closest relatives. Though they are running out of food and drink, the men are cheerful and confident that they will get out soon. They have been told that rescue operations are progressing smoothly. If they knew how difficult it was to drill through the hard rock, they would lose heart.","textCustomTranslate":"6个人被困在矿井里已有17个小时了。\n如果不把他们尽快救到地面上来,他们就有可能丧生。\n然而,事实证明营救工作非常困难。\n如果用炸药爆破,震动会引起矿顶塌落。\n因此,营救人员在矿井的北侧钻了一个洞。\n他们准备用一种特制的容器把这6个人救上来。\n如果不是因为土壤下面有一层坚硬的岩石,他们的营救工作仅用几个小时就可以完成了。\n实际情况是,他们已连续钻了16个小时了,但离钻透还早着呢。\n与此同时,两个小时以前放下井去的一只麦克风使井下的人可以与其亲属保持联系。\n虽然他们的食物和饮料都快消耗尽了,但这些人的心情很好,坚信他们很快就会出去。\n他们一直被告知营救工作进行得非常顺利。\n如果他们知道了钻透那坚硬的岩石有多么困难,他们会丧失信心的。","textNetworkTranslate":"六个人被困在矿井里长达十七个小时。\n如果他们不尽快浮出水面,他们可能会失去生命。\n然而,救援行动证明是困难的。\n如果使用炸药,震动会导致矿井顶部坍塌。\n因此,救援人员正在矿井北侧钻孔。\n他们打算用一个特殊的太空舱把这些人带上来。\n如果土壤下面没有一层坚硬的岩石,他们会在几个小时内完成这项工作。\n事实上,他们已经钻探了16个小时,还有很长的路要走。\n与此同时,两个小时前放进矿井的麦克风使这些人能够与最亲密的亲属保持联系。\n尽管他们的食物和饮料都快用完了,但这些人都很高兴,相信他们很快就会出来。\n他们被告知救援行动进展顺利。\n如果他们知道钻穿坚硬的岩石有多难,他们就会失去信心。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"ot69mL","title":"A slip of the tongue","titleTranslate":"口误","text":"People will do anything to see a free show -- even if it is a bad one. When the news got round that a comedy show would be presented at our local cinema by the P. and U. Bird Seed Company, we all rushed to see it. We had to queue for hours to get in and there must have been several hundred people present just before the show began. Unfortunately, the show was one of the dullest we have ever seen. Those who failed to get in need not have felt disappointed, as many of the artistes who should have appeared did not come. The only funny things we heard that evening came from the advertiser at the beginning of the programme. He was obviously very nervous and for some minutes stood awkwardly before the microphone. As soon as he opened his mouth, everyone burst out laughing. We all know what the poor man should have said, but what he actually said was: 'This is the Poo and Ee Seed Bird Company. Good ladies, evening and gentlemen!\"","textCustomTranslate":"人们总要想尽办法看不花钱的演出——哪怕是拙劣的演出。\n当“皮尤”鸟食公司将在我们当地影院演出喜剧节目的消息传开后,我们都赶紧跑去观看。\n我们不得不排了好几个小时才进得场去。\n在演出开始前场内肯定已有好几百人了。\n不幸的是,这次演出是我们看过的最乏味的演出了。\n那些没能进到场内的人没有必要感到失望,因为很多应该出场的专业演员都没有来。\n那天晚上唯一有趣的事情是节目开始时那个报幕员的开场白。\n他显然非常紧张,局促不安地在麦克风前站了好几分钟。\n但他刚一开口说话,人们便哄堂大笑起来。\n我们都明白那个可怜的人应该说些什么,而他实际说的却是:“这是‘浦伊’鸟食公司,好女士们,晚上和先生们!”","textNetworkTranslate":"人们愿意做任何事情去看一场免费的演出——即使这是一场糟糕的演出。\n当消息传来,我们当地的电影院将上演一场由美国鸟类种子公司制作的喜剧片时,我们都争先恐后地去看。\n我们不得不排几个小时的队才能进去,演出开始前肯定有几百人在场。\n不幸的是,这个节目是我们所见过的最无聊的节目之一。\n那些未能进入的人不必感到失望,因为许多本应出现的艺人都没有来。\n那天晚上,我们听到的唯一有趣的事情来自节目开始时的广告商。\n他显然非常紧张,尴尬地站在麦克风前好几分钟。\n他一开口,大家都大笑起来。\n我们都知道这个可怜的人应该说什么,但他实际上说的是:“这是Poo and Ee Seed Bird Company。”。\n女士们,晚上好,先生们!“","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"j1u5OS","title":"What's for supper?","titleTranslate":"晚餐吃什么?","text":"Fish and chips has always been a favourite dish in Britain, but as the oceans have been overfished, fish has become more and more expensive. So it comes as a surprise to learn that giant fish are terrifying the divers on North Sea oil rigs. Oil rigs have to be repaired frequently and divers, who often have to work in darkness a hundred feet under water, have been frightened out of their wits by giant fish bumping into them as they work. Now they have had special cages made to protect them from these monsters. The fish are not sharks or killer whales, but favourite eating varieties like cod and skate which grow to unnatural sizes, sometimes as much as twelve feet in length. Three factors have caused these fish to grow so large: the warm water round the hot oil pipes under the sea; the plentiful supply of food thrown overboard by the crews on the rigs; the total absence of fishing boats around the oil rigs. As a result, the fish just eat and eat and grow and grow in the lovely warm water. Who eats who?","textCustomTranslate":"油煎鱼加炸土豆片一直是英国人喜爱的一道菜,但是随着海洋里的滥捕滥捞,鱼已经变得越来越昂贵。\n因此,听说北海石油钻井平台上的潜水员受到巨型鱼类的恐吓,确实很让人吃惊。\n钻井平台需要经常修理,潜水员常常要在水面100英尺以下摸黑工作,他们曾在工作时被撞到他们身上的大鱼吓得惊惶失措。\n现在他们有了特制的笼子,用来保护他们免受大鱼的侵袭。\n这些鱼并不是鲨鱼或逆戟鲸,而是深受人们喜爱的食用鱼品种,如鳕鱼和鳐鱼,只不过它们长得出奇地大,有时长达12英尺。\n这些鱼能长得这么大是由3个因素造成的:海底热的输油管道附近的温暖的海水;钻井平台工作人员抛到海里充足的食物;钻井平台周围根本没有捕鱼船只。\n结果是,这些鱼就在可爱的温暖的水流中吃呀吃,长呀长。\n究竟谁吃谁呢?","textNetworkTranslate":"炸鱼薯条一直是英国人最喜欢的菜,但随着海洋被过度捕捞,鱼类变得越来越贵。\n因此,当我们得知北海石油钻井平台上的巨型鱼类正在恐吓潜水员时,我们感到很惊讶。\n石油钻井平台必须经常维修,潜水员经常不得不在水下一百英尺的黑暗中工作,他们在工作时被巨大的鱼撞到吓得魂不附体。\n现在他们有了特殊的笼子来保护他们免受这些怪物的伤害。\n这些鱼不是鲨鱼或虎鲸,而是最受欢迎的食用品种,如鳕鱼和鳐鱼,它们长得不自然,有时长达12英尺长。\n有三个因素导致这些鱼长得这么大:海底热油管道周围的温水;钻井平台上的船员扔到船外的大量食物;石油钻井平台周围完全没有渔船。\n因此,这些鱼只是在可爱的温水中吃、吃、长、长。\n谁吃谁?","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"yS7uPB","title":"Three men in a basket","titleTranslate":"三人同篮","text":"A pilot noticed a balloon which seemed to be making for a Royal Air Force Station nearby. He informed the station at once, but no one there was able to explain the mystery. The officer in the control tower was very angry when he heard the news, because balloons can be a great danger to aircraft. He said that someone might be spying on the station and the pilot was ordered to keep track of the strange object. The pilot managed to circle the balloon for some time. He could make out three men in a basket under it and one of them was holding a pair of binoculars. When the balloon was over the station, the pilot saw one of the men taking photographs. Soon afterwards, the balloon began to descend and it landed near an airfield. The police were called in, but they could not arrest anyone, for the basket contained two Members of Parliament and the Commanding Officer of the station! As the Commanding Officer explained later, one half of the station did not know what the other half was doing!","textCustomTranslate":"一个飞行员发现了一只气球,它像是正飞往附近的一个皇家空军基地。\n他马上把情况报告了该基地,但那里的人没有一个能解释这到底是怎么回事。\n控制塔上的官员得知这一消息后,非常气愤,因为气球有可能给飞机造成极大的危险。\n他说可能有人正对基地进行侦察,因此命令那个飞行员跟踪那个奇怪的飞行物。\n飞行员设法绕着气球飞了一阵。\n他看清了气球下面有3个人呆在一只筐里,其中一个举着望远镜。\n当气球飞临基地上空时,飞行员看见有一个人在拍照。\n不久,气球开始降落,在一个停机坪附近着了陆。\n警察被召来了,但他们却不能逮捕任何人,因为筐里是两名国会议员和一名基地的指挥官!\n正如指挥官后来解释的那样,基地的这半边不知道那半边正在干什么!","textNetworkTranslate":"一名飞行员注意到一个气球似乎正在向附近的皇家空军基地飞去。\n他立即通知了车站,但那里没有人能解释这个谜。\n当控制塔的官员听到这个消息时非常生气,因为气球对飞机来说是一个巨大的危险。\n他说,可能有人在监视空间站,飞行员被命令跟踪这个奇怪的物体。\n飞行员设法使气球绕了一段时间。\n他能认出下面篮子里有三个人,其中一个人拿着双筒望远镜。\n当气球在空间站上空时,飞行员看到其中一名男子在拍照。\n不久之后,气球开始下降,降落在一个机场附近。\n警察被叫来了,但他们无法逮捕任何人,因为篮子里有两名国会议员和警察局的指挥官!\n正如指挥官后来解释的那样,车站的一半人不知道另一半在做什么!","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"k-Kesj","title":"Asking for trouble","titleTranslate":"自找麻烦","text":"It must have been about two in the morning when I returned home. I tried to wake up my wife by ringing the doorbell, but she was fast asleep, so I got a ladder from the shed in the garden, put it against the wall, and began climbing towards the bedroom window. I was almost there when a sarcastic voice below said, 'I don't think the windows need cleaning at this time of the night.' I looked down and nearly fell off the ladder when I saw a policeman. I immediately regretted answering in the way I did, but I said, 'I enjoy cleaning windows at night.'\n'So do I,' answered the policeman in the same tone. 'Excuse my interrupting you. I hate to interrupt a man when he's busy working, but would you mind coming with me to the station?'\n'Well, I'd prefer to stay here,' I said. 'You see. I've forgotten my key.'\n'Your what?' he called.\n'My key,' I shouted.\nFortunately, the shouting woke up my wife who opened the window just as the policeman had started to climb towards me.","textCustomTranslate":"我回到家时,肯定已是凌晨两点左右了。\n我按响了门铃,试图唤醒我的妻子,但她睡得很熟。\n于是,我从花园的小棚里搬来了一个梯子,把它靠在墙边,开始向卧室的窗口爬去。\n快要爬到窗口时,下面一个人用讽刺的口吻说:“我看不必在夜里这个时候擦窗子吧。”\n我向下面看去。\n当我看清是一个警察时,差一点儿从梯子上掉下去。\n我回答了他的话,但马上又后悔不该那样说,我是这样说的:“我喜欢在夜里擦窗子。”\n\n“我也是的,”警察用同样的声调回答,“请原谅我打断了您。\n当一个人在忙着干活时,我是不愿意去打断他的,但请您跟我到警察局去一趟好吗?”\n\n“可我更愿意呆在这儿,”我说,“您瞧,我忘带钥匙了。”\n\n“什么?”\n他大声问。\n\n“钥匙!”\n我喊道。\n\n幸运得很,这喊声惊醒了我的妻子。\n就在警察开始向我爬上来时,她打开了窗子。","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"vH83hK","title":"A noble gift","titleTranslate":"崇高的礼物","text":"One of the most famous monuments in the world, the Statue of Liberty, was presented to the United States of America in the nineteenth century by the people of France. The great statue, which was designed by the sculptor Auguste Bartholdi, took ten years to complete. The actual figure was made of copper supported by a metal framework which had been especially constructed by Eiffel. Before it could be transported to the United States, a site had to be found for it and a pedestal had to be built. The site chosen was an island at the entrance of New York Harbour. By 1884, a statue which was 151 feet tall had been erected in Paris. The following year, it was taken to pieces and sent to America. By the end of October 1886, the statue had been put together again and it was officially presented to the American people by Bartholdi. Ever since then, the great monument has been a symbol of liberty for the millions of people who have passed through New York Harbour to make their homes in America.","textCustomTranslate":"世界上最著名的纪念碑之一的自由女神雕像是在19世纪时由法国人民赠送给美国的。\n这座由雕像家奥古斯特.巴索尔地设计的巨大雕像是用10年时间雕像刻成的。\n这座雕像的主体是用铜制成的,由艾菲尔特制的金属框架支撑着。\n在雕像被运往美国之前,必须为它选好一块场地,同时必须建造一个基座。\n场地选在了纽约港入口处的一个鸟上。\n到1884年,一座高度达151英尺的雕像在巴黎竖立起来了。\n第二年,它被拆成若干小块,运到美国。\n到1886年10月底,这座雕像被重新组装起来,由巴索尔地正式赠送给美国人民。\n从那时起,这座伟大的纪念碑对通过纽约港进入美国定居的千百万人来说就一直是自由的象征。","textNetworkTranslate":"19世纪,法国人民向美利坚合众国赠送了世界上最著名的纪念碑之一自由女神像。\n这座伟大的雕像由雕塑家奥古斯特·巴尔托尔迪设计,历时十年才完成。\n实际的雕像是由铜制成的,由艾菲尔特别建造的金属框架支撑。\n在它被运往美国之前,必须为它找到一个场地,并建造一个基座。\n选定的地点是纽约港入口处的一个岛屿。\n到1884年,一座151英尺高的雕像已经在巴黎竖立起来。\n第二年,它被拆成碎片,送往美国。\n到1886年10月底,这座雕像被重新组装起来,并由巴托尔迪正式赠送给美国人民。\n从那时起,这座伟大的纪念碑一直是数百万通过纽约港在美国安家的人自由的象征。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"49C6KE","title":"Future champions","titleTranslate":"未来的冠军","text":"Experiments have proved that children can be instructed in swimming at a very early age. At a special swimming pool in Los Angeles, children become expert at holding their breath under water even before they can walk. Babies of two months old do not appear to be reluctant to enter the water. It is not long before they are so accustomed to swimming that they can pick up weights from the floor of the pool. A game that is very popular with these young swimmers is the underwater tricycle race. Tricycles are lined up on the floor of the pool seven feet under water. The children compete against each other to reach the other end of the pool. Many pedal their tricycles, but most of them prefer to push or drag them. Some children can cover the whole length of the pool without coming up for breath even once. Whether they will ever become future Olympic champions, only time will tell. Meanwhile, they should encourage those among us who cannot swim five yards before they are gasping for air.","textCustomTranslate":"实验证明,儿童在很小的时候就可以开始学习游泳。\n在洛杉矶的一个特设的游泳池里,孩子们甚至在还没有学会走路时就已经能熟练地在水下屏住呼吸了。\n两个月的婴儿并未显得不愿意入水。\n他们很快便适应了游泳,以致能捡起池底的物品。\n这些幼小的游泳运动员非常喜爱的一种游戏是水下三轮车比赛。\n三轮车并排放在7英尺深的游泳池底上。\n孩子们比赛看谁先到达游泳池的另一端。\n很多孩子用脚蹬车,但多数孩子更愿意推或是拉着三轮车。\n有些孩子能够跑完游泳池的全长而不用露出水面换气。\n他们将来是否能成为奥林匹克的冠军,这只能由时间来作出回答。\n与此同时,他们对我们中的那些游不了5码就已喘不过气来的人应该是种鼓舞。","textNetworkTranslate":"实验证明,孩子们可以在很小的时候就学会游泳。\n在洛杉矶的一个特殊游泳池里,孩子们甚至在会走路之前就已经成为了在水下屏住呼吸的专家。\n两个月大的婴儿似乎并不不愿意下水。\n没过多久,他们就习惯了游泳,以至于可以从游泳池的地板上举重。\n水下三轮车比赛是这些年轻游泳运动员非常喜欢的一项运动。\n三轮车在水下七英尺的水池地板上一字排开。\n孩子们争先恐后地到达游泳池的另一端。\n许多人蹬着三轮车,但他们中的大多数人更喜欢推或拖三轮车。\n有些孩子甚至一次都不会上来呼吸,就可以游完整个游泳池。\n他们是否会成为未来的奥运冠军,只有时间才能证明。\n同时,他们应该鼓励我们当中那些在大口呼吸空气之前游不到五码的人。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"},{"id":"7rTntx","title":"A fantasy","titleTranslate":"纯属虚构","text":"When the Ambassador or Escalopia returned home for lunch, his wife got a shock. He looked pale and his clothes were in a frightful state.\n'What has happened?' she asked. 'How did your clothes get into such a mess?'\n'A fire extinguisher, my dear,' answered the Ambassador drily. 'University students set the Embassy on fire this morning.'\n'Good heavens!' exclaimed his wife. 'And where were you at the time?'\n'I was in my office as usual,' answered the Ambassador. 'The fire broke out in the basement. I went down immediately, of course, and that fool, Horst, aimed a fire extinguisher at me. He thought I was on fire. I must definitely get that fellow posted.'\nThe Ambassador's wife went on asking questions, when she suddenly noticed a big hole in her husband's hat.\n'And how can you explain that?' she asked.\n'Oh, that,' said the Ambassador. 'Someone fired a shot through my office window. Accurate, don't you think? Fortunately, I wasn't wearing it at the time. If I had been, I would not have been able to get home for lunch.'","textCustomTranslate":"当艾斯卡罗比亚国的大使回到家吃午饭时,把他的夫人吓了一跳。\n他面色苍白,衣服也搞得不成样子。\n\n“发生了什么事?”\n她问,“你的衣服怎么搞得一塌糊涂?”\n\n“灭火器弄的,亲爱的,”大使冷冷地回答,“今天上午大学生们放火点着了大使馆。”\n\n“天啊!”\n他的夫人惊叫,“那你当时在什么地方?”\n\n“我和往常一样,在办公室里,”大使回答说。\n“地下室突然着火,我当然马上下去了。\n但那个傻瓜霍斯特把灭火器对准了我。\n他认为是我着火了。\n我一定要把那个家伙打发走。”\n\n大使夫人继续提出问题,她突然又发现丈夫的帽子上有个洞。\n\n“那么你对那又作何解释呢?”\n她问。\n\n“那个嘛,”大使说,“有人向我办公室窗户开了一枪。\n真够准的,是不是?\n幸亏我当时没戴帽子。\n如果真戴着它,我现在就不能回家来吃午饭了。”","textNetworkTranslate":"","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"custom"},{"id":"wJCulo","title":"The dead return","titleTranslate":"亡灵返乡","text":"A Festival for the Dead is held once a year in Japan. This festival is a cheerful occasion, for on this day, the dead are said to return to their homes and they are welcomed by the living. As they are expected to be hungry after their long journey, food is laid out for them. Specially-made lanterns are hung outside each house to help the dead to find their way. All night long, people dance and sing. In the early morning, the food that had been laid out for the dead is thrown into a river or into the sea as it is considered unlucky for anyone living to eat it. In towns that are near the sea, the tiny lanterns which had been hung in the streets the night before, are placed into the water when the festival is over. Thousands of lanterns slowly drift out to sea guiding the dead on their return journey to the other world. This is a moving spectacle, for crowds of people stand on the shore watching the lanterns drifting away until they can be seen no more.","textCustomTranslate":"日本每年过一次“亡灵节”。\n这个节日是个欢乐的日子,因为在这一天,据说死去的人要回到他们的家里来,活着的人则对他们表示欢迎。\n因为预料到他们在经过长途旅行之后会感到饥饿,所以为他们摆放好了食品。\n特制的灯笼挂在各家的门外,为的是帮助亡灵看清道路。\n整个夜晚人们载歌载舞。\n一大早,人们便把为死者摆放的食品扔进河中或海里,因为人们认为活着的人吃了这些东西是不吉利的。\n在靠海的城镇中,头天夜里挂在大街小巷的小灯笼在节后就放在了水里。\n成千上万只灯笼慢慢漂向大海,指引着亡灵返回另一个世界。\n这是一个感人的场面,人们成群地伫立在海岸上,注视着灯笼远去,直到再也看不见为止。","textNetworkTranslate":"日本每年举行一次亡灵节。\n这个节日是一个愉快的时刻,因为在这一天,据说死者会回到他们的家中,他们会受到生者的欢迎。\n由于人们预计他们在长途旅行后会感到饥饿,因此为他们安排了食物。\n每个房子外面都挂着特制的灯笼,帮助死者找到自己的路。\n人们彻夜载歌载舞。\n在清晨,为死者准备的食物被扔进河里或海里,因为活着的人吃这些食物被认为是不吉利的。\n在海边的城镇,前一天晚上挂在街上的小灯笼在节日结束后被放进水里。\n成千上万的灯笼慢慢漂向大海,引导死者踏上返回另一个世界的旅程。\n这是一个感人的场面,因为成群的人站在岸边看着灯笼飘走,直到看不到它们了。","textCustomTranslateIsFormat":true,"newWords":[],"textAllWords":[],"useTranslateType":"network"}],"statistics":[],"isCustom":true,"length":91,"resourceId":"","url":"NCE_2.json","category":"文章学习","tags":["新概念英语"],"translateLanguage":"common","type":"article","language":"en"},{"id":"1ATjvG","name":"新概念英语2-课文","description":"新概念英语2-课文","sort":0,"originWords":[],"words":[],"chapterWordNumber":30,"chapterWords":[],"residueWords":[],"chapterIndex":0,"wordIndex":0,"articles":[],"statistics":[],"isCustom":false,"length":96,"resourceId":"","url":"NCE_2.json","category":"文章学习","tags":["新概念英语"],"translateLanguage":"common","type":"article","language":"en"}],"collectDictIds":[],"current":{"index":3,"practiceType":"word"},"simpleWords":["a","an","i","my","you","your","me","it","what","who","where","how","when","which","be","am","is","do","are","did","were","was","can","could","will","would","the","that","this","to","of","for","and","at","not","no","yes"],"load":true},"version":3} +let data = {} +let origin = {} -origin = "{\"val\":{\"myDictList\":[{\"id\":\"collect\",\"name\":\"收藏\",\"description\":\"\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[\"自带\"],\"translateLanguage\":\"common\",\"type\":\"collect\",\"language\":\"en\"},{\"id\":\"skip\",\"name\":\"简单词\",\"description\":\"\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[],\"translateLanguage\":\"common\",\"type\":\"simple\",\"language\":\"en\"},{\"id\":\"wrong\",\"name\":\"错词本\",\"description\":\"\",\"sort\":0,\"originWords\":[{\"name\":\"cancel\",\"trans\":[\"vt.取消,注销,抵消,偿还,〈数〉约去\",\"vi.抵消,中和\",\"n.撤销,注销,〈数〉(相)约\"],\"usphone\":\"ˈkænsəl\",\"ukphone\":\"ˈkænsl\",\"id\":\"Lqj83e\"},{\"name\":\"explosive\",\"trans\":[\"adj.爆炸的,易爆炸的,突增的,暴躁的\",\"n.爆炸物,炸药,语言学 爆破音\"],\"usphone\":\"ɪkˈsploʊsɪv\",\"ukphone\":\"ɪkˈspləʊsɪv\",\"id\":\"VrsZfS\"},{\"name\":\"numerous\",\"trans\":[\"adj.很多的,许多的,数量庞大的数量庞大的,数不清的\"],\"usphone\":\"ˈnu:mərəs\",\"ukphone\":\"ˈnju:mərəs\",\"id\":\"Ct3se2\"},{\"name\":\"analyse\",\"trans\":[\"vt.分析,分解,细察na.“analyze”的变体\"],\"usphone\":\"ˈænəˌlaɪz\",\"ukphone\":\"ˈænəlaɪz\",\"id\":\"t6XApd\"},{\"name\":\"salary\",\"trans\":[\"n.薪水,薪金,薪俸\",\"vt.给…加薪,给…薪水,发…薪水,付…薪水\"],\"usphone\":\"ˈsælri\",\"ukphone\":\"ˈsæləri\",\"id\":\"_GVBbr\",\"checked\":false}],\"words\":[{\"name\":\"cancel\",\"trans\":[\"vt.取消,注销,抵消,偿还,〈数〉约去\",\"vi.抵消,中和\",\"n.撤销,注销,〈数〉(相)约\"],\"usphone\":\"ˈkænsəl\",\"ukphone\":\"ˈkænsl\",\"id\":\"Lqj83e\"},{\"name\":\"explosive\",\"trans\":[\"adj.爆炸的,易爆炸的,突增的,暴躁的\",\"n.爆炸物,炸药,语言学 爆破音\"],\"usphone\":\"ɪkˈsploʊsɪv\",\"ukphone\":\"ɪkˈspləʊsɪv\",\"id\":\"VrsZfS\"},{\"name\":\"numerous\",\"trans\":[\"adj.很多的,许多的,数量庞大的数量庞大的,数不清的\"],\"usphone\":\"ˈnu:mərəs\",\"ukphone\":\"ˈnju:mərəs\",\"id\":\"Ct3se2\"},{\"name\":\"analyse\",\"trans\":[\"vt.分析,分解,细察na.“analyze”的变体\"],\"usphone\":\"ˈænəˌlaɪz\",\"ukphone\":\"ˈænəlaɪz\",\"id\":\"t6XApd\"},{\"name\":\"salary\",\"trans\":[\"n.薪水,薪金,薪俸\",\"vt.给…加薪,给…薪水,发…薪水,付…薪水\"],\"usphone\":\"ˈsælri\",\"ukphone\":\"ˈsæləri\",\"id\":\"_GVBbr\",\"checked\":false}],\"chapterWordNumber\":30,\"chapterWords\":[[{\"name\":\"cancel\",\"trans\":[\"vt.取消,注销,抵消,偿还,〈数〉约去\",\"vi.抵消,中和\",\"n.撤销,注销,〈数〉(相)约\"],\"usphone\":\"ˈkænsəl\",\"ukphone\":\"ˈkænsl\",\"id\":\"Lqj83e\"},{\"name\":\"explosive\",\"trans\":[\"adj.爆炸的,易爆炸的,突增的,暴躁的\",\"n.爆炸物,炸药,语言学 爆破音\"],\"usphone\":\"ɪkˈsploʊsɪv\",\"ukphone\":\"ɪkˈspləʊsɪv\",\"id\":\"VrsZfS\"},{\"name\":\"numerous\",\"trans\":[\"adj.很多的,许多的,数量庞大的数量庞大的,数不清的\"],\"usphone\":\"ˈnu:mərəs\",\"ukphone\":\"ˈnju:mərəs\",\"id\":\"Ct3se2\"},{\"name\":\"analyse\",\"trans\":[\"vt.分析,分解,细察na.“analyze”的变体\"],\"usphone\":\"ˈænəˌlaɪz\",\"ukphone\":\"ˈænəlaɪz\",\"id\":\"t6XApd\"},{\"name\":\"salary\",\"trans\":[\"n.薪水,薪金,薪俸\",\"vt.给…加薪,给…薪水,发…薪水,付…薪水\"],\"usphone\":\"ˈsælri\",\"ukphone\":\"ˈsæləri\",\"id\":\"_GVBbr\",\"checked\":false}]],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":true,\"length\":0,\"resourceId\":\"\",\"url\":\"\",\"category\":\"自带字典\",\"tags\":[],\"translateLanguage\":\"common\",\"type\":\"wrong\",\"language\":\"en\"},{\"id\":\"cet4\",\"name\":\"CET-4\",\"description\":\"大学英语四级词库\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":false,\"length\":2607,\"resourceId\":\"\",\"url\":\"CET4_T.json\",\"category\":\"中国考试\",\"tags\":[\"大学英语\"],\"translateLanguage\":\"common\",\"type\":\"word\",\"language\":\"en\"},{\"id\":\"T3sh6m\",\"name\":\"新概念英语2-课文\",\"description\":\"新概念英语2-课文\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[{\"title\":\"Breakfast or lunch?\",\"titleTranslate\":\"早餐还是午餐?\",\"text\":\"It was Sunday. I never get up early on Sundays. I sometimes stay in bed until lunchtime. Last Sunday I got up very late. I looked out of the window. It was dark outside. 'What a day!' I thought. 'It's raining again.' Just then, the telephone rang. It was my aunt Lucy. 'I've just arrived by train,' she said. 'I'm coming to see you.'\\n 'But I'm still having breakfast,' I said.\\n 'What are you doing?' she asked.\\n 'I'm having breakfast,' I repeated.\\n 'Dear me,' she said. 'Do you always get up so late? It's one o'clock!'\",\"textCustomTranslate\":\"那是个星期天,\\n而在星期天我是从来不早起的,\\n有时我要一直躺到吃午饭的时候。\\n上个星期天,我起得很晚。\\n我望望窗外,外面一片昏暗。\\n“鬼天气!”\\n我想,“又下雨了。”\\n正在这时,电话铃响了。\\n是我姑母露西打来的。\\n“我刚下火车,”她说,\\n“我这就来看你。”\\n\\n“但我还在吃早饭,”我说。\\n\\n“你在干什么?”她问道。\\n\\n“我正在吃早饭,”我又说了一遍。\\n\\n“天啊,”她说,\\n“你总是起得这么晚吗?\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"useTranslateType\":\"custom\",\"newWords\":[],\"id\":\"wi6k0e\"},{\"title\":\"Please send me a card\",\"titleTranslate\":\"请给我寄一张明信片\",\"text\":\"Postcards always spoil my holidays. Last summer, I went to Italy. I visited museums and sat in public gardens. A friendly waiter taught me a few words of Italian. Then he lent me a book. I read a few lines, but I did not understand a word. Everyday I thought about postcards. My holidays passed quickly, but I did not send cards to my friends. On the last day I made a big decision. I got up early and bought thirty-seven cards. I spent the whole day in my room, but I did not write a single card!\",\"textCustomTranslate\":\"明信片总搅得我假日不得安宁。\\n去年夏天,我去了意大利。\\n我参观了博物馆,还去了公园。\\n一位好客的服务员教了我几句意大利语,\\n之后还借给我一本书。\\n我读了几行,但一个字也不懂。\\n我每天都想着明信片的事。\\n假期过得真快,可我还没有给我的朋友们寄过一张明信片。\\n到了最后一天,我作出了一项重大决定。\\n我早早起了床,买来了37张明信片。\\n我在房间里关了整整一天。\\n然而竟连一张明信片也没写成!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"useTranslateType\":\"custom\",\"newWords\":[],\"id\":\"CNGTqr\"},{\"title\":\"No wrong numbers\",\"titleTranslate\":\"无错号之虞\",\"text\":\"Mr.James Scott has a garage in Silbury and now he has just bought another garage in Pinhurst. Pinhurst is only five miles from Silbury, but Mr. Scott cannot get a telephone for his new garage, so he has just bought twelve pigeons. Yesterday, a pigeon carried the first message from Pinhurst to Silbury. The bird covered the distance in three minutes. Up to now, Mr.Scott has sent a great many requests for spare parts and other urgent messages from one garage to the other. In this way, he has begun his own private 'telephone' service.\",\"textCustomTranslate\":\"詹姆斯.斯科特先生在锡尔伯里有一个汽车修理部,现在他刚在平赫斯特买了另一个汽车修理部。\\n平赫特离锡尔伯里只有5英里,但詹姆斯.斯科特先生未能为他新的汽车修理部搞到一部电话机,所以他买了只鸽子。\\n昨天,一只鸽子把第一封信从平赫特带到锡尔伯里。\\n这只鸟只用了3分钟就飞完了全程。\\n到目前为止,斯科特先生从一个汽车修理部向另一个发送了大量索取备件的信件和其他紧急函件。\\n就这样,他开始自己的私人“电话”业务。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"useTranslateType\":\"custom\",\"newWords\":[],\"id\":\"fr8V6q\"},{\"title\":\"Percy Buttons\",\"titleTranslate\":\"珀西.巴顿斯\",\"text\":\"I have just moved to a house in Bridge Street. Yesterday a beggar knocked at my door. He asked me for a meal and a glass of beer. In return for this, the beggar stood on his head and sang songs. I gave him a meal. He ate the food and drank the beer. Then he put a piece of cheese in his pocket and went away. Later a neighbour told me about him. Everybody knows him. His name is Percy Buttons. He calls at every house in the street once a month and always asks for a meal and a glass of beer.\",\"textCustomTranslate\":\"我刚刚搬进了大桥街的一所房子。\\n昨天一个乞丐来敲我的门,\\n问我要一顿饭和一杯啤酒。\\n作为回报,那乞丐头顶地倒立起来,嘴里还唱着歌。\\n我给了他一顿饭。\\n他把食物吃完,又喝了酒。\\n然后把一块乳酪装进衣袋里走了。\\n后来,一位邻居告诉了我他的情况。\\n大家都认识他,\\n他叫珀西.巴顿斯。\\n他每月对这条街上的每户人家光顾一次,总是请求给他一顿饭和一杯啤酒。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"useTranslateType\":\"custom\",\"newWords\":[],\"id\":\"WhEquc\"},{\"id\":\"G-pCwp\",\"title\":\"Not for jazz\",\"titleTranslate\":\"不适于演奏爵士乐\",\"text\":\"We have an old musical instrument. It is called a clavichord. It was made in Germany in 1681. Our clavichord is kept in the living room. It has belonged to our family for a long time. The instrument was bought by my grandfather many years ago. Recently it was damaged by a visitor. She tried to play jazz on it! She struck the keys too hard and two of the strings were broken. My father was shocked. Now we are not allowed to touch it. It is being repaired by a friend of my fathers.\",\"textCustomTranslate\":\"\",\"textNetworkTranslate\":\"我们有一件旧乐器。\\n它被称为古钢琴。\\n它于1681年在德国制造。\\n我们的古钢琴放在客厅里。\\n它属于我们家已经很久了。\\n这乐器是我爷爷多年前买的。\\n最近它被一位游客损坏了。\\n她试着在上面演奏爵士乐!\\n她用力敲击琴键,导致两根琴弦断裂。\\n我父亲很震惊。\\n现在我们不能碰它。\\n我父亲的一个朋友正在修理它。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"GBqsK3\",\"title\":\"One good turn deserves another\",\"titleTranslate\":\"礼尚往来\",\"text\":\"I was having dinner at a restaurant when Tony Steele came in. Tony worked in a lawyer's office years ago, but he is now working at a bank. He gets a good salary, but he always borrows money from his friends and never pays it back. Tony saw me and came and sat at the same table. He has never borrowed money from me. While he was eating, I asked him to lend me twenty pounds. To my surprise, he gave me the money immediately. I have never borrowed any money from you, Tony said, so now you can pay for my dinner!\",\"textCustomTranslate\":\"\",\"textNetworkTranslate\":\"托尼·斯蒂尔进来的时候,我正在一家餐馆吃晚饭。\\n托尼几年前在律师事务所工作,但现在在一家银行工作。\\n他薪水不错,但他总是向朋友借钱,从不还。\\n托尼看到了我,走了过来,坐在同一张桌子旁。\\n他从来没有向我借钱。\\n他吃饭的时候,我请他借我二十英镑。\\n令我惊讶的是,他立即把钱给了我。\\n“我从来没有向你借过钱,”托尼说,“所以现在你可以支付我的晚餐了!”!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"J2b4ER\",\"title\":\"Goodbye and good luck\",\"titleTranslate\":\"再见, 一路顺风\",\"text\":\"Our neighbour, Captain Charles Alison, will sail from Portsmouth tomorrow. Well meet him at the harbour early in the morning. He will be in his small boat, Topsail. Topsail is a famous little boat. It has sailed across the Atlantic many times. Captain Alison will set out at eight oclock, so well have plenty of time. Well see his boat and then well say goodbye to him. He will be away for two months. We are very proud of him. He will take part in an important race across the Atlantic.\",\"textCustomTranslate\":\"\",\"textNetworkTranslate\":\"我们的邻居查尔斯·阿利森船长明天将从朴茨茅斯启航。\\n我们一大早在港口接他。\\n他将乘坐他的小船托普赛尔号。\\n托普赛尔号是一艘著名的小船。\\n它已经多次横渡大西洋。\\n艾莉森船长八点钟出发,所以我们有充足的时间。\\n我们看看他的船,然后和他说再见。\\n他将离开两个月。\\n我们为他感到骄傲。\\n他将参加一场横渡大西洋的重要比赛。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"Q-GlAu\",\"title\":\"The Greenwood Boys\",\"titleTranslate\":\"绿林少年\",\"text\":\"The Greenwood Boys are a group of pop singers. At present, they are visiting all parts of the country. They will be arriving here tomorrow. They will be coming by train and most of the young people in the town will be meeting them at the station. Tomorrow evening they will be singing at the Workers Club. The Greenwood Boys will be staying for five days. During this time, they will give five performances. As usual, the police will have a difficult time. They will be trying to keep order. It is always the same on these occasions.\",\"textCustomTranslate\":\"\",\"textNetworkTranslate\":\"格林伍德男孩是一群流行歌手。\\n目前,他们正在访问全国各地。\\n他们明天将到达这里。\\n他们将乘火车来,镇上的大多数年轻人将在车站迎接他们。\\n明晚他们将在工人俱乐部唱歌。\\n格林伍德男孩将在这里呆五天。\\n在此期间,他们将进行五场演出。\\n和往常一样,警察会遇到困难。\\n他们将努力维持秩序。\\n在这些场合总是一样。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"Bu5BBT\",\"title\":\"Do you speak English?\",\"titleTranslate\":\"你会讲英语吗?\",\"text\":\"I had an amusing experience last year. After I had left a small village in the south of France, I drove on to the next town. On the way, a young man waved to me. I stopped and he asked me for a lift. As soon as he had got into the car, I said good morning to him in French and he replied in the same language. Apart from a few words, I do not know any French at all. Neither of us spoke during the journey. I had nearly reached the town, when the young man suddenly said, very slowly, \\\"Do you speak English? As I soon learnt, he was English himself!\",\"textCustomTranslate\":\"\",\"textNetworkTranslate\":\"去年我有一次有趣的经历。\\n离开法国南部的一个小村庄后,我驱车前往下一个城镇。\\n在路上,一个年轻人向我挥手。\\n我停下来,他让我搭便车。\\n他一上车,我就用法语和他说早上好,他也用同样的语言回答。\\n除了几个字,我一点法语都不懂。\\n旅途中我们俩都没说话。\\n我快到城里的时候,年轻人突然很慢地说:“你会说英语吗?\\n我很快就知道了,他自己就是英国人!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"zFHNU5\",\"title\":\"Good news\",\"titleTranslate\":\"佳音\",\"text\":\"The secretary told me that Mr. Harmsworth would see me. I felt very nervous when I went into his office. He did not look up from his desk when I entered. After I had sat down, he said that business was very bad. He told me that the firm could not afford to pay such large salaries. Twenty people had already left. I knew that my turn had come.\\nMr.Harmsworth, I said in a weak voice.\\nDon't interrupt, he said.\\nThen he smiled and told me I would receive an extra thousand pounds a year!\",\"textCustomTranslate\":\"秘书告诉我说哈姆斯沃斯先生要见我。\\r\\n我走进他的办公室,感到非常紧张。\\r\\n我进去的时候,他连头也没抬。\\r\\n待我坐下后,他说生意非常不景气。\\r\\n他还告诉我,公司支付不起这么庞大的工资开支,\\r\\n有20个人已经离去。\\r\\n我知道这次该轮到我了。\\r\\n\\r\\n“哈姆斯沃斯先生,”我无力地说。\\r\\n\\r\\n“不要打断我的话,”他说。\\r\\n\\r\\n然后他微笑了一下告诉我说,我每年将得到1,000 英镑的额外收入。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"8S9YbR\",\"title\":\"A polite request\",\"titleTranslate\":\"彬彬有礼的要求\",\"text\":\"If you park your car in the wrong place, a traffic policeman will soon find it. You will be very lucky if he lets you go without a ticket. However, this does not always happen. Traffic police are sometimes very polite. During a holiday in Sweden, I found this note on my car: sir, we welcome you to our city. This is a \\\"No Parking\\\" area. You will enjoy your stay here if you pay attention to our street signs. This note is only a reminder. If you receive a request like this, you cannot fail to obey it!\",\"textCustomTranslate\":\"一旦你把汽车停错了地方,交通警很快就会发现。\\n如果他没给你罚单就放你走了,算你走运。\\n然而,情况并不都是这样,\\n交通警有时也很客气。\\n有一次在瑞典度假,我发现我的车上有这样一个字条:“先生,欢迎您光临我们的城市。\\n此处是‘禁止停车’区。\\n如果您对我们街上的标牌稍加注意,您在此会过得很愉快的。\\n谨此提请注意。\\n如果你收到这样的恳求,你是不会不遵照执行的!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"YV14mY\",\"title\":\"Always young\",\"titleTranslate\":\"青春常驻\",\"text\":\"My aunt Jennifer is an actress. She must be at least thirty-five years old. In spite of this, she often appears on the stage as a young girl. Jennifer will have to take part in a new play soon. This time, she will be a girl of seventeen. In the play, she must appear in a bright red dress and long black stockings. Last year in another play, she had to wear short socks and a bright, orange-coloured dress. If anyone ever asks her how old she is, she always answers, ‘Darling, it must be terrible to be grown up!\",\"textCustomTranslate\":\"我的姑姑詹妮弗是位演员,\\n她至少也有35岁了。\\n尽管如此,她却常在舞台上扮演小姑娘。\\n詹妮弗很快又要参加一个新剧的演出。\\n这一次,她将扮演一个17岁的少女。\\n演出时她必须穿一条鲜红色的裙子和黑色的长筒袜。\\n去年在演另一个剧时,她不得不穿短袜和一件鲜艳的橘红色的衣服。\\n一旦有人问起她有多大年纪,她总是回答:“亲爱的,长成大人真可怕啊!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"PaT-lG\",\"title\":\"He often does this!\",\"titleTranslate\":\"他经常干这种事!\",\"text\":\"After I had had lunch at a village pub, I looked for my bag. I had left it on a chair beside the door and now it wasnt there! As I was looking for it, the landlord came in.\\nDid you have a good meal?\\\" he asked.\\nYes, thank you, I answered, but I cant pay the bill. I havent got my bag.\\nThe landlord smiled and immediately went out. In a few minutes he returned with my bag and gave it back to me.\\nIm very sorry, he said. My dog had taken it into the garden. He often does this!\",\"textCustomTranslate\":\"我在一家乡村小酒店吃过午饭后,就找我的提包。\\n我曾把它放在门边的椅子上,可这会儿不见了!\\n当我正在寻找时,酒店老板走了进来。\\n\\n“您吃得好吗?” 他问。\\n\\n“很好,谢谢。” 我回答,但我付不了帐,\\n我的提包没有了。”\\n\\n酒店老板笑了笑,马上走了出去。\\n一会儿工夫他拿着我的提包回来了,把它还给了我。\\n\\n“实在抱歉,”他说,\\n“我的狗把它弄到花园里去了,\\n他常干这种事!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"3GEdgN\",\"title\":\"Sold out\",\"titleTranslate\":\"票已售完\",\"text\":\"'The play may begin at any moment,' I said.\\n\\n'It may have begun already,' Susan answered.\\n\\nI hurried to the ticket office. 'May I have two tickets please?' I asked.\\n\\n'I'm sorry, we've sold out,' the girl said.\\n\\n'What a pity!' Susan exclaimed.\\n\\nJust then, a man hurried to the ticket office.\\n\\n'Can I return these two tickets?' he asked.\\n\\n'Certainly,' the girl said.\\n\\nI went back to the ticket office at once.\\n\\n'Could I have those two tickets please?' I asked.\\n\\n'Certainly,' the girl said, 'but they're for next Wednesday's performance. Do you still want them?'\\n\\n'I might as well have them,' I said sadly.\",\"textCustomTranslate\":\"“剧马上就要开演了,”我说。\\n\\n“也许已经开演了呢,”苏珊回答说。\\n\\n我匆匆赶到售票处,\\n问:“我可以买两张票吗?”\\n\\n“对不起,票已售完。”那位姑娘说。\\n\\n“真可惜!”苏珊大声说。\\n\\n正在这时,一个男子匆匆奔向售票处。\\n\\n“我可以退掉这两张票吗?”他问。\\n\\n“当然可以,”那姑娘说。\\n\\n我马上又回到售票处。\\n\\n“我可以买那两张票吗?”我问。\\n\\n“当然可以,不过这两张票是下星期三的,您是否还要呢?”\\n\\n\\n“我还是买下的好,”我垂头丧气地说。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"U5f9tb\",\"title\":\"One man in a boat\",\"titleTranslate\":\"独坐孤舟\",\"text\":\"Fishing is my favourite sport. I often fish for hours without catching anything. But this does not worry me. Some fishermen are unlucky. Instead of catching fish, they catch old boots and rubbish. I am even less lucky. I never catch anything -- not even old boots. After having spent whole mornings on the river, I always go home with an empty bag. You must give up fishing! my friends say. Its a waste of time. But they dont realize one important thing. Im not really interested in fishing. I am only interested in sitting in a boat and doing nothing at all!\",\"textCustomTranslate\":\"钓鱼是我特别喜爱的一项运动。\\n我经常一钓数小时却一无所获,\\n但我从不为此烦恼。\\n有些垂钓者就是不走运,\\n他们往往鱼钓不到,却钓上来些旧靴子和垃圾。\\n我的运气甚至还不及他们。\\n我什么东西也未钓到过 -- 就连旧靴子也没有。\\n我总是在河上呆上整整一上午,然后空着袋子回家。\\n“你可别再钓鱼了!”\\n我的朋友们说,\\n“这是浪费时间。”\\n然而他们没有认识到重要的一点,\\n我并不是真的对钓鱼有兴趣,\\n我感兴趣的只是独坐孤舟,无所事事!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"g0kSja\",\"title\":\"Mad or not?\",\"titleTranslate\":\"是不是疯了\",\"text\":\"Aeroplanes are slowly driving me mad. I live near an airport and passing planes can be heard night and day. The airport was built years ago, but for some reason it could not be used then. Last year, however, it came into use. Over a hundred people must have been driven away from their homes by the noise. I am one of the few people left. Sometimes I think this house will be knocked down by a passing plane. I have been offered a large sum of money to go away, but I am determined to stay here. Everybody says I must be mad and they are probably right.\",\"textCustomTranslate\":\"飞机正在逐渐把我逼疯。\\n我住在一个机场附近,过往飞机日夜不绝于耳。\\n机场是许多年前建的,但由于某种原因当时未能启用。\\n然而去年机场开始使用了。\\n有100多人肯定是被噪音逼得已经弃家远去,\\n我是少数留下来的人中的一个。\\n有时我觉得这房子就要被一架飞过的飞机撞倒。\\n他们曾向我提供一大笔钱让我搬走,但我决定留在这儿。\\n大家都说我肯定是疯了,也许他们说的是对的。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"rtW-7v\",\"title\":\"A glass envelope\",\"titleTranslate\":\"玻璃信封\",\"text\":\"My daughter, Jane, never dreamed of receiving a letter from a girl of her own age in Holland. Last year, we were travelling across the Channel and Jane put a piece of paper with her name and address on it into a bottle. She threw the bottle into the sea. She never thought of it again, but ten months later, she received a letter from a girl in Holland. Both girls write to each other regularly now. However, they have decided to use the post office. Letters will cost a little more, but they will certainly travel faster.\",\"textCustomTranslate\":\"我的女儿简从未想过会接到荷兰一位同龄姑娘的来信。\\n去年,当我们横渡英吉利海峡时,简把写有她姓名和住址的一张纸条装进了一只瓶子,\\n又将瓶子扔进了大海。\\n此后她就再没去想那只瓶子。但10个月以后,她收到了荷兰一位姑娘的来信。\\n现在这两位姑娘定期通信了。\\n然而她们还是决定利用邮局。\\n这样会稍微多花点钱,但肯定是快得多了。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"lBw4bU\",\"title\":\"A new house\",\"titleTranslate\":\"新居\",\"text\":\"I had a letter from my sister yesterday. She lives in Nigeria. In her letter, she said that she would come to England next year. If she comes, she will get a surprise. We are now living in a beautiful new house in the country. Work on it had begun before my sister left. The house was completed five months ago. In my letter, I told her that she could stay with us. The house has many large rooms and there is a lovely garden. It is a very modern house, so it looks strange to some people. It must be the only modern house in the district.\",\"textCustomTranslate\":\"昨天我收到了姐姐的一封信,\\n她住在尼日利亚。\\n在信中她说她明年将到英国来。\\n如果她来了,她会感到非常惊奇了。\\n我们现在住在乡间的一栋漂亮的新住宅里。\\n这栋房子在我姐姐离开之前就已动工了,\\n是在5个月以前竣工的。\\n我在信中告诉她,她可以和我们住在一起。\\n这栋房子里有许多房间,还有一个漂亮的花园。\\n它是一栋非常现代化的住宅,因此在有些人看来很古怪。\\n它肯定是这个地区唯一的一栋现代化住宅。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"kHuKbq\",\"title\":\"It could be worse\",\"titleTranslate\":\"不幸中之万幸\",\"text\":\"I entered the hotel managers office and sat down. I had just lost $50 and I felt very upset. I left the money in my room, I said, and its not there now. The manager was sympathetic, but he could do nothing. Everyones losing money these days, he said. He started to complain about this wicked world but was interrupted by a knock at the door. A girl came in and put an envelope on his desk. It contained $50. I found this outside this gentlemans room, she said. Well, I said to the manager, there is still some honesty in this world!\",\"textCustomTranslate\":\"我走进饭店经理的办公室,坐了下来。\\n我刚刚丢了50英镑,感到非常烦恼。\\n“我把钱放在房间里,”我说,“可现在没有了。”\\n经理深表同情,但却无能为力。\\n“现在大家都在丢钱,”他说。\\n他开始抱怨起这个邪恶的世道来,却被一阵敲门声打断了。\\n一个姑娘走了进来,把一个信封放在了他桌上。\\n它里面装着50英镑。\\n“这是我在这位先生的房门外捡到的,”她说。\\n“是啊,”我对那位经理说,“这世界上还是有诚实可言的!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"mEPUpv\",\"title\":\"Do the English speak English?\",\"titleTranslate\":\"英国人讲的是英语吗?\",\"text\":\"I arrived in London at last. The railway station was big, black and dark. I did not know the way to my hotel, so I asked a porter. I not only spoke English very carefully, but very clearly as well. The porter, however, could not understand me. I repeated my question several times and at last he understood. he answered me, but he spoke neither slowly nor clearly. I am a foreigner, I said. Then he spoke slowly, but I could not understand him. My teacher never spoke English like that! The porter and I looked at each other and smiled. Then he said something and I understood it. Youll soon learn English! he said. I wonder. In England, each person speaks a different language. The English understand each other, but I dont understand them! Do they speak English?\",\"textCustomTranslate\":\"我终于到了伦敦。\\n火车站很大,又黑又暗。\\n我不知道去饭店的路该怎么走,于是向一个搬运工打听。\\n我的英语讲得不但非常认真,而且咬字也非常清楚。\\n然而搬运工却不明白我的话。\\n我把问话重复了很多遍。他终于听懂了。\\n他回答了,但他讲得既不慢也不清楚。\\n“我是个外国人,”我说。\\n于是他说得慢了,可我还是听不懂。\\n我的老师从来不那样讲英语!\\n我和搬运工相视一笑。\\n接着,他说了点什么,这回我听懂了。\\n“您会很快学会英语的!”\\n他说。\\n我感到奇怪。\\n在英国,人们各自说着一种不同的语言。\\n英国人之间相互听得懂,可我却不懂他们的话!\\n他们说的是英语吗?\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"4EO25Y\",\"title\":\"The best art critics\",\"titleTranslate\":\"最佳艺术评论家\",\"text\":\"I am an art student and I paint a lot of pictures. Many people pretend that they understand modern art. They always tell you what a picture is about. Of course, many pictures are not about anything. They are just pretty patterns. We like them in the same way that we like pretty curtain material. I think that young children often appreciate modern pictures better than anyone else. They notice more. My sister is only seven, but she always tells me whether my pictures are good or not. She came into my room yesterday.\\n\\nWhat are you doing? she asked.\\n\\nIm hanging this picture on the wall, I answered. Its a new one. Do you like it?\\nShe looked at it critically for a moment. Its all right, she said, but isnt it upside down?\\nI looked at it again. She was right! It was!\",\"textCustomTranslate\":\"我是个学艺术的学生,画了很多画。\\r\\n有很多人装成很懂现代艺术的样子,\\r\\n总是告诉你一幅画的“意思”是什么。\\r\\n当然,有很多画是什么“意思”也没有的。\\r\\n它们就是些好看的图案,\\r\\n我们喜爱它们就像我们喜欢漂亮的窗帘布一样。\\r\\n我觉得小孩子们往往比任何人都更能欣赏现代绘画,\\r\\n他们观察到的东西更多。\\r\\n我的妹妹只有7岁,但她总能说出我的画是好还是坏。\\r\\n昨天她到我房里来了。\\r\\n\\r\\n“你在干什么呢?”\\r\\n她问。\\r\\n\\r\\n“我正把这幅画挂到墙上去。”我回答说,\\r\\n“这是幅新画,\\r\\n你喜欢吗?”\\r\\n\\r\\n她用挑剔的目光看了一会儿。\\r\\n“还可以吧。”她说,“不过,是不是挂倒了?”\\r\\n\\r\\n我再次看了看画。\\r\\n她说对了!\\r\\n是挂倒了!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"m1I7bK\",\"title\":\"A wet night\",\"titleTranslate\":\"雨夜\",\"text\":\"Late in the afternoon, the boys put up their tent in the middle of a field. As soon as this was done, they cooked a meal over an open fire. They were all hungry and the food smelled good. After a wonderful meal, they told stories and sang songs by the campfire. But some time later it began to rain. The boys felt tired so they put out the fire and crept into their tent. Their sleeping bags were warm and comfortable, so they all slept soundly. In the middle of the night, two boys woke up and began shouting. The tent was full of water! They all leapt out of their sleeping bags and hurried outside. It was raining heavily and they found that a stream had formed in the field. The stream wound its way across the field and then flowed right under their tent!\",\"textCustomTranslate\":\"傍晚时分,孩子们在田野中央搭起了帐篷。\\n这件事刚刚做完,他们就在篝火上烧起了饭。\\n他们全都饿了,饭菜散发出阵阵香味。\\n他们美美地吃了一顿饭后,就围在营火旁讲起了故事,唱起了歌。\\n但过了一阵子。天下起雨来,\\n孩子们感到累了,于是他们扑灭了火,爬进了帐篷。\\n睡袋既暖和又舒服,所以,他们都睡得很香。\\n午夜前后,有两个孩子醒了,大声叫了起来。\\n原来帐篷里到处都是水!\\n他们全都跳出睡袋,跑到外面。\\n雨下得很大,他们发现地上已经形成了一条小溪。\\n那小溪弯弯曲曲穿过田野,然后正好从他们的帐篷底下流过去。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"rsgV1j\",\"title\":\"No parking\",\"titleTranslate\":\"禁止停车\",\"text\":\"Jasper White is one of those rare people who believes in ancient myths. he has just bought a new house in the city, but ever since he moved in, he has had trouble with cars and their owners. When he returns home at night, he always finds that someone has parked a car outside his gate. Because of this, he has not been able to get his own car into his garage even once. Jasper has put up No Parking signs outside his gate, but these have not had any effect. Now he has put an ugly stone head over the gate. It is one of the ugliest faces I have ever seen. I asked him what it was and he told me that it was Medusa, the Gorgon. jasper hopes that she will turn cars and their owners to stone. But none of them has been turned to stone yet!\",\"textCustomTranslate\":\"贾斯珀.怀特是少有的相信古代神话的人之一。\\n他刚在城里买下一所新房子,但自从搬进去后,就和汽车及车主们发生了磨擦。\\n当他夜里回到家时,总是发现有人把车停在他家大门外。\\n为此,他甚至一次也没能把自己的车开进车库。\\n贾斯珀曾把几块“禁止停车”的牌子挂在大门外边,但没有任何效果。\\n现在他把一个丑陋的石雕头像放在了大门上边,\\n这是我见过的最丑陋的头像之一。\\n我问他那是什么?他告诉我那是蛇发女怪美杜莎。\\n贾斯珀希望她把汽车和车主们都变成石头。\\n但到目前为止还没有一个变成石头呢!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"s6BCn3\",\"title\":\"Taxi!\",\"titleTranslate\":\"出租汽车\",\"text\":\"Captain Ben Fawcett has bought an unusual taxi and has begun a new service. The taxi is a small Swiss aeroplane called a Pilatus Porter. This wonderful plane can carry seven passengers. The most surprising thing about it, however, is that it can land anywhere: on snow, water, or even on a ploughed field. Captain Fawcetts first passenger was a doctor who flew from Birmingham to a lonely village in the Welsh mountains. Since then, Captain Fawcett has flown passengers to many unusual places. Once he landed on the roof of a block of flats and on another occasion, he landed in a deserted car park. Captain Fawcett has just refused a strange request from a businessman. The man wanted to fly to Rockall, a lonely island in the Atlantic Ocean, but Captain Fawcett did not take him because the trip was too dangerous.\",\"textCustomTranslate\":\"本.弗西特机长买了一辆不同寻常的出租汽车,并开始了一项新的业务。\\n这辆“出租汽车”是一架小型瑞士飞机,叫“皮勒特斯.波特“号。\\n这架奇妙的飞机可以载7名乘客。\\n然而,最令人惊奇的是它能够在任何地方降落:雪地上,水面上,甚至刚耕过的田里。\\n弗西特机长的第一名乘客是位医生,他从伯明翰飞往威尔士山区一个偏僻的村庄。\\n从那时开始,弗西特机长已经载送乘客到过许多不寻常的地方。\\n一次,他把飞机降落在了一栋公寓楼的屋顶上;还有一次,降落在了一个废弃的停车场上。\\n弗西特机长刚刚拒绝了一位商人的奇怪要求。\\n这个人想要飞往大西洋上的一个孤岛 -- 罗卡尔岛,弗西特机长之所以不送他去,是因为那段飞行太危险了。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"_6z4W_\",\"title\":\"Football or polo?\",\"titleTranslate\":\"足球还是水球?\",\"text\":\"The Wayle is a small river that cuts across the park near my home. I like sitting by the Wayle on fine afternoons. It was warm last Sunday, so I went and sat on the river bank as usual. Some children were playing games on the bank and there were some people rowing on the river. Suddenly, one of the children kicked a ball very hard and it went towards a passing boat. Some people on the bank called out to the man in the boat, but he did not hear them. The ball struck him so hard that he nearly fell into the water. I turned to look at the children, but there werent any in sight: they had all run away! The man laughed when he realized what had happened. He called out to the children and threw the ball back to the bank.\",\"textCustomTranslate\":\"威尔河是横穿过我家附近公园的一条小河。\\n我喜欢在天气晴朗的下午到河边坐坐。\\n上星期日天气很暖和。于是我和往常一样,又去河边坐着。\\n河岸上有些孩子正在玩耍,河面上有些人正在划船。\\n突然,一个孩子狠狠地踢了一脚球,球便向着一只划过来的小船飞去。\\n岸上的一些人对着小船上的人高喊,但他没有听见。\\n球重重地打在他身上,使他差点儿落入水中。\\n我转过头去看那些孩子,但一个也不见,全都跑了!\\n当那个人明白了发生的事情时,笑了起来。\\n他大声叫着那些孩子,把球扔回到岸上。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"ufrSHh\",\"title\":\"Success story\",\"titleTranslate\":\"成功者的故事\",\"text\":\"Yesterday afternoon Frank Hawkins was telling me about his experiences as a young man. Before he retired, Frank was the head of a very large business company, but as a boy he used to work in a small shop. It was his job to repair bicycles and at that time he used to work fourteen hours a day. He saved money for years and in 1958 he bought a small workshop of his own. In his twenties Frank used to make spare parts for aeroplanes. At that time he had two helpers. In a few years the small workshop had become a large factory which employed seven hundred and twenty-eight people. Frank smiled when he remembered his hard early years and the long road to success. He was still smiling when the door opened and his wife came in. She wanted him to repair their grandsons bicycle!\",\"textCustomTranslate\":\"昨天下午弗兰克.霍金斯向我讲述了他年轻时的经历。\\n在退休前,弗兰克是一家非常大的商业公司的经理,但他小时候却在一家小铺里做工。\\n他那时的工作是修理自行车,并且通常是一天工作14个小时。\\n他靠多年积蓄,于1958年买下了自己的一个小铺子。\\n20多岁的时候,弗兰克曾生产飞机零配件。\\n那时他有两个帮手。\\n几年之后,小铺子已经发展成了一个雇有728人的大工厂。\\n弗兰克回想着他早年的艰难经历和走过的漫长的成功之路,微笑了。\\n他正笑着的时候门开了,他的妻子走了进来。\\n她叫他去修理孙子的自行车。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"ln_Wnx\",\"title\":\"Shopping made easy\",\"titleTranslate\":\"购物变得很方便\",\"text\":\"People are not so honest as they once were. The temptation to steal is greater than ever before -- especially in large shops. A detective recently watched a well-dressed woman who always went into a large store on Monday mornings. One Monday, there were fewer people in the shop than usual when the woman came in, so it was easier for the detective to watch her. The woman first bought a few small articles. After a little time, she chose one of the most expensive dresses in the shop and handed it to an assistant who wrapped it up for her as quickly as possible. Then the woman simply took the parcel and walked out of the shop without paying. When she was arrested, the detective found out that the shop assistant was her daughter. The girl gave her mother a free dress once a week!\",\"textCustomTranslate\":\"人们不再像以前那样诚实了。\\n偷窃的诱惑力比以往任何时候都更强烈 -- 特别是在大的商店里。\\n一名侦探最近注意上了一位穿着讲究的妇女,她总是在星期一上午进入一家大商场。\\n有一个星期一,当这位妇女走进这家商场时,里面的人比往常少,因此,侦探比较容易监视她。\\n这位妇女先是买了几样小商品。\\n过了一会儿,她又选了商场里最昂贵的一件衣服,把它递给了售货员。那售货员以最快的速度为她包好了衣服。\\n然后,那妇女拿过包就走出了商场,根本没有付钱。\\n她被逮捕后。侦探发现原来那售货员是她的女儿。\\n那姑娘每星期“送”她母亲一件免费的衣服!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"Ox07WU\",\"title\":\"Out of the darkness\",\"titleTranslate\":\"冲出黑暗\",\"text\":\"Nearly a week passed before the girl was able to explain what had happened to her. One afternoon she set out from the coast in a small boat and was caught in a storm. Towards evening, the boat struck a rock and the girl jumped into the sea. Then she swam to the shore after spending the whole night in the water. During that time she covered a distance of eight miles. Early next morning, she saw a light ahead. She knew she was near the shore because the light was high up on the cliffs. On arriving at the shore, the girl struggled up the cliff towards the light she had seen. That was all she remembered. When she woke up a day later, she found herself in hospital.\",\"textCustomTranslate\":\"几乎过了一个星期,那姑娘才能讲述自己的遭遇。\\n一天下午,她乘小船从海岸出发,遇上了风暴。\\n天将黑时,小船撞在了一块礁石上,姑娘跳进了海里。\\n她在海里游了整整一夜才游到岸边。\\n在那段时间里,她游了8英里。\\n第二天凌晨,她看到前方有灯光,\\n知道自己已经接近岸边了,因为那灯光是在高高的峭壁上。\\n到达岸边后,姑娘朝着她看到的灯光方向挣扎着往峭壁上爬去。\\n她所记得的就是这些。\\n第二天她醒来时,发现自己躺在医院里。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"5rw_JK\",\"title\":\"Quick work\",\"titleTranslate\":\"破案“神速”\",\"text\":\"Dan Robinson has been worried all week. Last Tuesday he received a letter from the local police. In the letter he was asked to call at the station. Dan wondered why he was wanted by the police, but he went to the station yesterday and now he is not worried anymore. At the station, he was told by a smiling policeman that his bicycle had been found. Five days ago, the policeman told him, the bicycle was picked up in a small village four hundred miles away. It is now being sent to his home by train. Dan was most surprised when he heard the news. He was amused too, because he never expected the bicycle to be found. It was stolen twenty years ago when Dan was a boy of fifteen!\",\"textCustomTranslate\":\"丹.鲁宾逊焦虑了整整一个星期。\\n上星期二他收到当地警察局的一封信,\\n要他到警察局去一趟。\\n丹奇怪警察为什么找他,但昨天还是去了,结果他一再担心了。\\n在警察局里,一位面带笑容的警察告诉他,他的自行车找到了。\\n那位警察对他说,那辆自行车是5天前在400英里外的一个小村里发现的,\\n现在正用火车给他运回家来。\\n丹听到这个消息后,惊奇万分,\\n但又感到非常好笑,因为他从未指望那辆自行车还能找到。\\n这是20年前丹还是一个15岁的孩子时被人偷走的!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"rMLf3d\",\"title\":\"Stop thief!\",\"titleTranslate\":\"捉贼!\",\"text\":\"Roy Trenton used to drive a taxi. A short while ago, however, he became a bus driver and he has not regretted it. He is finding his new work far more exciting. When he was driving along Catford Street recently, he saw two thieves rush out of a shop and run towards a waiting car. One of them was carrying a bag full of money. Roy acted quickly and drove the bus straight at the thieves. The one with the money got such a fright that he dropped the bag. As the thieves were trying to get away in their car, Roy drove his bus into the back of it. While the battered car was moving away, Roy stopped his bus and telephoned the police. The thieves car was badly damaged and easy to recognize. Shortly afterwards, the police stopped the car and both men were arrested.\",\"textCustomTranslate\":\"罗伊.特雷顿原是开出租汽车的,\\n然而就在前不久,他开上了公共汽车,也并不为此而感到后悔。\\n他发觉自己的新工作令人兴奋得多。\\n最近,当他正开车在凯特福德街上行驶时,看到有两个小偷从一家商店里冲出来,奔向等在那里的一辆汽车,\\n其中一个提着一只装满钞票的提包。\\n罗伊行动迅速,开车直冲窃贼而去。\\n拿钱的那个小偷吓得把提包都扔了。\\n当那两个小偷企图乘车逃跑时,罗伊驾驶他的公共汽车撞在了那辆车的后尾上。\\n当那辆被撞坏的车开走后,罗伊停下车,给警察挂了电话。\\n小偷的车损坏严重,很容易辨认。\\n没过多久,警察就截住了那辆车,两个小偷都被抓住了。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"PErgUJ\",\"title\":\"Across the Channel\",\"titleTranslate\":\"横渡海峡\",\"text\":\"Debbie Hart is going to swim across the English Channel tomorrow. She is going to set out from the French coast at five oclock in the morning. Debbie is only eleven years old and she hopes to set up a new world record. She is a strong swimmer and many people feel that she is sure to succeed. Debbies father will set out with her in a small boat. Mr. Hart has trained his daughter for years. Tomorrow he will be watching her anxiously as she swims the long distance to England. Debbie intends to take short rests every two hours. She will have something to drink but she will not eat any solid food. Most of Debbies school friends will be waiting for her on the English coast. Among them will be Debbies mother, who swam the Channel herself when she was a girl.\",\"textCustomTranslate\":\"黛比.哈特准备明天横渡英吉利海峡。\\n她打算早上5点钟从法国海岸出发。\\n黛比只有11岁,她希望创一项新的世界纪录。\\n她是一个游泳能手,很多人认为她一定能成功。\\n黛比的父亲将乘一条小船同她一道出发。\\n哈特先生训练她的女儿已经多年了,\\n明天他将焦急地注视着女儿游过这段漫长的距离到达英国。\\n黛比计划每两小时休息一下。\\n她将喝些饮料,但不吃固体食物。\\n黛比的大部分同学将在英国海岸等候她。\\n他们当中还会有黛比的母亲,她本人还是个姑娘时,也曾横渡过英吉利海峡!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"VBTjoI\",\"title\":\"The Olympic Games\",\"titleTranslate\":\"奥林匹克运动会\",\"text\":\"The Olympic Games will be held in our country in four years time. As a great many people will be visiting the country, the government will be building new hotels, an immense stadium, and a new Olympic-standard swimming pool. They will also be building new roads and a special railway line. The Games will be held just outside the capital and the whole area will be called Olympic City. Workers will have completed the new roads by the end of this year. By the end of next year, they will have finished work on the new stadium. The fantastic modern buildings have been designed by Kurt Gunter. Everybody will be watching anxiously as the new buildings go up. We are all very excited and are looking forward to the Olympic Games because they have never been held before in this country.\",\"textCustomTranslate\":\"4年以后,奥林匹克运动会将在我们国家举行。\\n由于将有大批的人到我们国家来,所以政府准备建造一些新的饭店、一个大型体育场和一个新的奥运会标准游泳池。\\n他们还将修筑一些新的道路和一条铁路专线。\\n奥运会就在首都市郊举办,整个地区将被称作“奥林匹克城”。\\n工人们将在今年年底前把新路铺好,\\n到明年年底,他们将把新体育场建成。\\n这些巨大的现代化建筑是由库尔特.冈特设计的。\\n大家都将急切地注视着新建筑的建成。\\n我们都非常激动,盼望着奥运会的到来,因为在这个国家里还从未举办过奥运会。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"qCMKlI\",\"title\":\"Everything except the weather\",\"titleTranslate\":\"唯独没有考虑到天气\",\"text\":\"My old friend, Harrison, had lived in the Mediterranean for many years before he returned to England. He had often dreamed of retiring in England and had planned to settle down in the country. He had no sooner returned than he bought a house and went to live there. Almost immediately he began to complain about the weather, for even though it was still summer, it rained continually and it was often bitterly cold. After so many years of sunshine, Harrison got a shock. He acted as if he had never lived in England before. In the end, it was more than he could bear. He had hardly had time to settle down when he sold the house and left the country. The dream he had had for so many years ended there. Harrison had thought of everything except the weather.\",\"textCustomTranslate\":\"我的老朋友哈里森在回到英国以前曾多年居住在地中海地区。\\n过去他常幻想退休后到英国,并计划在乡间安顿下来。\\n他刚一回到英国便买下了一幢房子住了进去。\\n但紧接着他就开始抱怨那里的天气了。因为即使那时仍为夏季,但雨总是下个不停,而且常常冷得厉害。\\n在阳光下生活了那么多年的哈里森对此感到惊奇。\\n他的举动就好像他从未在英国生活过一样。\\n最后,他再也忍受不住,\\n还没等安顿下来就卖掉了房子,离开了这个国家。\\n他多年来的幻想从此破灭。\\n哈里森把每件事情都考虑到了,唯独没想到天气。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"_BXuGK\",\"title\":\"Am I all right?\",\"titleTranslate\":\"我是否痊愈?\",\"text\":\"While John Gilbert was in hospital, he asked his doctor to tell him whether his operation had been successful, but the doctor refused to do so. The following day, the patient asked for a bedside telephone. When he was alone, he telephoned the hospital exchange and asked for Doctor Millington. When the doctor answered the phone, Mr. Gilbert said he was inquiring about a certain patient, a Mr. John Gilbert. He asked if Mr. Gilberts operation had been successful and the doctor told him that it had been. He then asked when Mr. Gilbert would be allowed to go home and the doctor told him that he would have to stay in hosptial for another two weeks. Then Dr. Millington asked the caller if he was a relative of the patient. No, the patient answered, I am Mr. John Gilbert.\",\"textCustomTranslate\":\"当约翰.吉尔伯特住院的时候,他问医生他的手术是否成功,但医生拒绝告诉他。\\n第二天,这位病人要了一部床头电话。\\n当房里只剩他一个人时,他挂通了医院的交换台,要求与米灵顿医生讲话。\\n当这位医生接过电话时,吉尔伯特先生说他想询问一个病人的情况,是一位名叫约翰.吉尔伯特的先生。\\n他问吉尔伯特先生的手术中否成功,医生告诉他手术很成功。\\n然后他又问吉尔伯特先生什么时候可以回家,医生说他在医院还必须再住上两个星期。\\n之后,米灵顿医生问打电话的人是否是病人的亲属。\\n“不是,”病人回答说,“我就是约翰.吉尔伯特先生。”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"BRPOAT\",\"title\":\"Food and talk\",\"titleTranslate\":\"进餐与交谈\",\"text\":\"Last week at a dinner party, the hostess asked me to sit next to Mrs. Rumbold. Mrs. Rumbold was a large, unsmiling lady in a tight black dress. She did not even look up when I took my seat beside her. Her eyes were fixed on her plate and in a short time, she was busy eating. I tried to make conversation.\\nA new play is coming to \\\"The Globe\\\" soon, I said. Will you be seeing it?\\nNo, she answered.\\nWill you be spending your holidays abroad this year? I asked.\\nNo, she answered.\\nWill you be staying in England? I asked.\\nNo, she answered.\\nIn despair, I asked her whether she was enjoying her dinner.\\nYoung man, she answered, if you ate more and talked less, we would both enjoy our dinner!\\\"\",\"textCustomTranslate\":\"在上星期的一次宴会上,女主人安排我坐在兰伯尔德夫人的身旁。\\n兰伯尔德夫人是一位身材高大、表情严肃的女人,穿一件紧身的黑衣服。\\n当我在她身旁坐下来的时候,她甚至连头都没有抬一下。\\n她的眼睛盯着自己的盘子,不一会儿就忙着吃起来了。\\n我试图找个话题和她聊聊。\\n\\n“一出新剧要来‘环球剧场’上演了,”我说,\\n“您去看吗?”\\n\\n“不,”她回答。\\n\\n“您今年去国外度假吗?”\\n我又问。\\n\\n“不,”她回答。\\n\\n“您就呆在英国吗?”\\n我问。\\n\\n“不,”她回答。\\n\\n失望之中我问她饭是否吃得满意。\\n\\n“年轻人,”她回答说,“如果你多吃点,少说点,我们两个都会吃得好的!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"4z30eQ\",\"title\":\"Do you call that a hat?\",\"titleTranslate\":\"你把那个叫帽子吗?\",\"text\":\"Do you call that a hat? I said to my wife.\\nYou neednt be so rude about it, my wife answered as she looked at herself in the mirror.\\nI sat down on one of those modern chairs with holes in it and waited. We had been in the hat shop for half an hour and my wife was still in front of the mirror.\\nWe mustnt buy things we dont need, I remarked suddenly. I regretted saying it almost at once.\\nYou neednt have said that, my wife answered. I neednt remind you of that terrible tie you bought yesterday.\\nI find it beautiful, I said. A man can never have too many ties.\\nAnd a woman cant have too many hats, she answered.\\nTen minutes later we walked out of the shop together. My wife was wearing a hat that looked like a lighthouse!\",\"textCustomTranslate\":\"“你把那个叫帽子吗?”\\n我对妻子说。\\n\\n“你说话没必要这样不客气,”我的妻子边回答边照着镜子。\\n\\n我坐在一个新式的满是网眼儿的椅子上,等待着。\\n我们在这家帽店已经呆了半个小时了,而我的妻子仍在镜子面前。\\n\\n“我们不应该买我们不需要的东西,”我突然发表意见说,\\n但马上又后悔说了这话。\\n\\n“你没必要这么说,”我妻子回答说,\\n“我也不必提醒你昨天买的那条糟糕透了的领带。”\\n\\n“我觉得它好看,”我说,\\n“男人有多少领带也不会嫌多。”\\n\\n“女人有多少帽子也不嫌多。” 她回答。\\n\\n10分钟以后,我们一道走出了商店。\\n我妻子戴着一顶像灯塔一样的帽子。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"jn2zyr\",\"title\":\"Not very musical\",\"titleTranslate\":\"并非很懂音乐\",\"text\":\"As we had had a long walk through one of the markets of old Delhi, we stopped at a square to have a rest. After a time, we noticed a snake charmer with two large baskets at the other side of the square, so we went to have a look at him. As soon as he saw us, he picked up a long pipe which was covered with coins and opened one of the baskets. When he began to play a tune, we had our first glimpse of the snake. It rose out of the basket and began to follow the movements of the pipe. We were very much surprised when the snake charmer suddenly began to play jazz and modern pop songs. The snake, however, continued to dance slowly. It obviously could not tell the difference between Indian music and jazz!\",\"textCustomTranslate\":\"当我们穿过旧德里的市场时走了很长一段路,我们在一个广场上停下来休息。\\n过了一会儿,我们注意到广场的那一边有一个带着两个大筐的耍蛇人,于是就走过去看看。\\n他一见我们,就拿起了一个长长的上面镶有硬币的管乐器,并掀开了一个筐的盖子。\\n当他开始吹奏一支曲子时,我们才第一次看到那条蛇。\\n它从筐里探出身子,随着乐器的摆动而扭动。\\n当耍蛇人突然又吹奏起爵士乐和现代流行乐曲时,我们感到非常惊奇。\\n然而那蛇却还是缓慢地“舞动”着。\\n显然,它分辨不出印度音乐和爵士乐!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"or9sg0\",\"title\":\"Over the South Pole\",\"titleTranslate\":\"飞越南极\",\"text\":\"In 1929, three years after his flight over the North Pole, the American explorer, R.E. Byrd, successfully flew over the South Pole for the first time. Though, at first, Byrd and his men were able to take a great many photographs of the mountains that lay below, they soon ran into serious trouble. At one point, it seemed certain that their plane would crash. It could only get over the mountains if it rose to 10,000 feet. Byrd at once ordered his men to throw out two heavy food sacks. The plane was then able to rise and it cleared the mountains by 400 feet. Byrd now knew that he would be able to reach the South Pole which was 300 miles away, for there were no more mountains in sight. The aircraft was able to fly over the endless white plains without difficulty.\",\"textCustomTranslate\":\"美国探险家 R.E.伯德在飞越北极3年之后,于1929年第一次飞越了南极。\\n虽然开始时伯德和他的助手们拍下了飞机下面连绵群山的大量照片,但他们很快就陷入了困境。\\n在有个地方,飞机似乎肯定要坠毁了。\\n只有在飞至10,000英尺的高度时,它才能飞过这些山头。\\n伯德马上命令他的助手们把两个沉重的食物袋扔掉,\\n于是飞机可以上升了,它在离山头400英尺的高度飞越了过去。\\n伯德这时知道他能够顺利飞抵300英里以外的南极了,因为前面再没有山了。\\n飞机可以毫无困难地飞过这片茫茫无际的白色原野!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"V3Ruqp\",\"title\":\"Through the forest\",\"titleTranslate\":\"穿过森林\",\"text\":\"Mrs. Anne Sterling did not think of the risk she was taking when she ran through a forest after two men. They had rushed up to her while she was having a picnic at the edge of a forest with her children and tried to steal her handbag. In the struggle, the strap broke and, with the bag in their possession, both men started running through the trees. Mrs. Sterling got so angry that she ran after them. She was soon out of breath, but she continued to run. When she caught up with them, she saw that they had sat down and were going through the contents of the bag, so she ran straight at them. The men got such a fright that they dropped the bag and ran away. The strap needs mending, said Mrs. Sterling later, but they did not steal anything.\",\"textCustomTranslate\":\"安.斯特林夫人在穿过森林追赶两个男人时,她并没有考虑到所冒的风险。\\n刚才,当她和孩子们正在森林边上野餐的时候,这两个人冲到她跟前,企图抢走她的手提包。\\n在争抢中,手提包的带断了,包落入这两个人手里,他们拔腿跑进了树林。\\n斯特林夫人非常气愤,向着他们追了过去。\\n只追了一会儿便上气不接下气了,但她还是继续追赶。\\n当她赶上他们时,发现他们已经坐了下来,正翻着包里的东西。于是她直冲过去。\\n这两个人吓了一跳,扔下提包逃跑了。\\n“这提包带需要修理,”斯特林夫人事后说道,“不过他们什么也没偷走。”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"AkyRbu\",\"title\":\"A clear conscience\",\"titleTranslate\":\"问心无愧\",\"text\":\"The whole village soon learnt that a large sum of money had been lost. Sam Benton, the local butcher, had lost his wallet while taking his savings to the post office. Sam was sure that the wallet must have been found by one of the villagers, but it was not returned to him. Three months passed, and then one morning, Sam found his wallet outside his front door. It had been wrapped up in newspaper and it contained half the money he had lost, together with a note which said: A thief, yes, but only 50 per cent a thief! Two months later, some more money was sent to Sam with another note: Only 25 per cent a thief now! In time, all Sams money was paid back in this way. The last note said: I am 100 per cent honest now!\",\"textCustomTranslate\":\"整个村子很快知道,有一大笔钱丢失了。\\n当地的屠户萨姆.本顿在把存款送往邮局的途中把钱包丢了。\\n萨姆确信那钱包一定是被某个村民捡到了,可是却不见有人来送还给他。\\n3个月过去了,后来在一天早晨,萨姆在自己的大门外发现了他的钱包。\\n钱包是用报纸包着的,里面有他丢失的钱的一半,而且还附着一张纸条,上面写着:“一个小偷,是的,但只是一个50%的小偷!”\\n又过了两个月,又有一些钱送还给了萨姆,又附了一张字条:“这回只是25%的小偷了!”\\n很快,萨姆全部的钱都用同样的方式还了回来。\\n最后的那张字条上写道:“我现在是一个100%的诚实人了!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"R8uxOR\",\"title\":\"Expensive and uncomfortable\",\"titleTranslate\":\"既昂贵又受罪\",\"text\":\"When a plane from London arrived at Sydney airport, workers began to unload a number of wooden boxes which contained clothing. No one could account for the fact that one of the boxes was extremely heavy. It suddenly occurred to one of the workers to open up the box. He was astonished at what he found. A man was lying in the box on top of a pile of woolen goods. He was so surprised at being discovered that he did not even try to run away. After he was arrested, the man admitted hiding in the box before the plane left London. He had had a long and uncomfortable trip, for he had been confined to the wooden box for over eighteen hours. The man was ordered to pay $3,500 for the cost of the trip. The normal price of a ticket is $2,000!\",\"textCustomTranslate\":\"当一架来自伦敦的飞机抵达悉尼机场时,工人们开始卸下装有服装的一批木箱。\\n其中有只箱子特别重,可谁也弄不清是怎么回事。\\n突然一个工人想到打开箱子看看。\\n看到的情景使吃惊,\\n箱内有一个人正躺在一堆毛织品之上。\\n他由于被人发现而感到非常吃惊,甚至都没有企图逃跑。\\n此人被逮捕后,承认他是在飞机离开伦敦前躲进箱里的。\\n他经历了一次漫长而又难受的旅程,因为他在那木箱里闷了18个多小时。\\n此人被责令交付旅费3,500英镑,\\n而正常票价是2,000英镑!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"yoj1Gh\",\"title\":\"A thirsty ghost\",\"titleTranslate\":\"嗜酒的鬼魂\",\"text\":\"A public house which was recently bought by Mr.Ian Thompson is up for sale. Mr.Thompson is going to sell it because it is haunted. He told me that he could not go to sleep one night because he heard a strange noise coming from the bar. The next morning, he found that the doors had been blocked by chairs and the furniture had been moved. Though Mr.Thompson had turned the lights off before he went to bed, they were on in the morning. He also said that he had found five empty whisky bottles which the ghost must have drunk the night before. When I suggested that some villagers must have come in for a free drink, Mr.Thompson shook his head. The villagers have told him that they will not accept the pub even if he gives it away.\",\"textCustomTranslate\":\"伊恩.汤普森先生最近才买的一个小酒店现在又要卖出去。\\n汤普森先生之所以想卖它,是因为那里常闹鬼。\\n他告诉我有天夜里他怎么也睡不着,因为他听到酒吧里传来一阵奇怪的响声。\\n第二天早上,他发现酒吧间的门被椅子堵上了,家具也被挪动过。\\n虽然汤普森临睡觉时把灯关了,但早晨灯却都亮着。\\n他还说他发现了5只空的威士忌瓶子,肯定是鬼魂昨天晚上喝的。\\n当我暗示说一定是村里有些人来喝不花钱的酒时,汤普森先生摇了摇头。\\n村里的人已经告诉他,即使他把小酒店白送人,他们也不要。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"HEZmNe\",\"title\":\"Did you want to tell me something?\",\"titleTranslate\":\"你想对我说什么吗?\",\"text\":\"Dentists always ask questions when it is impossible for you to answer. My dentist had just pulled out one of my teeth and had told me to rest for a while. I tried to say something, but my mouth was full of cotton wool. He knew I collected match boxes and asked me whether my collection was growing. He then asked me how my brother was and whether I liked my new job in London. In answer to these questions I either nodded or made strange noises. Meanwhile, my tongue was busy searching out the hole where the tooth had been. I suddenly felt very worried, but could not say anything. When the dentist at last removed the cotton wool from my mouth, I was able to tell him that he had pulled out the wrong tooth.\",\"textCustomTranslate\":\"牙科医生们总是在你无法作出回答的时候向你提出问题。\\n我的牙科医生刚刚给我拔掉了一颗牙,叫我休息一会儿。\\n我想说点什么,但我嘴里塞满了药棉。\\n他知道我收集火柴盒,于是问我收藏的米柴盒是否在增加。\\n接着他又问我的兄弟近来如何,问我是否喜欢伦敦的新工作。\\n作为对这些问题的回答,我不是点头,就是发出奇怪的声音。\\n与此同时,我的舌头正在忙着寻找刚拔掉的那颗牙的伤口。\\n我突然非常着急起来,但却什么也说不出来。\\n当那位牙医最后将药棉从我嘴中取出时,我总算有可能告诉他,他拔错了牙。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"7dSeQX\",\"title\":\"The end of a dream\",\"titleTranslate\":\"美梦告终\",\"text\":\"Tired of sleeping on the floor, a young man in Teheran saved up for years to buy a real bed. For the first time in his life, he became the proud owner of a bed which had springs and a mattress. Because the weather was very hot, he carried the bed on to the roof of his house. He slept very well for the first two nights, but on the third night, a storm blew up. A gust of wind swept the bed off the roof and sent it crashing into the courtyard below. The young man did not wake up until the bed had struck the ground. Although the bed was smashed to pieces, the man was miraculously unhurt. When he woke up, he was still on the mattress. Glancing at the bits of wood and metal that lay around him, the man sadly picked up the mattress and carried it into his house. After he had put it on the floor, he promptly went to sleep again.\",\"textCustomTranslate\":\"德黑兰的一个人年轻人由于对睡地板感到厌倦,于是积蓄多年买了一张真正的床。\\n他平生第一次自豪地拥有了一张既有弹簧又带床垫的床。\\n由于天气很热,他便把床搬到了他的屋顶上。\\n头两天晚上,他睡得非常好。但第三天晚上起了风暴。\\n一阵大风把床从屋顶上刮了下来,把它摔碎在下面的院子里。\\n那年轻人直到床撞到地上才醒了过来。\\n尽管床摔成了碎片,但年轻人却奇迹地没有受伤。\\n他醒来时,仍然躺在床垫上。\\n年轻人看了一眼周围的碎木片和碎金属片,伤心地捡起了床垫,把它拿进了屋。\\n他把床垫往地板上一放,很快又睡着了。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"1MQUC5\",\"title\":\"Taken for a ride\",\"titleTranslate\":\"乘车兜风\",\"text\":\"I love travelling in the country, but I dont like losing my way.\\nI went on an excursion recently, but my trip took me longer than I expected.\\nIm going to Woodford Green, I said to the conductor as I got on the bus, but I dont know where it is.\\nI'll tell you where to get off. answered the conductor.\\nI sat in the front of the bus to get a good view of the countryside. After some time, the bus stopped. Looking round, I realized with a shock that I was the only passenger left on the bus.\\nYoull have to get off here, the conductor said. This is as far as we go.\\nIs this Woodford Green? I asked.\\nOh dear, said the conductor suddenly. I forgot to put you off.\\nIt doesnt matter, I said. Ill get off here.\\nWere going back now, said the conductor.\\nWell, in that case, I prefer to stay on the bus, I answered.\",\"textCustomTranslate\":\"我喜欢在乡间旅行,但却不愿意迷路。\\n\\n最近我作了一次短途旅行,但这次旅行所花费的时间比我预计的要长。\\n\\n“我要去伍德福德草地,”我一上车就对售票员说,“但我不知道它在那儿。”\\n\\n“我来告诉您在哪儿下车,”\\n售票员回答说。\\n\\n我坐在汽车的前部,以便饱览农村风光。\\n过了一些时候,车停了。\\n我环视了一下身旁,惊奇地发现车里就只剩我一个乘客了。\\n\\n“您得在这里下车,”售票员说,\\n“我们的车就到此为止了。”\\n\\n“这里是伍德福德草地吗?”\\n我问道。\\n\\n“哎呀,”售票员突然说,\\n“我忘了让您下车了。”\\n\\n“没关系,”我说,\\n“我就在这儿下吧。”\\n\\n“我们现在要返回去,”售票员说。\\n\\n“好吧,既然如此,我还是留在车上吧。”\\n我回答说。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"pPg4Pm\",\"title\":\"Reward for virtue\",\"titleTranslate\":\"对美德的奖赏\",\"text\":\"My friend, Hugh, has always been fat, but things got so bad recently that he decided to go on a diet. He began his diet a week ago. First of all, he wrote out a long list of all the foods which were forbidden. The list included most of the things Hugh loves: butter, potatoes, rice, beer, milk, chocolate; and sweets. Yesterday I paid him a visit. I rang the bell and was not surprised to see that Hugh was still as fat as ever. He led me into his room and hurriedly hid a large parcel under his desk. It was obvious that he was very embarrassed. When I asked him what he was doing, he smiled guiltily and then put the parcel on the desk. He explained that his diet was so strict that he had to reward himself occasionally. Then he showed me the contents of the parcel. It contained five large bars of chocolate and three bags of sweets!\",\"textCustomTranslate\":\"我的朋友休一直很胖,但是近来情况变得越发糟糕,以致他决定节食。\\n他是一星期前开始节食的。\\n首先,他开列了一张长长的单子,上面列了所有禁吃的食物。\\n这张单子上的大多数食物都是休喜欢吃的:黄油、土豆、米饭、啤酒、牛奶、巧克力和糖果。\\n昨天我去看望了他。\\n我按响了门铃,当看到休仍和往常一样胖时,我并不感到惊奇。\\n他把我领进屋,慌忙把一个大包藏到了桌子下面。\\n显然他感到很尴尬。\\n当我问他正干什么时,他内疚地笑了,然后把那个大包拿到了桌上。\\n他解释说,他的饮食控制得太严格了,以致不得不偶尔奖赏自己一下。\\n接着他给我看了包里的东西。\\n里面装了5大块巧克力和3袋糖果!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"-89CcM\",\"title\":\"A pretty carpet\",\"titleTranslate\":\"漂亮的地毯\",\"text\":\"We have just moved into a new house and I have been working hard all morning. I have been trying to get my new room in order. This has not been easy because I own over a thousand books. To make matters worse, the room is rather small, so I have temporarily put my books on the floor. At the moment, they cover every inch of floor space and I actually have to walk on them to get in or out of the room. A short while ago, my sister helped me to carry one of my old bookcases up the stairs. She went into my room and got a big surprise when she saw all those books on the floor. This is the prettiest carpet I have ever seen, she said. She gazed at it for some time then added, You dont need bookcases at all. You can sit here in your spare time and read the carpet!\",\"textCustomTranslate\":\"我们刚刚搬进一所新房子,我辛辛苦苦地干了整整一个上午。\\n我试图把我的新房间收拾整齐,\\n但这并不容易,因为我有1,000多本书。\\n更糟糕的是房间还非常小,所以我暂时把书放在了地板上。\\n这会儿,书把地板的每一点空隙都占据了,我实际上是踩着这些书进出房间的。\\n几分钟前,我妹妹帮我把一个旧书橱抬上了楼。\\n她走进我的房间,当她看到地板上的那些书时,大吃一惊。\\n“这是我见过的最漂亮的地毯,”她说。\\n她盯着“地毯”看了一会儿,又说:“你根本用不着书橱,\\n空闲时你可以坐在这儿读地毯!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"u-Me1F\",\"title\":\"Hot snake\",\"titleTranslate\":\"触电的蛇\",\"text\":\"At last firemen have put out a big forest fire in California. Since then, they have been trying to find out how the fire began. Forest fires are often caused by broken glass or by cigarette ends which people carelessly throw away. Yesterday the firemen examined the ground carefully, but were not able to find any broken glass. They were also quite sure that a cigarette end did not start the fire. This morning, however, a firemen accidentally discovered the cause. He noticed the remains of a snake which was wound round the electric wires of a 16,000-volt power line. In this way, he was able to solve the mystery. The explanation was simple but very unusual. A bird had snatched up the snake from the ground and then dropped it on to the wires. The snake then wound itself round the wires. When it did so, it sent sparks down to the ground and these immediately started a fire.\",\"textCustomTranslate\":\"消防队员们终于扑灭了加利福尼亚的一场森林大火。\\n从那时起,他们一直试图找出起火的原因。\\n森林火灾时常由破碎的玻璃或人们随手扔掉的香烟头引起。\\n昨天,消防队员仔细查看了地面,但未能发现碎玻璃。\\n他们还十分肯定火灾也不是由烟头引起的。\\n然而今天上午,一个消防队员偶然发现了起火的原因。\\n他发现了缠绕在16,000伏高压线上的一条死蛇。\\n就这样,他解开了起火之谜。\\n解释很简单,却异乎寻常。\\n一只鸟把蛇从地上抓起来,然后把它扔到了电线上。\\n于是蛇就缠住了几根电线。\\n当它这样做时,把火花送到了地面,这些火花立刻引起了一场大火。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"GJv23M\",\"title\":\"Sticky fingers\",\"titleTranslate\":\"粘糊的手指\",\"text\":\"After breakfast, I sent the children to school and then I went to the shops. It was still early when I returned home. The children were at school, my husband was at work and the house was quiet. So I decided to make some meat pies. In a short time I was busy mixing butter and flour and my hands were soon covered with sticky pastry. At exactly that moment, the telephone rang. Nothing could have been more annoying. I picked up the receiver between two sticky fingers and was dismayed when I recognized the voice of Helen Bates. It took me ten minutes to persuade her to ring back later. At last I hung up the receiver. What a mess! There was pastry on my fingers, on the telephone, and on the doorknobs. I had no sooner got back to the kitchen than the doorbell rang loud enough to wake the dead. This time it was the postman and he wanted me to sign for a registered letter!\",\"textCustomTranslate\":\"早饭后,我送孩子们上学,然后就去了商店。\\n我回到家时,时间还早。\\n孩子们在上学,我丈夫在上班,家里清静得很。\\n于是我决定做些肉馅饼。\\n不一会儿我就忙着调拌起了黄油和面粉,很快我的手上就沾满了粘粘的面糊。\\n恰恰在此时,电话铃响了。\\n没有什么能比这更烦人了。\\n我用两个沾满面糊的手指捏起了话筒。当听出是海伦.贝茨的声音时,非常丧气。\\n我用了10分钟的时间才说服她过会儿再来电话。\\n我终于挂上了话筒。\\n真是糟糕透了!\\n我的手指上、电话机上以及门的把手上,都沾上了面糊。\\n我刚回到厨房,门铃又响了起来,响声足以把死人唤醒。\\n这次是邮递员,他要我签收一封挂号信!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"vTEfM6\",\"title\":\"Not a gold mine\",\"titleTranslate\":\"并非金矿\",\"text\":\"Dreams of finding lost treasure almost came true recently. A new machine called The Revealer has been invented and it has been used to detect gold which has been buried in the ground. The machine was used in a cave near the seashore where -- it is said -- pirates used to hide gold. The pirates would often bury gold in the cave and then fail to collect it. Armed with the new machine, a search party went into the cave hoping to find buried treasure. The leader of the party was examining the soil near the entrance to the cave when the machine showed that there was gold under the ground. Very excited, the party dug a hole two feet deep. They finally found a small gold coin which was almost worthless. The party then searched the whole cave thoroughly but did not find anything except an empty tin trunk. In spite of this, many people are confident that The Revealer may reveal something of value fairly soon.\",\"textCustomTranslate\":\"最近,找到失踪宝藏的梦想差一点儿变成现实。\\n一种叫“探宝器”的新机器已经发明出来,并被人们用来探测地下埋藏的金子。\\n在靠近海边的一个据说过去海盗常在里面藏金子的岩洞里,这种机器被派上了用场。\\n海盗们过去常把金子埋藏在那个洞里,可后来却没能取走。\\n一支用这种新机器装备起来的探宝队进入了这个岩洞,希望找到埋藏着的金子。\\n当这个队的队长正在检查洞口附近的土壤时,那台机器显示出它的下面埋有金子。\\n队员们异常激动,就地挖了一个两英尺深的坑,\\n但最后找到的是一枚几乎一钱不值的小金币。\\n队员们接着又把整个洞彻底搜寻了一遍,但除了一只空铁皮箱外什么也没找到。\\n尽管如此,很多人仍然相信“探宝器”很快就会探出值钱的东西来。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"ZL7Pn2\",\"title\":\"Faster than sound!\",\"titleTranslate\":\"比声音还快!\",\"text\":\"Once a year, a race is held for old cars. A lot of cars entered for this race last year and there was a great deal of excitement just before it began. One of the most handsome cars was a Rolls-Royce Silver Ghost. The most unusual car was a Benz which had only three wheels. Built in 1885, it was the oldest car taking part. After a great many loud explosions, the race began. Many of the cars broke down on the course and some drivers spent more time under their cars than in them! A few cars, however, completed the race. The winning car reached a speed of forty miles an hour -- much faster than any of its rivals. It sped downhill at the end of the race and its driver had a lot of trouble trying to stop it. The race gave everyone a great deal of pleasure. It was very different from modern car races but no less exciting.\",\"textCustomTranslate\":\"旧式汽车的比赛每年举行一次。\\n去年有很多汽车参加了这项比赛。比赛开始之前,人们异常激动。\\n最漂亮的汽车之一是罗尔斯--罗伊斯生产的银鬼汽车,\\n而最不寻常的一辆则要属只有3只轮子的奔驰牌汽车了。\\n该车造于1885年,是参赛车中最老的一辆。\\n在好一阵喧闹的爆炸声之后,比赛开始了。\\n很多汽车在途中就抛了锚,而有些驾驶员花在汽车底下的时间比坐在汽车里面的时间还长。\\n然而还是有几辆汽车跑完了全程。\\n获胜的那辆车达到了时速40英里--远远超过任何对手。\\n它在接近终点时,冲下了山坡,驾驶员费了好大劲才把车停下来。\\n这次比赛使每个人都挺开心。\\n它虽然与现代汽车比赛大不相同,但激动人心的程度并不亚于现代化汽车大赛。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"hSgPSL\",\"title\":\"Can I help you, madam?\",\"titleTranslate\":\"您要买什么,夫人?\",\"text\":\"A woman in jeans stood at the window of an expensive shop. Though she hesitated for a moment, she finally went in and asked to see a dress that was in the window. The assistant who served her did not like the way she was dressed. Glancing at her scornfully, he told her that the dress was sold. The woman walked out of the shop angrily and decided to punish the assistant next day. She returned to the shop the following morning dressed in a fur coat, with a handbag in one hand and a long umbrella in the other. After seeking out the rude assistant, she asked for the same dress. Not realizing who she was, the assistant was eager to serve her this time. With great difficulty, he climbed into the shop window to get the dress. As soon as she saw it, the woman said she did not like it. She enjoyed herself making the assistant bring almost everything in the window before finally buying the dress she had first asked for.\",\"textCustomTranslate\":\"一位穿着牛仔裤的妇女站在一家高档商店的橱窗前。\\n她虽然犹豫了片刻,但终于还是走进了商店,要求把陈列在橱窗里的一件衣服拿给她看。\\n接待她的售货员不喜欢她的那副打扮,\\n轻蔑地看了她一眼后,便告诉她那件衣服已经卖出去了。\\n这位妇女怒气冲冲地走出了商店,决定第二天教训一下那个售货员。\\n第二天上午,她又来到这家商店,穿了一件裘皮大衣,一只手拎着一只手提包,另一只手拿着一把长柄伞。\\n找到那个无礼的售货员后,她还要看昨天的那件衣服。\\n那个售货员没有认出她是谁,这一回接待她的态度非常殷勤。\\n费了好大劲儿,他爬进橱窗去取那件衣服。\\n这位妇女对那件衣服只看一眼,就说不喜欢。\\n她开心地迫使那位售货员把橱窗里几乎所有的东西都拿了出来,最后才买下了她最先要看的那一件。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"EzpQiI\",\"title\":\"A blessing in disguise?\",\"titleTranslate\":\"是因祸得福吗?\",\"text\":\"The tiny village of Frinley is said to possess a cursed tree. Because the tree was mentioned in a newspaper, the number of visitors to Frinley has now increased. The tree was planted near the church fifty years ago, but it is only in recent years that it has gained an evil reputation. It is said that if anyone touches the tree, he will have bad luck; if he picks a leaf, he will die. Many villagers believe that the tree has already claimed a number of victims. The vicar has been asked to have the tree cut down, but so far he has refused. He has pointed out that the tree is a useful source of income, as tourists have been coming from all parts of the country to see it. In spite of all that has been said, the tourists have been picking leaves and cutting their names on the tree-trunk. So far, not one of them has been struck down by sudden death!\",\"textCustomTranslate\":\"据说弗林利这个小村里有一棵“该诅咒的树”。\\n就因为报上提到过这棵树,所以现在来弗林利参观的人越来越多。\\n该树是50年前栽在教堂附近的,但只是近几年才得到了一个坏名声。\\n据说,谁要是触摸了这棵树,谁就会交上恶运;如果谁摘了一片树叶,谁就会死去。\\n很多村民相信此树已经害了不少人。\\n人们曾请求教区的牧师叫人把树砍掉,但他直到现在也没有同意。\\n他指出,由于人们从全国各地纷纷前来参观这棵树,它成了一个有用的财源。\\n尽管有上述种种说法,但游客们还是照常摘树叶和把他们的名字刻在树干上。\\n然而到目前为止,还没有一个人暴死呢!\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"Zwe7w7\",\"title\":\"In or out?\",\"titleTranslate\":\"进来还是出去?\",\"text\":\"Our dog, Rex, used to sit outside our front gate and bark. Every time he wanted to come into the garden he would bark until someone opened the gate. As the neighbours complained of the noise, my husband spent weeks training him to press his paw on the latch to let himself in. Rex soon became an expert at opening the gate. However, when I was going out shopping last week, I noticed him in the garden near the gate. This time he was barking so that someone would let him out! Since then, he has developed another bad habit. As soon as he opens the gate from the outside, he comes into the garden and waits until the gate shuts. Then he sits and barks until someone lets him out. After this he immediately lets himself in and begins barking again. Yesterday my husband removed the gate and Rex got so annoyed we have not seen him since.\",\"textCustomTranslate\":\"我家的狗雷克斯,过去常坐在大门外面叫。\\n每当它想到花园里来时,便汪汪叫个不停,直到有人把门打开。\\n由于邻居们对狗叫很有意见,所以我丈夫花了几个星期的时间训练它用脚爪按住门闩把自己放进来。\\n雷克斯很快成了开门的专家。\\n然而上星期我正要出去买东西时,发现它正呆在花园里边靠门的地方。\\n这次它叫着让人把它放出去!\\n从那以后,它养成了另外一种坏习惯。\\n它从外面把门一打开,就走进花园,等着门自动关上。\\n这之后他就坐下汪汪叫起来,直到有人来把它放出去。\\n出去之后,它又马上把自己放进来,接着再开始叫。\\n昨天,我丈夫把门卸了下来,雷克斯很生气,此后我们便再也没有见到它。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"GvgYGK\",\"title\":\"The future\",\"titleTranslate\":\"卜算未来\",\"text\":\"At a village fair, I decided to visit a fortune-teller called Madam Bellinsky. I went into her tent and she told me to sit down. After I had given her some money, she looked into a crystal ball and said: A relation of yours is coming to see you. She will be arriving this evening and intends to stay for a few days. The moment you leave this tent, you will get a big surprise. A woman you know well will rush towards you. She will speak to you and then she will lead you away from this place. That is all.\\nAs soon as I went outside, I forgot all about Madam Bellinsky because my wife hurried towards me. Where have you been hiding? she asked impatiently. Your sister will be here in less than an hour and we must be at the station to meet her. We are late already. As she walked away, I followed her out of the fair.\",\"textCustomTranslate\":\"在一个乡村集市上,我决定去拜访一位称作别林斯夫人的算命人。\\n我走进她的帐篷,她叫我坐下。\\n我给了她一些钱后,她便查看着一个水晶球说道:“您的一个亲戚 就要来看您了。\\n她将于今天傍晚到达,并准备住上几天。\\n您一走出这个帐篷,就会大吃一惊。\\n一位您很熟悉的女人将向您冲来。\\n她会对您说点什么,然后带您离开这 个地方。\\n就是这些。”\\n\\n我一走出帐篷,就把别林斯基夫人给算卦的事忘得一干二净了,因为我的妻子正匆匆向我跑来。\\n“你躲到哪儿去了?”\\n她不耐烦地问,\\n“再有不到一个小时你姐姐就要到这儿了,我们得去车站接她。\\n现在就已经晚了。”\\n当她走开时,我也跟着她出了集市。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"szjJat\",\"title\":\"Trouble with the Hubble\",\"titleTranslate\":\"哈勃望远镜的困境\",\"text\":\"The Hubble telescope was launched into space by NASA on April 20,1990 at a cost of over a billion dollars. Right from the start there was trouble with the Hubble. The pictures it sent us were very disappointing because its main mirror was faulty! NASA is now going to put the telescope right, so it will soon be sending up four astronauts to repair it. The shuttle Endeavour will be taking the astronauts to the Hubble. A robot-arm from the Endeavour will grab the telescope and hold it while the astronauts make the necessary repairs. Of course, the Hubble is above the earths atmosphere, so it will soon be sending us the clearest pictures of the stars and distant galaxies that we have ever seen. The Hubble will tell us a great deal about the age and size of the universe. By the time you read this, the Hubbles eagle eye will have sent us thousands and thousands of wonderful pictures.\",\"textCustomTranslate\":\"哈勃望远镜于1990年4月20日由国家航空航天局发射升空,耗资10多亿美元。\\n从最开始哈勃望远镜就有问题。\\n它传送给我们的图像很令人失望,因为它的主要镜子有误差。\\n国家航天局准备纠正这一错误,为此将把4名宇航员送入太空修复望远镜。\\n“奋进”号航天飞机将把宇航员送上哈勃。\\n当宇航员进行必要的修复工作时,“奋进”号上的一只机器手将抓住望远镜并托住它。\\n当然,哈勃位于地球的大气层之外,因此,它很快就会给我们传送我们所见到过的、有关行星和远距离星系的最清晰的照片。\\n哈勃将告诉我们有关宇宙的年龄和大小的许多事情。\\n等到你读到这篇文章时,敏锐的哈勃望远镜已经为我们送来了成千上万张精彩的照片。\",\"textNetworkTranslate\":\"1990年4月20日,美国国家航空航天局将哈勃望远镜发射到太空,耗资超过10亿美元。\\n哈勃望远镜从一开始就有问题。\\n它发给我们的照片非常令人失望,因为它的主镜出了故障!\\n美国国家航空航天局现在将修复望远镜,因此很快将派出四名宇航员对其进行维修。\\n奋进号航天飞机将把宇航员送往哈勃望远镜。\\n奋进号的一个机械臂将抓住望远镜并在宇航员进行必要的维修时握住它。\\n当然,哈勃望远镜位于地球大气层上方,因此它将很快向我们发送我们所见过的最清晰的恒星和遥远星系的照片。\\n哈勃望远镜将告诉我们许多关于宇宙年龄和大小的信息。\\n当你读到这篇文章的时候,Hubbles鹰眼已经给我们发送了成千上万的精彩图片。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"0Y7fXy\",\"title\":\"After the fire\",\"titleTranslate\":\"大火之后\",\"text\":\"Firemen had been fighting the forest for nearly three weeks before they could get it under control. A short time before, great trees had covered the countryside for miles around. Now, smoke still rose up from the warm ground over the desolate hills. Winter was coming on and the hills threatened the surrounding villages with destruction, for heavy rain would not only wash away the soil but would cause serious floods as well. When the fire had at last been put out, the forest authorities ordered several tons of a special type of grass-seed which would grow quickly. The seed was sprayed over the ground in huge quantities by aeroplanes. The planes had been planting seed for nearly a month when it began to rain. By then, however, in many places the grass had already taken root. In place of the great trees which had been growing there for centuries patches of green had begun to appear in the blackened soil.\",\"textCustomTranslate\":\"消防队员们同那场森林大火搏斗了将近3个星期才最后把火势控制住。\\n就在不久之前,参天大树还覆盖着方圆数英里的土地。\\n而现在,发热的地面上仍然升腾着烟雾,弥漫在荒凉的山丘上。\\n冬季即将来临,这些山丘对周围的村庄具有毁灭性的威胁,因为大雨不仅会冲走土壤,而且还会引起严重的水灾。\\n在大火最后被扑灭后,森林管理当局订购了好几吨一种生长迅速的特殊类型的草籽。\\n飞机把这种草籽大量地撒播在地上。\\n飞机撒播近一个月后,开始下起雨来。\\n然而到那时,很多地方的草已经生了根。\\n一片片的绿草开始出现在这片烧焦的土地上,代替了多少世纪以来一直生长在那里的参天大树。\",\"textNetworkTranslate\":\"消防员在控制森林之前已经与森林搏斗了近三个星期。\\n不久前,大树已经覆盖了方圆数英里的乡村。\\n现在,烟雾仍然从温暖的地面上升起,笼罩在荒凉的山丘上。\\n冬天即将来临,山丘威胁着周围的村庄,因为大雨不仅会冲走土壤,还会引发严重的洪水。\\n当大火最终被扑灭后,森林管理部门订购了几吨能快速生长的特殊草籽。\\n飞机把种子大量地撒在地上。\\n飞机已经播种了将近一个月,这时开始下雨了。\\n然而,到那时,许多地方的草已经生根了。\\n变黑的土壤中开始出现一片绿色,取代了在那里生长了几个世纪的大树。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"6R-KFQ\",\"title\":\"She was not amused\",\"titleTranslate\":\"她并不觉得好笑\",\"text\":\"Jeremy Hampden has a large circle of friends and is very popular at parties. Everybody admires him for his great sense of humour -- everybody, that is, except his six-year-old daughter, Jenny. Recently, one of Jeremys closest friends asked him to make a speech at a wedding reception. This is the sort of thing that Jeremy loves. He prepared the speech carefully and went to the wedding with Jenny. he had included a large number of funny stories in the speech and, of course, it was a great success. As soon as he had finished, Jenny told him she wanted to go home. Jeremy was a little disappointed by this but he did as his daughter asked. On the way home, he asked Jenny if she had enjoyed the speech. To his surprise, she said she hadnt. Jeremy asked her why this was so and she told him that she did not like to see so many people laughing at him!\",\"textCustomTranslate\":\"杰里米.汉普登交际甚广,是各种聚会上深受大家欢迎的人。\\n人人都钦佩他那绝妙的幽默感 -- 人人,就是说,除他6岁的女儿珍妮之外的每一个人。\\n最近,杰里米的一个最亲密的朋友请他在一个婚礼上祝词。\\n这正是杰里米喜欢做的事情。\\n他认真准备了讲稿,带着珍妮一道去参加了婚礼。\\n他的祝词里面加进了大量逗人的故事,自然大获成功。\\n他刚一讲完,珍妮就对他说她要回家。\\n这不免使杰里米有点扫兴,但他还是按照女儿的要求做了。\\n在回家的路上,他问珍妮是否喜欢他的祝词。\\n使他吃惊的是,她说她不喜欢。\\n杰里米问他为何不喜欢,她说她不愿意看到那么多的人嘲笑他!\",\"textNetworkTranslate\":\"Jeremy Hampden有一大群朋友,在聚会上很受欢迎。\\n每个人都钦佩他的幽默感——每个人,也就是说,除了他六岁的女儿珍妮。\\n最近,Jeremy的一个最亲密的朋友邀请他在婚礼招待会上发表演讲。\\n这就是Jeremy喜欢的东西。\\n他精心准备了演讲稿,和珍妮一起去参加了婚礼。\\n他在演讲中加入了许多有趣的故事,当然,这是一个巨大的成功。\\n他刚说完,珍妮就告诉他她想回家。\\nJeremy对此有点失望,但他按照女儿的要求做了。\\n在回家的路上,他问珍妮是否喜欢这次演讲。\\n令他惊讶的是,她说她没有。\\nJeremy问她为什么会这样,她告诉他,她不喜欢看到这么多人嘲笑他!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"xlYzpJ\",\"title\":\"The Channel Tunnel\",\"titleTranslate\":\"海峡隧道\",\"text\":\"In 1858, a French engineer, Aime Thome de Gamond, arrived in England with a plan for a twenty-one-mile tunnel under the English Channel. He said that it would be possible to build a platform in the centre of the Channel. This platform would serve as a port and a railway station. The tunnel would be well-ventilated if tall chimneys were built above sea level. In 1860, a better plan was put forward by an Englishman, William Low. He suggested that a double railway-tunnel should be built. This would solve the problem of ventilation, for if a train entered this tunnel, it would draw in fresh air behind it. Forty-two years later a tunnel was actually begun. If, at the time, the British had not feared invasion, it would have been completed. The world had to wait almost another 100 years for the Channel Tunnel. It was officially opened on March 7,1994, finally connecting Britain to the European continent.\",\"textCustomTranslate\":\"1858年,一位名叫埃梅.托梅.德.干蒙的法国工程师带着建造一条长21英里、穿越英吉利海陕的隧道计划到了英国。\\n他说,可以在隧道中央建造一座平台,这座平台将用作码头和火车站。\\n如果再建些伸出海面的高大的烟囱状通风管,隧道就具备了良好的通风条件。\\n1860年,一位名叫威廉.洛的英国人提出了一项更好的计划。\\n他提议建一条双轨隧道,这样就解决了通风问题。\\n因为如果有列火车开进隧道,它就把新鲜空气随之抽进了隧道。\\n42年以后,隧道实际已经开始建了。\\n如果不是因为那时英国人害怕入侵,隧道早已建成了。\\n世界不得不再等将近100年才看到海峡隧道竣工。\\n它于1994年3月7日正式开通,将英国与欧洲大陆连到了一起。\",\"textNetworkTranslate\":\"1858年,法国工程师Aime Thome de Gamond抵达英国,计划在英吉利海峡下修建一条21英里长的隧道。\\n他说,有可能在海峡中心建造一个平台。\\n这个站台将用作港口和火车站。\\n如果高高的烟囱建在海平面以上,隧道就会通风良好。\\n1860年,英国人William Low提出了一个更好的计划。\\n他建议修建一条双线隧道。\\n这将解决通风问题,因为如果火车进入隧道,它会在后面吸入新鲜空气。\\n四十二年后,一条隧道真正开始了。\\n如果当时英国人不害怕入侵,它早就完成了。\\n全世界不得不再等将近100年才能看到英吉利海峡隧道。\\n它于1994年3月7日正式开放,最终将英国与欧洲大陆连接起来。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"phsCYn\",\"title\":\"Jumbo versus the police\",\"titleTranslate\":\"小象对警察\",\"text\":\"Last Christmas, the circus owner, Jimmy Gates, decided to take some presents to a childrens hospital. Dressed up as Father Christmas and accompanied by a guard of honour of six pretty girls, he set off down the main street of the city riding a baby elephant called Jumbo. He should have known that the police would never allow this sort of thing. A policeman approached Jimmy and told him he ought to have gone along a side street as Jumbo was holding up the traffic. Though Jimmy agreed to go at once, Jumbo refused to move. Fifteen policemen had to push very hard to get him off the main street. The police had a difficult time, but they were most amused. Jumbo must weigh a few tons, said a policeman afterwards, so it was fortunate that we didnt have to carry him. Of course, we should arrest him, but as he has a good record, we shall let him off this time.\",\"textCustomTranslate\":\"去年圣诞节,马戏团老板吉米.盖茨决定送些礼物给儿童医院。\\n他打扮成圣诞老人,在由6个漂亮姑娘组成的“仪仗队”的陪同下,骑上一头名叫江伯的小象,沿着城里的主要街道出发了。\\n他本该知道警察绝不会允许这类事情发生。\\n一个警察走过来告诉吉米,他应该走一条小路,因为江泊阻碍了交通。\\n虽然吉米同意马上就走,但江伯却拒绝移动。\\n15个警察不得不用很大的力气把它推离主要街道。\\n警察虽然吃了苦头,但他们还是感到很有趣。\\n“江伯一定有好几吨重,”一个警察事后这样说,“值得庆幸的是它没让我们抬它走。\\n当然,我们应该逮捕它,但由于它一贯表现很好,这次我们饶了它。”\",\"textNetworkTranslate\":\"去年圣诞节,马戏团老板吉米·盖茨决定带一些礼物去儿童医院。\\n他打扮成圣诞老人,在六个漂亮女孩的仪仗队的陪同下,骑着一头名叫Jumbo的小象沿着城市的主要街道出发。\\n他应该知道警察绝不允许这种事情发生。\\n一名警察走近吉米,告诉他他应该沿着一条小街走,因为Jumbo阻碍了交通。\\n虽然吉米同意马上走,但琼博拒绝动。\\n为了把他从大街上救下来,15名警察不得不奋力推挤。\\n警察们度过了一段艰难的时光,但他们最开心的是。\\n一位警察事后说:“这只巨鲸一定有几吨重,所以幸运的是我们不用背它。”。\\n当然,我们应该逮捕他,但由于他有良好的记录,这次我们会放过他。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"uDtDYX\",\"title\":\"Sweet as honey!\",\"titleTranslate\":\"像蜜一样甜!\",\"text\":\"In 1963 a Lancaster bomber crashed on Wallis Island, a remote place in the South Pacific, a long way west of Samoa. The plane wasnt too badly damaged, but over the years, the crash was forgotten and the wreck remained undisturbed. Then in 1989, twenty-six years after the crash, the plane was accidentally rediscovered in an aerial survey of the island. By this time, a Lancaster bomber in reasonable condition was rare and worth rescuing. The French authorities had the plane packaged and moved in parts back to France. Now a group of enthusiasts are going to have the plane restored. It has four Rolls-Royce Merlin engines, but the group will need to have only three of them rebuilt. Imagine their surprise and delight when they broke open the packing cases and found that the fourth engine was sweet as honey -- still in perfect condition. A colony of bees had turned the engine into a hive and it was totally preserved in beeswax!\",\"textCustomTranslate\":\"1963年,一架兰开斯特轰炸机在瓦立斯岛毁。\\n那是南太洋中一个很偏僻的小岛,位于萨摩亚群岛以西,距离群岛还有很长一段距离。\\n飞机损坏的程度并不严重,但是,多年来这起飞机失事已被遗忘,飞机残骸也没受到破坏。\\n于是,到了1989年,飞机失事26年后,在对小岛的一次航空勘查中那架飞机被意外地发现了。\\n到了那个时候,状况良好的兰开斯特轰炸机实属罕见,值得抢救。\\n法国政府让人把飞机包装起来,一部分一部分地搬回法国。\\n一群热心人计划修复这架飞机。\\n该飞机装装配有4台罗尔斯-罗伊斯的默林发动机,但是他们只需要修复其中的3台。\\n想一想他们所感受到的惊奇和兴奋 —— 当他们拆开包装箱时,他们发现第4台发动机就像蜂蜜一样甜 —— 发动机完好无损。\\n一群蜜蜂把发动机当作了蜂房,发动机在蜂蜡中被完整地保存了下来。\",\"textNetworkTranslate\":\"1963年,一架兰开斯特轰炸机在萨摩亚以西很远的南太平洋偏远地区瓦利斯岛坠毁。\\n这架飞机没有受到太严重的损坏,但多年来,坠机事件被遗忘了,残骸也没有受到干扰。\\n1989年,也就是坠机26年后,这架飞机在对该岛的一次空中调查中意外被重新发现。\\n此时,一架状况良好的兰开斯特轰炸机已经很少见,值得抢救。\\n法国当局已将这架飞机包装好,并将其零件运回法国。\\n现在,一群爱好者将修复这架飞机。\\n它有四台劳斯莱斯梅林发动机,但该集团只需要重建其中三台。\\n想象一下,当他们打开包装箱,发现第四台发动机像蜂蜜一样甜——仍然完好无损时,他们的惊讶和喜悦。\\n一群蜜蜂把发动机变成了蜂箱,它完全保存在蜂蜡中!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"iEKPy1\",\"title\":\"Volcanoes\",\"titleTranslate\":\"火山\",\"text\":\"Haroun Tazieff, the Polish scientist, has spent his lifetime studying active volcanoes and deep caves in all parts of the world. In 1948, he went to Lake Kivu in the Congo to observe a new volcano which he later named Kituro. Tazieff was able to set up his camp very close to the volcano while it was erupting violently. Though he managed to take a number of brilliant photographs, he could not stay near the volcano for very long. He noticed that a river of liquid rock was coming towards him. It threatened to surround him completely, but Tazieff managed to escape just in time. He waited until the volcano became quiet and he was able to return two days later. This time, he managed to climb into the mouth of Kituro so that he could take photographs and measure temperatures. Tazieff has often risked his life in this way. He has been able to tell us more about active volcanoes than any man alive.\",\"textCustomTranslate\":\"波兰科学家哈罗恩.塔捷耶夫花了毕生的精力来研究世界各地的活火山和探洞。\\n1948年他去了刚果的基伍湖,对一座后来被他命名为基图罗的新火山进行观察。\\n当火山正在猛烈地喷发时,塔捷耶夫有办法把帐篷搭在离它非常近的地方。\\n尽管他设法拍了一些十分精彩的照片,但他却不能在火山附近停留太长的时间。\\n他发现有一股岩浆正向他流过来,眼看就要将他团团围住,但塔捷耶夫还是设法及时逃离了。\\n他等到火山平静下来,两天以后又返回去。\\n这次他设法爬进了基图罗火山口,以便能拍摄照片和测试温度。\\n塔捷耶夫经常冒这样的生命危险。\\n他能告诉我们的有关活火山的情况比任何在世的人都要多。\",\"textNetworkTranslate\":\"波兰科学家Haroun Tazieff毕生致力于研究世界各地的活火山和深洞穴。\\n1948年,他前往刚果的基伍湖观察一座新火山,后来他将其命名为基图罗火山。\\n当火山猛烈喷发时,塔齐耶夫能够在离火山很近的地方扎营。\\n尽管他成功地拍下了许多精彩的照片,但他无法在火山附近呆很长时间。\\n他注意到一条液态岩石的河流正向他袭来。\\n它威胁要完全包围他,但塔齐耶夫及时逃脱了。\\n他一直等到火山安静下来,两天后才得以返回。\\n这一次,他设法爬进了Kituro河口,以便拍照和测量温度。\\n塔齐耶夫经常以这种方式冒着生命危险。\\n他比任何活着的人都能告诉我们更多关于活火山的信息。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"Q3DySe\",\"title\":\"Persistent\",\"titleTranslate\":\"纠缠不休\",\"text\":\"I crossed the street to avoid meeting him, but he saw me and came running towards me. It was no use pretending that I had not seen him, so I waved to him. I never enjoy meeting Nigel Dykes. He never has anything to do. No matter how busy you are, he always insists on coming with you. I had to think of a way of preventing him from following me around all morning.\\nHello, Nigel, I said. Fancy meeting you here!\\nHi, Elizabeth, Nigel answered. I was just wondering how to spend the morning -- until I saw you. Youre not busy doing anything, are you?\\nNo, not at all, I answered. Im going to...\\nWould you mind my coming with you? he asked, before I had finished speaking.\\nNot at all, I lied, but Im going to the dentist.\\nThen Ill come with you, he answered. Theres always plenty to read in the waiting room!\",\"textCustomTranslate\":\"我穿过马路以便避开他,但他看到我并朝我跑过来。\\n若再装作没看见他已是没有用了,我只好向他招手。\\n我就怕遇到奈杰尔.戴克斯。\\n他从来都是无事可做,不管你多忙,他总是坚持要跟你去。\\n我得想办法不让他整个上午缠着我。\\n\\n“你好,奈杰尔,想不到在这儿见到你。”\\n我说。\\n\\n“你好,伊丽莎白,”奈杰尔回答说,“我正不知道怎么消磨这一上午呢,正好见到好。\\n你不忙,是吗?”\\n\\n“不,不忙,我打算去......”我回答。\\n\\n“我跟你一道去行吗?”\\n没等我说完话他就问道。\\n\\n“没关系,但我准备去牙医那里。”\\n我说了个谎。\\n\\n“那我也跟你去,候诊室里总有很多东西可供阅读!”\\n他回答。\",\"textNetworkTranslate\":\"我过马路以免碰到他,但他看到了我,朝我跑过来。\\n假装没看见他是没有用的,所以我向他挥手。\\n我从不喜欢见到奈杰尔·戴克斯。\\n他从来没有什么事可做。\\n不管你有多忙,他总是坚持要和你一起去。\\n我不得不想办法防止他整个上午都跟着我。\\n\\n你好,奈杰尔,我说。\\n真想在这里见到你!\\n\\n嗨,伊丽莎白,奈杰尔回答。\\n我只是想知道如何度过这个上午——直到我见到你。\\n你什么都不忙,是吗?\\n\\n不,一点也不,我回答。\\n我要。。。\\n\\n你介意我和你一起去吗?\\n我还没说完,他就问道。\\n\\n一点也不,我撒谎了,但我要去看牙医。\\n\\n“那我跟你一起去,”他回答。\\n候诊室里总是有很多书要读!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"BeEZY0\",\"title\":\"But not murder!\",\"titleTranslate\":\"并非谋杀!\",\"text\":\"I was being tested for a driving licence for the third time. I had been asked to drive in heavy traffic and had done so successfully. After having been instructed to drive out of town, I began to acquire confidence. Sure that I had passed, I was almost beginning to enjoy my test. The examiner must have been pleased with my performance, for he smiled and said. Just one more thing, Mr.Eames. Let us suppose that a child suddenly crosses the road in front of you. As soon as I tap on the window, you must stop within five feet. I continued driving and after some time, the examiner tapped loudly, Though the sound could be heard clearly, it took me a long time to react. I suddenly pressed the brake pedal and we were both thrown forward. The examiner looked at me sadly. Mr.Eames, he said, in a mournful voice, you have just killed that child!\",\"textCustomTranslate\":\"我第3次接受驾驶执照考试。\\n按照要求在车辆拥挤的路上驾驶,我圆满地完成了。\\n在接到把车开出城的指令后,我开始有了信心。\\n确信我已通过考试,所以我几乎开始喜欢起这次考试。\\n主考人对我的驾驶想必是满意的,因为他微笑着说:“埃姆斯先生,只剩1项了。\\n让我们假设一个小孩子突然在你前面穿过马路。\\n我一敲车窗,你必须把车停在5英尺之内。”\\n我继续往前开着。\\n过了一会儿,主考人砰砰地敲了起来。\\n虽然声音听得很清楚,但我过了好一会儿才作出反应。\\n我突然用力踩紧刹车踏板,结果我俩的身体都向前冲去。\\n主考人伤心地看着我。\\n“埃姆斯先生,”他以悲伤的声调说,“你刚刚把那个小孩压死了!”\",\"textNetworkTranslate\":\"我正在接受第三次驾驶执照考试。\\n我被要求在交通繁忙的时候开车,而且我成功地做到了。\\n在接到开车出城的指示后,我开始有了信心。\\n确信我已经通过了考试,我几乎开始享受我的考试了。\\n考官一定对我的表现很满意,因为他笑着说。\\n还有一件事,埃姆斯先生。\\n让我们假设一个孩子突然在你面前过马路。\\n我一敲窗户,你就必须在五英尺以内停下。\\n我继续开车,过了一段时间,考官大声地拍了拍。虽然声音听得很清楚,但我花了很长时间才做出反应。\\n我突然踩下刹车踏板,我们都被向前甩了出去。\\n考官悲伤地看着我。\\n埃姆斯先生,他悲伤地说,你刚刚杀了那个孩子!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"T0qUYr\",\"title\":\"Red for danger\",\"titleTranslate\":\"危险的红色\",\"text\":\"During a bullfight, a drunk suddenly wandered into the middle of the ring. The crowd began to shout, but the drunk was unaware of the danger. The bull was busy with the matador at the time, but it suddenly caught sight of the drunk who was shouting rude remarks and waving a red cap. Apparently sensitive to criticism, the bull forgot all about the matador and charged at the drunk. The crowd suddenly grew quiet. The drunk, however, seemed quite sure of himself. When the bull got close to him, he clumsily stepped aside to let it pass. The crowd broke into cheers and the drunk bowed. By this time, however, three men had come into the ring and they quickly dragged the drunk to safety. Even the bull seemed to feel sorry for him, for it looked on sympathetically until the drunk was out of the way before once more turning its attention to the matador.\",\"textCustomTranslate\":\"在一次斗牛时,一个醉汉突然溜达到斗牛场中间,人们开始大叫起来,但醉汉却没有意识到危险。\\n当时那公牛正忙于对付斗牛士,但突然它看见了醉汉,只见他正大声说着粗鲁的话,手里挥动着一顶红帽子。\\n对挑衅显然非常敏感的公牛完全撇开斗牛士,直奔醉汉而来。\\n观众突然静了下来,可这醉汉像是很有把握似的。\\n当公牛逼近他时,他踉跄地住旁边一闪,牛扑空了。\\n观众欢呼起来,醉汉向人们鞠躬致谢。\\n然而,此时已有3个人进入斗牛场,迅速把醉汉拉到安全的地方。\\n好像连牛也在为他感到遗憾,因为它一直同情地看着醉汉,直到他的背影消逝,才重新将注意力转向斗牛士。\",\"textNetworkTranslate\":\"在一次斗牛中,一个醉汉突然溜进了斗牛场的中央。\\n人群开始喊叫,但醉汉没有意识到危险。\\n公牛当时正忙着和斗牛士打交道,但它突然看到了那个醉汉,他大声说着粗鲁的话,挥舞着一顶红帽子。\\n公牛显然对批评很敏感,忘记了斗牛士,冲着醉汉冲去。\\n人群突然安静下来。\\n然而,醉汉似乎对自己很有把握。\\n当公牛靠近他时,他笨拙地走到一边让它过去。\\n人群爆发出欢呼声,醉汉鞠了一躬。\\n然而,这时,三名男子已经进入拳击场,他们迅速将醉汉拖到安全地带。\\n甚至公牛似乎也为他感到难过,因为它同情地看着他,直到醉汉让开,才再次将注意力转向斗牛士。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"bGuwl4\",\"title\":\"A famous clock\",\"titleTranslate\":\"一个著名的大钟\",\"text\":\"When you visit London, one of the first things you will see is Big Ben, the famous clock which can be heard all over the world on the B.B.C. If the Houses of Parliament had not been burned down in 1834, the great clock would never have been erected. Big Ben takes its name from Sir Benjamin Hall who was responsible for the making of the clock when the new Houses of Parliament were being built. It is not only of immense size, but is extremely accurate as well. Officials from Greenwich Observatory have the clock checked twice a day. On the B.B.C. you can hear the clock when it is actually striking because microphones are connected to the clock tower. Big Ben has rarely gone wrong. Once, however, it failed to give the correct time. A painter who had been working on the tower hung a pot of paint on one of the hands and slowed it down!\",\"textCustomTranslate\":\"当你游览伦敦时,首先看到的东西之一就是“大本”钟,即那座从英国广播公司的广播中全世界都可以听到它的声音的著名大钟。\\n如果不是国会大厦在1834年被焚毁的话,这座大钟永远也不会建造。\\n“大本”钟得名于本杰明.霍尔爵士,因为当建造新的国会大厦时,他负责建造大钟。\\n此钟不仅外型巨大,而且走时也非常准确。\\n格林尼治天文台的官员们每天两次派人矫正此钟。\\n当大钟打点的时候,你可以从英国广播公司的广播中听到,因为钟塔上接了麦克风。\\n“大本”钟很少出差错。\\n然而有一次,它却把时间报错。\\n在钟塔上干活的一位油漆工把一只油漆桶挂在了一根指针上,把钟弄慢了!\",\"textNetworkTranslate\":\"当你参观伦敦时,你首先会看到的是大本钟,这座著名的大钟在不列颠哥伦比亚省的世界各地都能听到。如果国会大厦没有在1834年被烧毁,这座大钟就永远不会竖立起来。\\n大本钟的名字取自本杰明·霍尔爵士,他在建造新的议会大厦时负责制作大钟。\\n它不仅体积巨大,而且非常精确。\\n格林尼治天文台的官员每天检查两次时钟。\\n在不列颠哥伦比亚省,当时钟真正敲响时,你可以听到它的声音,因为麦克风连接到钟楼上。\\n大本钟很少出错。\\n然而,有一次,它没有给出正确的时间。\\n一位在塔上工作的画家把一壶油漆挂在其中一只手上,然后放慢了速度!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"BjWKB1\",\"title\":\"A car called bluebird\",\"titleTranslate\":\"“蓝鸟”汽车\",\"text\":\"The great racing driver, Sir Malcolm Campbell, was the first man to drive at over 300 miles per hour. He set up a new world record in September 1935 at Bonneville Salt Flats, Utah. Bluebird, the car he was driving, had been specially built for him. It was over 30 feet in length and had a 2,500-horsepower engine. Although Campbell reached a speed of over 304 miles per hour, he had great difficulty in controlling the car because a tyre burst during the first run. After his attempt, Campbell was disappointed to learn that his average speed had been 299 miles per hour. However, a few days later, he was told that a mistake had been made. His average speed had been 301 miles per hour. Since that time, racing drivers have reached speeds over 600 miles an hour. Following in his fathers footsteps many years later, Sir Malcolms son, Donald, also set up a world record. Like his father, he was driving a car called Bluebird.\",\"textCustomTranslate\":\"杰出的赛车选手马尔科姆.坎贝尔爵士是第一个以每小时超过300英里的速度驾车的人。\\n他于1935年9月在犹他州的邦纳维尔盐滩创造了一项新的世界纪录。\\n他驾驶的“蓝鸟”牌汽车是专门为他制造的。\\n它的车身长30英尺,有一个2,500 马力的发动机。\\n尽管坎贝尔达到了每小时超过304英里的速度,但他很难把汽车控制住,因为在开始的行程中爆了一只轮胎。\\n比赛结束后,坎贝尔非常失望地得知他的平均时速是299英里。\\n然而,几天之后,有人告诉他说弄错了。\\n他的平均时速实际是301英里。\\n从那时以来,赛车选手已达到每小时600英里的速度。\\n很多年之后,马尔科姆爵士的儿子唐纳德踏着父亲的足迹,也创造了一项世界纪录。\\n同他父亲一样,他也驾驶着一辆名叫“蓝鸟”的汽车。\",\"textNetworkTranslate\":\"伟大的赛车手马尔科姆·坎贝尔爵士是第一个以每小时300英里以上的速度驾驶的人。\\n1935年9月,他在犹他州的邦纳维尔盐滩创造了一项新的世界纪录。\\n蓝鸟,他驾驶的汽车,是专门为他造的。\\n它的长度超过30英尺,拥有2500马力的发动机。\\n尽管坎贝尔的速度超过了每小时304英里,但由于第一次跑步时轮胎爆裂,他很难控制赛车。\\n在尝试后,坎贝尔失望地得知自己的平均速度为每小时299英里。\\n然而,几天后,他被告知犯了一个错误。\\n他的平均速度是每小时301英里。\\n从那时起,赛车手的速度已经超过了每小时600英里。\\n多年后,马尔科姆斯爵士的儿子唐纳德也追随父亲的脚步,创造了世界纪录。\\n和他父亲一样,他也开着一辆叫蓝鸟的车。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"HNNWxc\",\"title\":\"The record-holder\",\"titleTranslate\":\"纪录保持着\",\"text\":\"Children who play truant from school are unimaginative. A quiet days fishing, or eight hours in a cinema seeing the same film over and over again, is usually as far as they get. They have all been put to shame by a boy who, while playing truant, travelled 1,600 miles. He hitchhiked to Dover and, towards evening, went into a boat to find somewhere to sleep. When he woke up next morning, he discovered that the boat had, in the meantime, travelled to Calais. No one noticed the boy as he crept off. From there, he hitchhiked to Paris in a lorry. The driver gave him a few biscuits and a cup of coffee and left him just outside the city. The next car the boy stopped did not take him into the centre of Paris as he hoped it would, but to Perpignan on the French-Spanish border. There he was picked up by a policeman and sent back to England by the local authorities. He has surely set up a record for the thousands of children who dream of evading school.\",\"textCustomTranslate\":\"逃学的孩子们都缺乏想像力。\\n他们通常能够做到的,至多也就是安静地钓上一天鱼,或在电影院里坐上8个小时,一遍遍地看同一部电影。\\n而有那么一个小男孩,他在逃学期间旅行了1,600英里,从而使上述所有逃学的孩子们都相形见绌了。\\n他搭便车到了多佛,天快黑时钻进了一条船,想找个地方睡觉。\\n第二天早上他醒来时,发现船在这段时间已经到了加。\\n当男孩从船里爬出来时,谁也没有发现他。\\n从那里他又搭上卡车到了巴黎。\\n司机给了他几块饼干和一杯咖啡,就把他丢在了城外。\\n男孩截住的下一辆车,没有像他希望的那样把他带到巴黎市中心,而是把他带到了法国和西班牙边界上的佩皮尼昂。\\n他在那儿被一个警察抓住了,之后被当局送回了英国。\\n他无疑为成千上万梦想逃避上学的孩子们创造了一项纪录。\",\"textNetworkTranslate\":\"逃学的孩子缺乏想象力。\\n平静的几天钓鱼,或者在电影院里看八个小时一遍又一遍地看同一部电影,通常是他们所能做到的。\\n他们都被一个逃学时跑了1600英里的男孩羞辱了。\\n他搭便车到多佛,傍晚时分,他上了一艘船,想找个地方睡觉。\\n当他第二天早上醒来时,他发现这艘船在此期间已经驶向加莱。\\n男孩悄悄地走了,没人注意到。\\n从那里,他搭卡车去了巴黎。\\n司机给了他几块饼干和一杯咖啡,然后把他留在城外。\\n男孩停下的下一辆车并没有像他希望的那样把他送到巴黎市中心,而是送到了法西边境的佩皮尼昂。\\n在那里,他被一名警察接走,并被当地政府送回英国。\\n他无疑为成千上万梦想逃学的孩子创造了一项记录。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"ImIknW\",\"title\":\"Out of the limelight\",\"titleTranslate\":\"舞台之外\",\"text\":\"An ancient bus stopped by a dry river bed and a party of famous actors and actresses got off. Dressed in dark glasses and old clothes, they had taken special precautions so that no one should recognize them. But as they soon discovered, disguises can sometimes be too perfect.\\n'This is a wonderful place for a picnic,' said Gloria Gleam.\\n'It couldn't be better, Gloria,' Brinksley Meers agreed. 'No newspaper men, no film fans! Why don't we come more often?'\\nMeanwhile, two other actors, Rockwall Slinger and Merlin Greeves, had carried two large food baskets to a shady spot under some trees. When they had all made themselves comfortable, a stranger appeared. He looked very angry. 'Now you get out of here, all of you!' he shouted. 'I'm sheriff here. Do you see that notice? It says \\\"No Camping\\\" -- in case you can't read!'\\n'Look, sheriff,' said Rockwall, 'don't be too hard on us. I'm Rockwall Slinger and this is Merlin Greeves.'\\n'Oh, is it?' said the sheriff with a sneer. 'Well, I'm Brinksley Meers, and my other name is Gloria Gleam. Now you get out of here fast!'\",\"textCustomTranslate\":\"一辆古旧的汽车停在一条干涸的河床边,一群著名男女演员下了车。\\n他们戴着墨镜,穿着旧衣裳,特别小心以防别人认出他们。\\n但他们很快就发觉,化装的效果有时过分完美了。\\n\\n“在这个地方野餐简直太妙了,”格格利亚.格利姆说。\\n\\n“是再好不过的了,格格利亚。”布林克斯利.米尔斯表示同意,\\n“没有记者,没有影迷!我们为什么不经常来这里呢?”\\n\\n\\n“此时,另外两位演员,罗克沃尔.斯林格和默林.格里夫斯,已经把两个大食品篮子提到了一片树荫下。\\n当他们都已安排舒适时,一个陌生人出现了。\\n他看上去非常气愤。\\n“你们都从这里走开,全都走开!”他大叫着,\\n“我是这里的司法长官。\\n你们看到那个布告牌了吗?\\n上面写着‘禁止野营’--除非你们不识字!”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"PSRK0z\",\"title\":\"SOS\",\"titleTranslate\":\"呼救信号\",\"text\":\"When a light passenger plane flew off course some time ago, it crashed in the mountains and its pilot was killed. The only passengers, a young woman and her two baby daughters, were unhurt. It was the middle of winter. Snow lay thick on the ground. The woman knew that the nearest village was miles away. When it grew dark, she turned a suitcase into a bed and put the children inside it, covering them with all the clothes she could find. During the night, it got terribly cold. The woman kept as near as she could to the children and even tried to get into the case herself, but it was too small. Early next morning, she heard planes passing overhead and wondered how she could send a signal. Then she had an idea. She stamped out the letters 'SOS' in the snow. Fortunately, a pilot saw the signal and sent a message by radio to the nearest town. It was not long before a helicopter arrived on the scene to rescue the survivors of the plane crash.\",\"textCustomTranslate\":\"不久前,一架轻型客机偏离了航线,在山区坠毁,飞行员丧生。\\n机上仅有的乘客,一位年轻的妇女和她的两个女婴却平安无事。\\n此时正值隆冬季节,地上积着厚厚的雪。\\n这位妇女知道,即使最近的村庄也有数英里远。\\n天黑下来的时候,她把提箱当作小床,把两个孩子放了进去,又把所有能找到的衣服都盖在了孩子们身上。\\n夜里,天冷得厉害。\\n这位妇女尽可能地靠近孩子,甚至自己也想钻进箱子里去,只是箱子太小了。\\n第二天一大早,她听到头顶上有飞机飞过,但不知道怎样才能发个信号。\\n后来她有了一个主意。\\n她在雪地上踩出了“SOS”这3个字母。\\n幸运得很,一位飞行员看到这个信号,用无线电给最近的城镇发了报。\\n不久,一架直升飞机飞抵飞机失事现场,来搭救这几个幸存者。\",\"textNetworkTranslate\":\"不久前,一架轻型客机偏离航线,坠入山区,飞行员遇难。\\n唯一的乘客是一名年轻女子和她的两个女儿,没有受伤。\\n那是隆冬。\\n地上积着厚厚的雪。\\n这个女人知道最近的村子在几英里之外。\\n天黑后,她把一个手提箱变成了床,把孩子们放在里面,用她能找到的所有衣服盖住他们。\\n晚上,天气变得非常冷。\\n这名妇女尽可能靠近孩子们,甚至试图自己进入箱子,但箱子太小了。\\n第二天一早,她听到飞机从头顶飞过,想知道如何才能发出信号。\\n然后她有了一个主意。\\n她在雪地里踩出了“SOS”字母。\\n幸运的是,一名飞行员看到了信号,并通过无线电向最近的城镇发送了信息。\\n不久,一架直升机抵达现场,营救飞机失事的幸存者。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"EIDPKj\",\"title\":\"April Fools' Day\",\"titleTranslate\":\"愚人节\",\"text\":\"'To end our special news bulletin,' said the voice of the television announcer, 'we're going over to the macaroni fields of Calabria. Macaroni has been grown in this area for over six hundred years. Two of the leading growers, Giuseppe Moldova and Riccardo Brabante, tell me that they have been expecting a splendid crop this year and harvesting has begun earlier than usual. Here you can see two workers who, between them, have just finished cutting three cartloads of golden brown macaroni stalks. The whole village has been working day and night gathering and threshing this year's crop before the September rains. On the right, you can see Mrs. Brabante herself. She has been helping her husband for thirty years now. Mrs. Brabante is talking to the manager of the local factory where the crop is processed. This last scene shows you what will happen at the end of the harvest: the famous Calabrian macaroni-eating competition! Signor Fratelli, the present champion, has won it every year since 1991. And that ends our special bulletin for today, Thursday, April lst. We're now going back to the studio.'\",\"textCustomTranslate\":\"“作为我们专题新闻节目的结尾,”电视广播员说,“我们现在到克拉布利亚的通心粉田里。\\n通心粉在这个地区已经种植了600多年了。\\n两个主要种植者,朱塞皮.莫尔道瓦和里卡多.布拉班特告诉我,他们一直期待着今年获得一个大丰收,收割工作比往年开始要早些。\\n这里您可以看到两个工人,他们协力割下了3车金黄色的通心粉秸。\\n全村的人都日夜奋战,要赶在9月的雨季之前把今年的庄稼收获上来,打完场。\\n在屏幕的右侧,您可以看到布拉班特太太本人,她已经帮了她的丈夫30年了。\\n布拉班特太太现在正和负责通心粉加工的当地加工厂的经理交谈。\\n这最后一个镜头向您展示了收获之后将发生的事情:著名的克拉布利亚人吃通心粉大赛!\\n目前的冠军弗拉特里先生,自1991年以来,年年获胜。\\n今天 -- 4月1日,星期四--的专题新闻节目到此结束。\\n现在我们回到电视演播室。”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"_jpSrG\",\"title\":\"A successful operation\",\"titleTranslate\":\"一例成功的手术\",\"text\":\"The mummy of an Egyptian woman who died in 800 B.C. has just had an operation. The mummy is that of Shepenmut who was once a singer in the Temple of Thebes. As there were strange marks on the X-ray plates taken of the mummy, doctors have been trying to find out whether the woman died of a rare disease. The only way to do this was to operate. The operation, which lasted for over four hours, proved to be very difficult because of the hard resin which covered the skin. The doctors removed a section of the mummy and sent it to a laboratory. They also found something which the X-ray plates did not show: a small wax figure of the god Duamutef. This god which has the head of a cow was normally placed inside a mummy. The doctors have not yet decided how the woman died. They feared that the mummy would fall to pieces when they cut it open, but fortunately this has not happened. The mummy successfully survived the operation.\",\"textCustomTranslate\":\"死于公元前800年的一位埃及妇女的木乃伊刚刚接受了一次手术。\\n这是曾在底比斯神殿里当过歌手的赛潘姆特的木乃伊。\\n由于在给这个木乃伊拍摄的X光片子上有点奇怪的斑点,所以,医生们一直试图搞清这位妇女是否死于一种罕见的疾病。\\n搞清的唯一办法就是手术。\\n手术持续了4个多小时,非常难做,因为皮肤上覆盖着一层硬硬的树脂。\\n医生们从木乃伊身上取下一个切片,送去化验。\\n他们还发现了X光片所没有显示的东西:一个蜡制的杜瓦木特夫神小塑像。\\n这种牛头人身的神像通常被放在木乃伊体内。\\n医生们至今还未确定这位妇女的死因。\\n他们曾担心在把木乃伊切开后,它会散成碎片,但幸运得很,这种情况并未发生。\\n这具木乃伊成功地经受了这次手术。\",\"textNetworkTranslate\":\"一位死于公元前800年的埃及妇女的木乃伊刚刚接受了手术。\\n这具木乃伊是谢彭穆特的,他曾是底比斯神庙的一名歌手。\\n由于这具木乃伊的X光片上有奇怪的痕迹,医生们一直在努力查明这名妇女是否死于罕见疾病。\\n唯一的办法就是手术。\\n手术持续了四个多小时,由于皮肤上覆盖着坚硬的树脂,手术非常困难。\\n医生取出了木乃伊的一部分,并将其送往实验室。\\n他们还发现了一些X光片没有显示的东西:一个小的杜阿穆特夫神蜡像。\\n这个长着牛头的神通常被放在木乃伊里面。\\n医生们还没有决定这个女人是怎么死的。\\n他们担心当他们切开木乃伊时,它会摔成碎片,但幸运的是,这并没有发生。\\n这具木乃伊在手术中成功地活了下来。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"mdpJ80\",\"title\":\"The last one?\",\"titleTranslate\":\"最后一枝吗?\",\"text\":\"After reading an article entitled 'Cigarette Smoking and Your Health' I lit a cigarette to calm my nerves. I smoked with concentration and pleasure as I was sure that this would be my last cigarette. For a whole week I did not smoke at all and during this time, my wife suffered terribly. I had all the usual symptoms of someone giving up smoking: a bad temper and an enormous appetite. My friends kept on offering me cigarettes and cigars. They made no effort to hide their amusement whenever I produced a packet of sweets from my pocket. After seven days of this I went to a party. Everybody around me was smoking and I felt extremely uncomfortable. When my old friend Brian urged me to accept a cigarette, it was more than I could bear. I took one guiltily, lit it and smoked with satisfaction. My wife was delighted that things had returned to normal once more. Anyway, as Brian pointed out, it is the easiest thing in the world to give up smoking. He himself has done it lots of times!\",\"textCustomTranslate\":\"读完一篇题为《吸烟与健康》的文章之后,我点上了一枝香烟,来镇定一下自己紧张的神经。\\n我聚精会神而又愉快地吸着这枝烟。\\n因为我确信这是我最后一枝烟了。\\n整整一个星期我根本没有吸烟。\\n在此期间,我妻子吃尽了苦头。\\n我具备了戒烟者通常表现出来的所有症状:脾气暴躁和食欲旺盛。\\n我的朋友们不断地向我递香烟和雪茄。\\n每当我从口袋里掏出一包糖果时,他们都毫不掩饰地表现出他们对此感到非常好笑。\\n这样过了7天以后,我去参加一次聚会。\\n我周围的每个人都在吸烟,我感到非常不自在。\\n当我的老朋友布赖恩极力劝我接受一枝香烟时,我再也忍不住了。\\n我内疚地接过一枝点上,心满意足地抽起来。\\n一切又都恢复了正常,为此我妻子十分高兴。\\n不管怎么说,正如布赖恩指出的那样,戒烟是世界上最容易的事情,他自己就已戒了很多次了!\",\"textNetworkTranslate\":\"在读了一篇题为《吸烟与健康》的文章后,我点了一支烟来安抚我的神经。\\n我全神贯注地愉快地抽着烟,因为我确信这将是我的最后一支烟。\\n整整一周我都不抽烟,在这段时间里,我妻子遭受了巨大的痛苦。\\n我有戒烟者的所有常见症状:脾气不好,食欲大。\\n我的朋友们不停地给我香烟和雪茄。\\n每当我从口袋里拿出一包糖果时,他们都毫不掩饰自己的乐趣。\\n七天后,我去参加了一个聚会。\\n我周围的每个人都在抽烟,我感到非常不舒服。\\n当我的老朋友布赖恩催促我接受一支香烟时,我无法忍受。\\n我内疚地拿了一支,点燃了它,满意地抽着烟。\\n我妻子很高兴事情又恢复了正常。\\n无论如何,正如布莱恩所指出的,戒烟是世界上最容易的事情。\\n他自己已经做了很多次了!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"Q4I3If\",\"title\":\"By air\",\"titleTranslate\":\"乘飞机\",\"text\":\"I used to travel by air a great deal when I was a boy. My parents used to live in South America and I used to fly there from Europe in the holidays. A flight attendant would take charge of me and I never had an unpleasant experience. I am used to traveling by air and only on one occasion have I ever felt frightened. After taking off, we were flying low over the city and slowly gaining height, when the plane suddenly turned round and flew back to the airport. While we were waiting to land, a flight attendant told us to keep calm and to get off the plane quietly as soon as it had touched down. Everybody on board was worried and we were curious to find out what had happened. Later we learnt that there was a very important person on board. The police had been told that a bomb had been planted on the plane. After we had landed, the plane was searched thoroughly. Fortunately, nothing was found and five hours later we were able to take off again.\",\"textCustomTranslate\":\"我在幼年的时候,曾多次乘飞机旅行。\\n我的父母曾经住在南美洲,所以假期里我常从欧洲乘飞机到他们那里。\\n我总是由一位空中乘务员照管,从未遇到过不愉快的经历。\\n我习惯了乘飞机旅行,只是有一次把我吓坏了。\\n起飞之后,我们在城市上空低低地飞行,然后慢慢爬高。\\n这时飞机突然调转头来,飞回了机场。\\n在我们等待降落时,一位空中乘务员告诉我们要保持镇静,待飞机一着陆,就马上不声不响地离开飞机。\\n飞机上的人都很着急,大家都急于想知道究竟出了什么事。\\n后来我们才得知,飞机上坐了一位非常重要的人物。\\n有人报告警察,说飞机上安放了一枚炸弹。\\n我们降落之后,飞机被彻底搜查了一遍。\\n幸运的是,什么也没有找到。\\n5个小时后,我们又起飞了。\",\"textNetworkTranslate\":\"我小时候经常乘飞机旅行。\\n我的父母曾经住在南美洲,我过去常常在假期从欧洲飞到那里。\\n空乘人员会照顾我,我从未有过不愉快的经历。\\n我习惯了乘飞机旅行,只有一次我感到害怕。\\n起飞后,我们在城市上空低空飞行,并慢慢上升,这时飞机突然掉头飞回机场。\\n当我们等待降落时,一名乘务员告诉我们保持冷静,飞机一着陆就安静地下飞机。\\n船上的每个人都很担心,我们很想知道发生了什么。\\n后来我们了解到船上有一个非常重要的人。\\n警方被告知飞机上安放了一枚炸弹。\\n我们着陆后,对飞机进行了彻底搜查。\\n幸运的是,什么也没找到,五个小时后我们又起飞了。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"H9t9HC\",\"title\":\"The Crystal Palace\",\"titleTranslate\":\"水晶宫\",\"text\":\"Perhaps the most extraordinary building of the nineteeth century was the Crystal Palace, which was built in Hyde Park for the Great Exhibition of 1851. The Crystal Palace was different from all other buildings in the world, for it was made of iron and glass. It was one of the biggest buildings of all time and a lot of people from many countries came to see it. A great many goods were sent to the exhibition from various parts of the world. There was also a great deal of machinery on display. The most wonderful piece of machinery on show was Nasmyth's steam hammer. Though in those days, traveling was not as easy as it is today, steam boats carried thousands of visitors across the Channel from Europe. On arriving in England, they were taken to the Crystal Palace by train. There were six million visitors in all, and the profits from the exhibition were used to build museums and colleges. Later, the Crystal Palace was moved to South London. It remained one of the most famous buildings in the world until it was burnt down in 1936.\",\"textCustomTranslate\":\"19世纪最不寻常的建筑也许要数水晶宫了,它是为1851年的“世界博览会”而建在海德公园的。\\n这座水晶宫不同于世界上所有的其他建筑,因为它是用钢和玻璃建成的。\\n它是有史以来最高大的建筑物之一,因此,人们从各个国家纷纷前来参观。\\n大量的商品从世界各地运送到了博览会,参展的还有很多机器,其中最奇妙的是内史密斯的蒸汽锤。\\n尽管在当时旅行不像现在这么容易,但汽船还是把成千上万的参观者从欧洲大陆送过了英吉利海峡。\\n一到英国,火车就把他们送到了水晶宫。\\n参观的人数总共是600万。\\n博览会的赢利用来建造博物馆和高等学校。\\n后来,“水晶宫”被移到了伦敦南部。\\n在1936年被焚毁之前,它一直是世界上最著名的建筑物之一。\",\"textNetworkTranslate\":\"也许九齿世纪最非凡的建筑是水晶宫,它是为1851年的大展览而建在海德公园的。\\n水晶宫不同于世界上所有其他建筑,因为它是由铁和玻璃制成的。\\n它是有史以来最大的建筑之一,来自许多国家的许多人都来看它。\\n许多货物从世界各地运往展览会。\\n这里还展出了大量的机械设备。\\n展出的最精彩的机器是纳斯米斯特的蒸汽锤。\\n尽管在那些日子里,旅行不像今天那么容易,但蒸汽船载着成千上万的游客从欧洲穿越英吉利海峡。\\n抵达英国后,他们被火车带到水晶宫。\\n总共有600万游客,展览的利润被用于建造博物馆和学院。\\n后来,水晶宫搬到了伦敦南部。\\n它一直是世界上最著名的建筑之一,直到1936年被烧毁。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"XN1IjL\",\"title\":\"Escape\",\"titleTranslate\":\"脱逃\",\"text\":\"When he had killed the guard, the prisoner of war quickly dragged him into the bushes. Working rapidly in the darkness, he soon changed into the dead man's clothes. Now, dressed in a blue uniform and with a rifle over his shoulder, the prisoner marched boldly up and down in front of the camp. He could hear shouting in the camp itself. Lights were blazing and men were running here and there: they had just discovered that a prisoner had escaped. At that moment, a large black car with four officers inside it, stopped at the camp gates. The officers got out and the prisoner stood to attention and saluted as they passed. When they had gone, the driver of the car came towards him. The man obviously wanted to talk. He was rather elderly with grey hair and clear blue eyes. The prisoner felt sorry for him, but there was nothing else he could do. As the man came near, the prisoner knocked him to the ground with a sharp blow. Then, jumping into the car, he drove off as quickly as he could.\",\"textCustomTranslate\":\"那个战俘杀死卫兵以后,迅速地把尸体拖进了灌木丛。\\n他在黑暗中忙活了一阵儿,很快就换上了死者的衣服。\\n现在他身穿蓝军装,肩扛步枪,在军营门前大胆地来回走看。\\n他听得军营里面的喧闹声。\\n那里灯米通明,人们在东奔西跑:他们刚刚发现有一个俘虏跑了。\\n正在此时,一辆黑色大轿车在军营门口停了下来。\\n里面坐了4个军官。\\n军官们下了车,战俘立正站好,并在他们从他面前经过时敬了礼。\\n他们走后,汽车司机向他走来,这人显然是想聊天。\\n他上了年纪,有着灰白的头发和明亮的蓝眼睛。\\n战俘为他感到惋惜,但却没有别的选择。\\n当这个人走近时,战俘一拳把他打倒在地,然后跳进车里,以最快的速度把车开走了。\",\"textNetworkTranslate\":\"当他杀死警卫后,战俘迅速把他拖进灌木丛。\\n他在黑暗中迅速工作,很快就换上了死者的衣服。\\n现在,这名囚犯身穿蓝色制服,肩上扛着步枪,大胆地在营地前走来走去。\\n他能听到营地里的呼喊声。\\n灯火通明,人们到处乱跑:他们刚刚发现一个囚犯逃跑了。\\n就在这时,一辆载有四名军官的黑色大轿车停在营地门口。\\n军官们下车,囚犯立正,在他们经过时敬礼。\\n他们走后,汽车司机向他走来。\\n那人显然想谈谈。\\n他年事已高,一头白发,一双清澈的蓝眼睛。\\n犯人为他感到难过,但他也无能为力。\\n当那个人走近时,犯人猛地一拳把他打倒在地。\\n然后,他跳上车,以最快的速度开车离开。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"KYmXrr\",\"title\":\"Monster or fish?\",\"titleTranslate\":\"是妖还是鱼?\",\"text\":\"Fishermen and sailors sometimes claim to have seen monsters in the sea. Though people have often laughed at stories told by seamen, it is now known that many of these 'monsters' which have at times been sighted are simply strange fish. Occasionally, unusual creatures are washed to the shore, but they are rarely caught out at sea. Some time ago, however, a peculiar fish was caught near Madagascar. A small fishing boat was carried miles out to sea by the powerful fish as it pulled on the line. Realizing that this was no ordinary fish, the fisherman made every effort not to damage it in any way. When it was eventually brought to shore, it was found to be over thirteen feet long. It had a head like a horse, big blue eyes, shining silver skin, and a bright red tail. The fish, which has since been sent to a museum where it is being examined by a scientist, is called an oarfish. Such creatures have rarely been seen alive by man as they live at a depth of six hundred feet.\",\"textCustomTranslate\":\"渔夫和水手们有时声称自己看到过海里的妖怪。\\n虽然人们常常对水手们讲的故事付诸一笑,但现在看来,人们有时看到的这些“妖怪”很多不过是些奇怪的鱼。\\n一些异常的生物偶尔会被冲到岸上来,但它们在海上却极少能被捕到。\\n然而不久前,在马达加斯加附近的海里却捕到了一条奇怪的鱼。\\n一条小渔船被一条咬住钩的强壮的大鱼拖到了几英里以外的海面上。\\n那位渔民意识到这根本不是一条普通的鱼,于是千方百计不让它受到丝毫伤害。\\n当终于把它弄上岸后,人们发现它身长超过了13英尺。\\n它长着一个像马一样的头,有着大的蓝眼睛和闪闪发光的银色皮肤,还有一条鲜红色的尾巴。\\n此鱼叫桨鱼,被送进了博物馆,现正接受一位科学家的检查。\\n人们很少能看到活着的这类动物,因为它们生活在600英尺深的水下。\",\"textNetworkTranslate\":\"渔民和水手有时声称在海里见过怪物。\\n尽管人们经常嘲笑海员讲的故事,但现在人们已经知道,许多有时被看到的“怪物”只是奇怪的鱼。\\n偶尔,不寻常的生物会被冲到岸边,但它们很少在海上被捕获。\\n然而,不久前,在马达加斯加附近捕获了一种奇特的鱼。\\n一艘小渔船在拉动绳索时被强大的鱼带到了几英里外的大海。\\n意识到这不是一条普通的鱼,渔夫竭尽全力不去破坏它。\\n当它最终被带到岸边时,人们发现它超过13英尺长。\\n它有一个像马一样的头,蓝色的大眼睛,闪闪发光的银色皮肤,和一条鲜红色的尾巴。\\n这种鱼被送往博物馆接受科学家的检查,被称为桨鱼。\\n这种生物很少被人类看到,因为它们生活在600英尺深的地方。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"-_QLVE\",\"title\":\"After the elections\",\"titleTranslate\":\"大选之后\",\"text\":\"The former Prime Minister, Mr. Wentworth Lane, was defeated in the recent elections. He is now retiring from political life and has gone abroad. My friend, Patrick, has always been a fanatical opponent of Mr. Lane's Radical Progressive Party. After the elections, Patrick went to the former Prime Minister's house. When he asked if Mr. Lane lived there, the policeman on duty told him that since his defeat, the ex-Prime Minister had gone abroad. On the following day, Patrick went to the house again. The same policeman was just walking slowly past the entrance, when Patrick asked the same question. Though a little suspicious this time, the policeman gave him the same answer. The day after, Patrick went to the house once more and asked exactly the same question. This time, the policeman lost his temper. 'I told you yesterday and the day before yesterday,' he shouted, 'Mr. Lane was defeated in the elections. He has retired from political life and gone to live abroad!\\\"\\n'I know,' answered Patrick, 'but I love to hear you say it!'\",\"textCustomTranslate\":\"前首相温特沃兹.莱恩先生在最近的大选中被击败。\\n他现在退出了政界,到国外去了。\\n我的朋友帕特里克一直是莱恩先生的激进党的强烈反对者。\\n大选结束后,帕特里克来到了前首相的住处。\\n当他询问莱恩先生是否住在那里时,值班的警察告诉他这位前首相落选后出国去了。\\n第二天,帕特里克再次来到首相的住处。\\n昨天的那位警察正从门口慢慢走过,帕特里克上前问了和昨天同样的问题。\\n虽然那位警察这次有点疑心,但还是对他作了同样的回答。\\n第三天,帕特里克又去了,提出了同前两天完全一样的问题。\\n这一次警察火了。\\n“我昨天和前天都告诉过您了,”他大叫着,“莱恩先生在大选中被击败了,他已经退出了政界去国外了!”\\n\\n“这我都知道,”帕特里克说,“可我就是喜欢听你说出这此!”\",\"textNetworkTranslate\":\"前总理温特沃斯·莱恩先生在最近的选举中落败。\\n他现在要退出政治生活,已经出国了。\\n我的朋友帕特里克一直是莱恩先生的激进进步党的狂热反对者。\\n选举结束后,帕特里克去了前首相的家。\\n当他问莱恩先生是否住在那里时,值班警察告诉他,自从他失败后,这位前首相就出国了。\\n第二天,帕特里克又去了那所房子。\\n当帕特里克问同样的问题时,同一名警察正慢慢走过入口。\\n虽然这次有点可疑,但警察还是给了他同样的答案。\\n第二天,帕特里克再次回到家中,问了完全相同的问题。\\n这一次,警察发了脾气。\\n他喊道:“我昨天和前天都告诉过你了。\\n莱恩在选举中落败。\\n他已经从政治生活中退休,去国外生活了!“\\n\\n“我知道,”帕特里克回答,“但我很想听你这么说!”\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"Z9oEcS\",\"title\":\"On strike\",\"titleTranslate\":\"罢工\",\"text\":\"Busmen have decided to go on strike next week. The strike is due to begin on Tuesday. No one knows how long it will last. The busmen have stated that the strike will continue until general agreement is reached about pay and working conditions. Most people believe that the strike will last for at least a week. Many owners of private cars are going to offer 'free rides' to people on their way to work. This will relieve pressure on the trains to some extent. Meanwhile, a number of university students have volunteered to drive buses while the strike lasts. All the students are expert drivers, but before they drive any of the buses, they will have to pass a special test. The students are going to take the test in two days' time. Even so, people are going to find it difficult to get to work. But so far, the public has expressed its gratitude to the students in letters to the Press. Only one or two people have objected that the students will drive too fast!\",\"textCustomTranslate\":\"公共汽车司机决定下星期罢工。\\n罢工定于星期二开始,谁也不知道会持续多久。\\n司机们声称此次罢工将一直持续到就工资和工作条件问题达成全面协议的时候为止。\\n多数人认为此次罢工至少会持续一个星期。\\n很多私人汽车的车主正准备为乘车上班的人们提供“免费乘车”的服务,这将在某种程度上减轻对火车的压力。\\n与此同时,有一部分大学生自愿在罢工期间驾驶公共汽车。\\n所有的学生都是开车的能手,但在驾驶公共汽车之前,他们必须通过一项专门测验。\\n学生们准备在两天后就接受测验。\\n即使这样,人们仍会感到上班有困难。\\n但到目前为止,公众已经向新闻界写信表达他们对学生们的感激之情了。\\n只有一两个人提出反对意见,说学生们会把车开得太快!\",\"textNetworkTranslate\":\"巴斯曼决定下周举行罢工。\\n罢工定于星期二开始。\\n没有人知道它会持续多久。\\n巴士司机表示,罢工将持续到就工资和工作条件达成普遍协议为止。\\n大多数人认为罢工至少会持续一周。\\n许多私家车车主将为上班路上的人们提供“免费乘车”服务。\\n这将在一定程度上缓解列车的压力。\\n与此同时,一些大学生自愿在罢工期间驾驶公共汽车。\\n所有的学生都是专业的司机,但在驾驶任何一辆公交车之前,他们都必须通过一项特殊的考试。\\n学生们将在两天后参加考试。\\n即便如此,人们还是会发现上班很困难。\\n但到目前为止,公众已经在给新闻界的信中表达了对学生们的感谢。\\n只有一两个人反对学生们开得太快!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"4Jzr35\",\"title\":\"Never too old to learn\",\"titleTranslate\":\"活到老学到老\",\"text\":\"I have just received a letter from my old school, informing me that my former headmaster, Mr. Stuart Page, will be retiring next week. Pupils of the school, old and new, will be sending him a present to mark the occasion. All those who have contributed towards the gift will sign their names in a large album which will be sent to the headmaster's home. We shall all remember Mr. Page for his patience and understanding and for the kindly encouragement he gave us when we went so unwillingly to school. A great many former pupils will be attending a farewell dinner in his honour next Thursday. It is a curious coincidence that the day before his retirement, Mr. Page will have been teaching for a total of forty years. After he has retired, he will devote himself to gardening. For him, this will be an entirely new hobby. But this does not matter, for, as he has often remarked, one is never too old to learn.\",\"textCustomTranslate\":\"我刚刚收到母校的一封信,通知我说以前的校长斯图亚特.佩奇先生下星期就退休了。\\n为了纪念这个日子,学校的学生——无论老同学还是新同学——将送他一件礼物。\\n所有凑钱买此礼品的人都将自己的名字签在一本大签名簿上,签名簿将被送到校长的家里。\\n我们不会忘记佩奇先生对我们既有耐心又充满理解,也不会忘记在我们不愿去上学时他给予我们的亲切鼓励。\\n很多老同学都准备参加下星期四为他举行的告别宴会。\\n佩奇先生退休的前一天正好是他执教满40年的日子,这真是奇妙的巧合。\\n他退休后,将致力于园艺。\\n对于他来说,这将是一种全新的爱好。\\n但这没有关系,因为正如他常说的那样,人要活到老学到老。\",\"textNetworkTranslate\":\"我刚刚收到母校的一封信,通知我我的前校长斯图尔特·佩奇先生将于下周退休。\\n这所学校的学生,无论是老的还是新的,都将送他一份礼物来纪念这一时刻。\\n所有为礼物捐款的人都将在一本大相册上签名,相册将被送到校长家中。\\n我们都将记住佩奇先生的耐心和理解,以及当我们如此不情愿地上学时,他给予我们的善意鼓励。\\n许多以前的学生将于下周四参加为纪念他而举行的告别晚宴。\\n一个奇怪的巧合是,在佩奇退休的前一天,他将教书整整四十年。\\n他退休后将致力于园艺工作。\\n对他来说,这将是一个全新的爱好。\\n但这并不重要,因为正如他经常说的那样,人永远不会老到不能学。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"36XBxH\",\"title\":\"Out of control\",\"titleTranslate\":\"失控\",\"text\":\"As the man tried to swing the speedboat round, the steering wheel came away in his hands. He waved desperately to his companion, who had been water skiing for the last fifteen minutes. Both men had hardly had time to realize what was happening when they were thrown violently into the sea. The speedboat had struck a buoy, but it continued to move very quickly across the water. Both men had just begun to swim towards the shore, when they noticed with dismay that the speedboat was moving in a circle. It now came straight towards them at tremendous speed. In less than a minute, it roared past them only a few feet away. After it had passed, they swam on as quickly as they could because they knew that the boat would soon return. They had just had enough time to swim out of danger when the boat again completed a circle. On this occasion, however, it had slowed down considerably. The petrol had nearly all been used up. Before long, the noise dropped completely and the boat began to drift gently across the water.\",\"textCustomTranslate\":\"当那人试图让快艇转弯时,方向盘脱手了。\\n他绝望地向他的伙伴挥手,他的伙伴在过去的15分钟里一直在滑水。\\n他们两个还没来得及意识到究竟发生了什么事情,就被猛地抛入了海里。\\n快艇撞上了一个浮标,但它仍在水面上快速行驶着。\\n两个人刚开始向岸边游去,就突然惊愕地发现快艇正在转着圈行驶,它现在正以惊人的速度直冲他们驶来。\\n不到1分钟的工夫,它从离他们只有几英尺远的地方呼啸着驶了过去。\\n快艇过去之后,他们以最快的速度向前游去,因为他们知道快艇马上就要转回来。\\n他们刚刚来得及游出危险区,快艇就又转完了一圈。\\n然而这一次它的速度慢多了。\\n汽油几乎已经用光。\\n没过多久,噪音便彻底消失,快艇开始在水面上慢悠悠地漂流。\",\"textNetworkTranslate\":\"当这名男子试图使快艇回转时,方向盘在他手中松开了。\\n他拼命地向同伴挥手,同伴已经滑水十五分钟了。\\n两人还没来得及意识到发生了什么,就被猛地抛入大海。\\n快艇撞上了浮标,但它继续在水面上快速移动。\\n两人刚开始向岸边游去,就沮丧地注意到快艇在转一圈。\\n现在它正以惊人的速度向他们直冲过来。\\n在不到一分钟的时间里,它呼啸而过,离他们只有几英尺远。\\n船过去后,他们以最快的速度继续游,因为他们知道船很快就会回来。\\n他们刚刚有足够的时间游出危险,船又绕了一圈。\\n然而,在这一次,它已经大大放慢了速度。\\n汽油几乎都用完了。\\n不久,噪音完全消失了,船开始轻轻地在水面上漂移。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"TiUjXW\",\"title\":\"A perfect alibi\",\"titleTranslate\":\"极好的不在犯罪现场的证据\",\"text\":\"'At the time the murder was committed, I was travelling on the 8 o'clock train to London,' said the man.\\n'Do you always catch such an early train?' asked the inspector.\\n'Of course I do,' answered the man. 'I must be at work at 10 o'clock. My employer will confirm that I was there on time.'\\n'Would a later train get you to work on time?' asked the inspector.\\n'I suppose it would, but I never catch a later train.'\\n'At what time did you arrive at the station?'\\n'At ten to eight. I bought a paper and waited for the train.'\\n'And you didn't notice anything unusual?'\\n'Of course not.'\\n'I suggest,' said the inspector, 'that you are not telling the truth. I suggest that you did not catch the 8 o'clock train, but that you caught the 8.25 which would still get you to work on time. You see, on the morning of the murder, the 8 o'clock train did not run at all. It broke down at Ferngreen station and was taken off the line.'\",\"textCustomTranslate\":\"“在凶杀发生的时候,我正坐在8点钟开往伦敦的火车上。”\\n那人说。\\n\\n“您总是赶这样早的火车?”\\n探长问。\\n\\n“当然是的,”那人回答。\\n“我必须在10点钟上班,我的雇主会证明我是按时到了那儿的。”\\n\\n“晚一点儿的车也能送您按时上班吗?”\\n\\n“我认为可以,但我从来不乘晚一点儿的车。”\\n\\n“您几点钟到的火车站?”\\n\\n“7点50分。\\n我买了张报纸,等着车来。”\\n\\n“您没有注意到有什么异常情况发生吗?”\\n\\n“当然没有。”\\n\\n“我提醒您,”探长说,“您讲的不是实话。\\n您乘的不是8点钟的火车,而是8点25分的,这次车同样能使您按时上班。\\n您看,在凶杀发生的那天早晨,8点钟的那次车根本没有发。\\n它在芬格林车站出了故障而被取消了。”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"um0V62\",\"title\":\"Trapped in a mine\",\"titleTranslate\":\"困在矿井里\",\"text\":\"Six men have been trapped in a mine for seventeen hours. If they are not brought to the surface soon they may lose their lives. However, rescue operations are proving difficult. If explosives are used, vibrations will cause the roof of the mine to collapse. Rescue workers are therefore drilling a hole on the north side of the mine. They intend to bring the men up in a special capsule. If there had not been a hard layer of rock beneath the soil, they would have completed the job in a few hours. As it is, they have been drilling for sixteen hours and they still have a long way to go. Meanwhile, a microphone, which was lowered into the mine two hours ago, has enabled the men to keep in touch with their closest relatives. Though they are running out of food and drink, the men are cheerful and confident that they will get out soon. They have been told that rescue operations are progressing smoothly. If they knew how difficult it was to drill through the hard rock, they would lose heart.\",\"textCustomTranslate\":\"6个人被困在矿井里已有17个小时了。\\n如果不把他们尽快救到地面上来,他们就有可能丧生。\\n然而,事实证明营救工作非常困难。\\n如果用炸药爆破,震动会引起矿顶塌落。\\n因此,营救人员在矿井的北侧钻了一个洞。\\n他们准备用一种特制的容器把这6个人救上来。\\n如果不是因为土壤下面有一层坚硬的岩石,他们的营救工作仅用几个小时就可以完成了。\\n实际情况是,他们已连续钻了16个小时了,但离钻透还早着呢。\\n与此同时,两个小时以前放下井去的一只麦克风使井下的人可以与其亲属保持联系。\\n虽然他们的食物和饮料都快消耗尽了,但这些人的心情很好,坚信他们很快就会出去。\\n他们一直被告知营救工作进行得非常顺利。\\n如果他们知道了钻透那坚硬的岩石有多么困难,他们会丧失信心的。\",\"textNetworkTranslate\":\"六个人被困在矿井里长达十七个小时。\\n如果他们不尽快浮出水面,他们可能会失去生命。\\n然而,救援行动证明是困难的。\\n如果使用炸药,震动会导致矿井顶部坍塌。\\n因此,救援人员正在矿井北侧钻孔。\\n他们打算用一个特殊的太空舱把这些人带上来。\\n如果土壤下面没有一层坚硬的岩石,他们会在几个小时内完成这项工作。\\n事实上,他们已经钻探了16个小时,还有很长的路要走。\\n与此同时,两个小时前放进矿井的麦克风使这些人能够与最亲密的亲属保持联系。\\n尽管他们的食物和饮料都快用完了,但这些人都很高兴,相信他们很快就会出来。\\n他们被告知救援行动进展顺利。\\n如果他们知道钻穿坚硬的岩石有多难,他们就会失去信心。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"ot69mL\",\"title\":\"A slip of the tongue\",\"titleTranslate\":\"口误\",\"text\":\"People will do anything to see a free show -- even if it is a bad one. When the news got round that a comedy show would be presented at our local cinema by the P. and U. Bird Seed Company, we all rushed to see it. We had to queue for hours to get in and there must have been several hundred people present just before the show began. Unfortunately, the show was one of the dullest we have ever seen. Those who failed to get in need not have felt disappointed, as many of the artistes who should have appeared did not come. The only funny things we heard that evening came from the advertiser at the beginning of the programme. He was obviously very nervous and for some minutes stood awkwardly before the microphone. As soon as he opened his mouth, everyone burst out laughing. We all know what the poor man should have said, but what he actually said was: 'This is the Poo and Ee Seed Bird Company. Good ladies, evening and gentlemen!\\\"\",\"textCustomTranslate\":\"人们总要想尽办法看不花钱的演出——哪怕是拙劣的演出。\\n当“皮尤”鸟食公司将在我们当地影院演出喜剧节目的消息传开后,我们都赶紧跑去观看。\\n我们不得不排了好几个小时才进得场去。\\n在演出开始前场内肯定已有好几百人了。\\n不幸的是,这次演出是我们看过的最乏味的演出了。\\n那些没能进到场内的人没有必要感到失望,因为很多应该出场的专业演员都没有来。\\n那天晚上唯一有趣的事情是节目开始时那个报幕员的开场白。\\n他显然非常紧张,局促不安地在麦克风前站了好几分钟。\\n但他刚一开口说话,人们便哄堂大笑起来。\\n我们都明白那个可怜的人应该说些什么,而他实际说的却是:“这是‘浦伊’鸟食公司,好女士们,晚上和先生们!”\",\"textNetworkTranslate\":\"人们愿意做任何事情去看一场免费的演出——即使这是一场糟糕的演出。\\n当消息传来,我们当地的电影院将上演一场由美国鸟类种子公司制作的喜剧片时,我们都争先恐后地去看。\\n我们不得不排几个小时的队才能进去,演出开始前肯定有几百人在场。\\n不幸的是,这个节目是我们所见过的最无聊的节目之一。\\n那些未能进入的人不必感到失望,因为许多本应出现的艺人都没有来。\\n那天晚上,我们听到的唯一有趣的事情来自节目开始时的广告商。\\n他显然非常紧张,尴尬地站在麦克风前好几分钟。\\n他一开口,大家都大笑起来。\\n我们都知道这个可怜的人应该说什么,但他实际上说的是:“这是Poo and Ee Seed Bird Company。”。\\n女士们,晚上好,先生们!“\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"j1u5OS\",\"title\":\"What's for supper?\",\"titleTranslate\":\"晚餐吃什么?\",\"text\":\"Fish and chips has always been a favourite dish in Britain, but as the oceans have been overfished, fish has become more and more expensive. So it comes as a surprise to learn that giant fish are terrifying the divers on North Sea oil rigs. Oil rigs have to be repaired frequently and divers, who often have to work in darkness a hundred feet under water, have been frightened out of their wits by giant fish bumping into them as they work. Now they have had special cages made to protect them from these monsters. The fish are not sharks or killer whales, but favourite eating varieties like cod and skate which grow to unnatural sizes, sometimes as much as twelve feet in length. Three factors have caused these fish to grow so large: the warm water round the hot oil pipes under the sea; the plentiful supply of food thrown overboard by the crews on the rigs; the total absence of fishing boats around the oil rigs. As a result, the fish just eat and eat and grow and grow in the lovely warm water. Who eats who?\",\"textCustomTranslate\":\"油煎鱼加炸土豆片一直是英国人喜爱的一道菜,但是随着海洋里的滥捕滥捞,鱼已经变得越来越昂贵。\\n因此,听说北海石油钻井平台上的潜水员受到巨型鱼类的恐吓,确实很让人吃惊。\\n钻井平台需要经常修理,潜水员常常要在水面100英尺以下摸黑工作,他们曾在工作时被撞到他们身上的大鱼吓得惊惶失措。\\n现在他们有了特制的笼子,用来保护他们免受大鱼的侵袭。\\n这些鱼并不是鲨鱼或逆戟鲸,而是深受人们喜爱的食用鱼品种,如鳕鱼和鳐鱼,只不过它们长得出奇地大,有时长达12英尺。\\n这些鱼能长得这么大是由3个因素造成的:海底热的输油管道附近的温暖的海水;钻井平台工作人员抛到海里充足的食物;钻井平台周围根本没有捕鱼船只。\\n结果是,这些鱼就在可爱的温暖的水流中吃呀吃,长呀长。\\n究竟谁吃谁呢?\",\"textNetworkTranslate\":\"炸鱼薯条一直是英国人最喜欢的菜,但随着海洋被过度捕捞,鱼类变得越来越贵。\\n因此,当我们得知北海石油钻井平台上的巨型鱼类正在恐吓潜水员时,我们感到很惊讶。\\n石油钻井平台必须经常维修,潜水员经常不得不在水下一百英尺的黑暗中工作,他们在工作时被巨大的鱼撞到吓得魂不附体。\\n现在他们有了特殊的笼子来保护他们免受这些怪物的伤害。\\n这些鱼不是鲨鱼或虎鲸,而是最受欢迎的食用品种,如鳕鱼和鳐鱼,它们长得不自然,有时长达12英尺长。\\n有三个因素导致这些鱼长得这么大:海底热油管道周围的温水;钻井平台上的船员扔到船外的大量食物;石油钻井平台周围完全没有渔船。\\n因此,这些鱼只是在可爱的温水中吃、吃、长、长。\\n谁吃谁?\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"yS7uPB\",\"title\":\"Three men in a basket\",\"titleTranslate\":\"三人同篮\",\"text\":\"A pilot noticed a balloon which seemed to be making for a Royal Air Force Station nearby. He informed the station at once, but no one there was able to explain the mystery. The officer in the control tower was very angry when he heard the news, because balloons can be a great danger to aircraft. He said that someone might be spying on the station and the pilot was ordered to keep track of the strange object. The pilot managed to circle the balloon for some time. He could make out three men in a basket under it and one of them was holding a pair of binoculars. When the balloon was over the station, the pilot saw one of the men taking photographs. Soon afterwards, the balloon began to descend and it landed near an airfield. The police were called in, but they could not arrest anyone, for the basket contained two Members of Parliament and the Commanding Officer of the station! As the Commanding Officer explained later, one half of the station did not know what the other half was doing!\",\"textCustomTranslate\":\"一个飞行员发现了一只气球,它像是正飞往附近的一个皇家空军基地。\\n他马上把情况报告了该基地,但那里的人没有一个能解释这到底是怎么回事。\\n控制塔上的官员得知这一消息后,非常气愤,因为气球有可能给飞机造成极大的危险。\\n他说可能有人正对基地进行侦察,因此命令那个飞行员跟踪那个奇怪的飞行物。\\n飞行员设法绕着气球飞了一阵。\\n他看清了气球下面有3个人呆在一只筐里,其中一个举着望远镜。\\n当气球飞临基地上空时,飞行员看见有一个人在拍照。\\n不久,气球开始降落,在一个停机坪附近着了陆。\\n警察被召来了,但他们却不能逮捕任何人,因为筐里是两名国会议员和一名基地的指挥官!\\n正如指挥官后来解释的那样,基地的这半边不知道那半边正在干什么!\",\"textNetworkTranslate\":\"一名飞行员注意到一个气球似乎正在向附近的皇家空军基地飞去。\\n他立即通知了车站,但那里没有人能解释这个谜。\\n当控制塔的官员听到这个消息时非常生气,因为气球对飞机来说是一个巨大的危险。\\n他说,可能有人在监视空间站,飞行员被命令跟踪这个奇怪的物体。\\n飞行员设法使气球绕了一段时间。\\n他能认出下面篮子里有三个人,其中一个人拿着双筒望远镜。\\n当气球在空间站上空时,飞行员看到其中一名男子在拍照。\\n不久之后,气球开始下降,降落在一个机场附近。\\n警察被叫来了,但他们无法逮捕任何人,因为篮子里有两名国会议员和警察局的指挥官!\\n正如指挥官后来解释的那样,车站的一半人不知道另一半在做什么!\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"k-Kesj\",\"title\":\"Asking for trouble\",\"titleTranslate\":\"自找麻烦\",\"text\":\"It must have been about two in the morning when I returned home. I tried to wake up my wife by ringing the doorbell, but she was fast asleep, so I got a ladder from the shed in the garden, put it against the wall, and began climbing towards the bedroom window. I was almost there when a sarcastic voice below said, 'I don't think the windows need cleaning at this time of the night.' I looked down and nearly fell off the ladder when I saw a policeman. I immediately regretted answering in the way I did, but I said, 'I enjoy cleaning windows at night.'\\n'So do I,' answered the policeman in the same tone. 'Excuse my interrupting you. I hate to interrupt a man when he's busy working, but would you mind coming with me to the station?'\\n'Well, I'd prefer to stay here,' I said. 'You see. I've forgotten my key.'\\n'Your what?' he called.\\n'My key,' I shouted.\\nFortunately, the shouting woke up my wife who opened the window just as the policeman had started to climb towards me.\",\"textCustomTranslate\":\"我回到家时,肯定已是凌晨两点左右了。\\n我按响了门铃,试图唤醒我的妻子,但她睡得很熟。\\n于是,我从花园的小棚里搬来了一个梯子,把它靠在墙边,开始向卧室的窗口爬去。\\n快要爬到窗口时,下面一个人用讽刺的口吻说:“我看不必在夜里这个时候擦窗子吧。”\\n我向下面看去。\\n当我看清是一个警察时,差一点儿从梯子上掉下去。\\n我回答了他的话,但马上又后悔不该那样说,我是这样说的:“我喜欢在夜里擦窗子。”\\n\\n“我也是的,”警察用同样的声调回答,“请原谅我打断了您。\\n当一个人在忙着干活时,我是不愿意去打断他的,但请您跟我到警察局去一趟好吗?”\\n\\n“可我更愿意呆在这儿,”我说,“您瞧,我忘带钥匙了。”\\n\\n“什么?”\\n他大声问。\\n\\n“钥匙!”\\n我喊道。\\n\\n幸运得很,这喊声惊醒了我的妻子。\\n就在警察开始向我爬上来时,她打开了窗子。\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"vH83hK\",\"title\":\"A noble gift\",\"titleTranslate\":\"崇高的礼物\",\"text\":\"One of the most famous monuments in the world, the Statue of Liberty, was presented to the United States of America in the nineteenth century by the people of France. The great statue, which was designed by the sculptor Auguste Bartholdi, took ten years to complete. The actual figure was made of copper supported by a metal framework which had been especially constructed by Eiffel. Before it could be transported to the United States, a site had to be found for it and a pedestal had to be built. The site chosen was an island at the entrance of New York Harbour. By 1884, a statue which was 151 feet tall had been erected in Paris. The following year, it was taken to pieces and sent to America. By the end of October 1886, the statue had been put together again and it was officially presented to the American people by Bartholdi. Ever since then, the great monument has been a symbol of liberty for the millions of people who have passed through New York Harbour to make their homes in America.\",\"textCustomTranslate\":\"世界上最著名的纪念碑之一的自由女神雕像是在19世纪时由法国人民赠送给美国的。\\n这座由雕像家奥古斯特.巴索尔地设计的巨大雕像是用10年时间雕像刻成的。\\n这座雕像的主体是用铜制成的,由艾菲尔特制的金属框架支撑着。\\n在雕像被运往美国之前,必须为它选好一块场地,同时必须建造一个基座。\\n场地选在了纽约港入口处的一个鸟上。\\n到1884年,一座高度达151英尺的雕像在巴黎竖立起来了。\\n第二年,它被拆成若干小块,运到美国。\\n到1886年10月底,这座雕像被重新组装起来,由巴索尔地正式赠送给美国人民。\\n从那时起,这座伟大的纪念碑对通过纽约港进入美国定居的千百万人来说就一直是自由的象征。\",\"textNetworkTranslate\":\"19世纪,法国人民向美利坚合众国赠送了世界上最著名的纪念碑之一自由女神像。\\n这座伟大的雕像由雕塑家奥古斯特·巴尔托尔迪设计,历时十年才完成。\\n实际的雕像是由铜制成的,由艾菲尔特别建造的金属框架支撑。\\n在它被运往美国之前,必须为它找到一个场地,并建造一个基座。\\n选定的地点是纽约港入口处的一个岛屿。\\n到1884年,一座151英尺高的雕像已经在巴黎竖立起来。\\n第二年,它被拆成碎片,送往美国。\\n到1886年10月底,这座雕像被重新组装起来,并由巴托尔迪正式赠送给美国人民。\\n从那时起,这座伟大的纪念碑一直是数百万通过纽约港在美国安家的人自由的象征。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"49C6KE\",\"title\":\"Future champions\",\"titleTranslate\":\"未来的冠军\",\"text\":\"Experiments have proved that children can be instructed in swimming at a very early age. At a special swimming pool in Los Angeles, children become expert at holding their breath under water even before they can walk. Babies of two months old do not appear to be reluctant to enter the water. It is not long before they are so accustomed to swimming that they can pick up weights from the floor of the pool. A game that is very popular with these young swimmers is the underwater tricycle race. Tricycles are lined up on the floor of the pool seven feet under water. The children compete against each other to reach the other end of the pool. Many pedal their tricycles, but most of them prefer to push or drag them. Some children can cover the whole length of the pool without coming up for breath even once. Whether they will ever become future Olympic champions, only time will tell. Meanwhile, they should encourage those among us who cannot swim five yards before they are gasping for air.\",\"textCustomTranslate\":\"实验证明,儿童在很小的时候就可以开始学习游泳。\\n在洛杉矶的一个特设的游泳池里,孩子们甚至在还没有学会走路时就已经能熟练地在水下屏住呼吸了。\\n两个月的婴儿并未显得不愿意入水。\\n他们很快便适应了游泳,以致能捡起池底的物品。\\n这些幼小的游泳运动员非常喜爱的一种游戏是水下三轮车比赛。\\n三轮车并排放在7英尺深的游泳池底上。\\n孩子们比赛看谁先到达游泳池的另一端。\\n很多孩子用脚蹬车,但多数孩子更愿意推或是拉着三轮车。\\n有些孩子能够跑完游泳池的全长而不用露出水面换气。\\n他们将来是否能成为奥林匹克的冠军,这只能由时间来作出回答。\\n与此同时,他们对我们中的那些游不了5码就已喘不过气来的人应该是种鼓舞。\",\"textNetworkTranslate\":\"实验证明,孩子们可以在很小的时候就学会游泳。\\n在洛杉矶的一个特殊游泳池里,孩子们甚至在会走路之前就已经成为了在水下屏住呼吸的专家。\\n两个月大的婴儿似乎并不不愿意下水。\\n没过多久,他们就习惯了游泳,以至于可以从游泳池的地板上举重。\\n水下三轮车比赛是这些年轻游泳运动员非常喜欢的一项运动。\\n三轮车在水下七英尺的水池地板上一字排开。\\n孩子们争先恐后地到达游泳池的另一端。\\n许多人蹬着三轮车,但他们中的大多数人更喜欢推或拖三轮车。\\n有些孩子甚至一次都不会上来呼吸,就可以游完整个游泳池。\\n他们是否会成为未来的奥运冠军,只有时间才能证明。\\n同时,他们应该鼓励我们当中那些在大口呼吸空气之前游不到五码的人。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"},{\"id\":\"7rTntx\",\"title\":\"A fantasy\",\"titleTranslate\":\"纯属虚构\",\"text\":\"When the Ambassador or Escalopia returned home for lunch, his wife got a shock. He looked pale and his clothes were in a frightful state.\\n'What has happened?' she asked. 'How did your clothes get into such a mess?'\\n'A fire extinguisher, my dear,' answered the Ambassador drily. 'University students set the Embassy on fire this morning.'\\n'Good heavens!' exclaimed his wife. 'And where were you at the time?'\\n'I was in my office as usual,' answered the Ambassador. 'The fire broke out in the basement. I went down immediately, of course, and that fool, Horst, aimed a fire extinguisher at me. He thought I was on fire. I must definitely get that fellow posted.'\\nThe Ambassador's wife went on asking questions, when she suddenly noticed a big hole in her husband's hat.\\n'And how can you explain that?' she asked.\\n'Oh, that,' said the Ambassador. 'Someone fired a shot through my office window. Accurate, don't you think? Fortunately, I wasn't wearing it at the time. If I had been, I would not have been able to get home for lunch.'\",\"textCustomTranslate\":\"当艾斯卡罗比亚国的大使回到家吃午饭时,把他的夫人吓了一跳。\\n他面色苍白,衣服也搞得不成样子。\\n\\n“发生了什么事?”\\n她问,“你的衣服怎么搞得一塌糊涂?”\\n\\n“灭火器弄的,亲爱的,”大使冷冷地回答,“今天上午大学生们放火点着了大使馆。”\\n\\n“天啊!”\\n他的夫人惊叫,“那你当时在什么地方?”\\n\\n“我和往常一样,在办公室里,”大使回答说。\\n“地下室突然着火,我当然马上下去了。\\n但那个傻瓜霍斯特把灭火器对准了我。\\n他认为是我着火了。\\n我一定要把那个家伙打发走。”\\n\\n大使夫人继续提出问题,她突然又发现丈夫的帽子上有个洞。\\n\\n“那么你对那又作何解释呢?”\\n她问。\\n\\n“那个嘛,”大使说,“有人向我办公室窗户开了一枪。\\n真够准的,是不是?\\n幸亏我当时没戴帽子。\\n如果真戴着它,我现在就不能回家来吃午饭了。”\",\"textNetworkTranslate\":\"\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"custom\"},{\"id\":\"wJCulo\",\"title\":\"The dead return\",\"titleTranslate\":\"亡灵返乡\",\"text\":\"A Festival for the Dead is held once a year in Japan. This festival is a cheerful occasion, for on this day, the dead are said to return to their homes and they are welcomed by the living. As they are expected to be hungry after their long journey, food is laid out for them. Specially-made lanterns are hung outside each house to help the dead to find their way. All night long, people dance and sing. In the early morning, the food that had been laid out for the dead is thrown into a river or into the sea as it is considered unlucky for anyone living to eat it. In towns that are near the sea, the tiny lanterns which had been hung in the streets the night before, are placed into the water when the festival is over. Thousands of lanterns slowly drift out to sea guiding the dead on their return journey to the other world. This is a moving spectacle, for crowds of people stand on the shore watching the lanterns drifting away until they can be seen no more.\",\"textCustomTranslate\":\"日本每年过一次“亡灵节”。\\n这个节日是个欢乐的日子,因为在这一天,据说死去的人要回到他们的家里来,活着的人则对他们表示欢迎。\\n因为预料到他们在经过长途旅行之后会感到饥饿,所以为他们摆放好了食品。\\n特制的灯笼挂在各家的门外,为的是帮助亡灵看清道路。\\n整个夜晚人们载歌载舞。\\n一大早,人们便把为死者摆放的食品扔进河中或海里,因为人们认为活着的人吃了这些东西是不吉利的。\\n在靠海的城镇中,头天夜里挂在大街小巷的小灯笼在节后就放在了水里。\\n成千上万只灯笼慢慢漂向大海,指引着亡灵返回另一个世界。\\n这是一个感人的场面,人们成群地伫立在海岸上,注视着灯笼远去,直到再也看不见为止。\",\"textNetworkTranslate\":\"日本每年举行一次亡灵节。\\n这个节日是一个愉快的时刻,因为在这一天,据说死者会回到他们的家中,他们会受到生者的欢迎。\\n由于人们预计他们在长途旅行后会感到饥饿,因此为他们安排了食物。\\n每个房子外面都挂着特制的灯笼,帮助死者找到自己的路。\\n人们彻夜载歌载舞。\\n在清晨,为死者准备的食物被扔进河里或海里,因为活着的人吃这些食物被认为是不吉利的。\\n在海边的城镇,前一天晚上挂在街上的小灯笼在节日结束后被放进水里。\\n成千上万的灯笼慢慢漂向大海,引导死者踏上返回另一个世界的旅程。\\n这是一个感人的场面,因为成群的人站在岸边看着灯笼飘走,直到看不到它们了。\",\"textCustomTranslateIsFormat\":true,\"newWords\":[],\"textAllWords\":[],\"useTranslateType\":\"network\"}],\"statistics\":[],\"isCustom\":true,\"length\":91,\"resourceId\":\"\",\"url\":\"NCE_2.json\",\"category\":\"文章学习\",\"tags\":[\"新概念英语\"],\"translateLanguage\":\"common\",\"type\":\"article\",\"language\":\"en\"},{\"id\":\"1ATjvG\",\"name\":\"新概念英语2-课文\",\"description\":\"新概念英语2-课文\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":false,\"length\":96,\"resourceId\":\"\",\"url\":\"NCE_2.json\",\"category\":\"文章学习\",\"tags\":[\"新概念英语\"],\"translateLanguage\":\"common\",\"type\":\"article\",\"language\":\"en\"},{\"id\":\"DF11zb\",\"name\":\"新概念英语2-课文\",\"description\":\"新概念英语2-课文\",\"sort\":0,\"originWords\":[],\"words\":[],\"chapterWordNumber\":30,\"chapterWords\":[],\"residueWords\":[],\"chapterIndex\":0,\"wordIndex\":0,\"articles\":[],\"statistics\":[],\"isCustom\":false,\"length\":96,\"resourceId\":\"\",\"url\":\"NCE_2.json\",\"category\":\"文章学习\",\"tags\":[\"新概念英语\"],\"translateLanguage\":\"common\",\"type\":\"article\",\"language\":\"en\"}],\"collectDictIds\":[],\"current\":{\"index\":6},\"simpleWords\":[\"a\",\"an\",\"i\",\"my\",\"you\",\"your\",\"me\",\"it\",\"what\",\"who\",\"where\",\"how\",\"when\",\"which\",\"be\",\"am\",\"is\",\"do\",\"are\",\"did\",\"were\",\"was\",\"can\",\"could\",\"will\",\"would\",\"the\",\"that\",\"this\",\"to\",\"of\",\"for\",\"and\",\"at\",\"not\",\"no\",\"yes\"],\"load\":true},\"version\":3}" async function look() { let configStr: string = await localforage.getItem(SAVE_DICT_KEY.key) @@ -47,14 +26,16 @@ async function check() { // console.log('local', configStr) // console.log('or',origin) // let configStr: string = await localforage.getItem(SAVE_DICT_KEY.key) - let data = checkAndUpgradeSaveDict(origin) - console.log('data',data) + console.parse(str) + // console.log(str) + let data = checkAndUpgradeSaveDict(str) + console.log('data', data) // this.setState(data) } const generateColumns = (length = 10, prefix = 'column-', props?: any) => - Array.from({ length }).map((_, columnIndex) => ({ + Array.from({length}).map((_, columnIndex) => ({ ...props, key: `${prefix}${columnIndex}`, dataKey: `${prefix}${columnIndex}`, @@ -67,7 +48,7 @@ const generateData = ( length = 200, prefix = 'row-' ) => - Array.from({ length }).map((_, rowIndex) => { + Array.from({length}).map((_, rowIndex) => { return columns.reduce( (rowData, column, columnIndex) => { rowData[column.dataKey] = `Row ${rowIndex} - Col ${columnIndex}` @@ -109,7 +90,7 @@ const data1 = generateData(columns, 1000) font-size: 1rem; color: black; - .data{ + .data { display: flex; flex-direction: column; gap: 1rem; diff --git a/src/utils/index.ts b/src/utils/index.ts index 74d2d038..0412aa81 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -2,7 +2,7 @@ import {SAVE_DICT_KEY, SAVE_SETTING_KEY} from "@/utils/const.ts"; import {BaseState, DefaultBaseState} from "@/stores/base.ts"; import {DefaultSettingState, SettingState} from "@/stores/setting.ts"; import {cloneDeep} from "lodash-es"; -import {Dict, DictResource, DictType, getDefaultDict, getDefaultWord} from "@/types.ts"; +import {Dict, DictResource, DictType, getDefaultArticle, getDefaultDict, getDefaultWord} from "@/types.ts"; import {ArchiveReader, libarchiveWasm} from "libarchive-wasm"; import {useRouter} from "vue-router"; import {useRuntimeStore} from "@/stores/runtime.ts"; @@ -11,7 +11,7 @@ import dayjs from 'dayjs' import axios from "axios"; import {env} from "@/config/ENV.ts"; import {nextTick} from "vue"; -import {dictionaryResources} from "@/assets/dictionary.ts"; +import {dictionaryResources, enArticle} from "@/assets/dictionary.ts"; export function getRandom(a: number, b: number): number { return Math.random() * (b - a) + a; @@ -67,72 +67,114 @@ export function checkAndUpgradeSaveDict(val: any) { } } + const safeString = (str) => (typeof str === 'string' ? str.trim() : ''); + function formatWord(dict) { dict.words = dict.words.map(v => { return getDefaultWord({ word: v.name, phonetic0: v.usphone, phonetic1: v.ukphone, - trans: v.trans.map(b => { - return { - pos: '', - cn: b, + trans: v.trans.map(line => { + const match = line.match(/^([^\s.]+\.?)\s*(.*)$/); + if (match) { + let pos = safeString(match[1]); + let cn = safeString(match[2]); + + // 如果 pos 不是常规词性(不以字母开头),例如 "【名】" + if (!/^[a-zA-Z]+\.?$/.test(pos)) { + cn = safeString(line); // 整行放到 cn + pos = ''; // pos 置空 + } + + return {pos, cn}; } - }), + return {pos: '', cn: safeString(line)}; + }) }) }) + dict.statistics = dict.statistics.map(v => { + return { + startDate: v.startDate, + spend: v.endDate - v.startDate, + total: v.total, + new: v.total, + wrong: v.wrongWordNumber + } + }) + dict.articles = dict.articles.map(v => { + let r = getDefaultArticle({ + textTranslate: v.textCustomTranslate + }) + assign(r, v) + return r + }) } state.myDictList.map((v: any) => { - let currentDictId = v.id - if (['collect', 'simple', 'wrong'].includes(v.type)) { - formatWord(v) - delete v.id - delete v.name + try { + let currentDictId = v.id + let currentType = v.type delete v.type - if (v.type === 'collect') { - if (currentDictId === studyDictId) defaultState.word.studyIndex = 0 - assign(defaultState.word.bookList[0], v) - } - if (v.type === 'simple') { - if (currentDictId === studyDictId) defaultState.word.studyIndex = 2 - assign(defaultState.word.bookList[2], v) - } - if (v.type === 'wrong') { - if (currentDictId === studyDictId) defaultState.word.studyIndex = 1 - assign(defaultState.word.bookList[1], v) - } - } - if (v.type === 'word') { - delete v.type - if (v.isCustom) { + if (['collect', 'simple', 'wrong'].includes(v.type)) { formatWord(v) - let dict = getDefaultDict() - assign(dict, v) - defaultState.word.bookList.push(dict) - if (currentDictId === studyDictId) defaultState.word.studyIndex = defaultState.word.bookList.length - 1 - } else { - let r = dictionaryResources.find(a => a.id === currentDictId) - if (r) { - defaultState.word.bookList.push(getDefaultDict(r)) + delete v.id + delete v.name + if (currentType === 'collect') { + if (currentDictId === studyDictId) defaultState.word.studyIndex = 0 + assign(defaultState.word.bookList[0], v) + } + if (currentType === 'simple') { + if (currentDictId === studyDictId) defaultState.word.studyIndex = 2 + assign(defaultState.word.bookList[2], v) + } + if (currentType === 'wrong') { + if (currentDictId === studyDictId) defaultState.word.studyIndex = 1 + assign(defaultState.word.bookList[1], v) + } + } + if (currentType === 'word') { + if (v.isCustom) { + formatWord(v) + let dict = getDefaultDict({custom: true}) + assign(dict, v) + defaultState.word.bookList.push(dict) if (currentDictId === studyDictId) defaultState.word.studyIndex = defaultState.word.bookList.length - 1 + } else { + //当时把选中的词典的id设为随机了,导致通过id找不到 + let r = dictionaryResources.find(a => a.name === v.name) + if (r) { + formatWord(v) + let dict = getDefaultDict(r) + assign(dict, v) + dict.id = r.id + defaultState.word.bookList.push(dict) + if (currentDictId === studyDictId) defaultState.word.studyIndex = defaultState.word.bookList.length - 1 + } } } - } - if (v.type === 'article') { - delete v.type - if (v.isCustom) { - let dict = getDefaultDict() - assign(dict, v) - defaultState.article.bookList.push(dict) - if (currentDictId === studyDictId) defaultState.article.studyIndex = defaultState.article.bookList.length - 1 - } else { - let r = dictionaryResources.find(a => a.id === currentDictId) - if (r) { - defaultState.article.bookList.push(getDefaultDict(r)) + if (currentType === 'article') { + if (v.isCustom) { + formatWord(v) + let dict = getDefaultDict({custom: true}) + assign(dict, v) + defaultState.article.bookList.push(dict) if (currentDictId === studyDictId) defaultState.article.studyIndex = defaultState.article.bookList.length - 1 + } else { + //当时把选中的词典的id设为随机了 + let r = enArticle.find(a => a.name === v.name) + if (r) { + formatWord(v) + let dict = getDefaultDict(r) + assign(dict, v) + dict.id = r.id + defaultState.article.bookList.push(dict) + if (currentDictId === studyDictId) defaultState.article.studyIndex = defaultState.article.bookList.length - 1 + } } } + } catch (e) { + console.log('升级数据失败!') } }) } @@ -383,3 +425,112 @@ export async function _getDictDataByUrl(val: DictResource): Promise { words }) } + +//从字符串里面转换为Word格式 +export function convertToWord(raw: any) { + const safeString = (str) => (typeof str === 'string' ? str.trim() : ''); + const safeSplit = (str, sep) => + safeString(str) ? safeString(str).split(sep).filter(Boolean) : []; + + // 1. trans + const trans = safeSplit(raw.trans, '\n').map(line => { + const match = line.match(/^([^\s.]+\.?)\s*(.*)$/); + if (match) { + let pos = safeString(match[1]); + let cn = safeString(match[2]); + + // 如果 pos 不是常规词性(不以字母开头),例如 "【名】" + if (!/^[a-zA-Z]+\.?$/.test(pos)) { + cn = safeString(line); // 整行放到 cn + pos = ''; // pos 置空 + } + + return {pos, cn}; + } + return {pos: '', cn: safeString(line)}; + }); + + // 2. sentences + const sentences = safeSplit(raw.sentences, '\n\n').map(block => { + const [c, cn] = block.split('\n'); + return {c: safeString(c), cn: safeString(cn)}; + }); + + // 3. phrases + const phrases = safeSplit(raw.phrases, '\n\n').map(block => { + const [c, cn] = block.split('\n'); + return {c: safeString(c), cn: safeString(cn)}; + }); + + // 4. synos + const synos = safeSplit(raw.synos, '\n\n').map(block => { + const lines = block.split('\n').map(safeString); + const [posCn, wsStr] = lines; + let pos = ''; + let cn = ''; + + if (posCn) { + const posMatch = posCn.match(/^([a-zA-Z.]+)(.*)$/); + pos = posMatch ? safeString(posMatch[1]) : ''; + cn = posMatch ? safeString(posMatch[2]) : safeString(posCn); + } + const ws = wsStr ? wsStr.split('/').map(safeString) : []; + + return {pos, cn, ws}; + }); + + // 5. relWords + const relWordsText = safeString(raw.relWords); + let root = ''; + const rels = []; + + if (relWordsText) { + const relLines = relWordsText.split('\n').filter(Boolean); + if (relLines.length > 0) { + root = safeString(relLines[0].replace(/^词根:/, '')); + let currentPos = ''; + let currentWords = []; + + for (let i = 1; i < relLines.length; i++) { + const line = relLines[i].trim(); + if (!line) continue; + + if (/^[a-z]+\./i.test(line)) { + if (currentPos && currentWords.length > 0) { + rels.push({pos: currentPos, words: currentWords}); + } + currentPos = safeString(line.replace(':', '')); + currentWords = []; + } else if (line.includes(':')) { + const [c, cn] = line.split(':'); + currentWords.push({c: safeString(c), cn: safeString(cn)}); + } + } + if (currentPos && currentWords.length > 0) { + rels.push({pos: currentPos, words: currentWords}); + } + } + } + + // 6. etymology + const etymology = safeSplit(raw.etymology, '\n\n').map(block => { + const lines = block.split('\n').map(safeString); + const t = lines.shift() || ''; + const d = lines.join('\n').trim(); + return {t, d}; + }); + + return getDefaultWord({ + id: raw.id, + word: safeString(raw.word), + phonetic0: safeString(raw.phonetic0), + phonetic1: safeString(raw.phonetic1), + trans, + sentences, + phrases, + synos, + relWords: {root, rels}, + etymology, + custom: true + }); +} diff --git a/tsconfig.json b/tsconfig.json index ac7dd140..c9efcf51 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -48,7 +48,8 @@ "src/**/*.d.ts", "src/**/*.vue", "auto-imports.d.ts", - "src/vite-env.d.ts" + "src/vite-env.d.ts", + "src/global.d.ts" ], "references": [ {