ielts-4000.json 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684
  1. [
  2. {
  3. "word": "abandon",
  4. "def": "lacking restraint or control; feeling of extreme emotional intensity; unbounded enthusiasm",
  5. "pos": "",
  6. "phonetic": "",
  7. "zh": ""
  8. },
  9. {
  10. "word": "abandonment",
  11. "def": "giving up completely; freedom from constraint",
  12. "pos": "",
  13. "phonetic": "",
  14. "zh": ""
  15. },
  16. {
  17. "word": "abbreviation",
  18. "def": "shortening something by omitting parts of it",
  19. "pos": "",
  20. "phonetic": "",
  21. "zh": ""
  22. },
  23. {
  24. "word": "abeyance",
  25. "def": "suspended action; temporary cessation or suspension",
  26. "pos": "",
  27. "phonetic": "",
  28. "zh": ""
  29. },
  30. {
  31. "word": "abide",
  32. "def": "endure; put up with; bear; tolerate",
  33. "pos": "",
  34. "phonetic": "",
  35. "zh": ""
  36. },
  37. {
  38. "word": "ability",
  39. "def": "capacity; skill",
  40. "pos": "",
  41. "phonetic": "",
  42. "zh": ""
  43. },
  44. {
  45. "word": "abnormal",
  46. "def": "unusual; not typical; not normal",
  47. "pos": "",
  48. "phonetic": "",
  49. "zh": ""
  50. },
  51. {
  52. "word": "aboard",
  53. "def": "on a ship, train, plane or other vehicle; in or into a group, organization, or business",
  54. "pos": "",
  55. "phonetic": "",
  56. "zh": ""
  57. },
  58. {
  59. "word": "abolish",
  60. "def": "cancel; put an end to; destroy completely",
  61. "pos": "",
  62. "phonetic": "",
  63. "zh": ""
  64. },
  65. {
  66. "word": "abolition",
  67. "def": "ending; act of abolishing; act of doing away with",
  68. "pos": "",
  69. "phonetic": "",
  70. "zh": ""
  71. },
  72. {
  73. "word": "abortion",
  74. "def": "termination of pregnancy; failure of a plan",
  75. "pos": "",
  76. "phonetic": "",
  77. "zh": ""
  78. },
  79. {
  80. "word": "abortive",
  81. "def": "unsuccessful; failing to accomplish an intended objective; fruitless",
  82. "pos": "",
  83. "phonetic": "",
  84. "zh": ""
  85. },
  86. {
  87. "word": "abridge",
  88. "def": "condense; shorten; reduce length of written text",
  89. "pos": "",
  90. "phonetic": "",
  91. "zh": ""
  92. },
  93. {
  94. "word": "abrogate",
  95. "def": "abolish, do away with, or annul, especially by authority",
  96. "pos": "",
  97. "phonetic": "",
  98. "zh": ""
  99. },
  100. {
  101. "word": "abrupt",
  102. "def": "broken off; very steep; having sudden transitions from one subject to another",
  103. "pos": "",
  104. "phonetic": "",
  105. "zh": ""
  106. },
  107. {
  108. "word": "absence",
  109. "def": "state of being absent; state of being away",
  110. "pos": "",
  111. "phonetic": "",
  112. "zh": ""
  113. },
  114. {
  115. "word": "absent",
  116. "def": "go away or leave ; missing; not present",
  117. "pos": "",
  118. "phonetic": "",
  119. "zh": ""
  120. },
  121. {
  122. "word": "absolute",
  123. "def": "perfect in quality or nature; complete; totally unlimited; certain",
  124. "pos": "",
  125. "phonetic": "",
  126. "zh": ""
  127. },
  128. {
  129. "word": "absolutely",
  130. "def": "utterly; definitely",
  131. "pos": "",
  132. "phonetic": "",
  133. "zh": ""
  134. },
  135. {
  136. "word": "absorb",
  137. "def": "assimilate or incorporate; suck or drink up; occupy full attention",
  138. "pos": "",
  139. "phonetic": "",
  140. "zh": ""
  141. },
  142. {
  143. "word": "absorption",
  144. "def": "process of absorbing nutrients into the body after digestion; state of mental",
  145. "pos": "",
  146. "phonetic": "",
  147. "zh": ""
  148. },
  149. {
  150. "word": "abstract",
  151. "def": "theoretical; not concrete; not applied or practical; difficult to understand",
  152. "pos": "",
  153. "phonetic": "",
  154. "zh": ""
  155. },
  156. {
  157. "word": "absurd",
  158. "def": "preposterous; ridiculously incongruous or unreasonable; foolish",
  159. "pos": "",
  160. "phonetic": "",
  161. "zh": ""
  162. },
  163. {
  164. "word": "absurdity",
  165. "def": "quality of being absurd or inconsistent with obvious truth, reason, or sound judgment;",
  166. "pos": "",
  167. "phonetic": "",
  168. "zh": ""
  169. },
  170. {
  171. "word": "abundance",
  172. "def": "great or plentiful amount; fullness to overflowing",
  173. "pos": "",
  174. "phonetic": "",
  175. "zh": ""
  176. },
  177. {
  178. "word": "abundant",
  179. "def": "plentiful; possessing riches or resources",
  180. "pos": "",
  181. "phonetic": "",
  182. "zh": ""
  183. },
  184. {
  185. "word": "abuse",
  186. "def": "improper use or handling; misuse",
  187. "pos": "",
  188. "phonetic": "",
  189. "zh": ""
  190. },
  191. {
  192. "word": "academic",
  193. "def": "related to school; not practical or directly useful; relating to scholarly organization; based",
  194. "pos": "",
  195. "phonetic": "",
  196. "zh": ""
  197. },
  198. {
  199. "word": "academy",
  200. "def": "school for special instruction; society of scholars, scientists, or artists",
  201. "pos": "",
  202. "phonetic": "",
  203. "zh": ""
  204. },
  205. {
  206. "word": "accede",
  207. "def": "agree; give consent, often at insistence of another; concede",
  208. "pos": "",
  209. "phonetic": "",
  210. "zh": ""
  211. },
  212. {
  213. "word": "accelerate",
  214. "def": "move faster; cause to develop or progress more quickly; occur sooner than expected",
  215. "pos": "",
  216. "phonetic": "",
  217. "zh": ""
  218. },
  219. {
  220. "word": "acceleration",
  221. "def": "faster rate of improvement; rate of change of velocity with respect to time",
  222. "pos": "",
  223. "phonetic": "",
  224. "zh": ""
  225. },
  226. {
  227. "word": "access",
  228. "def": "approach; entry; entrance",
  229. "pos": "",
  230. "phonetic": "",
  231. "zh": ""
  232. },
  233. {
  234. "word": "accessible",
  235. "def": "easily approached or entered; obtainable; easy to talk to or get along with",
  236. "pos": "",
  237. "phonetic": "",
  238. "zh": ""
  239. },
  240. {
  241. "word": "accessory",
  242. "def": "additional object; useful but not essential thing; subordinate or supplementary item",
  243. "pos": "",
  244. "phonetic": "",
  245. "zh": ""
  246. },
  247. {
  248. "word": "accident",
  249. "def": "event that takes place without one's foresight or expectation; sudden, and unexpected",
  250. "pos": "",
  251. "phonetic": "",
  252. "zh": ""
  253. },
  254. {
  255. "word": "accidental",
  256. "def": "unexpected; unforeseen",
  257. "pos": "",
  258. "phonetic": "",
  259. "zh": ""
  260. },
  261. {
  262. "word": "accidentally",
  263. "def": "inadvertently; by chance; casually; fortuitously; not essentially or intrinsically",
  264. "pos": "",
  265. "phonetic": "",
  266. "zh": ""
  267. },
  268. {
  269. "word": "accommodate",
  270. "def": "do a favor or service for; provide for; supply with; make suitable; adapt; allow for",
  271. "pos": "",
  272. "phonetic": "",
  273. "zh": ""
  274. },
  275. {
  276. "word": "accommodation",
  277. "def": "living quarters provided for public convenience",
  278. "pos": "",
  279. "phonetic": "",
  280. "zh": ""
  281. },
  282. {
  283. "word": "accompaniment",
  284. "def": "act of accompanying someone or something",
  285. "pos": "",
  286. "phonetic": "",
  287. "zh": ""
  288. },
  289. {
  290. "word": "accompany",
  291. "def": "travel with; be associated with",
  292. "pos": "",
  293. "phonetic": "",
  294. "zh": ""
  295. },
  296. {
  297. "word": "accomplish",
  298. "def": "succeed in doing; bring to pass; achieve; reach the end of; complete",
  299. "pos": "",
  300. "phonetic": "",
  301. "zh": ""
  302. },
  303. {
  304. "word": "accomplishment",
  305. "def": "achievement; fulfillment",
  306. "pos": "",
  307. "phonetic": "",
  308. "zh": ""
  309. },
  310. {
  311. "word": "accord",
  312. "def": "settlement or compromise of conflicting opinions; written agreement between two states",
  313. "pos": "",
  314. "phonetic": "",
  315. "zh": ""
  316. },
  317. {
  318. "word": "account",
  319. "def": "narrative or record of events; reason given for a particular action or event",
  320. "pos": "",
  321. "phonetic": "",
  322. "zh": ""
  323. },
  324. {
  325. "word": "accountant",
  326. "def": "one who maintains and audits business accounts",
  327. "pos": "",
  328. "phonetic": "",
  329. "zh": ""
  330. },
  331. {
  332. "word": "accounting",
  333. "def": "system that provides quantitative information about finances",
  334. "pos": "",
  335. "phonetic": "",
  336. "zh": ""
  337. },
  338. {
  339. "word": "accrue",
  340. "def": "increase, accumulate, or come about as a result of growth; accumulate over time",
  341. "pos": "",
  342. "phonetic": "",
  343. "zh": ""
  344. },
  345. {
  346. "word": "accumulate",
  347. "def": "pile up; collect; mount up; increase",
  348. "pos": "",
  349. "phonetic": "",
  350. "zh": ""
  351. },
  352. {
  353. "word": "accumulation",
  354. "def": "increase by natural growth or addition; concentration",
  355. "pos": "",
  356. "phonetic": "",
  357. "zh": ""
  358. },
  359. {
  360. "word": "accuracy",
  361. "def": "quality of nearness to the truth or the true value",
  362. "pos": "",
  363. "phonetic": "",
  364. "zh": ""
  365. },
  366. {
  367. "word": "accurate",
  368. "def": "capable of providing a correct reading or measurement; performing with care and precision",
  369. "pos": "",
  370. "phonetic": "",
  371. "zh": ""
  372. },
  373. {
  374. "word": "accusation",
  375. "def": "indictment; charge of wrongdoing that is made against a person or other party",
  376. "pos": "",
  377. "phonetic": "",
  378. "zh": ""
  379. },
  380. {
  381. "word": "accuse",
  382. "def": "blame; condemn",
  383. "pos": "",
  384. "phonetic": "",
  385. "zh": ""
  386. },
  387. {
  388. "word": "achieve",
  389. "def": "gain with effort; accomplish; fulfill",
  390. "pos": "",
  391. "phonetic": "",
  392. "zh": ""
  393. },
  394. {
  395. "word": "achievement",
  396. "def": "feat; accomplishment; award for completing a particular task or meeting an objective",
  397. "pos": "",
  398. "phonetic": "",
  399. "zh": ""
  400. },
  401. {
  402. "word": "acid",
  403. "def": "sour; water-soluble compounds having a sour taste; quality of being sarcastic, bitter, or scornful",
  404. "pos": "",
  405. "phonetic": "",
  406. "zh": ""
  407. },
  408. {
  409. "word": "acknowledge",
  410. "def": "declare to be true or admit; express obligation, thanks",
  411. "pos": "",
  412. "phonetic": "",
  413. "zh": ""
  414. },
  415. {
  416. "word": "acquaint",
  417. "def": "inform about; cause to come to know personally; make familiar",
  418. "pos": "",
  419. "phonetic": "",
  420. "zh": ""
  421. },
  422. {
  423. "word": "acquaintance",
  424. "def": "personal knowledge or information about someone or something",
  425. "pos": "",
  426. "phonetic": "",
  427. "zh": ""
  428. },
  429. {
  430. "word": "acquainted",
  431. "def": "known by or familiar with another; informed or familiar",
  432. "pos": "",
  433. "phonetic": "",
  434. "zh": ""
  435. },
  436. {
  437. "word": "acquire",
  438. "def": "gain through experience or effort; gain possession of; locate with tracking system",
  439. "pos": "",
  440. "phonetic": "",
  441. "zh": ""
  442. },
  443. {
  444. "word": "acquisition",
  445. "def": "act of contracting or assuming or acquiring possession of something",
  446. "pos": "",
  447. "phonetic": "",
  448. "zh": ""
  449. },
  450. {
  451. "word": "across",
  452. "def": "from side to side; crosswise, or in a direction opposed to the length",
  453. "pos": "",
  454. "phonetic": "",
  455. "zh": ""
  456. },
  457. {
  458. "word": "activate",
  459. "def": "make active or more active; stimulate; make radioactive",
  460. "pos": "",
  461. "phonetic": "",
  462. "zh": ""
  463. },
  464. {
  465. "word": "actively",
  466. "def": "energetically; vigorously; in an active manner; voluntarily, not passively",
  467. "pos": "",
  468. "phonetic": "",
  469. "zh": ""
  470. },
  471. {
  472. "word": "actual",
  473. "def": "true; real; being, existing, or acting at the present moment; current",
  474. "pos": "",
  475. "phonetic": "",
  476. "zh": ""
  477. },
  478. {
  479. "word": "actually",
  480. "def": "truly; really; in fact",
  481. "pos": "",
  482. "phonetic": "",
  483. "zh": ""
  484. },
  485. {
  486. "word": "acute",
  487. "def": "quickly perceptive; keen; having a sharp point or tip; extremely sharp or severe",
  488. "pos": "",
  489. "phonetic": "",
  490. "zh": ""
  491. },
  492. {
  493. "word": "adapt",
  494. "def": "make fit for; change to suit a new purpose",
  495. "pos": "",
  496. "phonetic": "",
  497. "zh": ""
  498. },
  499. {
  500. "word": "adaptation",
  501. "def": "modification; alteration or adjustment in structure or habits",
  502. "pos": "",
  503. "phonetic": "",
  504. "zh": ""
  505. },
  506. {
  507. "word": "additional",
  508. "def": "further; extra; supplemental or added to",
  509. "pos": "",
  510. "phonetic": "",
  511. "zh": ""
  512. },
  513. {
  514. "word": "additive",
  515. "def": "addition; supplement",
  516. "pos": "",
  517. "phonetic": "",
  518. "zh": ""
  519. },
  520. {
  521. "word": "address",
  522. "def": "make a formal speech to; deal with or discuss; direct efforts or attention of",
  523. "pos": "",
  524. "phonetic": "",
  525. "zh": ""
  526. },
  527. {
  528. "word": "adequate",
  529. "def": "sufficient; enough to meet a purpose",
  530. "pos": "",
  531. "phonetic": "",
  532. "zh": ""
  533. },
  534. {
  535. "word": "adhere",
  536. "def": "stick fast; stick to firmly; be compatible or in accordance with",
  537. "pos": "",
  538. "phonetic": "",
  539. "zh": ""
  540. },
  541. {
  542. "word": "adhesive",
  543. "def": "glue; paste ; substance that unites or bonds surfaces together",
  544. "pos": "",
  545. "phonetic": "",
  546. "zh": ""
  547. },
  548. {
  549. "word": "adjacent",
  550. "def": "adjoining; neighboring; close to; lying near",
  551. "pos": "",
  552. "phonetic": "",
  553. "zh": ""
  554. },
  555. {
  556. "word": "adjoin",
  557. "def": "be next to; be contiguous to; border on",
  558. "pos": "",
  559. "phonetic": "",
  560. "zh": ""
  561. },
  562. {
  563. "word": "adjust",
  564. "def": "adapt; regulate",
  565. "pos": "",
  566. "phonetic": "",
  567. "zh": ""
  568. },
  569. {
  570. "word": "adjustment",
  571. "def": "making or becoming suitable; adjusting to circumstances",
  572. "pos": "",
  573. "phonetic": "",
  574. "zh": ""
  575. },
  576. {
  577. "word": "administer",
  578. "def": "govern; supervise; give or apply medications",
  579. "pos": "",
  580. "phonetic": "",
  581. "zh": ""
  582. },
  583. {
  584. "word": "administration",
  585. "def": "management; supervision; people who are in charge for management; activity of",
  586. "pos": "",
  587. "phonetic": "",
  588. "zh": ""
  589. },
  590. {
  591. "word": "administrative",
  592. "def": "of or relating to or responsible for administration",
  593. "pos": "",
  594. "phonetic": "",
  595. "zh": ""
  596. },
  597. {
  598. "word": "admiration",
  599. "def": "favorable judgment; feeling of pleasure, wonder, and approval",
  600. "pos": "",
  601. "phonetic": "",
  602. "zh": ""
  603. },
  604. {
  605. "word": "admire",
  606. "def": "regard with wonder or astonishment; view with surprise; marvel at",
  607. "pos": "",
  608. "phonetic": "",
  609. "zh": ""
  610. },
  611. {
  612. "word": "admission",
  613. "def": "act or practice of admitting; power or permission to enter",
  614. "pos": "",
  615. "phonetic": "",
  616. "zh": ""
  617. },
  618. {
  619. "word": "admit",
  620. "def": "permit to enter; receive; provide the right or a means of entrance to",
  621. "pos": "",
  622. "phonetic": "",
  623. "zh": ""
  624. },
  625. {
  626. "word": "admittedly",
  627. "def": "doubtlessly; in an acknowledged manner; confessedly",
  628. "pos": "",
  629. "phonetic": "",
  630. "zh": ""
  631. },
  632. {
  633. "word": "adolescence",
  634. "def": "state of growing up from childhood to manhood or womanhood; transitional period",
  635. "pos": "",
  636. "phonetic": "",
  637. "zh": ""
  638. },
  639. {
  640. "word": "adolescent",
  641. "def": "a juvenile between the onset of puberty and maturity;",
  642. "pos": "",
  643. "phonetic": "",
  644. "zh": ""
  645. },
  646. {
  647. "word": "adopt",
  648. "def": "accept; take on; raise; take into one's family",
  649. "pos": "",
  650. "phonetic": "",
  651. "zh": ""
  652. },
  653. {
  654. "word": "adoption",
  655. "def": "act of accepting with approval",
  656. "pos": "",
  657. "phonetic": "",
  658. "zh": ""
  659. },
  660. {
  661. "word": "adore",
  662. "def": "worship with profound reverence; pay divine honors to; regard with the utmost esteem and",
  663. "pos": "",
  664. "phonetic": "",
  665. "zh": ""
  666. },
  667. {
  668. "word": "adorn",
  669. "def": "enhance or decorate with or as if with ornaments",
  670. "pos": "",
  671. "phonetic": "",
  672. "zh": ""
  673. },
  674. {
  675. "word": "adornment",
  676. "def": "embellishment; decoration; something that beautifies or adorns; ornament",
  677. "pos": "",
  678. "phonetic": "",
  679. "zh": ""
  680. },
  681. {
  682. "word": "adult",
  683. "def": "one who has attained maturity or legal age; fully grown",
  684. "pos": "",
  685. "phonetic": "",
  686. "zh": ""
  687. },
  688. {
  689. "word": "advance",
  690. "def": "proceed; move forward; improve; moving forward",
  691. "pos": "",
  692. "phonetic": "",
  693. "zh": ""
  694. },
  695. {
  696. "word": "advanced",
  697. "def": "improved; highly developed or complex; ahead of the times; progressive",
  698. "pos": "",
  699. "phonetic": "",
  700. "zh": ""
  701. },
  702. {
  703. "word": "adventure",
  704. "def": "something happens without design; chance; hazard; risk; danger",
  705. "pos": "",
  706. "phonetic": "",
  707. "zh": ""
  708. },
  709. {
  710. "word": "adventurous",
  711. "def": "valiant; venturesome; inclined or willing to incur hazard or engage in adventures",
  712. "pos": "",
  713. "phonetic": "",
  714. "zh": ""
  715. },
  716. {
  717. "word": "adversary",
  718. "def": "opponent in contest; someone who offers opposition",
  719. "pos": "",
  720. "phonetic": "",
  721. "zh": ""
  722. },
  723. {
  724. "word": "adverse",
  725. "def": "in opposing direction; harmful or unfavorable; acting or serving to oppose",
  726. "pos": "",
  727. "phonetic": "",
  728. "zh": ""
  729. },
  730. {
  731. "word": "adversity",
  732. "def": "state of misfortune, hardship, or affliction; misfortune",
  733. "pos": "",
  734. "phonetic": "",
  735. "zh": ""
  736. },
  737. {
  738. "word": "advertise",
  739. "def": "give notice to; inform or apprise; make known; give public notice of",
  740. "pos": "",
  741. "phonetic": "",
  742. "zh": ""
  743. },
  744. {
  745. "word": "advisable",
  746. "def": "proper to be advised or to be done; expedient; prudent; ready to receive advice",
  747. "pos": "",
  748. "phonetic": "",
  749. "zh": ""
  750. },
  751. {
  752. "word": "advocate",
  753. "def": "speak, plead, or argue in favour of; plead for; push for something",
  754. "pos": "",
  755. "phonetic": "",
  756. "zh": ""
  757. },
  758. {
  759. "word": "aerial",
  760. "def": "of the air or atmosphere; produced by or found in the air; performed in the air",
  761. "pos": "",
  762. "phonetic": "",
  763. "zh": ""
  764. },
  765. {
  766. "word": "affect",
  767. "def": "have an emotional or cognitive impact upon",
  768. "pos": "",
  769. "phonetic": "",
  770. "zh": ""
  771. },
  772. {
  773. "word": "affection",
  774. "def": "fondness; tender feeling toward another; fondness",
  775. "pos": "",
  776. "phonetic": "",
  777. "zh": ""
  778. },
  779. {
  780. "word": "affectionate",
  781. "def": "having affection or warm regard; loving; fond; kindly inclined; zealous",
  782. "pos": "",
  783. "phonetic": "",
  784. "zh": ""
  785. },
  786. {
  787. "word": "affiliate",
  788. "def": "associate; incorporate",
  789. "pos": "",
  790. "phonetic": "",
  791. "zh": ""
  792. },
  793. {
  794. "word": "affirm",
  795. "def": "assert; confirm",
  796. "pos": "",
  797. "phonetic": "",
  798. "zh": ""
  799. },
  800. {
  801. "word": "affirmation",
  802. "def": "positive assertion; confirmation; solemn pledge by one who refuses to take an oath",
  803. "pos": "",
  804. "phonetic": "",
  805. "zh": ""
  806. },
  807. {
  808. "word": "affirmative",
  809. "def": "confirmative; ratifying; giving assent or approval; confirming",
  810. "pos": "",
  811. "phonetic": "",
  812. "zh": ""
  813. },
  814. {
  815. "word": "afford",
  816. "def": "pay; provide; have the financial means for; bear the cost of",
  817. "pos": "",
  818. "phonetic": "",
  819. "zh": ""
  820. },
  821. {
  822. "word": "affordable",
  823. "def": "able to pay for",
  824. "pos": "",
  825. "phonetic": "",
  826. "zh": ""
  827. },
  828. {
  829. "word": "agency",
  830. "def": "a business that serves other businesses; an administrative unit of government",
  831. "pos": "",
  832. "phonetic": "",
  833. "zh": ""
  834. },
  835. {
  836. "word": "agent",
  837. "def": "one that acts on behalf of other persons or organizations",
  838. "pos": "",
  839. "phonetic": "",
  840. "zh": ""
  841. },
  842. {
  843. "word": "aggravate",
  844. "def": "worsen; make worse or more troublesome",
  845. "pos": "",
  846. "phonetic": "",
  847. "zh": ""
  848. },
  849. {
  850. "word": "aggregate",
  851. "def": "gather into a mass, sum, or whole; amount to",
  852. "pos": "",
  853. "phonetic": "",
  854. "zh": ""
  855. },
  856. {
  857. "word": "aggregation",
  858. "def": "several things grouped together or considered as a whole",
  859. "pos": "",
  860. "phonetic": "",
  861. "zh": ""
  862. },
  863. {
  864. "word": "aggressive",
  865. "def": "making assaults; unjustly attacking; combative; hostile; tending to spread quickly",
  866. "pos": "",
  867. "phonetic": "",
  868. "zh": ""
  869. },
  870. {
  871. "word": "aggressor",
  872. "def": "one that engages in aggression; person who first attacks",
  873. "pos": "",
  874. "phonetic": "",
  875. "zh": ""
  876. },
  877. {
  878. "word": "agitate",
  879. "def": "cause to move with violence or sudden force; upset; disturb",
  880. "pos": "",
  881. "phonetic": "",
  882. "zh": ""
  883. },
  884. {
  885. "word": "agitation",
  886. "def": "anxiety; extreme emotional disturbance",
  887. "pos": "",
  888. "phonetic": "",
  889. "zh": ""
  890. },
  891. {
  892. "word": "agony",
  893. "def": "extreme pain of mind or body; anguish; last struggle of life; death struggle",
  894. "pos": "",
  895. "phonetic": "",
  896. "zh": ""
  897. },
  898. {
  899. "word": "agreeable",
  900. "def": "ready to consent or submit; acceptable",
  901. "pos": "",
  902. "phonetic": "",
  903. "zh": ""
  904. },
  905. {
  906. "word": "agreement",
  907. "def": "state of agreeing; harmony of opinion, statement, action, or character",
  908. "pos": "",
  909. "phonetic": "",
  910. "zh": ""
  911. },
  912. {
  913. "word": "agriculture",
  914. "def": "practice of cultivating the land or raising stock",
  915. "pos": "",
  916. "phonetic": "",
  917. "zh": ""
  918. },
  919. {
  920. "word": "aid",
  921. "def": "person or thing that promotes or helps in something done; helper; assistant",
  922. "pos": "",
  923. "phonetic": "",
  924. "zh": ""
  925. },
  926. {
  927. "word": "ailment",
  928. "def": "sickness; illness; affliction",
  929. "pos": "",
  930. "phonetic": "",
  931. "zh": ""
  932. },
  933. {
  934. "word": "aim",
  935. "def": "point or direct towards an object or spot with the intent of hitting it",
  936. "pos": "",
  937. "phonetic": "",
  938. "zh": ""
  939. },
  940. {
  941. "word": "air",
  942. "def": "be broadcast on television or radio",
  943. "pos": "",
  944. "phonetic": "",
  945. "zh": ""
  946. },
  947. {
  948. "word": "aircraft",
  949. "def": "vehicle that can fly, such as an airplane, helicopter, balloon",
  950. "pos": "",
  951. "phonetic": "",
  952. "zh": ""
  953. },
  954. {
  955. "word": "aisle",
  956. "def": "passageway between rows of seats, as in an auditorium or an airplane; wing of a building",
  957. "pos": "",
  958. "phonetic": "",
  959. "zh": ""
  960. },
  961. {
  962. "word": "ajar",
  963. "def": "half-open; slightly turned or opened",
  964. "pos": "",
  965. "phonetic": "",
  966. "zh": ""
  967. },
  968. {
  969. "word": "alarm",
  970. "def": "any sound or information intended to give notice of approaching danger",
  971. "pos": "",
  972. "phonetic": "",
  973. "zh": ""
  974. },
  975. {
  976. "word": "album",
  977. "def": "a list of names; a register for visitors; a blank book, in which to insert autographs sketches,",
  978. "pos": "",
  979. "phonetic": "",
  980. "zh": ""
  981. },
  982. {
  983. "word": "alert",
  984. "def": "warning serves; alarm; condition of heightened watchfulness or preparation for action",
  985. "pos": "",
  986. "phonetic": "",
  987. "zh": ""
  988. },
  989. {
  990. "word": "alien",
  991. "def": "dissimilar, inconsistent, or opposed in nature; very different place, society, or person",
  992. "pos": "",
  993. "phonetic": "",
  994. "zh": ""
  995. },
  996. {
  997. "word": "alienate",
  998. "def": "cause to become unfriendly or hostile; transfer property or ownership; isolate or dissociate",
  999. "pos": "",
  1000. "phonetic": "",
  1001. "zh": ""
  1002. },
  1003. {
  1004. "word": "alignment",
  1005. "def": "arrangement; association; alliance",
  1006. "pos": "",
  1007. "phonetic": "",
  1008. "zh": ""
  1009. },
  1010. {
  1011. "word": "alike",
  1012. "def": "similar; in the same manner or to the same degree",
  1013. "pos": "",
  1014. "phonetic": "",
  1015. "zh": ""
  1016. },
  1017. {
  1018. "word": "allergic",
  1019. "def": "excessively sensitive; susceptible; having an allergy",
  1020. "pos": "",
  1021. "phonetic": "",
  1022. "zh": ""
  1023. },
  1024. {
  1025. "word": "allergy",
  1026. "def": "hyper sensitivity reaction; abnormally high sensitivity to certain substances",
  1027. "pos": "",
  1028. "phonetic": "",
  1029. "zh": ""
  1030. },
  1031. {
  1032. "word": "alliance",
  1033. "def": "state of being allied; act of allying or uniting; a union or connection of interests between",
  1034. "pos": "",
  1035. "phonetic": "",
  1036. "zh": ""
  1037. },
  1038. {
  1039. "word": "allocate",
  1040. "def": "assign; distribute according to plan",
  1041. "pos": "",
  1042. "phonetic": "",
  1043. "zh": ""
  1044. },
  1045. {
  1046. "word": "allot",
  1047. "def": "parcel out in parts or portions; distribute to each individual concerned; assign as a share or lot",
  1048. "pos": "",
  1049. "phonetic": "",
  1050. "zh": ""
  1051. },
  1052. {
  1053. "word": "allowance",
  1054. "def": "approval; act of allowing, granting, or admitting",
  1055. "pos": "",
  1056. "phonetic": "",
  1057. "zh": ""
  1058. },
  1059. {
  1060. "word": "alloy",
  1061. "def": "combine; mix; make less pure; lessen or moderate",
  1062. "pos": "",
  1063. "phonetic": "",
  1064. "zh": ""
  1065. },
  1066. {
  1067. "word": "ally",
  1068. "def": "confederate; partner; collaborator",
  1069. "pos": "",
  1070. "phonetic": "",
  1071. "zh": ""
  1072. },
  1073. {
  1074. "word": "alone",
  1075. "def": "solitary; by oneself",
  1076. "pos": "",
  1077. "phonetic": "",
  1078. "zh": ""
  1079. },
  1080. {
  1081. "word": "along",
  1082. "def": "by the length; in a line with the length; onward; forward; in company; together",
  1083. "pos": "",
  1084. "phonetic": "",
  1085. "zh": ""
  1086. },
  1087. {
  1088. "word": "alongside",
  1089. "def": "along or by the side; side by side with",
  1090. "pos": "",
  1091. "phonetic": "",
  1092. "zh": ""
  1093. },
  1094. {
  1095. "word": "alter",
  1096. "def": "modify; cause to change; make different; convert",
  1097. "pos": "",
  1098. "phonetic": "",
  1099. "zh": ""
  1100. },
  1101. {
  1102. "word": "alternate",
  1103. "def": "happening or following in turns; succeeding each other continuously; substitute",
  1104. "pos": "",
  1105. "phonetic": "",
  1106. "zh": ""
  1107. },
  1108. {
  1109. "word": "alternation",
  1110. "def": "successive change from one thing or state to another and back again",
  1111. "pos": "",
  1112. "phonetic": "",
  1113. "zh": ""
  1114. },
  1115. {
  1116. "word": "alternative",
  1117. "def": "one of two or more things, ideas or courses of action that may be used; option; choice",
  1118. "pos": "",
  1119. "phonetic": "",
  1120. "zh": ""
  1121. },
  1122. {
  1123. "word": "altitude",
  1124. "def": "elevation especially above sea level; height",
  1125. "pos": "",
  1126. "phonetic": "",
  1127. "zh": ""
  1128. },
  1129. {
  1130. "word": "aluminum",
  1131. "def": "silvery ductile metallic element",
  1132. "pos": "",
  1133. "phonetic": "",
  1134. "zh": ""
  1135. },
  1136. {
  1137. "word": "amateur",
  1138. "def": "nonprofessional; lacking the skill of a professional, as in an art",
  1139. "pos": "",
  1140. "phonetic": "",
  1141. "zh": ""
  1142. },
  1143. {
  1144. "word": "amaze",
  1145. "def": "astonish; affect with wonder",
  1146. "pos": "",
  1147. "phonetic": "",
  1148. "zh": ""
  1149. },
  1150. {
  1151. "word": "amazement",
  1152. "def": "wonder; state of extreme surprise or wonder; astonishment",
  1153. "pos": "",
  1154. "phonetic": "",
  1155. "zh": ""
  1156. },
  1157. {
  1158. "word": "ambassador",
  1159. "def": "authorized messenger or representative",
  1160. "pos": "",
  1161. "phonetic": "",
  1162. "zh": ""
  1163. },
  1164. {
  1165. "word": "ambiguity",
  1166. "def": "state of being ambiguous; doubtfulness or uncertainty",
  1167. "pos": "",
  1168. "phonetic": "",
  1169. "zh": ""
  1170. },
  1171. {
  1172. "word": "ambiguous",
  1173. "def": "unclear or doubtful in meaning",
  1174. "pos": "",
  1175. "phonetic": "",
  1176. "zh": ""
  1177. },
  1178. {
  1179. "word": "ambition",
  1180. "def": "aspiration",
  1181. "pos": "",
  1182. "phonetic": "",
  1183. "zh": ""
  1184. },
  1185. {
  1186. "word": "ambitious",
  1187. "def": "aspiring; having a strong desire for success or achievement",
  1188. "pos": "",
  1189. "phonetic": "",
  1190. "zh": ""
  1191. },
  1192. {
  1193. "word": "ambulance",
  1194. "def": "field hospital organized as to follow an army in its movements; wagon for conveying the",
  1195. "pos": "",
  1196. "phonetic": "",
  1197. "zh": ""
  1198. },
  1199. {
  1200. "word": "amend",
  1201. "def": "change for the better; improve; remove faults or errors",
  1202. "pos": "",
  1203. "phonetic": "",
  1204. "zh": ""
  1205. },
  1206. {
  1207. "word": "amendment",
  1208. "def": "correction; revision",
  1209. "pos": "",
  1210. "phonetic": "",
  1211. "zh": ""
  1212. },
  1213. {
  1214. "word": "amends",
  1215. "def": "compensation for a loss or injury; recompense; reparation",
  1216. "pos": "",
  1217. "phonetic": "",
  1218. "zh": ""
  1219. },
  1220. {
  1221. "word": "amiable",
  1222. "def": "good-natured and likable; lovable; warmly friendly",
  1223. "pos": "",
  1224. "phonetic": "",
  1225. "zh": ""
  1226. },
  1227. {
  1228. "word": "amicable",
  1229. "def": "exhibiting friendliness or goodwill; not quarrelsome",
  1230. "pos": "",
  1231. "phonetic": "",
  1232. "zh": ""
  1233. },
  1234. {
  1235. "word": "amid",
  1236. "def": "in the middle of; among; surrounded by",
  1237. "pos": "",
  1238. "phonetic": "",
  1239. "zh": ""
  1240. },
  1241. {
  1242. "word": "ammunition",
  1243. "def": "military stores or provisions; articles used in weapons, as powder, balls, shot, shells",
  1244. "pos": "",
  1245. "phonetic": "",
  1246. "zh": ""
  1247. },
  1248. {
  1249. "word": "amount",
  1250. "def": "total of two or more quantities; aggregate; sum",
  1251. "pos": "",
  1252. "phonetic": "",
  1253. "zh": ""
  1254. },
  1255. {
  1256. "word": "ample",
  1257. "def": "more than enough in size or scope or capacity; fairly large",
  1258. "pos": "",
  1259. "phonetic": "",
  1260. "zh": ""
  1261. },
  1262. {
  1263. "word": "amplification",
  1264. "def": "addition of extra material or illustration or clarifying detail",
  1265. "pos": "",
  1266. "phonetic": "",
  1267. "zh": ""
  1268. },
  1269. {
  1270. "word": "amplify",
  1271. "def": "broaden or clarify by expanding; intensify; make larger or more powerful; increase",
  1272. "pos": "",
  1273. "phonetic": "",
  1274. "zh": ""
  1275. },
  1276. {
  1277. "word": "amuse",
  1278. "def": "occupy or engage the attention of; lose in deep thought",
  1279. "pos": "",
  1280. "phonetic": "",
  1281. "zh": ""
  1282. },
  1283. {
  1284. "word": "analogy",
  1285. "def": "similarity in some respects; comparison based on similarity",
  1286. "pos": "",
  1287. "phonetic": "",
  1288. "zh": ""
  1289. },
  1290. {
  1291. "word": "analysis",
  1292. "def": "study; investigation; process of breaking down a substance into its constituent parts",
  1293. "pos": "",
  1294. "phonetic": "",
  1295. "zh": ""
  1296. },
  1297. {
  1298. "word": "analytical",
  1299. "def": "of analysis; resolving into elements or parts",
  1300. "pos": "",
  1301. "phonetic": "",
  1302. "zh": ""
  1303. },
  1304. {
  1305. "word": "analyze",
  1306. "def": "diagnose; examine",
  1307. "pos": "",
  1308. "phonetic": "",
  1309. "zh": ""
  1310. },
  1311. {
  1312. "word": "ancestor",
  1313. "def": "forefather; forebear; forerunner or predecessor",
  1314. "pos": "",
  1315. "phonetic": "",
  1316. "zh": ""
  1317. },
  1318. {
  1319. "word": "anchor",
  1320. "def": "secure or fasten firmly; be fixed in place; narrate or coordinate",
  1321. "pos": "",
  1322. "phonetic": "",
  1323. "zh": ""
  1324. },
  1325. {
  1326. "word": "anecdote",
  1327. "def": "short account of amusing or interesting event; short narrative; secret story of history or",
  1328. "pos": "",
  1329. "phonetic": "",
  1330. "zh": ""
  1331. },
  1332. {
  1333. "word": "angular",
  1334. "def": "sharp-cornered; consisting of an angle or angles; stiff in manner",
  1335. "pos": "",
  1336. "phonetic": "",
  1337. "zh": ""
  1338. },
  1339. {
  1340. "word": "animate",
  1341. "def": "endowed with life; alive; living; animated",
  1342. "pos": "",
  1343. "phonetic": "",
  1344. "zh": ""
  1345. },
  1346. {
  1347. "word": "animation",
  1348. "def": "act of animating, or giving life or spirit; state of being animate or alive.",
  1349. "pos": "",
  1350. "phonetic": "",
  1351. "zh": ""
  1352. },
  1353. {
  1354. "word": "ankle",
  1355. "def": "joint which connects the foot with the leg; tarsus",
  1356. "pos": "",
  1357. "phonetic": "",
  1358. "zh": ""
  1359. },
  1360. {
  1361. "word": "annex",
  1362. "def": "append or attach; take possession of; incorporate into an existing political unit",
  1363. "pos": "",
  1364. "phonetic": "",
  1365. "zh": ""
  1366. },
  1367. {
  1368. "word": "anniversary",
  1369. "def": "annual; yearly; annual return of the day on which any notable event took place",
  1370. "pos": "",
  1371. "phonetic": "",
  1372. "zh": ""
  1373. },
  1374. {
  1375. "word": "announce",
  1376. "def": "herald; give out; proclaim; make known publicly",
  1377. "pos": "",
  1378. "phonetic": "",
  1379. "zh": ""
  1380. },
  1381. {
  1382. "word": "announcement",
  1383. "def": "formal public statement; act of making known publicly",
  1384. "pos": "",
  1385. "phonetic": "",
  1386. "zh": ""
  1387. },
  1388. {
  1389. "word": "announcer",
  1390. "def": "one who proclaims a message publicly",
  1391. "pos": "",
  1392. "phonetic": "",
  1393. "zh": ""
  1394. },
  1395. {
  1396. "word": "annoy",
  1397. "def": "disturb, especially by minor irritations; irritate",
  1398. "pos": "",
  1399. "phonetic": "",
  1400. "zh": ""
  1401. },
  1402. {
  1403. "word": "annual",
  1404. "def": "occurring or payable every year",
  1405. "pos": "",
  1406. "phonetic": "",
  1407. "zh": ""
  1408. },
  1409. {
  1410. "word": "annually",
  1411. "def": "yearly; each year; returning every year; year by year",
  1412. "pos": "",
  1413. "phonetic": "",
  1414. "zh": ""
  1415. },
  1416. {
  1417. "word": "antagonism",
  1418. "def": "active resistance; condition of being an opposing principle, force, or factor",
  1419. "pos": "",
  1420. "phonetic": "",
  1421. "zh": ""
  1422. },
  1423. {
  1424. "word": "antagonist",
  1425. "def": "one who contends with another, especially in combat; an adversary; opponent",
  1426. "pos": "",
  1427. "phonetic": "",
  1428. "zh": ""
  1429. },
  1430. {
  1431. "word": "antarctic",
  1432. "def": "opposite to the northern or arctic pole; relating to the southern pole or to the region near it",
  1433. "pos": "",
  1434. "phonetic": "",
  1435. "zh": ""
  1436. },
  1437. {
  1438. "word": "antibiotic",
  1439. "def": "of or relating to chemical substance that kills microorganisms and cures infections",
  1440. "pos": "",
  1441. "phonetic": "",
  1442. "zh": ""
  1443. },
  1444. {
  1445. "word": "anticipate",
  1446. "def": "act in advance of; deal with ahead of time; predict",
  1447. "pos": "",
  1448. "phonetic": "",
  1449. "zh": ""
  1450. },
  1451. {
  1452. "word": "anticipation",
  1453. "def": "something expected; pleasurable expectation; wishing with confidence",
  1454. "pos": "",
  1455. "phonetic": "",
  1456. "zh": ""
  1457. },
  1458. {
  1459. "word": "antique",
  1460. "def": "any furniture old and valuable; out of fashion",
  1461. "pos": "",
  1462. "phonetic": "",
  1463. "zh": ""
  1464. },
  1465. {
  1466. "word": "antonym",
  1467. "def": "word of opposite meaning; counter term",
  1468. "pos": "",
  1469. "phonetic": "",
  1470. "zh": ""
  1471. },
  1472. {
  1473. "word": "anxiety",
  1474. "def": "concern something in state of painful uneasiness; state of restlessness and agitation",
  1475. "pos": "",
  1476. "phonetic": "",
  1477. "zh": ""
  1478. },
  1479. {
  1480. "word": "anxious",
  1481. "def": "eager; keen; worried; uneasy and apprehensive about an uncertain event or matter",
  1482. "pos": "",
  1483. "phonetic": "",
  1484. "zh": ""
  1485. },
  1486. {
  1487. "word": "anyhow",
  1488. "def": "in any way or manner whatever; at any rate; in any event",
  1489. "pos": "",
  1490. "phonetic": "",
  1491. "zh": ""
  1492. },
  1493. {
  1494. "word": "apart",
  1495. "def": "separately, in regard to space or company; in a state of separation as to place; aside",
  1496. "pos": "",
  1497. "phonetic": "",
  1498. "zh": ""
  1499. },
  1500. {
  1501. "word": "ape",
  1502. "def": "imitate; mimic, as an ape imitates human actions",
  1503. "pos": "",
  1504. "phonetic": "",
  1505. "zh": ""
  1506. },
  1507. {
  1508. "word": "apologize",
  1509. "def": "beg pardon",
  1510. "pos": "",
  1511. "phonetic": "",
  1512. "zh": ""
  1513. },
  1514. {
  1515. "word": "apology",
  1516. "def": "acknowledgment expressing regret or asking pardon for a fault or offense; explanation or",
  1517. "pos": "",
  1518. "phonetic": "",
  1519. "zh": ""
  1520. },
  1521. {
  1522. "word": "apparatus",
  1523. "def": "a group of parts that work together to perform given function; appliance or device for",
  1524. "pos": "",
  1525. "phonetic": "",
  1526. "zh": ""
  1527. },
  1528. {
  1529. "word": "apparent",
  1530. "def": "capable of being seen, or easily seen; open to view; visible to eye",
  1531. "pos": "",
  1532. "phonetic": "",
  1533. "zh": ""
  1534. },
  1535. {
  1536. "word": "appeal",
  1537. "def": "attraction; charm; attract; fascinate; challenge",
  1538. "pos": "",
  1539. "phonetic": "",
  1540. "zh": ""
  1541. },
  1542. {
  1543. "word": "appealing",
  1544. "def": "attractive; charming",
  1545. "pos": "",
  1546. "phonetic": "",
  1547. "zh": ""
  1548. },
  1549. {
  1550. "word": "appendix",
  1551. "def": "something appended or added",
  1552. "pos": "",
  1553. "phonetic": "",
  1554. "zh": ""
  1555. },
  1556. {
  1557. "word": "appetite",
  1558. "def": "instinctive physical desire, especially one for food or drink",
  1559. "pos": "",
  1560. "phonetic": "",
  1561. "zh": ""
  1562. },
  1563. {
  1564. "word": "applaud",
  1565. "def": "acclaim; express approval, especially by clapping the hands",
  1566. "pos": "",
  1567. "phonetic": "",
  1568. "zh": ""
  1569. },
  1570. {
  1571. "word": "appliance",
  1572. "def": "durable goods for home or office use; device or instrument for household use",
  1573. "pos": "",
  1574. "phonetic": "",
  1575. "zh": ""
  1576. },
  1577. {
  1578. "word": "applicable",
  1579. "def": "capable of being applied; fit or suitable to be applied; having relevance",
  1580. "pos": "",
  1581. "phonetic": "",
  1582. "zh": ""
  1583. },
  1584. {
  1585. "word": "applicant",
  1586. "def": "candidate",
  1587. "pos": "",
  1588. "phonetic": "",
  1589. "zh": ""
  1590. },
  1591. {
  1592. "word": "application",
  1593. "def": "close attention; work of applying something; verbal or written request for assistance",
  1594. "pos": "",
  1595. "phonetic": "",
  1596. "zh": ""
  1597. },
  1598. {
  1599. "word": "apply",
  1600. "def": "exert; put into service; avail oneself to;",
  1601. "pos": "",
  1602. "phonetic": "",
  1603. "zh": ""
  1604. },
  1605. {
  1606. "word": "appoint",
  1607. "def": "designate; nominate",
  1608. "pos": "",
  1609. "phonetic": "",
  1610. "zh": ""
  1611. },
  1612. {
  1613. "word": "appointment",
  1614. "def": "act of putting a person into a non-elective position; arrangement",
  1615. "pos": "",
  1616. "phonetic": "",
  1617. "zh": ""
  1618. },
  1619. {
  1620. "word": "appreciable",
  1621. "def": "considerable; perceptible",
  1622. "pos": "",
  1623. "phonetic": "",
  1624. "zh": ""
  1625. },
  1626. {
  1627. "word": "appreciate",
  1628. "def": "be thankful for; increase in worth; be thoroughly conscious of",
  1629. "pos": "",
  1630. "phonetic": "",
  1631. "zh": ""
  1632. },
  1633. {
  1634. "word": "appreciation",
  1635. "def": "recognition; taste; judgment or opinion, especially a favorable one",
  1636. "pos": "",
  1637. "phonetic": "",
  1638. "zh": ""
  1639. },
  1640. {
  1641. "word": "appreciative",
  1642. "def": "having or showing a just or ready appreciation or perception",
  1643. "pos": "",
  1644. "phonetic": "",
  1645. "zh": ""
  1646. },
  1647. {
  1648. "word": "apprentice",
  1649. "def": "works for an expert to learn a trade; beginner; learner",
  1650. "pos": "",
  1651. "phonetic": "",
  1652. "zh": ""
  1653. },
  1654. {
  1655. "word": "approach",
  1656. "def": "access; method",
  1657. "pos": "",
  1658. "phonetic": "",
  1659. "zh": ""
  1660. },
  1661. {
  1662. "word": "appropriate",
  1663. "def": "acquire; take possession of for one's own use; set apart for specific use",
  1664. "pos": "",
  1665. "phonetic": "",
  1666. "zh": ""
  1667. },
  1668. {
  1669. "word": "approval",
  1670. "def": "official approbation; endorsement; act of approving",
  1671. "pos": "",
  1672. "phonetic": "",
  1673. "zh": ""
  1674. },
  1675. {
  1676. "word": "approve",
  1677. "def": "ratify; consider right or good; think or speak favorably of",
  1678. "pos": "",
  1679. "phonetic": "",
  1680. "zh": ""
  1681. },
  1682. {
  1683. "word": "approximate",
  1684. "def": "approach; come near",
  1685. "pos": "",
  1686. "phonetic": "",
  1687. "zh": ""
  1688. },
  1689. {
  1690. "word": "approximately",
  1691. "def": "about; roughly",
  1692. "pos": "",
  1693. "phonetic": "",
  1694. "zh": ""
  1695. },
  1696. {
  1697. "word": "apt",
  1698. "def": "likely; exactly suitable; appropriate; quick to learn or understand",
  1699. "pos": "",
  1700. "phonetic": "",
  1701. "zh": ""
  1702. },
  1703. {
  1704. "word": "aptitude",
  1705. "def": "inherent ability; quickness in learning and understanding",
  1706. "pos": "",
  1707. "phonetic": "",
  1708. "zh": ""
  1709. },
  1710. {
  1711. "word": "arbitrary",
  1712. "def": "randomly chosen; determined by chance or impulse, and not by reason or principle",
  1713. "pos": "",
  1714. "phonetic": "",
  1715. "zh": ""
  1716. },
  1717. {
  1718. "word": "arbitrator",
  1719. "def": "someone chosen to judge and decide disputed issue; one having ability or power to make",
  1720. "pos": "",
  1721. "phonetic": "",
  1722. "zh": ""
  1723. },
  1724. {
  1725. "word": "arc",
  1726. "def": "continuous portion of a circle; something curved in shape",
  1727. "pos": "",
  1728. "phonetic": "",
  1729. "zh": ""
  1730. },
  1731. {
  1732. "word": "arch",
  1733. "def": "any part of a curved line",
  1734. "pos": "",
  1735. "phonetic": "",
  1736. "zh": ""
  1737. },
  1738. {
  1739. "word": "archaeology",
  1740. "def": "study of artifacts and relics of early mankind",
  1741. "pos": "",
  1742. "phonetic": "",
  1743. "zh": ""
  1744. },
  1745. {
  1746. "word": "architect",
  1747. "def": "one who designs and supervises the construction of buildings or other large structures",
  1748. "pos": "",
  1749. "phonetic": "",
  1750. "zh": ""
  1751. },
  1752. {
  1753. "word": "architecture",
  1754. "def": "art and science of designing and erecting buildings; buildings and other large structures",
  1755. "pos": "",
  1756. "phonetic": "",
  1757. "zh": ""
  1758. },
  1759. {
  1760. "word": "ardent",
  1761. "def": "displaying or by strong enthusiasm or devotion; passionate",
  1762. "pos": "",
  1763. "phonetic": "",
  1764. "zh": ""
  1765. },
  1766. {
  1767. "word": "arduous",
  1768. "def": "demanding great effort or labor; difficult",
  1769. "pos": "",
  1770. "phonetic": "",
  1771. "zh": ""
  1772. },
  1773. {
  1774. "word": "area",
  1775. "def": "plane surface, as of the floor of a room; open space in a building; the enclosed space; extent;",
  1776. "pos": "",
  1777. "phonetic": "",
  1778. "zh": ""
  1779. },
  1780. {
  1781. "word": "arena",
  1782. "def": "playing field where sports events take place; large structure for open-air sports or",
  1783. "pos": "",
  1784. "phonetic": "",
  1785. "zh": ""
  1786. },
  1787. {
  1788. "word": "argue",
  1789. "def": "invent and offer reasons to support or overthrow a proposition, opinion, or measure; debate",
  1790. "pos": "",
  1791. "phonetic": "",
  1792. "zh": ""
  1793. },
  1794. {
  1795. "word": "arise",
  1796. "def": "come up from a lower to a higher position; come above the horizon; spring up; come into action",
  1797. "pos": "",
  1798. "phonetic": "",
  1799. "zh": ""
  1800. },
  1801. {
  1802. "word": "aristocracy",
  1803. "def": "hereditary nobility; privileged class",
  1804. "pos": "",
  1805. "phonetic": "",
  1806. "zh": ""
  1807. },
  1808. {
  1809. "word": "aristocrat",
  1810. "def": "one of the aristocracy or people of rank in a community; one of a ruling class; a noble",
  1811. "pos": "",
  1812. "phonetic": "",
  1813. "zh": ""
  1814. },
  1815. {
  1816. "word": "arithmetic",
  1817. "def": "theory of numerical calculations",
  1818. "pos": "",
  1819. "phonetic": "",
  1820. "zh": ""
  1821. },
  1822. {
  1823. "word": "armour",
  1824. "def": "defensive covering, as of metal, wood, or leather, worn to protect the body against weapons",
  1825. "pos": "",
  1826. "phonetic": "",
  1827. "zh": ""
  1828. },
  1829. {
  1830. "word": "arms",
  1831. "def": "weapons considered collectively; official symbols of a family",
  1832. "pos": "",
  1833. "phonetic": "",
  1834. "zh": ""
  1835. },
  1836. {
  1837. "word": "arouse",
  1838. "def": "excite; stimulate; awaken from or as if from sleep",
  1839. "pos": "",
  1840. "phonetic": "",
  1841. "zh": ""
  1842. },
  1843. {
  1844. "word": "arrange",
  1845. "def": "put in proper order; dispose in the manner intended, or best suited for the purpose",
  1846. "pos": "",
  1847. "phonetic": "",
  1848. "zh": ""
  1849. },
  1850. {
  1851. "word": "arrangement",
  1852. "def": "composition; order",
  1853. "pos": "",
  1854. "phonetic": "",
  1855. "zh": ""
  1856. },
  1857. {
  1858. "word": "array",
  1859. "def": "set out for display or use; place in orderly arrangement",
  1860. "pos": "",
  1861. "phonetic": "",
  1862. "zh": ""
  1863. },
  1864. {
  1865. "word": "arrest",
  1866. "def": "stop or slow down; catch someone's attention; take into custody",
  1867. "pos": "",
  1868. "phonetic": "",
  1869. "zh": ""
  1870. },
  1871. {
  1872. "word": "arrogance",
  1873. "def": "overbearing pride; haughtiness; manifest feeling of personal superiority in rank, power, or",
  1874. "pos": "",
  1875. "phonetic": "",
  1876. "zh": ""
  1877. },
  1878. {
  1879. "word": "arrogant",
  1880. "def": "arising from feeling or assumption of one's superiority toward others",
  1881. "pos": "",
  1882. "phonetic": "",
  1883. "zh": ""
  1884. },
  1885. {
  1886. "word": "article",
  1887. "def": "essay; editorial; individual thing or element of a class",
  1888. "pos": "",
  1889. "phonetic": "",
  1890. "zh": ""
  1891. },
  1892. {
  1893. "word": "artificial",
  1894. "def": "made by humans; produced rather than natural.",
  1895. "pos": "",
  1896. "phonetic": "",
  1897. "zh": ""
  1898. },
  1899. {
  1900. "word": "ascend",
  1901. "def": "climb; mount",
  1902. "pos": "",
  1903. "phonetic": "",
  1904. "zh": ""
  1905. },
  1906. {
  1907. "word": "ascertain",
  1908. "def": "find out for certain; discover with certainty; make sure of",
  1909. "pos": "",
  1910. "phonetic": "",
  1911. "zh": ""
  1912. },
  1913. {
  1914. "word": "ascribe",
  1915. "def": "inscribe or dedicate; attribute to a specified cause, source, or origin; assign as a quality",
  1916. "pos": "",
  1917. "phonetic": "",
  1918. "zh": ""
  1919. },
  1920. {
  1921. "word": "ashamed",
  1922. "def": "affected by shame; abashed or confused by guilt",
  1923. "pos": "",
  1924. "phonetic": "",
  1925. "zh": ""
  1926. },
  1927. {
  1928. "word": "aside",
  1929. "def": "on, or to, one side; out of a straight line, course, or direction; at a little distance from the rest",
  1930. "pos": "",
  1931. "phonetic": "",
  1932. "zh": ""
  1933. },
  1934. {
  1935. "word": "aspect",
  1936. "def": "distinct feature or element in a problem; a way in which something can be viewed by the",
  1937. "pos": "",
  1938. "phonetic": "",
  1939. "zh": ""
  1940. },
  1941. {
  1942. "word": "aspirin",
  1943. "def": "white crystalline compound drug to relieve pain and reduce fever and inflammation",
  1944. "pos": "",
  1945. "phonetic": "",
  1946. "zh": ""
  1947. },
  1948. {
  1949. "word": "assassination",
  1950. "def": "act of assassinating; killing by treacherous violence; murder of public figure by",
  1951. "pos": "",
  1952. "phonetic": "",
  1953. "zh": ""
  1954. },
  1955. {
  1956. "word": "assault",
  1957. "def": "attack; onslaught",
  1958. "pos": "",
  1959. "phonetic": "",
  1960. "zh": ""
  1961. },
  1962. {
  1963. "word": "assemble",
  1964. "def": "put together; bring or call together into a group or whole",
  1965. "pos": "",
  1966. "phonetic": "",
  1967. "zh": ""
  1968. },
  1969. {
  1970. "word": "assembly",
  1971. "def": "gathering; meeting; a group of persons gathered together for common reason",
  1972. "pos": "",
  1973. "phonetic": "",
  1974. "zh": ""
  1975. },
  1976. {
  1977. "word": "assert",
  1978. "def": "declare or state with confidence; put oneself forward boldly",
  1979. "pos": "",
  1980. "phonetic": "",
  1981. "zh": ""
  1982. },
  1983. {
  1984. "word": "assess",
  1985. "def": "estimate value; judge worth of something",
  1986. "pos": "",
  1987. "phonetic": "",
  1988. "zh": ""
  1989. },
  1990. {
  1991. "word": "assessment",
  1992. "def": "act of judging or assessing; amount determined as payable",
  1993. "pos": "",
  1994. "phonetic": "",
  1995. "zh": ""
  1996. },
  1997. {
  1998. "word": "assign",
  1999. "def": "appoint; allot; make over; point out authoritatively or exactly",
  2000. "pos": "",
  2001. "phonetic": "",
  2002. "zh": ""
  2003. },
  2004. {
  2005. "word": "assignment",
  2006. "def": "task given to students; job; distribution; appointment",
  2007. "pos": "",
  2008. "phonetic": "",
  2009. "zh": ""
  2010. },
  2011. {
  2012. "word": "assist",
  2013. "def": "give help or support to, especially as a subordinate",
  2014. "pos": "",
  2015. "phonetic": "",
  2016. "zh": ""
  2017. },
  2018. {
  2019. "word": "assistance",
  2020. "def": "activity of contributing to fulfillment of a need or furtherance of an effort or purpose",
  2021. "pos": "",
  2022. "phonetic": "",
  2023. "zh": ""
  2024. },
  2025. {
  2026. "word": "assistant",
  2027. "def": "helper; person who assists or helps someone else",
  2028. "pos": "",
  2029. "phonetic": "",
  2030. "zh": ""
  2031. },
  2032. {
  2033. "word": "associate",
  2034. "def": "connect or join together; combine",
  2035. "pos": "",
  2036. "phonetic": "",
  2037. "zh": ""
  2038. },
  2039. {
  2040. "word": "association",
  2041. "def": "connection, whether of persons of things; union of persons in a company or society for",
  2042. "pos": "",
  2043. "phonetic": "",
  2044. "zh": ""
  2045. },
  2046. {
  2047. "word": "assorted",
  2048. "def": "varied; miscellaneous",
  2049. "pos": "",
  2050. "phonetic": "",
  2051. "zh": ""
  2052. },
  2053. {
  2054. "word": "assortment",
  2055. "def": "variety; collection containing a variety of sorts of things",
  2056. "pos": "",
  2057. "phonetic": "",
  2058. "zh": ""
  2059. },
  2060. {
  2061. "word": "assume",
  2062. "def": "suppose; presume; take on; bear",
  2063. "pos": "",
  2064. "phonetic": "",
  2065. "zh": ""
  2066. },
  2067. {
  2068. "word": "assumption",
  2069. "def": "something taken for accepted as true without proof; taking over or taking possession of",
  2070. "pos": "",
  2071. "phonetic": "",
  2072. "zh": ""
  2073. },
  2074. {
  2075. "word": "assurance",
  2076. "def": "promise or pledge; certainty; self-confidence; freedom from doubt",
  2077. "pos": "",
  2078. "phonetic": "",
  2079. "zh": ""
  2080. },
  2081. {
  2082. "word": "assure",
  2083. "def": "solidify; guarantee; convince",
  2084. "pos": "",
  2085. "phonetic": "",
  2086. "zh": ""
  2087. },
  2088. {
  2089. "word": "assured",
  2090. "def": "made sure; exhibiting confidence or authority; indubitable",
  2091. "pos": "",
  2092. "phonetic": "",
  2093. "zh": ""
  2094. },
  2095. {
  2096. "word": "astonish",
  2097. "def": "surprise; shock",
  2098. "pos": "",
  2099. "phonetic": "",
  2100. "zh": ""
  2101. },
  2102. {
  2103. "word": "astound",
  2104. "def": "affect with wonder; surprise; shock",
  2105. "pos": "",
  2106. "phonetic": "",
  2107. "zh": ""
  2108. },
  2109. {
  2110. "word": "astray",
  2111. "def": "away from the correct path or direction, either in a literal or in a figurative sense; wandering",
  2112. "pos": "",
  2113. "phonetic": "",
  2114. "zh": ""
  2115. },
  2116. {
  2117. "word": "astronomer",
  2118. "def": "a physicist who studies astronomy",
  2119. "pos": "",
  2120. "phonetic": "",
  2121. "zh": ""
  2122. },
  2123. {
  2124. "word": "astronomical",
  2125. "def": "enormously large or extensive; relating to astronomy",
  2126. "pos": "",
  2127. "phonetic": "",
  2128. "zh": ""
  2129. },
  2130. {
  2131. "word": "astronomy",
  2132. "def": "branch of physics that studies celestial bodies and universe as a whole",
  2133. "pos": "",
  2134. "phonetic": "",
  2135. "zh": ""
  2136. },
  2137. {
  2138. "word": "athlete",
  2139. "def": "sports man; one who contended for prize in public games",
  2140. "pos": "",
  2141. "phonetic": "",
  2142. "zh": ""
  2143. },
  2144. {
  2145. "word": "atlas",
  2146. "def": "a bound volume of maps, charts, or tables",
  2147. "pos": "",
  2148. "phonetic": "",
  2149. "zh": ""
  2150. },
  2151. {
  2152. "word": "atmosphere",
  2153. "def": "air",
  2154. "pos": "",
  2155. "phonetic": "",
  2156. "zh": ""
  2157. },
  2158. {
  2159. "word": "atom",
  2160. "def": "a tiny piece of anything; the smallest component of an element having the chemical properties",
  2161. "pos": "",
  2162. "phonetic": "",
  2163. "zh": ""
  2164. },
  2165. {
  2166. "word": "atomic",
  2167. "def": "of or relating to or comprising atoms; immeasurably small",
  2168. "pos": "",
  2169. "phonetic": "",
  2170. "zh": ""
  2171. },
  2172. {
  2173. "word": "attach",
  2174. "def": "fasten; annex; be in contact with",
  2175. "pos": "",
  2176. "phonetic": "",
  2177. "zh": ""
  2178. },
  2179. {
  2180. "word": "attachment",
  2181. "def": "a bond, as of affection or loyalty; fond regard; supplementary part; accessory",
  2182. "pos": "",
  2183. "phonetic": "",
  2184. "zh": ""
  2185. },
  2186. {
  2187. "word": "attack",
  2188. "def": "offensive move; expression of strong criticism; hostile comment",
  2189. "pos": "",
  2190. "phonetic": "",
  2191. "zh": ""
  2192. },
  2193. {
  2194. "word": "attain",
  2195. "def": "achieve or accomplish; gain",
  2196. "pos": "",
  2197. "phonetic": "",
  2198. "zh": ""
  2199. },
  2200. {
  2201. "word": "attempt",
  2202. "def": "action of trying at something",
  2203. "pos": "",
  2204. "phonetic": "",
  2205. "zh": ""
  2206. },
  2207. {
  2208. "word": "attend",
  2209. "def": "be present at; go to; take care of; tend",
  2210. "pos": "",
  2211. "phonetic": "",
  2212. "zh": ""
  2213. },
  2214. {
  2215. "word": "attendance",
  2216. "def": "act of being present",
  2217. "pos": "",
  2218. "phonetic": "",
  2219. "zh": ""
  2220. },
  2221. {
  2222. "word": "attendant",
  2223. "def": "aide; servant; accompanying; person who participates in a meeting",
  2224. "pos": "",
  2225. "phonetic": "",
  2226. "zh": ""
  2227. },
  2228. {
  2229. "word": "attention",
  2230. "def": "act or state of attending or heeding; application of the mind to any object of sense,",
  2231. "pos": "",
  2232. "phonetic": "",
  2233. "zh": ""
  2234. },
  2235. {
  2236. "word": "attentive",
  2237. "def": "alert and watchful; considerate; thoughtful",
  2238. "pos": "",
  2239. "phonetic": "",
  2240. "zh": ""
  2241. },
  2242. {
  2243. "word": "attic",
  2244. "def": "story or room directly below the roof of a building, especially a house;",
  2245. "pos": "",
  2246. "phonetic": "",
  2247. "zh": ""
  2248. },
  2249. {
  2250. "word": "attitude",
  2251. "def": "posture, action, or disposition of a figure or a statue",
  2252. "pos": "",
  2253. "phonetic": "",
  2254. "zh": ""
  2255. },
  2256. {
  2257. "word": "attorney",
  2258. "def": "lawyer; one who is appointed by another to act in his place or stead; proxy",
  2259. "pos": "",
  2260. "phonetic": "",
  2261. "zh": ""
  2262. },
  2263. {
  2264. "word": "attract",
  2265. "def": "draw to, or cause to tend to; engage or fix, as the mind, attention; invite or allure",
  2266. "pos": "",
  2267. "phonetic": "",
  2268. "zh": ""
  2269. },
  2270. {
  2271. "word": "attraction",
  2272. "def": "appeal; a characteristic that provides pleasure and attracts",
  2273. "pos": "",
  2274. "phonetic": "",
  2275. "zh": ""
  2276. },
  2277. {
  2278. "word": "attribute",
  2279. "def": "essential quality; reputation; honor",
  2280. "pos": "",
  2281. "phonetic": "",
  2282. "zh": ""
  2283. },
  2284. {
  2285. "word": "auction",
  2286. "def": "public sale of property to the highest bidder",
  2287. "pos": "",
  2288. "phonetic": "",
  2289. "zh": ""
  2290. },
  2291. {
  2292. "word": "audience",
  2293. "def": "a group of people within hearing; crowd seeing a stage performance",
  2294. "pos": "",
  2295. "phonetic": "",
  2296. "zh": ""
  2297. },
  2298. {
  2299. "word": "auditorium",
  2300. "def": "area of theater or concert hall where audience sits",
  2301. "pos": "",
  2302. "phonetic": "",
  2303. "zh": ""
  2304. },
  2305. {
  2306. "word": "august",
  2307. "def": "impressive; majestic; inspiring awe or admiration",
  2308. "pos": "",
  2309. "phonetic": "",
  2310. "zh": ""
  2311. },
  2312. {
  2313. "word": "author",
  2314. "def": "beginner, former, or first mover of anything; creator; originator; one who composes or writes",
  2315. "pos": "",
  2316. "phonetic": "",
  2317. "zh": ""
  2318. },
  2319. {
  2320. "word": "authority",
  2321. "def": "jurisdiction; power to enforce laws, exact obedience, command, determine, or judge;",
  2322. "pos": "",
  2323. "phonetic": "",
  2324. "zh": ""
  2325. },
  2326. {
  2327. "word": "authorization",
  2328. "def": "act of giving authority or legal power; establishment by authority; sanction or warrant",
  2329. "pos": "",
  2330. "phonetic": "",
  2331. "zh": ""
  2332. },
  2333. {
  2334. "word": "authorize",
  2335. "def": "empower; give permission for; sanction",
  2336. "pos": "",
  2337. "phonetic": "",
  2338. "zh": ""
  2339. },
  2340. {
  2341. "word": "autobiography",
  2342. "def": "biography or story written by yourself",
  2343. "pos": "",
  2344. "phonetic": "",
  2345. "zh": ""
  2346. },
  2347. {
  2348. "word": "automate",
  2349. "def": "control or operate by automation; replace or enhance human labor with machines",
  2350. "pos": "",
  2351. "phonetic": "",
  2352. "zh": ""
  2353. },
  2354. {
  2355. "word": "automatic",
  2356. "def": "mechanized; operating with minimal human intervention; independent of external control",
  2357. "pos": "",
  2358. "phonetic": "",
  2359. "zh": ""
  2360. },
  2361. {
  2362. "word": "automation",
  2363. "def": "act or process of converting the controlling of a machine or device to a more automatic",
  2364. "pos": "",
  2365. "phonetic": "",
  2366. "zh": ""
  2367. },
  2368. {
  2369. "word": "automobile",
  2370. "def": "self-propelled vehicle suitable for use on street or roadway",
  2371. "pos": "",
  2372. "phonetic": "",
  2373. "zh": ""
  2374. },
  2375. {
  2376. "word": "autonomous",
  2377. "def": "self-governing; not controlled by others or by outside forces; independent",
  2378. "pos": "",
  2379. "phonetic": "",
  2380. "zh": ""
  2381. },
  2382. {
  2383. "word": "autonomy",
  2384. "def": "independence; self-government or the right of self-government; self-determination",
  2385. "pos": "",
  2386. "phonetic": "",
  2387. "zh": ""
  2388. },
  2389. {
  2390. "word": "auxiliary",
  2391. "def": "helper, additional or subsidiary",
  2392. "pos": "",
  2393. "phonetic": "",
  2394. "zh": ""
  2395. },
  2396. {
  2397. "word": "avail",
  2398. "def": "turn to advantage of; be of service to; profit; promote",
  2399. "pos": "",
  2400. "phonetic": "",
  2401. "zh": ""
  2402. },
  2403. {
  2404. "word": "available",
  2405. "def": "convenient for use or disposal; not busy, free; obtainable; accessible",
  2406. "pos": "",
  2407. "phonetic": "",
  2408. "zh": ""
  2409. },
  2410. {
  2411. "word": "avenge",
  2412. "def": "take vengeance for something, or on behalf of someone",
  2413. "pos": "",
  2414. "phonetic": "",
  2415. "zh": ""
  2416. },
  2417. {
  2418. "word": "avenue",
  2419. "def": "way or opening for entrance or exit place; passage by which a place may be reached; broad",
  2420. "pos": "",
  2421. "phonetic": "",
  2422. "zh": ""
  2423. },
  2424. {
  2425. "word": "average",
  2426. "def": "typical; mean; achieve or reach on average",
  2427. "pos": "",
  2428. "phonetic": "",
  2429. "zh": ""
  2430. },
  2431. {
  2432. "word": "aviation",
  2433. "def": "art or science of flying; flight; aeronautics",
  2434. "pos": "",
  2435. "phonetic": "",
  2436. "zh": ""
  2437. },
  2438. {
  2439. "word": "avoid",
  2440. "def": "shield away from; prevent",
  2441. "pos": "",
  2442. "phonetic": "",
  2443. "zh": ""
  2444. },
  2445. {
  2446. "word": "aware",
  2447. "def": "knowing; having knowledge or cognizance",
  2448. "pos": "",
  2449. "phonetic": "",
  2450. "zh": ""
  2451. },
  2452. {
  2453. "word": "awe",
  2454. "def": "mixed emotion of reverence, respect, dread, and wonder; fear, as of something evil",
  2455. "pos": "",
  2456. "phonetic": "",
  2457. "zh": ""
  2458. },
  2459. {
  2460. "word": "awful",
  2461. "def": "causing fear, dread, or terror; extremely bad or unpleasant; terrible",
  2462. "pos": "",
  2463. "phonetic": "",
  2464. "zh": ""
  2465. },
  2466. {
  2467. "word": "awkward",
  2468. "def": "difficult to handle or manage",
  2469. "pos": "",
  2470. "phonetic": "",
  2471. "zh": ""
  2472. },
  2473. {
  2474. "word": "awkwardly",
  2475. "def": "in an uncomfortable, nervous or embarrassed way",
  2476. "pos": "",
  2477. "phonetic": "",
  2478. "zh": ""
  2479. },
  2480. {
  2481. "word": "axis",
  2482. "def": "the center around which something rotates; pivot",
  2483. "pos": "",
  2484. "phonetic": "",
  2485. "zh": ""
  2486. },
  2487. {
  2488. "word": "axle",
  2489. "def": "pin or spindle on which a wheel revolves, or which revolves with a wheel; transverse bar or shaft",
  2490. "pos": "",
  2491. "phonetic": "",
  2492. "zh": ""
  2493. },
  2494. {
  2495. "word": "baby-sitter",
  2496. "def": "person engaged to care for children when the parents are not home",
  2497. "pos": "",
  2498. "phonetic": "",
  2499. "zh": ""
  2500. },
  2501. {
  2502. "word": "bachelor",
  2503. "def": "unmarried men; the first or lowest academic degree conferred by universities and colleges",
  2504. "pos": "",
  2505. "phonetic": "",
  2506. "zh": ""
  2507. },
  2508. {
  2509. "word": "backbone",
  2510. "def": "support; mainstay; vertebrate spine or spinal column",
  2511. "pos": "",
  2512. "phonetic": "",
  2513. "zh": ""
  2514. },
  2515. {
  2516. "word": "backward",
  2517. "def": "directed to the back or rear; unwilling; averse; reluctant; hesitating; undeveloped",
  2518. "pos": "",
  2519. "phonetic": "",
  2520. "zh": ""
  2521. },
  2522. {
  2523. "word": "bacon",
  2524. "def": "back and sides of a pig salted and smoked",
  2525. "pos": "",
  2526. "phonetic": "",
  2527. "zh": ""
  2528. },
  2529. {
  2530. "word": "bacterium",
  2531. "def": "single celled organism with no nucleus",
  2532. "pos": "",
  2533. "phonetic": "",
  2534. "zh": ""
  2535. },
  2536. {
  2537. "word": "badge",
  2538. "def": "distinctive mark, token, or sign worn on the person",
  2539. "pos": "",
  2540. "phonetic": "",
  2541. "zh": ""
  2542. },
  2543. {
  2544. "word": "badminton",
  2545. "def": "game played on a court with light long-handled rackets",
  2546. "pos": "",
  2547. "phonetic": "",
  2548. "zh": ""
  2549. },
  2550. {
  2551. "word": "baffle",
  2552. "def": "frustrate as by confusing or perplexing; impede force or movement of",
  2553. "pos": "",
  2554. "phonetic": "",
  2555. "zh": ""
  2556. },
  2557. {
  2558. "word": "baggage",
  2559. "def": "trunks, bags, parcels, and suitcases in which one carries one's belongings while traveling;",
  2560. "pos": "",
  2561. "phonetic": "",
  2562. "zh": ""
  2563. },
  2564. {
  2565. "word": "bait",
  2566. "def": "harass; tease; lure, entice, or entrap",
  2567. "pos": "",
  2568. "phonetic": "",
  2569. "zh": ""
  2570. },
  2571. {
  2572. "word": "bake",
  2573. "def": "prepare, as food, by cooking in a dry heat, either in an oven or under coals, or on heated stone",
  2574. "pos": "",
  2575. "phonetic": "",
  2576. "zh": ""
  2577. },
  2578. {
  2579. "word": "balance",
  2580. "def": "being in equilibrium; equilibrium; symmetry; stability",
  2581. "pos": "",
  2582. "phonetic": "",
  2583. "zh": ""
  2584. },
  2585. {
  2586. "word": "balcony",
  2587. "def": "platform projecting from the wall of a building",
  2588. "pos": "",
  2589. "phonetic": "",
  2590. "zh": ""
  2591. },
  2592. {
  2593. "word": "bald",
  2594. "def": "hairless; lacking a natural or usual covering",
  2595. "pos": "",
  2596. "phonetic": "",
  2597. "zh": ""
  2598. },
  2599. {
  2600. "word": "ballet",
  2601. "def": "a sort of theatrical representation by dancers",
  2602. "pos": "",
  2603. "phonetic": "",
  2604. "zh": ""
  2605. },
  2606. {
  2607. "word": "balloon",
  2608. "def": "large non-rigid bag filled with gas or heated air",
  2609. "pos": "",
  2610. "phonetic": "",
  2611. "zh": ""
  2612. },
  2613. {
  2614. "word": "ballroom",
  2615. "def": "large room used mainly for dancing",
  2616. "pos": "",
  2617. "phonetic": "",
  2618. "zh": ""
  2619. },
  2620. {
  2621. "word": "bamboo",
  2622. "def": "plant of family of grasses, growing in tropical countries",
  2623. "pos": "",
  2624. "phonetic": "",
  2625. "zh": ""
  2626. },
  2627. {
  2628. "word": "band",
  2629. "def": "orchestra; team; strip; ribbon; belt; unite; ally",
  2630. "pos": "",
  2631. "phonetic": "",
  2632. "zh": ""
  2633. },
  2634. {
  2635. "word": "bandage",
  2636. "def": "strip of woven material, used in dressing and binding up wounds",
  2637. "pos": "",
  2638. "phonetic": "",
  2639. "zh": ""
  2640. },
  2641. {
  2642. "word": "bang",
  2643. "def": "a vigorous blow; a conspicuous success",
  2644. "pos": "",
  2645. "phonetic": "",
  2646. "zh": ""
  2647. },
  2648. {
  2649. "word": "banker",
  2650. "def": "person in charge of the bank in a gambling game; one who owns or is an executive in a bank",
  2651. "pos": "",
  2652. "phonetic": "",
  2653. "zh": ""
  2654. },
  2655. {
  2656. "word": "bankrupt",
  2657. "def": "penniless, without any money; financially ruined",
  2658. "pos": "",
  2659. "phonetic": "",
  2660. "zh": ""
  2661. },
  2662. {
  2663. "word": "banner",
  2664. "def": "flag; sign; a newspaper headline that runs across the full page",
  2665. "pos": "",
  2666. "phonetic": "",
  2667. "zh": ""
  2668. },
  2669. {
  2670. "word": "banquet",
  2671. "def": "feast; entertainment of eating and drinking",
  2672. "pos": "",
  2673. "phonetic": "",
  2674. "zh": ""
  2675. },
  2676. {
  2677. "word": "bar",
  2678. "def": "a counter where you can obtain food or drink; cafe; strip; stick",
  2679. "pos": "",
  2680. "phonetic": "",
  2681. "zh": ""
  2682. },
  2683. {
  2684. "word": "barber",
  2685. "def": "haircutter; one whose business is to cut hair and to shave or trim beards",
  2686. "pos": "",
  2687. "phonetic": "",
  2688. "zh": ""
  2689. },
  2690. {
  2691. "word": "bare",
  2692. "def": "lacking the usual or appropriate covering or clothing",
  2693. "pos": "",
  2694. "phonetic": "",
  2695. "zh": ""
  2696. },
  2697. {
  2698. "word": "barely",
  2699. "def": "just; only; hardly; scarcely",
  2700. "pos": "",
  2701. "phonetic": "",
  2702. "zh": ""
  2703. },
  2704. {
  2705. "word": "bargain",
  2706. "def": "agreement between parties concerning the sale of property",
  2707. "pos": "",
  2708. "phonetic": "",
  2709. "zh": ""
  2710. },
  2711. {
  2712. "word": "barge",
  2713. "def": "flatboat; long, large boat for transporting freight that is unpowered and towed or pushed by",
  2714. "pos": "",
  2715. "phonetic": "",
  2716. "zh": ""
  2717. },
  2718. {
  2719. "word": "bark",
  2720. "def": "sound made by a dog; harsh sound uttered by a dog",
  2721. "pos": "",
  2722. "phonetic": "",
  2723. "zh": ""
  2724. },
  2725. {
  2726. "word": "barn",
  2727. "def": "an outlying farm building for storing grain or animal feed and housing farm animals",
  2728. "pos": "",
  2729. "phonetic": "",
  2730. "zh": ""
  2731. },
  2732. {
  2733. "word": "barometer",
  2734. "def": "instrument for determining the weight or pressure of the atmosphere",
  2735. "pos": "",
  2736. "phonetic": "",
  2737. "zh": ""
  2738. },
  2739. {
  2740. "word": "baron",
  2741. "def": "title or degree of nobility",
  2742. "pos": "",
  2743. "phonetic": "",
  2744. "zh": ""
  2745. },
  2746. {
  2747. "word": "barrel",
  2748. "def": "vessel; large cylindrical container",
  2749. "pos": "",
  2750. "phonetic": "",
  2751. "zh": ""
  2752. },
  2753. {
  2754. "word": "barren",
  2755. "def": "desolate; fruitless and unproductive; lacking",
  2756. "pos": "",
  2757. "phonetic": "",
  2758. "zh": ""
  2759. },
  2760. {
  2761. "word": "barrier",
  2762. "def": "obstacle; structure built to bar passage; boundary or limit",
  2763. "pos": "",
  2764. "phonetic": "",
  2765. "zh": ""
  2766. },
  2767. {
  2768. "word": "barter",
  2769. "def": "trade goods or services without the exchange of money",
  2770. "pos": "",
  2771. "phonetic": "",
  2772. "zh": ""
  2773. },
  2774. {
  2775. "word": "baseball",
  2776. "def": "game played with a bat and ball by two opposing teams of nine players; ball used in this",
  2777. "pos": "",
  2778. "phonetic": "",
  2779. "zh": ""
  2780. },
  2781. {
  2782. "word": "basement",
  2783. "def": "cellar; storage room",
  2784. "pos": "",
  2785. "phonetic": "",
  2786. "zh": ""
  2787. },
  2788. {
  2789. "word": "basin",
  2790. "def": "bowl-shaped vessel, usually used for holding food or liquids",
  2791. "pos": "",
  2792. "phonetic": "",
  2793. "zh": ""
  2794. },
  2795. {
  2796. "word": "bathe",
  2797. "def": "wash by immersion, as in a bath; subject to bath; lave; immerse or cover one's self",
  2798. "pos": "",
  2799. "phonetic": "",
  2800. "zh": ""
  2801. },
  2802. {
  2803. "word": "batter",
  2804. "def": "beat with successive blows; beat repeatedly and with violence",
  2805. "pos": "",
  2806. "phonetic": "",
  2807. "zh": ""
  2808. },
  2809. {
  2810. "word": "battery",
  2811. "def": "beating or pounding; set of guns or heavy artillery; dry cell that produces electric current",
  2812. "pos": "",
  2813. "phonetic": "",
  2814. "zh": ""
  2815. },
  2816. {
  2817. "word": "bay",
  2818. "def": "inlet of the sea, usually smaller than a gulf; small body of water set off from the main body",
  2819. "pos": "",
  2820. "phonetic": "",
  2821. "zh": ""
  2822. },
  2823. {
  2824. "word": "bazaar",
  2825. "def": "market consisting of a street lined with shops and stalls, especially one in the Middle East",
  2826. "pos": "",
  2827. "phonetic": "",
  2828. "zh": ""
  2829. },
  2830. {
  2831. "word": "bead",
  2832. "def": "small piece of material, such as glass, plastic, or wood, that is pierced for stringing",
  2833. "pos": "",
  2834. "phonetic": "",
  2835. "zh": ""
  2836. },
  2837. {
  2838. "word": "beak",
  2839. "def": "nib ;horny projecting mouth of a bird",
  2840. "pos": "",
  2841. "phonetic": "",
  2842. "zh": ""
  2843. },
  2844. {
  2845. "word": "beam",
  2846. "def": "ray of light; long piece of metal or wood; long piece fixed or movable in structure, machine, or",
  2847. "pos": "",
  2848. "phonetic": "",
  2849. "zh": ""
  2850. },
  2851. {
  2852. "word": "bean",
  2853. "def": "various edible seeds; small oval or roundish seed, berry, nut, or lump",
  2854. "pos": "",
  2855. "phonetic": "",
  2856. "zh": ""
  2857. },
  2858. {
  2859. "word": "bear",
  2860. "def": "support; sustain; carry; have; yield; give birth; hold up or support",
  2861. "pos": "",
  2862. "phonetic": "",
  2863. "zh": ""
  2864. },
  2865. {
  2866. "word": "bearing",
  2867. "def": "carrying another part; patient endurance; suffering without complaint; act of producing or",
  2868. "pos": "",
  2869. "phonetic": "",
  2870. "zh": ""
  2871. },
  2872. {
  2873. "word": "beat",
  2874. "def": "whip; strike; defeat; hit repeatedly",
  2875. "pos": "",
  2876. "phonetic": "",
  2877. "zh": ""
  2878. },
  2879. {
  2880. "word": "become",
  2881. "def": "suit or be suitable to; be worthy of, or proper for; cause to appear well; grow or come to be",
  2882. "pos": "",
  2883. "phonetic": "",
  2884. "zh": ""
  2885. },
  2886. {
  2887. "word": "beforehand",
  2888. "def": "in state of anticipation; in advance; by way of preparation",
  2889. "pos": "",
  2890. "phonetic": "",
  2891. "zh": ""
  2892. },
  2893. {
  2894. "word": "behalf",
  2895. "def": "represent; advantage, benefit, interest of someone",
  2896. "pos": "",
  2897. "phonetic": "",
  2898. "zh": ""
  2899. },
  2900. {
  2901. "word": "behave",
  2902. "def": "perform; conduct oneself in a proper way",
  2903. "pos": "",
  2904. "phonetic": "",
  2905. "zh": ""
  2906. },
  2907. {
  2908. "word": "behavior",
  2909. "def": "conduct; manner",
  2910. "pos": "",
  2911. "phonetic": "",
  2912. "zh": ""
  2913. },
  2914. {
  2915. "word": "belly",
  2916. "def": "part of human body which extends downward from breast to thighs, and contains bowels;",
  2917. "pos": "",
  2918. "phonetic": "",
  2919. "zh": ""
  2920. },
  2921. {
  2922. "word": "beloved",
  2923. "def": "greatly loved; dear to the heart",
  2924. "pos": "",
  2925. "phonetic": "",
  2926. "zh": ""
  2927. },
  2928. {
  2929. "word": "below",
  2930. "def": "under, or lower in place; beneath not so high; inferior to in rank; unworthy of",
  2931. "pos": "",
  2932. "phonetic": "",
  2933. "zh": ""
  2934. },
  2935. {
  2936. "word": "bend",
  2937. "def": "strain or move out of a straight line; curve; turn toward some certain point",
  2938. "pos": "",
  2939. "phonetic": "",
  2940. "zh": ""
  2941. },
  2942. {
  2943. "word": "beneath",
  2944. "def": "lower in place, with something directly over or on; under; underneath; below",
  2945. "pos": "",
  2946. "phonetic": "",
  2947. "zh": ""
  2948. },
  2949. {
  2950. "word": "beneficial",
  2951. "def": "helpful; tending to promote physical well-being",
  2952. "pos": "",
  2953. "phonetic": "",
  2954. "zh": ""
  2955. },
  2956. {
  2957. "word": "beneficiary",
  2958. "def": "person entitled to benefits or proceeds of an insurance policy or will",
  2959. "pos": "",
  2960. "phonetic": "",
  2961. "zh": ""
  2962. },
  2963. {
  2964. "word": "benefit",
  2965. "def": "advantage; something that aids or promotes well-being ; welfare; gain",
  2966. "pos": "",
  2967. "phonetic": "",
  2968. "zh": ""
  2969. },
  2970. {
  2971. "word": "benevolent",
  2972. "def": "generous in providing aid to others; charitable",
  2973. "pos": "",
  2974. "phonetic": "",
  2975. "zh": ""
  2976. },
  2977. {
  2978. "word": "bent",
  2979. "def": "determined to do or have",
  2980. "pos": "",
  2981. "phonetic": "",
  2982. "zh": ""
  2983. },
  2984. {
  2985. "word": "besides",
  2986. "def": "over and above; separate or distinct from; in addition to; other than",
  2987. "pos": "",
  2988. "phonetic": "",
  2989. "zh": ""
  2990. },
  2991. {
  2992. "word": "bestow",
  2993. "def": "give as gift; present",
  2994. "pos": "",
  2995. "phonetic": "",
  2996. "zh": ""
  2997. },
  2998. {
  2999. "word": "bet",
  3000. "def": "stake or pledge upon the event of a contingent issue; amount or object risked in a wager",
  3001. "pos": "",
  3002. "phonetic": "",
  3003. "zh": ""
  3004. },
  3005. {
  3006. "word": "betray",
  3007. "def": "be unfaithful; reveal unconsciously or unwillingly",
  3008. "pos": "",
  3009. "phonetic": "",
  3010. "zh": ""
  3011. },
  3012. {
  3013. "word": "beverage",
  3014. "def": "liquids for drinking, usually excluding water; refreshment",
  3015. "pos": "",
  3016. "phonetic": "",
  3017. "zh": ""
  3018. },
  3019. {
  3020. "word": "bewilder",
  3021. "def": "lead into perplexity or confusion; perplex with mazes",
  3022. "pos": "",
  3023. "phonetic": "",
  3024. "zh": ""
  3025. },
  3026. {
  3027. "word": "bias",
  3028. "def": "preference or inclination, especially one that inhibits impartial judgment; influence in unfair way",
  3029. "pos": "",
  3030. "phonetic": "",
  3031. "zh": ""
  3032. },
  3033. {
  3034. "word": "bid",
  3035. "def": "make an offer of; propose; offer in words; declare, as a wish, a greeting, a threat, or defiance",
  3036. "pos": "",
  3037. "phonetic": "",
  3038. "zh": ""
  3039. },
  3040. {
  3041. "word": "bill",
  3042. "def": "invoice; act; proposal; statement or list of particulars, such as a theater program or menu",
  3043. "pos": "",
  3044. "phonetic": "",
  3045. "zh": ""
  3046. },
  3047. {
  3048. "word": "billion",
  3049. "def": "the number that is represented as a one followed by 9 zeros",
  3050. "pos": "",
  3051. "phonetic": "",
  3052. "zh": ""
  3053. },
  3054. {
  3055. "word": "bind",
  3056. "def": "tie, or confine with a cord, band, or chain; make fast; contract; cohere or stick together",
  3057. "pos": "",
  3058. "phonetic": "",
  3059. "zh": ""
  3060. },
  3061. {
  3062. "word": "biographer",
  3063. "def": "one who writes a book about somebody's life",
  3064. "pos": "",
  3065. "phonetic": "",
  3066. "zh": ""
  3067. },
  3068. {
  3069. "word": "biography",
  3070. "def": "an account of the series of events making up a person's life; accounts of people's life",
  3071. "pos": "",
  3072. "phonetic": "",
  3073. "zh": ""
  3074. },
  3075. {
  3076. "word": "biologist",
  3077. "def": "scientist who studies living organisms",
  3078. "pos": "",
  3079. "phonetic": "",
  3080. "zh": ""
  3081. },
  3082. {
  3083. "word": "bite",
  3084. "def": "pierce skin with teeth; seize with the teeth; sting with a stinger; eat into; have a sharp taste",
  3085. "pos": "",
  3086. "phonetic": "",
  3087. "zh": ""
  3088. },
  3089. {
  3090. "word": "bitter",
  3091. "def": "harsh or corrosive in tone; painful; acrid; acrimonious",
  3092. "pos": "",
  3093. "phonetic": "",
  3094. "zh": ""
  3095. },
  3096. {
  3097. "word": "bitterness",
  3098. "def": "sharp and bitter manner",
  3099. "pos": "",
  3100. "phonetic": "",
  3101. "zh": ""
  3102. },
  3103. {
  3104. "word": "blacksmith",
  3105. "def": "one who forges and shapes iron with a hammer and anvil",
  3106. "pos": "",
  3107. "phonetic": "",
  3108. "zh": ""
  3109. },
  3110. {
  3111. "word": "blade",
  3112. "def": "flat part of the leaf, of any plant, especially of gramineous plants; cutting part of an instrument",
  3113. "pos": "",
  3114. "phonetic": "",
  3115. "zh": ""
  3116. },
  3117. {
  3118. "word": "blame",
  3119. "def": "condemn; rebuke; find fault with; censure",
  3120. "pos": "",
  3121. "phonetic": "",
  3122. "zh": ""
  3123. },
  3124. {
  3125. "word": "blank",
  3126. "def": "of a white or pale color; without color; empty; void",
  3127. "pos": "",
  3128. "phonetic": "",
  3129. "zh": ""
  3130. },
  3131. {
  3132. "word": "blanket",
  3133. "def": "heavy, loosely woven fabric, usually of wool, and having a nap, used in bed clothing",
  3134. "pos": "",
  3135. "phonetic": "",
  3136. "zh": ""
  3137. },
  3138. {
  3139. "word": "blast",
  3140. "def": "explode; burst; gale; very strong gust of wind or air",
  3141. "pos": "",
  3142. "phonetic": "",
  3143. "zh": ""
  3144. },
  3145. {
  3146. "word": "blaze",
  3147. "def": "brilliant burst of fire; destructive fire; flame",
  3148. "pos": "",
  3149. "phonetic": "",
  3150. "zh": ""
  3151. },
  3152. {
  3153. "word": "bleach",
  3154. "def": "make white or colorless; blanch",
  3155. "pos": "",
  3156. "phonetic": "",
  3157. "zh": ""
  3158. },
  3159. {
  3160. "word": "bleed",
  3161. "def": "emit blood; lose blood; withdraw blood from the body",
  3162. "pos": "",
  3163. "phonetic": "",
  3164. "zh": ""
  3165. },
  3166. {
  3167. "word": "blend",
  3168. "def": "combination; mixture; forming uniform mixture",
  3169. "pos": "",
  3170. "phonetic": "",
  3171. "zh": ""
  3172. },
  3173. {
  3174. "word": "bless",
  3175. "def": "make or pronounce holy; consecrate; make happy",
  3176. "pos": "",
  3177. "phonetic": "",
  3178. "zh": ""
  3179. },
  3180. {
  3181. "word": "blessing",
  3182. "def": "praying for divine protection; formal act of giving approval",
  3183. "pos": "",
  3184. "phonetic": "",
  3185. "zh": ""
  3186. },
  3187. {
  3188. "word": "blink",
  3189. "def": "shut eyes briefly; wink",
  3190. "pos": "",
  3191. "phonetic": "",
  3192. "zh": ""
  3193. },
  3194. {
  3195. "word": "block",
  3196. "def": "hinder; obstruct; indicate broadly without great detail; sketch",
  3197. "pos": "",
  3198. "phonetic": "",
  3199. "zh": ""
  3200. },
  3201. {
  3202. "word": "bloom",
  3203. "def": "flower; blossom; best time of youth; period of greatest prosperity or productivity",
  3204. "pos": "",
  3205. "phonetic": "",
  3206. "zh": ""
  3207. },
  3208. {
  3209. "word": "blossom",
  3210. "def": "reproductive organ of plants, especially one having showy or colorful parts",
  3211. "pos": "",
  3212. "phonetic": "",
  3213. "zh": ""
  3214. },
  3215. {
  3216. "word": "blot",
  3217. "def": "spot or stain, as of ink on paper; blur; weak point or failing",
  3218. "pos": "",
  3219. "phonetic": "",
  3220. "zh": ""
  3221. },
  3222. {
  3223. "word": "blunder",
  3224. "def": "serious mistake typically caused by ignorance or confusion",
  3225. "pos": "",
  3226. "phonetic": "",
  3227. "zh": ""
  3228. },
  3229. {
  3230. "word": "blunt",
  3231. "def": "having a dull edge or end; not sharp; lacking in feeling; insensitive",
  3232. "pos": "",
  3233. "phonetic": "",
  3234. "zh": ""
  3235. },
  3236. {
  3237. "word": "blush",
  3238. "def": "become rosy or reddish; turn red, as if in embarrassment or shame",
  3239. "pos": "",
  3240. "phonetic": "",
  3241. "zh": ""
  3242. },
  3243. {
  3244. "word": "board",
  3245. "def": "a committee having supervisory powers; a flat piece of material designed for a special",
  3246. "pos": "",
  3247. "phonetic": "",
  3248. "zh": ""
  3249. },
  3250. {
  3251. "word": "boarding",
  3252. "def": "wooden boards collectively; act of entering a ship; supplying with meals and lodgings for",
  3253. "pos": "",
  3254. "phonetic": "",
  3255. "zh": ""
  3256. },
  3257. {
  3258. "word": "boast",
  3259. "def": "show off oneself; speak of with excessive pride",
  3260. "pos": "",
  3261. "phonetic": "",
  3262. "zh": ""
  3263. },
  3264. {
  3265. "word": "bodyguard",
  3266. "def": "guard to protect or defend person; lifeguard",
  3267. "pos": "",
  3268. "phonetic": "",
  3269. "zh": ""
  3270. },
  3271. {
  3272. "word": "boil",
  3273. "def": "be agitated; pass from a liquid to vapor when heated; be excited with passion; heat in water",
  3274. "pos": "",
  3275. "phonetic": "",
  3276. "zh": ""
  3277. },
  3278. {
  3279. "word": "bold",
  3280. "def": "brave; daring; intrepid; impudent",
  3281. "pos": "",
  3282. "phonetic": "",
  3283. "zh": ""
  3284. },
  3285. {
  3286. "word": "bolt",
  3287. "def": "dash or dart off; move or jump suddenly",
  3288. "pos": "",
  3289. "phonetic": "",
  3290. "zh": ""
  3291. },
  3292. {
  3293. "word": "bond",
  3294. "def": "link; connection; uniting force or tie; binding agreement; duty",
  3295. "pos": "",
  3296. "phonetic": "",
  3297. "zh": ""
  3298. },
  3299. {
  3300. "word": "bonus",
  3301. "def": "an extra dividend to the shareholders; money paid in addition to a stated compensation",
  3302. "pos": "",
  3303. "phonetic": "",
  3304. "zh": ""
  3305. },
  3306. {
  3307. "word": "bookcase",
  3308. "def": "case with shelves for holding books, especially one with glazed doors",
  3309. "pos": "",
  3310. "phonetic": "",
  3311. "zh": ""
  3312. },
  3313. {
  3314. "word": "boom",
  3315. "def": "bonanza; prosperity; prosper; expand; flourish",
  3316. "pos": "",
  3317. "phonetic": "",
  3318. "zh": ""
  3319. },
  3320. {
  3321. "word": "booming",
  3322. "def": "deep and resonant; flourishing; thriving",
  3323. "pos": "",
  3324. "phonetic": "",
  3325. "zh": ""
  3326. },
  3327. {
  3328. "word": "boost",
  3329. "def": "raise; advance; push or shove upward",
  3330. "pos": "",
  3331. "phonetic": "",
  3332. "zh": ""
  3333. },
  3334. {
  3335. "word": "booth",
  3336. "def": "house or shed built for temporary occupation; covered stall or temporary structure",
  3337. "pos": "",
  3338. "phonetic": "",
  3339. "zh": ""
  3340. },
  3341. {
  3342. "word": "border",
  3343. "def": "outer part or edge of anything, as of a garment, a garden; margin; verge; brink; boundary",
  3344. "pos": "",
  3345. "phonetic": "",
  3346. "zh": ""
  3347. },
  3348. {
  3349. "word": "bore",
  3350. "def": "drill; make a hole in or through, with or as if with a drill",
  3351. "pos": "",
  3352. "phonetic": "",
  3353. "zh": ""
  3354. },
  3355. {
  3356. "word": "boring",
  3357. "def": "uninteresting and tiresome; dull",
  3358. "pos": "",
  3359. "phonetic": "",
  3360. "zh": ""
  3361. },
  3362. {
  3363. "word": "bother",
  3364. "def": "annoy; trouble; make agitated or nervous; fluster",
  3365. "pos": "",
  3366. "phonetic": "",
  3367. "zh": ""
  3368. },
  3369. {
  3370. "word": "bounce",
  3371. "def": "jolt; rebound after having struck an object or a surface",
  3372. "pos": "",
  3373. "phonetic": "",
  3374. "zh": ""
  3375. },
  3376. {
  3377. "word": "bound",
  3378. "def": "tied; held; committed; limit; constraint; leap; jump",
  3379. "pos": "",
  3380. "phonetic": "",
  3381. "zh": ""
  3382. },
  3383. {
  3384. "word": "boundary",
  3385. "def": "dividing line; border; frontier",
  3386. "pos": "",
  3387. "phonetic": "",
  3388. "zh": ""
  3389. },
  3390. {
  3391. "word": "bourgeois",
  3392. "def": "middle class; selfishly materialistic; dully conventional",
  3393. "pos": "",
  3394. "phonetic": "",
  3395. "zh": ""
  3396. },
  3397. {
  3398. "word": "bow",
  3399. "def": "inclination of head, or bending of body for reverence, respect, civility, or submission; bending or",
  3400. "pos": "",
  3401. "phonetic": "",
  3402. "zh": ""
  3403. },
  3404. {
  3405. "word": "bowl",
  3406. "def": "throw or roll a ball; move quickly and smoothly, especially by rolling",
  3407. "pos": "",
  3408. "phonetic": "",
  3409. "zh": ""
  3410. },
  3411. {
  3412. "word": "boycott",
  3413. "def": "refrain from buying or using",
  3414. "pos": "",
  3415. "phonetic": "",
  3416. "zh": ""
  3417. },
  3418. {
  3419. "word": "brace",
  3420. "def": "something which holds anything tightly or supports it firmly, as bandage, cord, or rod;",
  3421. "pos": "",
  3422. "phonetic": "",
  3423. "zh": ""
  3424. },
  3425. {
  3426. "word": "brain",
  3427. "def": "organ or seat of intellect; understanding or imagination",
  3428. "pos": "",
  3429. "phonetic": "",
  3430. "zh": ""
  3431. },
  3432. {
  3433. "word": "brake",
  3434. "def": "a piece of mechanism for retarding or stopping motion by friction",
  3435. "pos": "",
  3436. "phonetic": "",
  3437. "zh": ""
  3438. },
  3439. {
  3440. "word": "brand",
  3441. "def": "burning piece of wood; mark made by burning with a hot iron; distinctive mark upon in any",
  3442. "pos": "",
  3443. "phonetic": "",
  3444. "zh": ""
  3445. },
  3446. {
  3447. "word": "breach",
  3448. "def": "breaking of contract or duty",
  3449. "pos": "",
  3450. "phonetic": "",
  3451. "zh": ""
  3452. },
  3453. {
  3454. "word": "breadth",
  3455. "def": "measure or dimension from side to side; width; extent",
  3456. "pos": "",
  3457. "phonetic": "",
  3458. "zh": ""
  3459. },
  3460. {
  3461. "word": "break",
  3462. "def": "opportunity to do something; pause or interval, as from work; sudden change",
  3463. "pos": "",
  3464. "phonetic": "",
  3465. "zh": ""
  3466. },
  3467. {
  3468. "word": "breakdown",
  3469. "def": "process of failing to function or continue; sudden collapse in physical or mental health;",
  3470. "pos": "",
  3471. "phonetic": "",
  3472. "zh": ""
  3473. },
  3474. {
  3475. "word": "breakthrough",
  3476. "def": "act of overcoming or penetrating an obstacle or restriction",
  3477. "pos": "",
  3478. "phonetic": "",
  3479. "zh": ""
  3480. },
  3481. {
  3482. "word": "breath",
  3483. "def": "air that is inhaled and exhaled in respiration",
  3484. "pos": "",
  3485. "phonetic": "",
  3486. "zh": ""
  3487. },
  3488. {
  3489. "word": "breathe",
  3490. "def": "respire; inhale and exhale air",
  3491. "pos": "",
  3492. "phonetic": "",
  3493. "zh": ""
  3494. },
  3495. {
  3496. "word": "breed",
  3497. "def": "raise; produce offspring; give birth to or hatch; mate",
  3498. "pos": "",
  3499. "phonetic": "",
  3500. "zh": ""
  3501. },
  3502. {
  3503. "word": "breeze",
  3504. "def": "light current of air; gentle wind; progress swiftly and effortlessly",
  3505. "pos": "",
  3506. "phonetic": "",
  3507. "zh": ""
  3508. },
  3509. {
  3510. "word": "bribe",
  3511. "def": "something serving to influence or persuade; reward or gift with a view to prevent judgment",
  3512. "pos": "",
  3513. "phonetic": "",
  3514. "zh": ""
  3515. },
  3516. {
  3517. "word": "bridle",
  3518. "def": "headgear with which a horse is directed and which carries a bit and reins",
  3519. "pos": "",
  3520. "phonetic": "",
  3521. "zh": ""
  3522. },
  3523. {
  3524. "word": "brief",
  3525. "def": "short in time, duration, length, or extent; concise",
  3526. "pos": "",
  3527. "phonetic": "",
  3528. "zh": ""
  3529. },
  3530. {
  3531. "word": "brighten",
  3532. "def": "lighten; cheer; encourage; make or become bright or brighter",
  3533. "pos": "",
  3534. "phonetic": "",
  3535. "zh": ""
  3536. },
  3537. {
  3538. "word": "brilliance",
  3539. "def": "cleverness; magnificence",
  3540. "pos": "",
  3541. "phonetic": "",
  3542. "zh": ""
  3543. },
  3544. {
  3545. "word": "brilliant",
  3546. "def": "full of light; shining; bright; sharp and clear in tone",
  3547. "pos": "",
  3548. "phonetic": "",
  3549. "zh": ""
  3550. },
  3551. {
  3552. "word": "brim",
  3553. "def": "brink; edge",
  3554. "pos": "",
  3555. "phonetic": "",
  3556. "zh": ""
  3557. },
  3558. {
  3559. "word": "brink",
  3560. "def": "edge, margin, or border of a steep place verge",
  3561. "pos": "",
  3562. "phonetic": "",
  3563. "zh": ""
  3564. },
  3565. {
  3566. "word": "brisk",
  3567. "def": "marked by speed, liveliness, and vigor; energetic; swift; keen or sharp in speech or manner",
  3568. "pos": "",
  3569. "phonetic": "",
  3570. "zh": ""
  3571. },
  3572. {
  3573. "word": "brittle",
  3574. "def": "easily broken; having little elasticity",
  3575. "pos": "",
  3576. "phonetic": "",
  3577. "zh": ""
  3578. },
  3579. {
  3580. "word": "broadcast",
  3581. "def": "message that is transmitted by radio or television; radio or television show",
  3582. "pos": "",
  3583. "phonetic": "",
  3584. "zh": ""
  3585. },
  3586. {
  3587. "word": "broaden",
  3588. "def": "widen; grow broad or broader",
  3589. "pos": "",
  3590. "phonetic": "",
  3591. "zh": ""
  3592. },
  3593. {
  3594. "word": "brochure",
  3595. "def": "pamphlet; small book usually having paper cover",
  3596. "pos": "",
  3597. "phonetic": "",
  3598. "zh": ""
  3599. },
  3600. {
  3601. "word": "bronze",
  3602. "def": "an alloy of copper and tin and sometimes other elements",
  3603. "pos": "",
  3604. "phonetic": "",
  3605. "zh": ""
  3606. },
  3607. {
  3608. "word": "brood",
  3609. "def": "think long and anxiously; be in a state of gloomy, serious thought",
  3610. "pos": "",
  3611. "phonetic": "",
  3612. "zh": ""
  3613. },
  3614. {
  3615. "word": "brook",
  3616. "def": "creek; stream",
  3617. "pos": "",
  3618. "phonetic": "",
  3619. "zh": ""
  3620. },
  3621. {
  3622. "word": "brown",
  3623. "def": "of dark color, of various shades between black and red or yellow",
  3624. "pos": "",
  3625. "phonetic": "",
  3626. "zh": ""
  3627. },
  3628. {
  3629. "word": "bruise",
  3630. "def": "injure, as by a blow or collision; contuse; fight with the fists",
  3631. "pos": "",
  3632. "phonetic": "",
  3633. "zh": ""
  3634. },
  3635. {
  3636. "word": "brutal",
  3637. "def": "like a brute; savage; cruel; inhuman; merciless",
  3638. "pos": "",
  3639. "phonetic": "",
  3640. "zh": ""
  3641. },
  3642. {
  3643. "word": "brute",
  3644. "def": "not having sensation; senseless; inanimate; unconscious; without intelligence",
  3645. "pos": "",
  3646. "phonetic": "",
  3647. "zh": ""
  3648. },
  3649. {
  3650. "word": "bubble",
  3651. "def": "foam; dome-shaped covering made of transparent glass or plastic; fantastic or impracticable",
  3652. "pos": "",
  3653. "phonetic": "",
  3654. "zh": ""
  3655. },
  3656. {
  3657. "word": "bucket",
  3658. "def": "vessel for drawing up water from a well; vessel for hoisting and conveying coal, ore, grain",
  3659. "pos": "",
  3660. "phonetic": "",
  3661. "zh": ""
  3662. },
  3663. {
  3664. "word": "bud",
  3665. "def": "one that is not yet fully developed; sprout",
  3666. "pos": "",
  3667. "phonetic": "",
  3668. "zh": ""
  3669. },
  3670. {
  3671. "word": "budget",
  3672. "def": "estimate; a sum of money allocated for a particular purpose",
  3673. "pos": "",
  3674. "phonetic": "",
  3675. "zh": ""
  3676. },
  3677. {
  3678. "word": "buffet",
  3679. "def": "table with food set out for people to se",
  3680. "pos": "",
  3681. "phonetic": "",
  3682. "zh": ""
  3683. }
  3684. ]