before_2026_fall_2026-09-01T04-58-35-478Z.json 334 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290
  1. {
  2. "createdAt": "2026-09-01T04:58:35.478Z",
  3. "note": "所有目标表写入前、事务锁定后的完整备份",
  4. "targetMiaoguoBookIds": [
  5. 49,
  6. 7,
  7. 37,
  8. 51,
  9. 9,
  10. 39,
  11. 11,
  12. 41,
  13. 291,
  14. 299
  15. ],
  16. "targetHanziBookIds": [
  17. 67,
  18. 19,
  19. 49,
  20. 69,
  21. 21,
  22. 51,
  23. 23,
  24. 53
  25. ],
  26. "targetEnglishBookIds": [
  27. 197,
  28. 205
  29. ],
  30. "books": [
  31. {
  32. "ID": 7,
  33. "BookIDOld": 19,
  34. "Category": "语文",
  35. "LibraryName1": "四年级",
  36. "LibraryName2": "上学期",
  37. "Grade": "小学",
  38. "Category2": "课本",
  39. "BookName": "写字",
  40. "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
  41. "WordType": "汉字",
  42. "UnitNum": 20,
  43. "StartID": 0,
  44. "WordNum": 250,
  45. "BookImageName": "g4F",
  46. "KnowledgeImageName": "xz",
  47. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
  48. "Sort": 40,
  49. "Flag": 0
  50. },
  51. {
  52. "ID": 9,
  53. "BookIDOld": 21,
  54. "Category": "语文",
  55. "LibraryName1": "五年级",
  56. "LibraryName2": "上学期",
  57. "Grade": "小学",
  58. "Category2": "课本",
  59. "BookName": "写字",
  60. "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
  61. "WordType": "汉字",
  62. "UnitNum": 20,
  63. "StartID": 0,
  64. "WordNum": 220,
  65. "BookImageName": "g5F",
  66. "KnowledgeImageName": "xz",
  67. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
  68. "Sort": 50,
  69. "Flag": 0
  70. },
  71. {
  72. "ID": 11,
  73. "BookIDOld": 23,
  74. "Category": "语文",
  75. "LibraryName1": "六年级",
  76. "LibraryName2": "上学期",
  77. "Grade": "小学",
  78. "Category2": "课本",
  79. "BookName": "写字",
  80. "Remark": "一类字。这些汉字必须掌握,要求规范发音,正确书写和认记含义,为运用和交流奠定基础。",
  81. "WordType": "汉字",
  82. "UnitNum": 18,
  83. "StartID": 0,
  84. "WordNum": 180,
  85. "BookImageName": "g6F",
  86. "KnowledgeImageName": "xz",
  87. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
  88. "Sort": 61,
  89. "Flag": 0
  90. },
  91. {
  92. "ID": 37,
  93. "BookIDOld": 49,
  94. "Category": "语文",
  95. "LibraryName1": "四年级",
  96. "LibraryName2": "上学期",
  97. "Grade": "小学",
  98. "Category2": "课本",
  99. "BookName": "词语",
  100. "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
  101. "WordType": "词语",
  102. "UnitNum": 16,
  103. "StartID": 0,
  104. "WordNum": 240,
  105. "BookImageName": "g4F",
  106. "KnowledgeImageName": "cy",
  107. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
  108. "Sort": 42,
  109. "Flag": 0
  110. },
  111. {
  112. "ID": 39,
  113. "BookIDOld": 51,
  114. "Category": "语文",
  115. "LibraryName1": "五年级",
  116. "LibraryName2": "上学期",
  117. "Grade": "小学",
  118. "Category2": "课本",
  119. "BookName": "词语",
  120. "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
  121. "WordType": "词语",
  122. "UnitNum": 16,
  123. "StartID": 0,
  124. "WordNum": 222,
  125. "BookImageName": "g5F",
  126. "KnowledgeImageName": "cy",
  127. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
  128. "Sort": 52,
  129. "Flag": 0
  130. },
  131. {
  132. "ID": 41,
  133. "BookIDOld": 53,
  134. "Category": "语文",
  135. "LibraryName1": "六年级",
  136. "LibraryName2": "上学期",
  137. "Grade": "小学",
  138. "Category2": "课本",
  139. "BookName": "词语",
  140. "Remark": "帮助学生积累词汇,理解意义和用法,是促进理解和表达的重要资源。",
  141. "WordType": "词语",
  142. "UnitNum": 14,
  143. "StartID": 0,
  144. "WordNum": 224,
  145. "BookImageName": "g6F",
  146. "KnowledgeImageName": "cy",
  147. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念词语\",\"C\":0,\"Img\":\"picJygs_08\",\"Remark\":\"题目为词语,答出它的发音,配释义。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写词语\",\"C\":0,\"Img\":\"picJygs_09\",\"Remark\":\"题目为词语发音,答出它的写法。\"}]",
  148. "Sort": 62,
  149. "Flag": 0
  150. },
  151. {
  152. "ID": 49,
  153. "BookIDOld": 67,
  154. "Category": "语文",
  155. "LibraryName1": "四年级",
  156. "LibraryName2": "上学期",
  157. "Grade": "小学",
  158. "Category2": "课本",
  159. "BookName": "识字",
  160. "Remark": "二类字。这些汉字要求会读,知道含义,不要求书写,为逐步积累汉字量,提高阅读水平打下基础。",
  161. "WordType": "汉字",
  162. "UnitNum": 31,
  163. "StartID": 0,
  164. "WordNum": 270,
  165. "BookImageName": "g4F",
  166. "KnowledgeImageName": "sz",
  167. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
  168. "Sort": 41,
  169. "Flag": 0
  170. },
  171. {
  172. "ID": 51,
  173. "BookIDOld": 69,
  174. "Category": "语文",
  175. "LibraryName1": "五年级",
  176. "LibraryName2": "上学期",
  177. "Grade": "小学",
  178. "Category2": "课本",
  179. "BookName": "识字",
  180. "Remark": "二类字。这些汉字要求会读,知道含义,不要求书写,为逐步积累汉字量,提高阅读水平打下基础。",
  181. "WordType": "汉字",
  182. "UnitNum": 26,
  183. "StartID": 0,
  184. "WordNum": 217,
  185. "BookImageName": "g5F",
  186. "KnowledgeImageName": "sz",
  187. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念汉字\",\"C\":0,\"Img\":\"picJygs_06\",\"Remark\":\"题目为课本中的词语,念出括号里汉字。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写汉字\",\"C\":0,\"Img\":\"picJygs_07\",\"Remark\":\"题目为汉字发音,答出它的写法。\"}]",
  188. "Sort": 51,
  189. "Flag": 0
  190. },
  191. {
  192. "ID": 291,
  193. "BookIDOld": 197,
  194. "Category": "English",
  195. "LibraryName1": "六年级",
  196. "LibraryName2": "上学期",
  197. "Grade": "小学",
  198. "Category2": "课本",
  199. "BookName": "单元词汇",
  200. "Remark": "适合小学年龄段,掌握核心词汇,提分快准狠。",
  201. "WordType": "单词",
  202. "UnitNum": 6,
  203. "StartID": 0,
  204. "WordNum": 147,
  205. "BookImageName": "rjPep-g6F",
  206. "KnowledgeImageName": "weu",
  207. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念单词说含义\",\"C\":0,\"Img\":\"picJygs_13\",\"Remark\":\"题目为单词,答出它的发音,配释义等信息。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"听写单词\",\"C\":0,\"Img\":\"picJygs_14\",\"Remark\":\"题目为单词发音和释义,写出单词。\"}]",
  208. "Sort": 1,
  209. "Flag": 0
  210. },
  211. {
  212. "ID": 299,
  213. "BookIDOld": 205,
  214. "Category": "English",
  215. "LibraryName1": "六年级",
  216. "LibraryName2": "上学期",
  217. "Grade": "小学",
  218. "Category2": "课本",
  219. "BookName": "常用表达法",
  220. "Remark": "适合小学年龄段,掌握核心表达方法。",
  221. "WordType": "句子",
  222. "UnitNum": 6,
  223. "StartID": 0,
  224. "WordNum": 39,
  225. "BookImageName": "rjPep-g6F",
  226. "KnowledgeImageName": "ue",
  227. "TestFunction": "[{\"ID\":1,\"N\":\"read\",\"N2\":\"念句子说含义\",\"C\":0,\"Img\":\"picJygs_13\",\"Remark\":\"题目为句子,答出它的发音,配释义等信息。\"},{\"ID\":2,\"N\":\"write\",\"N2\":\"默写句子\",\"C\":0,\"Img\":\"picJygs_14\",\"Remark\":\"题目为英文句子发音和释义,写出英文句子。\"}]",
  228. "Sort": 2,
  229. "Flag": 0
  230. }
  231. ],
  232. "hanziRows": [
  233. {
  234. "ID": 226,
  235. "HanziBookID": 19,
  236. "UnitType": 5,
  237. "Name": "课文1",
  238. "Example": "潮据堤阔盼滚顿逐渐堵犹崩震霎余",
  239. "IsLocked": 1,
  240. "OrderID": 0
  241. },
  242. {
  243. "ID": 227,
  244. "HanziBookID": 19,
  245. "UnitType": 5,
  246. "Name": "课文2",
  247. "Example": "淘牵鹅卵坑洼填庄稼俗跃葡萄稻熟",
  248. "IsLocked": 1,
  249. "OrderID": 0
  250. },
  251. {
  252. "ID": 228,
  253. "HanziBookID": 19,
  254. "UnitType": 5,
  255. "Name": "课文5",
  256. "Example": "豌按舒适暗恐僵硬枪耐探愉曾沟溢",
  257. "IsLocked": 1,
  258. "OrderID": 0
  259. },
  260. {
  261. "ID": 229,
  262. "HanziBookID": 19,
  263. "UnitType": 5,
  264. "Name": "课文6",
  265. "Example": "蚊弄科横竖绳系蝇证复研究达驾驶",
  266. "IsLocked": 1,
  267. "OrderID": 0
  268. },
  269. {
  270. "ID": 230,
  271. "HanziBookID": 19,
  272. "UnitType": 5,
  273. "Name": "课文7",
  274. "Example": "唤纪技改程超亿核奥益联质哲任善",
  275. "IsLocked": 1,
  276. "OrderID": 0
  277. },
  278. {
  279. "ID": 231,
  280. "HanziBookID": 19,
  281. "UnitType": 5,
  282. "Name": "课文9",
  283. "Example": "暮吟题侧峰庐缘降费须逊输",
  284. "IsLocked": 1,
  285. "OrderID": 0
  286. },
  287. {
  288. "ID": 232,
  289. "HanziBookID": 19,
  290. "UnitType": 5,
  291. "Name": "课文10",
  292. "Example": "虎操占嫩顺均叠隙茎柄萎瞧固",
  293. "IsLocked": 1,
  294. "OrderID": 0
  295. },
  296. {
  297. "ID": 233,
  298. "HanziBookID": 19,
  299. "UnitType": 5,
  300. "Name": "课文11",
  301. "Example": "宅临慎选择址良穴厅卧专即较",
  302. "IsLocked": 1,
  303. "OrderID": 0
  304. },
  305. {
  306. "ID": 234,
  307. "HanziBookID": 19,
  308. "UnitType": 5,
  309. "Name": "课文12",
  310. "Example": "睁翻斧劈缓浊丈撑竭累液奔茂滋",
  311. "IsLocked": 1,
  312. "OrderID": 0
  313. },
  314. {
  315. "ID": 235,
  316. "HanziBookID": 19,
  317. "UnitType": 5,
  318. "Name": "课文13",
  319. "Example": "日溺返衔",
  320. "IsLocked": 1,
  321. "OrderID": 0
  322. },
  323. {
  324. "ID": 236,
  325. "HanziBookID": 19,
  326. "UnitType": 5,
  327. "Name": "课文14",
  328. "Example": "悲惨兽佩坚违抗环锁既狠著愤获",
  329. "IsLocked": 1,
  330. "OrderID": 0
  331. },
  332. {
  333. "ID": 237,
  334. "HanziBookID": 19,
  335. "UnitType": 5,
  336. "Name": "课文16",
  337. "Example": "嗅呆奈巢齿躯掩护幼搏庞量愣",
  338. "IsLocked": 1,
  339. "OrderID": 0
  340. },
  341. {
  342. "ID": 238,
  343. "HanziBookID": 19,
  344. "UnitType": 5,
  345. "Name": "课文17",
  346. "Example": "级链颤攀猴念辫呵",
  347. "IsLocked": 1,
  348. "OrderID": 0
  349. },
  350. {
  351. "ID": 239,
  352. "HanziBookID": 19,
  353. "UnitType": 5,
  354. "Name": "课文18",
  355. "Example": "摸甚跪捶绕顽脖脱概惹昏握摔凭掐",
  356. "IsLocked": 1,
  357. "OrderID": 0
  358. },
  359. {
  360. "ID": 240,
  361. "HanziBookID": 19,
  362. "UnitType": 5,
  363. "Name": "课文19",
  364. "Example": "班鼓殷俩练套裤逃亏挖撤堂砸锅",
  365. "IsLocked": 1,
  366. "OrderID": 0
  367. },
  368. {
  369. "ID": 241,
  370. "HanziBookID": 19,
  371. "UnitType": 5,
  372. "Name": "课文20",
  373. "Example": "否旋况败椅尤恨帅预溃品丑豪",
  374. "IsLocked": 1,
  375. "OrderID": 0
  376. },
  377. {
  378. "ID": 242,
  379. "HanziBookID": 19,
  380. "UnitType": 5,
  381. "Name": "课文21",
  382. "Example": "塞秦征词催醉杰亦雄项",
  383. "IsLocked": 1,
  384. "OrderID": 0
  385. },
  386. {
  387. "ID": 243,
  388. "HanziBookID": 19,
  389. "UnitType": 5,
  390. "Name": "课文22",
  391. "Example": "肃默晰振胸怀赞效凡顾训斥",
  392. "IsLocked": 1,
  393. "OrderID": 0
  394. },
  395. {
  396. "ID": 244,
  397. "HanziBookID": 19,
  398. "UnitType": 5,
  399. "Name": "课文25",
  400. "Example": "戎尝诸竞唯",
  401. "IsLocked": 1,
  402. "OrderID": 0
  403. },
  404. {
  405. "ID": 245,
  406. "HanziBookID": 19,
  407. "UnitType": 5,
  408. "Name": "课文26",
  409. "Example": "豹派娶媳妇淹逼浮旱徒扔饶骗灌溉",
  410. "IsLocked": 1,
  411. "OrderID": 0
  412. },
  413. {
  414. "ID": 266,
  415. "HanziBookID": 21,
  416. "UnitType": 5,
  417. "Name": "课文1",
  418. "Example": "宜鹤嫌朱嵌框匣嗜哨恩韵",
  419. "IsLocked": 1,
  420. "OrderID": 0
  421. },
  422. {
  423. "ID": 267,
  424. "HanziBookID": 21,
  425. "UnitType": 5,
  426. "Name": "课文2",
  427. "Example": "亩播浇吩咐亭榨慕矮谈",
  428. "IsLocked": 1,
  429. "OrderID": 0
  430. },
  431. {
  432. "ID": 268,
  433. "HanziBookID": 21,
  434. "UnitType": 5,
  435. "Name": "课文3",
  436. "Example": "懂兰箩婆糕饼浸缠茶捡",
  437. "IsLocked": 1,
  438. "OrderID": 0
  439. },
  440. {
  441. "ID": 269,
  442. "HanziBookID": 21,
  443. "UnitType": 5,
  444. "Name": "课文5",
  445. "Example": "汛洪访鞋挽隔懒惰稳免衡协绰",
  446. "IsLocked": 1,
  447. "OrderID": 0
  448. },
  449. {
  450. "ID": 270,
  451. "HanziBookID": 21,
  452. "UnitType": 5,
  453. "Name": "课文6",
  454. "Example": "召臣议缺宫献诺典承抄罪怯拒荆",
  455. "IsLocked": 1,
  456. "OrderID": 0
  457. },
  458. {
  459. "ID": 271,
  460. "HanziBookID": 21,
  461. "UnitType": 5,
  462. "Name": "课文7",
  463. "Example": "冠俯喷枚箭浩筒束赤圈置",
  464. "IsLocked": 1,
  465. "OrderID": 0
  466. },
  467. {
  468. "ID": 272,
  469. "HanziBookID": 21,
  470. "UnitType": 5,
  471. "Name": "课文8",
  472. "Example": "侵略筑堡党丘妨蔽陷拐",
  473. "IsLocked": 1,
  474. "OrderID": 0
  475. },
  476. {
  477. "ID": 273,
  478. "HanziBookID": 21,
  479. "UnitType": 5,
  480. "Name": "课文9",
  481. "Example": "酬珍叮嘱塌焦誓谎延灾悔扶",
  482. "IsLocked": 1,
  483. "OrderID": 0
  484. },
  485. {
  486. "ID": 274,
  487. "HanziBookID": 21,
  488. "UnitType": 5,
  489. "Name": "课文10",
  490. "Example": "郎爹嫂辆歹罕纱妻趟托溜婚辈挨",
  491. "IsLocked": 1,
  492. "OrderID": 0
  493. },
  494. {
  495. "ID": 275,
  496. "HanziBookID": 21,
  497. "UnitType": 5,
  498. "Name": "课文12",
  499. "Example": "祭乃熏杭亥恃哀拘",
  500. "IsLocked": 1,
  501. "OrderID": 0
  502. },
  503. {
  504. "ID": 276,
  505. "HanziBookID": 21,
  506. "UnitType": 5,
  507. "Name": "课文13",
  508. "Example": "泻潜试胎皇履纵疆",
  509. "IsLocked": 1,
  510. "OrderID": 0
  511. },
  512. {
  513. "ID": 277,
  514. "HanziBookID": 21,
  515. "UnitType": 5,
  516. "Name": "课文14",
  517. "Example": "毁估损拱辉煌殿陵览境宏唐闯统销奉",
  518. "IsLocked": 1,
  519. "OrderID": 0
  520. },
  521. {
  522. "ID": 278,
  523. "HanziBookID": 21,
  524. "UnitType": 5,
  525. "Name": "课文16",
  526. "Example": "摄氏殖粮炭区杀菌疗",
  527. "IsLocked": 1,
  528. "OrderID": 0
  529. },
  530. {
  531. "ID": 279,
  532. "HanziBookID": 21,
  533. "UnitType": 5,
  534. "Name": "课文17",
  535. "Example": "鼠秀玲珑帽尾歇窝滑拾狭勉梳",
  536. "IsLocked": 1,
  537. "OrderID": 0
  538. },
  539. {
  540. "ID": 280,
  541. "HanziBookID": 21,
  542. "UnitType": 5,
  543. "Name": "课文18",
  544. "Example": "辞抑碌吊酷暑噪脊罩竟哇忍械酸权",
  545. "IsLocked": 1,
  546. "OrderID": 0
  547. },
  548. {
  549. "ID": 281,
  550. "HanziBookID": 21,
  551. "UnitType": 5,
  552. "Name": "课文19",
  553. "Example": "蚕考疼席糖屑迪钉陪毕煮枕",
  554. "IsLocked": 1,
  555. "OrderID": 0
  556. },
  557. {
  558. "ID": 282,
  559. "HanziBookID": 21,
  560. "UnitType": 5,
  561. "Name": "课文21",
  562. "Example": "孙泊愁寺畔",
  563. "IsLocked": 1,
  564. "OrderID": 0
  565. },
  566. {
  567. "ID": 284,
  568. "HanziBookID": 21,
  569. "UnitType": 5,
  570. "Name": "课文22",
  571. "Example": "桨榕纠耀桩涨塔梢暇眉抛",
  572. "IsLocked": 1,
  573. "OrderID": 0
  574. },
  575. {
  576. "ID": 285,
  577. "HanziBookID": 21,
  578. "UnitType": 5,
  579. "Name": "课文24",
  580. "Example": "耻诲谓诵岂",
  581. "IsLocked": 1,
  582. "OrderID": 0
  583. },
  584. {
  585. "ID": 286,
  586. "HanziBookID": 21,
  587. "UnitType": 5,
  588. "Name": "课文25",
  589. "Example": "舅津斩限凯葛述贾衰统刊琐朴某",
  590. "IsLocked": 1,
  591. "OrderID": 0
  592. },
  593. {
  594. "ID": 315,
  595. "HanziBookID": 23,
  596. "UnitType": 5,
  597. "Name": "课文1",
  598. "Example": "毯玻璃裳虹蹄腐稍微",
  599. "IsLocked": 0,
  600. "OrderID": 0
  601. },
  602. {
  603. "ID": 316,
  604. "HanziBookID": 23,
  605. "UnitType": 5,
  606. "Name": "课文2",
  607. "Example": "缀窥幽雅案拙帘薄糊蕾恰襟恍怨",
  608. "IsLocked": 1,
  609. "OrderID": 0
  610. },
  611. {
  612. "ID": 317,
  613. "HanziBookID": 23,
  614. "UnitType": 5,
  615. "Name": "课文3",
  616. "Example": "德鹊蝉",
  617. "IsLocked": 1,
  618. "OrderID": 0
  619. },
  620. {
  621. "ID": 318,
  622. "HanziBookID": 23,
  623. "UnitType": 5,
  624. "Name": "课文5",
  625. "Example": "律崖渡索",
  626. "IsLocked": 1,
  627. "OrderID": 0
  628. },
  629. {
  630. "ID": 319,
  631. "HanziBookID": 23,
  632. "UnitType": 5,
  633. "Name": "课文6",
  634. "Example": "寇副榴抡贯棋悬沸涧雹屹悦迈屈",
  635. "IsLocked": 1,
  636. "OrderID": 0
  637. },
  638. {
  639. "ID": 320,
  640. "HanziBookID": 23,
  641. "UnitType": 5,
  642. "Name": "课文7",
  643. "Example": "政府宾盏栏汇宣阅制坦距隆",
  644. "IsLocked": 1,
  645. "OrderID": 0
  646. },
  647. {
  648. "ID": 321,
  649. "HanziBookID": 23,
  650. "UnitType": 5,
  651. "Name": "课文10",
  652. "Example": "疙瘩棍裁筹橡雕跺颓沮丧趴屉",
  653. "IsLocked": 1,
  654. "OrderID": 0
  655. },
  656. {
  657. "ID": 322,
  658. "HanziBookID": 23,
  659. "UnitType": 5,
  660. "Name": "课文11",
  661. "Example": "谜尚氧倾揭斑燥漠磁素盗培",
  662. "IsLocked": 1,
  663. "OrderID": 0
  664. },
  665. {
  666. "ID": 323,
  667. "HanziBookID": 23,
  668. "UnitType": 5,
  669. "Name": "课文13",
  670. "Example": "黎咆哮嗓哑揪瞪呻废",
  671. "IsLocked": 1,
  672. "OrderID": 0
  673. },
  674. {
  675. "ID": 324,
  676. "HanziBookID": 23,
  677. "UnitType": 5,
  678. "Name": "课文14",
  679. "Example": "汹涌澎湃熄掀困唉淋嘿糟嘛皱勺",
  680. "IsLocked": 1,
  681. "OrderID": 0
  682. },
  683. {
  684. "ID": 325,
  685. "HanziBookID": 23,
  686. "UnitType": 5,
  687. "Name": "课文16",
  688. "Example": "棚粱叭苔藓坪蔗瀑增缝谚",
  689. "IsLocked": 1,
  690. "OrderID": 0
  691. },
  692. {
  693. "ID": 326,
  694. "HanziBookID": 23,
  695. "UnitType": 5,
  696. "Name": "课文17",
  697. "Example": "袖篷缩疯瓦柜喧甩嚷蒜酱唇蹦",
  698. "IsLocked": 1,
  699. "OrderID": 0
  700. },
  701. {
  702. "ID": 327,
  703. "HanziBookID": 23,
  704. "UnitType": 5,
  705. "Name": "课文18",
  706. "Example": "涯莺",
  707. "IsLocked": 1,
  708. "OrderID": 0
  709. },
  710. {
  711. "ID": 328,
  712. "HanziBookID": 23,
  713. "UnitType": 5,
  714. "Name": "课文19",
  715. "Example": "莹裹篮蔼资矿慷慨贡滥基睹",
  716. "IsLocked": 1,
  717. "OrderID": 0
  718. },
  719. {
  720. "ID": 329,
  721. "HanziBookID": 23,
  722. "UnitType": 5,
  723. "Name": "课文22",
  724. "Example": "哉巍弦轴锦曝矣",
  725. "IsLocked": 1,
  726. "OrderID": 0
  727. },
  728. {
  729. "ID": 330,
  730. "HanziBookID": 23,
  731. "UnitType": 5,
  732. "Name": "课文23",
  733. "Example": "谱莱茵盲纯键缕陶",
  734. "IsLocked": 1,
  735. "OrderID": 0
  736. },
  737. {
  738. "ID": 331,
  739. "HanziBookID": 23,
  740. "UnitType": 5,
  741. "Name": "课文25",
  742. "Example": "郑拜租厨毡羞撒缚猬伶俐窜",
  743. "IsLocked": 1,
  744. "OrderID": 0
  745. },
  746. {
  747. "ID": 332,
  748. "HanziBookID": 23,
  749. "UnitType": 5,
  750. "Name": "课文26",
  751. "Example": "搁综澄萍漾削瞬凝骤掷陡",
  752. "IsLocked": 1,
  753. "OrderID": 0
  754. },
  755. {
  756. "ID": 475,
  757. "HanziBookID": 49,
  758. "UnitType": 2,
  759. "Name": "课文1",
  760. "Example": "奇观,农历,据说,宽阔,人山人海,滚动,顿时,逐渐,犹如,齐头并进,山崩地裂,霎时,余波,依旧",
  761. "IsLocked": 1,
  762. "OrderID": 0
  763. },
  764. {
  765. "ID": 476,
  766. "HanziBookID": 49,
  767. "UnitType": 2,
  768. "Name": "课文2",
  769. "Example": "柔和,鹅卵石,河床,新鲜,修补,坑坑洼洼,庄稼,风俗,葡萄,满意,水稻,成熟,招待,传说",
  770. "IsLocked": 1,
  771. "OrderID": 0
  772. },
  773. {
  774. "ID": 477,
  775. "HanziBookID": 49,
  776. "UnitType": 2,
  777. "Name": "课文5",
  778. "Example": "豌豆,按照,暖洋洋,舒适,黑暗,恐怕,僵硬,丰满,等待,强壮,虚弱,耐心,愉快,兴奋,曾经,水沟,洋溢,感激",
  779. "IsLocked": 1,
  780. "OrderID": 0
  781. },
  782. {
  783. "ID": 478,
  784. "HanziBookID": 49,
  785. "UnitType": 2,
  786. "Name": "课文6",
  787. "Example": "蚊子,灵巧,科学家,横七竖八,绳子,苍蝇,证明,反复,研究,雷达,显示,驾驶员",
  788. "IsLocked": 1,
  789. "OrderID": 0
  790. },
  791. {
  792. "ID": 479,
  793. "HanziBookID": 49,
  794. "UnitType": 2,
  795. "Name": "课文7",
  796. "Example": "呼风唤雨,世纪,技术,改变,程度,超过,腾云驾雾,幻想,原子核,奥秘,日益,联系,物质,哲学,任何,创造,改善",
  797. "IsLocked": 1,
  798. "OrderID": 0
  799. },
  800. {
  801. "ID": 480,
  802. "HanziBookID": 49,
  803. "UnitType": 2,
  804. "Name": "课文10",
  805. "Example": "爬山虎,操场,嫩红,舒服,均匀,重叠,空隙,叶柄,反面,触角,弯曲,细小,痕迹,瞧不起,牢固,休想",
  806. "IsLocked": 1,
  807. "OrderID": 0
  808. },
  809. {
  810. "ID": 481,
  811. "HanziBookID": 49,
  812. "UnitType": 2,
  813. "Name": "课文11",
  814. "Example": "住宅,临时,功夫,随遇而安,慎重,选择,住址,优良,洞穴,大厅,卧室,专家,即使,平整,清洁,卫生,疲劳",
  815. "IsLocked": 1,
  816. "OrderID": 0
  817. },
  818. {
  819. "ID": 482,
  820. "HanziBookID": 49,
  821. "UnitType": 2,
  822. "Name": "课文12",
  823. "Example": "睁眼,黑乎乎,翻身,斧头,缓缓,上升,下降,精疲力竭,血液,奔流不息,汗毛,茂盛,滋润,雨露",
  824. "IsLocked": 1,
  825. "OrderID": 0
  826. },
  827. {
  828. "ID": 483,
  829. "HanziBookID": 49,
  830. "UnitType": 2,
  831. "Name": "课文14",
  832. "Example": "人间,悲惨,情景,危害,猛兽,严厉,敬佩,悄悄,坚定,违抗,狠心,尖利,著名,愤愤不平,获得",
  833. "IsLocked": 1,
  834. "OrderID": 0
  835. },
  836. {
  837. "ID": 484,
  838. "HanziBookID": 49,
  839. "UnitType": 2,
  840. "Name": "课文16",
  841. "Example": "打猎,猛烈,无可奈何,拍打,嘴角,分明,牙齿,绝望,尖叫,身躯,掩护,幼儿,搏斗,庞大,安然,强大,力量",
  842. "IsLocked": 1,
  843. "OrderID": 0
  844. },
  845. {
  846. "ID": 485,
  847. "HanziBookID": 49,
  848. "UnitType": 2,
  849. "Name": "课文17",
  850. "Example": "假日,云彩,石级,发颤,年纪,奋力,猴子,纪念,辫子,笑呵呵,鼓舞,居然",
  851. "IsLocked": 1,
  852. "OrderID": 0
  853. },
  854. {
  855. "ID": 486,
  856. "HanziBookID": 49,
  857. "UnitType": 2,
  858. "Name": "课文18",
  859. "Example": "甚至,顽皮,故意,脖子,扑打,忙乱,大概,助威,昏乱,结实,汉子,可笑,无缘无故,平白",
  860. "IsLocked": 1,
  861. "OrderID": 0
  862. },
  863. {
  864. "ID": 487,
  865. "HanziBookID": 49,
  866. "UnitType": 2,
  867. "Name": "课文19",
  868. "Example": "文艺,表演,班级,鼓掌,角色,殷切,期待,排练,危机,通情达理,充分,自信,提示,撤换,紧张,哄堂大笑,砸锅,至今",
  869. "IsLocked": 1,
  870. "OrderID": 0
  871. },
  872. {
  873. "ID": 488,
  874. "HanziBookID": 49,
  875. "UnitType": 2,
  876. "Name": "课文20",
  877. "Example": "冰天雪地,否则,旋转,重整旗鼓,况且,得心应手,椅子,尤其,手舞足蹈,恨不得,预料,不动声色,顽强,溃败,自豪",
  878. "IsLocked": 1,
  879. "OrderID": 0
  880. },
  881. {
  882. "ID": 489,
  883. "HanziBookID": 49,
  884. "UnitType": 2,
  885. "Name": "课文22",
  886. "Example": "严肃,默默,清晰,抱负,胸怀,赞叹,表情,忘怀,果真,非凡,左顾右盼,指望,训斥,体会,分量,响亮",
  887. "IsLocked": 1,
  888. "OrderID": 0
  889. },
  890. {
  891. "ID": 490,
  892. "HanziBookID": 49,
  893. "UnitType": 2,
  894. "Name": "课文26",
  895. "Example": "管理,人烟,媳妇,新娘,眼睁睁,干旱,迎接,徒弟,面如土色,求饶,灌溉,收成",
  896. "IsLocked": 1,
  897. "OrderID": 0
  898. },
  899. {
  900. "ID": 507,
  901. "HanziBookID": 51,
  902. "UnitType": 2,
  903. "Name": "课文1",
  904. "Example": "精巧,配合,身段,适宜,白鹤,生硬,寻常,忘却,镜匣,孤独,悠然,嗜好,黄昏,恩惠,美中不足",
  905. "IsLocked": 1,
  906. "OrderID": 0
  907. },
  908. {
  909. "ID": 508,
  910. "HanziBookID": 51,
  911. "UnitType": 2,
  912. "Name": "课文2",
  913. "Example": "播种,浇水,吩咐,榨油,爱慕,体面",
  914. "IsLocked": 1,
  915. "OrderID": 0
  916. },
  917. {
  918. "ID": 509,
  919. "HanziBookID": 51,
  920. "UnitType": 2,
  921. "Name": "课文3",
  922. "Example": "桂花,懂得,糕饼,茶叶",
  923. "IsLocked": 1,
  924. "OrderID": 0
  925. },
  926. {
  927. "ID": 510,
  928. "HanziBookID": 51,
  929. "UnitType": 2,
  930. "Name": "课文5",
  931. "Example": "汛期,山洪,暴发,间隔,唯独,懒惰,平稳,难免,保持,平衡,协调,美感,示意,家常,假如,理所当然,联结",
  932. "IsLocked": 1,
  933. "OrderID": 0
  934. },
  935. {
  936. "ID": 511,
  937. "HanziBookID": 51,
  938. "UnitType": 2,
  939. "Name": "课文6",
  940. "Example": "无价之宝,召集,大臣,商议,解决,完好无缺,称赞,商量,允诺,典礼,承诺,得罪,胆怯,示弱,拒绝,职位,同心协力",
  941. "IsLocked": 1,
  942. "OrderID": 0
  943. },
  944. {
  945. "ID": 512,
  946. "HanziBookID": 51,
  947. "UnitType": 2,
  948. "Name": "课文7",
  949. "Example": "猎豹,冠军,陆地,俯冲,高速公路,搭乘,火箭,发动机,手电筒,赤道,难以置信",
  950. "IsLocked": 1,
  951. "OrderID": 0
  952. },
  953. {
  954. "ID": 513,
  955. "HanziBookID": 51,
  956. "UnitType": 2,
  957. "Name": "课文8",
  958. "Example": "侵略,修筑,粉碎,领导,不计其数,打击,坚持,游击,隐蔽,陷坑,拐弯,无穷无尽",
  959. "IsLocked": 1,
  960. "OrderID": 0
  961. },
  962. {
  963. "ID": 514,
  964. "HanziBookID": 51,
  965. "UnitType": 2,
  966. "Name": "课文9",
  967. "Example": "猎物,酬谢,珍宝,叮嘱,复活,议论,崩塌,焦急,发誓,千真万确,谎话,迟延,灾难,镇定,后悔,悲痛,震天动地",
  968. "IsLocked": 1,
  969. "OrderID": 0
  970. },
  971. {
  972. "ID": 1035,
  973. "HanziBookID": 51,
  974. "UnitType": 2,
  975. "Name": "课文10",
  976. "Example": "嫂子,剩饭,床铺,亲密,笑嘻嘻,成家立业,好歹,稀罕,妻子,晚霞,一辈子,结婚,相依为命",
  977. "IsLocked": 1,
  978. "OrderID": 1
  979. },
  980. {
  981. "ID": 515,
  982. "HanziBookID": 51,
  983. "UnitType": 2,
  984. "Name": "课文14",
  985. "Example": "毁灭,不可估量,损失,举世闻名,众星拱月,金碧辉煌,殿堂,象征,仿照,诗情画意,建筑,漫游,天南海北,饱览,风景名胜,境界,宏伟,奇珍异宝,博物馆,搬运,销毁,罪证,奉命",
  986. "IsLocked": 1,
  987. "OrderID": 2
  988. },
  989. {
  990. "ID": 516,
  991. "HanziBookID": 51,
  992. "UnitType": 2,
  993. "Name": "课文16",
  994. "Example": "寸草不生,摄氏度,繁殖,粮食,煤炭,飘浮,地区,杀菌,治疗",
  995. "IsLocked": 1,
  996. "OrderID": 2
  997. },
  998. {
  999. "ID": 517,
  1000. "HanziBookID": 51,
  1001. "UnitType": 2,
  1002. "Name": "课文17",
  1003. "Example": "松鼠,乖巧,清秀,玲珑,尾巴,歇凉,追逐,警觉,触动,光滑,狭窄,勉强,脱落,梳理",
  1004. "IsLocked": 1,
  1005. "OrderID": 2
  1006. },
  1007. {
  1008. "ID": 518,
  1009. "HanziBookID": 51,
  1010. "UnitType": 2,
  1011. "Name": "课文18",
  1012. "Example": "长篇,连续,广播,铁路,辞退,挣钱,压抑,潮湿,忙碌,阴暗,酷暑,炎夏,噪声,瘦弱,脊背,口罩,忍心,机械,数落,权利",
  1013. "IsLocked": 1,
  1014. "OrderID": 2
  1015. },
  1016. {
  1017. "ID": 519,
  1018. "HanziBookID": 51,
  1019. "UnitType": 2,
  1020. "Name": "课文19",
  1021. "Example": "渔船,报考,教训,心疼,席子,庙会,彩排,糖果,抽象,启迪,毕业,寄宿,师范,路费,轮换,领略,意境,磨灭,精致",
  1022. "IsLocked": 1,
  1023. "OrderID": 2
  1024. },
  1025. {
  1026. "ID": 521,
  1027. "HanziBookID": 51,
  1028. "UnitType": 2,
  1029. "Name": "课文22",
  1030. "Example": "陆续,白茫茫,榕树,纠正,不可计数,照耀,涨潮,树梢,应接不暇,画眉",
  1031. "IsLocked": 1,
  1032. "OrderID": 2
  1033. },
  1034. {
  1035. "ID": 522,
  1036. "HanziBookID": 51,
  1037. "UnitType": 2,
  1038. "Name": "课文25",
  1039. "Example": "舅父,津津有味,英雄,无限,一知半解,述说,厌烦,荒唐,辛酸,访问,书刊,烦琐,真情实感,质朴,刊物",
  1040. "IsLocked": 1,
  1041. "OrderID": 2
  1042. },
  1043. {
  1044. "ID": 535,
  1045. "HanziBookID": 53,
  1046. "UnitType": 2,
  1047. "Name": "课文1",
  1048. "Example": "绿毯,线条,柔美,惊叹,回味,目的地,洒脱,玻璃,衣裳,彩虹,马蹄,热乎乎,礼貌,拘束,举杯,感人,会心,微笑",
  1049. "IsLocked": 1,
  1050. "OrderID": 0
  1051. },
  1052. {
  1053. "ID": 536,
  1054. "HanziBookID": 53,
  1055. "UnitType": 2,
  1056. "Name": "课文2",
  1057. "Example": "宅院,幽雅,伏案,浑浊,笨拙,眼帘,参差,单薄,文思,梦想,迷蒙,模糊,花蕾,恰如,衣襟,恍然,愁怨,顺心,平淡",
  1058. "IsLocked": 1,
  1059. "OrderID": 0
  1060. },
  1061. {
  1062. "ID": 537,
  1063. "HanziBookID": 53,
  1064. "UnitType": 2,
  1065. "Name": "课文6",
  1066. "Example": "日寇,奋战,险要,手榴弹,全神贯注,悬崖,斩钉截铁,热血沸腾,攀登,居高临下,山涧,粉身碎骨,雹子,屹立,眺望,喜悦,壮烈,豪迈,不屈",
  1067. "IsLocked": 1,
  1068. "OrderID": 0
  1069. },
  1070. {
  1071. "ID": 538,
  1072. "HanziBookID": 53,
  1073. "UnitType": 2,
  1074. "Name": "课文7",
  1075. "Example": "政府,外宾,汇集,预定,爆发,排山倒海,就位,宣告,雄伟,肃静,语调,完毕,检阅,制服,坦克,一致,距离,高潮,次序",
  1076. "IsLocked": 1,
  1077. "OrderID": 0
  1078. },
  1079. {
  1080. "ID": 539,
  1081. "HanziBookID": 53,
  1082. "UnitType": 2,
  1083. "Name": "课文10",
  1084. "Example": "疙瘩,疲倦,呆头呆脑,冰棍,别出心裁,技高一筹,橡皮,跺脚,大步流星,颓然,暴露无遗,沮丧,抽屉,念念有词,忘乎所以,心满意足",
  1085. "IsLocked": 1,
  1086. "OrderID": 0
  1087. },
  1088. {
  1089. "ID": 540,
  1090. "HanziBookID": 53,
  1091. "UnitType": 2,
  1092. "Name": "课文11",
  1093. "Example": "发达,理论,类似,猜测,起源,适当,氧气,提供,能源,昼夜,神秘,观测,拍摄,斑点,枯萎,干燥,沙漠,磁场,因素,考察,培养",
  1094. "IsLocked": 1,
  1095. "OrderID": 0
  1096. },
  1097. {
  1098. "ID": 541,
  1099. "HanziBookID": 53,
  1100. "UnitType": 2,
  1101. "Name": "课文13",
  1102. "Example": "黎明,咆哮,惊慌,嗓子,跌跌撞撞,拥戴,沙哑,党员,呻吟,废话,吞没,猛然",
  1103. "IsLocked": 1,
  1104. "OrderID": 0
  1105. },
  1106. {
  1107. "ID": 542,
  1108. "HanziBookID": 53,
  1109. "UnitType": 2,
  1110. "Name": "课文14",
  1111. "Example": "渔夫,汹涌澎湃,风暴,轰鸣,心惊肉跳,抱怨,倾听,探望,照顾,困难,阴冷,自作自受,湿淋淋,渔网,糟糕,忧虑,后脑勺",
  1112. "IsLocked": 1,
  1113. "OrderID": 0
  1114. },
  1115. {
  1116. "ID": 543,
  1117. "HanziBookID": 53,
  1118. "UnitType": 2,
  1119. "Name": "课文16",
  1120. "Example": "活生生,高粱,苔藓,草坪,甘蔗,瀑布,增加,缝隙,软绵绵,谚语,农作物,尽量",
  1121. "IsLocked": 1,
  1122. "OrderID": 0
  1123. },
  1124. {
  1125. "ID": 544,
  1126. "HanziBookID": 53,
  1127. "UnitType": 2,
  1128. "Name": "课文17",
  1129. "Example": "斗篷,情况,袖子,瓦蓝,衣柜,预报,喧闹,遮盖,讲座,酱油,逗引,嘴唇",
  1130. "IsLocked": 1,
  1131. "OrderID": 0
  1132. },
  1133. {
  1134. "ID": 545,
  1135. "HanziBookID": 53,
  1136. "UnitType": 2,
  1137. "Name": "课文19",
  1138. "Example": "晶莹,摇篮,壮观,和蔼,资源,有限,矿产,无私,慷慨,节制,枯竭,贡献,毁坏,滥用,生态,设想,例如,基地,目睹,子孙",
  1139. "IsLocked": 1,
  1140. "OrderID": 0
  1141. },
  1142. {
  1143. "ID": 546,
  1144. "HanziBookID": 53,
  1145. "UnitType": 2,
  1146. "Name": "课文23",
  1147. "Example": "谱写,钢琴,幽静,断断续续,茅屋,失明,纯熟,清幽,琴键,景象,陶醉",
  1148. "IsLocked": 1,
  1149. "OrderID": 0
  1150. },
  1151. {
  1152. "ID": 547,
  1153. "HanziBookID": 53,
  1154. "UnitType": 2,
  1155. "Name": "课文25",
  1156. "Example": "一望无际,家景,郑重,供品,祭器,讲究,盼望,厨房,毡帽,项圈,刺猬,伶俐,经历,潮汛",
  1157. "IsLocked": 1,
  1158. "OrderID": 0
  1159. },
  1160. {
  1161. "ID": 548,
  1162. "HanziBookID": 53,
  1163. "UnitType": 2,
  1164. "Name": "课文26",
  1165. "Example": "预告,昏沉,错综,澄碧,荡漾,解散,退缩,瘦削,浮动,瞬间,凝视,骤然,凌乱,陡然",
  1166. "IsLocked": 1,
  1167. "OrderID": 0
  1168. },
  1169. {
  1170. "ID": 669,
  1171. "HanziBookID": 67,
  1172. "UnitType": 1,
  1173. "Name": "课文1",
  1174. "Example": "盐薄屹昂鼎沸贯浩崩震霎余恢",
  1175. "IsLocked": 0,
  1176. "OrderID": 0
  1177. },
  1178. {
  1179. "ID": 670,
  1180. "HanziBookID": 67,
  1181. "UnitType": 1,
  1182. "Name": "课文2",
  1183. "Example": "鹅卵俗跃穗镀埂烁",
  1184. "IsLocked": 1,
  1185. "OrderID": 0
  1186. },
  1187. {
  1188. "ID": 671,
  1189. "HanziBookID": 67,
  1190. "UnitType": 1,
  1191. "Name": "课文3",
  1192. "Example": "巢苇罗霸占",
  1193. "IsLocked": 1,
  1194. "OrderID": 0
  1195. },
  1196. {
  1197. "ID": 672,
  1198. "HanziBookID": 67,
  1199. "UnitType": 1,
  1200. "Name": "课文4",
  1201. "Example": "昧坠怀",
  1202. "IsLocked": 1,
  1203. "OrderID": 0
  1204. },
  1205. {
  1206. "ID": 673,
  1207. "HanziBookID": 67,
  1208. "UnitType": 1,
  1209. "Name": "课文5",
  1210. "Example": "豌僵预揭苔囚框溢",
  1211. "IsLocked": 1,
  1212. "OrderID": 0
  1213. },
  1214. {
  1215. "ID": 674,
  1216. "HanziBookID": 67,
  1217. "UnitType": 1,
  1218. "Name": "课文6",
  1219. "Example": "蝙蝠即锐系铛蝇证障碍荧屏",
  1220. "IsLocked": 1,
  1221. "OrderID": 0
  1222. },
  1223. {
  1224. "ID": 675,
  1225. "HanziBookID": 67,
  1226. "UnitType": 1,
  1227. "Name": "课文7",
  1228. "Example": "唤纪获赖潜亿索奥舶质哲",
  1229. "IsLocked": 1,
  1230. "OrderID": 0
  1231. },
  1232. {
  1233. "ID": 676,
  1234. "HanziBookID": 67,
  1235. "UnitType": 1,
  1236. "Name": "课文8",
  1237. "Example": "避撼喧雀檐",
  1238. "IsLocked": 1,
  1239. "OrderID": 0
  1240. },
  1241. {
  1242. "ID": 677,
  1243. "HanziBookID": 67,
  1244. "UnitType": 1,
  1245. "Name": "语文园地一",
  1246. "Example": "驻钞培赌媒氛账贺樟杠狡猾",
  1247. "IsLocked": 1,
  1248. "OrderID": 0
  1249. },
  1250. {
  1251. "ID": 678,
  1252. "HanziBookID": 67,
  1253. "UnitType": 1,
  1254. "Name": "课文9",
  1255. "Example": "暮瑟缘降骚逊输",
  1256. "IsLocked": 1,
  1257. "OrderID": 0
  1258. },
  1259. {
  1260. "ID": 679,
  1261. "HanziBookID": 67,
  1262. "UnitType": 1,
  1263. "Name": "课文10",
  1264. "Example": "均柄蜗曲萎",
  1265. "IsLocked": 1,
  1266. "OrderID": 0
  1267. },
  1268. {
  1269. "ID": 680,
  1270. "HanziBookID": 67,
  1271. "UnitType": 1,
  1272. "Name": "课文11",
  1273. "Example": "宅隐毫慎址良掘搜倾骤置抛",
  1274. "IsLocked": 1,
  1275. "OrderID": 0
  1276. },
  1277. {
  1278. "ID": 681,
  1279. "HanziBookID": 67,
  1280. "UnitType": 1,
  1281. "Name": "课文12",
  1282. "Example": "劈缓浊丈隆肢躯液",
  1283. "IsLocked": 1,
  1284. "OrderID": 0
  1285. },
  1286. {
  1287. "ID": 682,
  1288. "HanziBookID": 67,
  1289. "UnitType": 1,
  1290. "Name": "课文13",
  1291. "Example": "少曰溺返",
  1292. "IsLocked": 1,
  1293. "OrderID": 0
  1294. },
  1295. {
  1296. "ID": 683,
  1297. "HanziBookID": 67,
  1298. "UnitType": 1,
  1299. "Name": "课文14",
  1300. "Example": "斯惨盗驰恕押锁遭恶脏愤砸",
  1301. "IsLocked": 1,
  1302. "OrderID": 0
  1303. },
  1304. {
  1305. "ID": 684,
  1306. "HanziBookID": 67,
  1307. "UnitType": 1,
  1308. "Name": "课文15",
  1309. "Example": "洪措混项熄浆塌窜颂绩",
  1310. "IsLocked": 1,
  1311. "OrderID": 0
  1312. },
  1313. {
  1314. "ID": 685,
  1315. "HanziBookID": 67,
  1316. "UnitType": 1,
  1317. "Name": "语文园地二",
  1318. "Example": "圃卉蕾蕊玫茉莉牡丹棠",
  1319. "IsLocked": 1,
  1320. "OrderID": 0
  1321. },
  1322. {
  1323. "ID": 686,
  1324. "HanziBookID": 67,
  1325. "UnitType": 1,
  1326. "Name": "课文16",
  1327. "Example": "嗅奈拯嘶哑庞",
  1328. "IsLocked": 1,
  1329. "OrderID": 0
  1330. },
  1331. {
  1332. "ID": 687,
  1333. "HanziBookID": 67,
  1334. "UnitType": 1,
  1335. "Name": "课文17",
  1336. "Example": "级链攀相辫呵",
  1337. "IsLocked": 1,
  1338. "OrderID": 0
  1339. },
  1340. {
  1341. "ID": 688,
  1342. "HanziBookID": 67,
  1343. "UnitType": 1,
  1344. "Name": "课文18",
  1345. "Example": "谓拳捶顽吁襟膊瓶怖凭欺掐",
  1346. "IsLocked": 1,
  1347. "OrderID": 0
  1348. },
  1349. {
  1350. "ID": 689,
  1351. "HanziBookID": 67,
  1352. "UnitType": 1,
  1353. "Name": "课文19",
  1354. "Example": "囊露羡角殷盔撇啊霉亏哄拙唉",
  1355. "IsLocked": 1,
  1356. "OrderID": 0
  1357. },
  1358. {
  1359. "ID": 690,
  1360. "HanziBookID": 67,
  1361. "UnitType": 1,
  1362. "Name": "课文20",
  1363. "Example": "钉况兵败恨帅彻溃誉丑豪",
  1364. "IsLocked": 1,
  1365. "OrderID": 0
  1366. },
  1367. {
  1368. "ID": 691,
  1369. "HanziBookID": 67,
  1370. "UnitType": 1,
  1371. "Name": "语文园地三",
  1372. "Example": "韭芹蒜椒藕薯芋",
  1373. "IsLocked": 1,
  1374. "OrderID": 0
  1375. },
  1376. {
  1377. "ID": 692,
  1378. "HanziBookID": 67,
  1379. "UnitType": 1,
  1380. "Name": "课文21",
  1381. "Example": "塞秦征将杰",
  1382. "IsLocked": 1,
  1383. "OrderID": 0
  1384. },
  1385. {
  1386. "ID": 693,
  1387. "HanziBookID": 67,
  1388. "UnitType": 1,
  1389. "Name": "课文22",
  1390. "Example": "崛范魏晰效淮惑惩训斥难",
  1391. "IsLocked": 1,
  1392. "OrderID": 0
  1393. },
  1394. {
  1395. "ID": 694,
  1396. "HanziBookID": 67,
  1397. "UnitType": 1,
  1398. "Name": "课文23",
  1399. "Example": "蓄迫租纠缠邀港扰拒签订宁要妄",
  1400. "IsLocked": 1,
  1401. "OrderID": 0
  1402. },
  1403. {
  1404. "ID": 695,
  1405. "HanziBookID": 67,
  1406. "UnitType": 1,
  1407. "Name": "课文24",
  1408. "Example": "延昔茅炕旦媚",
  1409. "IsLocked": 1,
  1410. "OrderID": 0
  1411. },
  1412. {
  1413. "ID": 696,
  1414. "HanziBookID": 67,
  1415. "UnitType": 1,
  1416. "Name": "课文25",
  1417. "Example": "戎诸竞唯",
  1418. "IsLocked": 1,
  1419. "OrderID": 0
  1420. },
  1421. {
  1422. "ID": 697,
  1423. "HanziBookID": 67,
  1424. "UnitType": 1,
  1425. "Name": "课文26",
  1426. "Example": "豹娶媳巫绅旱徒吊磕凿溉",
  1427. "IsLocked": 1,
  1428. "OrderID": 0
  1429. },
  1430. {
  1431. "ID": 698,
  1432. "HanziBookID": 67,
  1433. "UnitType": 1,
  1434. "Name": "课文27",
  1435. "Example": "拜侯肤扎剂髓纪标",
  1436. "IsLocked": 1,
  1437. "OrderID": 0
  1438. },
  1439. {
  1440. "ID": 699,
  1441. "HanziBookID": 67,
  1442. "UnitType": 1,
  1443. "Name": "语文园地四",
  1444. "Example": "纲授揍键谱锈沫砖矿综氧俱",
  1445. "IsLocked": 1,
  1446. "OrderID": 0
  1447. },
  1448. {
  1449. "ID": 700,
  1450. "HanziBookID": 69,
  1451. "UnitType": 1,
  1452. "Name": "课文1",
  1453. "Example": "鹭嫌嵌匣嗜",
  1454. "IsLocked": 0,
  1455. "OrderID": 0
  1456. },
  1457. {
  1458. "ID": 701,
  1459. "HanziBookID": 69,
  1460. "UnitType": 1,
  1461. "Name": "课文2",
  1462. "Example": "亩吩榨榴矮",
  1463. "IsLocked": 1,
  1464. "OrderID": 0
  1465. },
  1466. {
  1467. "ID": 702,
  1468. "HanziBookID": 69,
  1469. "UnitType": 1,
  1470. "Name": "课文3",
  1471. "Example": "箩杭",
  1472. "IsLocked": 1,
  1473. "OrderID": 0
  1474. },
  1475. {
  1476. "ID": 703,
  1477. "HanziBookID": 69,
  1478. "UnitType": 1,
  1479. "Name": "课文4",
  1480. "Example": "蔓幽悉雏哟柜享陪趴睑眸咂",
  1481. "IsLocked": 1,
  1482. "OrderID": 0
  1483. },
  1484. {
  1485. "ID": 704,
  1486. "HanziBookID": 69,
  1487. "UnitType": 1,
  1488. "Name": "课文5",
  1489. "Example": "汛挽间惰衡协绰",
  1490. "IsLocked": 1,
  1491. "OrderID": 0
  1492. },
  1493. {
  1494. "ID": 705,
  1495. "HanziBookID": 69,
  1496. "UnitType": 1,
  1497. "Name": "课文6",
  1498. "Example": "璧臣强诺划典罪廉抵御辞辱擅缶卿削袍",
  1499. "IsLocked": 1,
  1500. "OrderID": 0
  1501. },
  1502. {
  1503. "ID": 706,
  1504. "HanziBookID": 69,
  1505. "UnitType": 1,
  1506. "Name": "课文7",
  1507. "Example": "鸵赢冠",
  1508. "IsLocked": 1,
  1509. "OrderID": 0
  1510. },
  1511. {
  1512. "ID": 707,
  1513. "HanziBookID": 69,
  1514. "UnitType": 1,
  1515. "Name": "课文8",
  1516. "Example": "侵略垒任丘搁陷拐岔",
  1517. "IsLocked": 1,
  1518. "OrderID": 0
  1519. },
  1520. {
  1521. "ID": 708,
  1522. "HanziBookID": 69,
  1523. "UnitType": 1,
  1524. "Name": "课文9",
  1525. "Example": "酬誓谎牺",
  1526. "IsLocked": 1,
  1527. "OrderID": 0
  1528. },
  1529. {
  1530. "ID": 709,
  1531. "HanziBookID": 69,
  1532. "UnitType": 1,
  1533. "Name": "课文10",
  1534. "Example": "嫂恳筛歹罕梭监狱酿瞌落婚",
  1535. "IsLocked": 1,
  1536. "OrderID": 0
  1537. },
  1538. {
  1539. "ID": 710,
  1540. "HanziBookID": 69,
  1541. "UnitType": 1,
  1542. "Name": "课文11",
  1543. "Example": "俭皇偎衰珊瑚礁筐拗",
  1544. "IsLocked": 1,
  1545. "OrderID": 0
  1546. },
  1547. {
  1548. "ID": 711,
  1549. "HanziBookID": 69,
  1550. "UnitType": 1,
  1551. "Name": "课文12",
  1552. "Example": "乃熏亥恃擞",
  1553. "IsLocked": 1,
  1554. "OrderID": 0
  1555. },
  1556. {
  1557. "ID": 712,
  1558. "HanziBookID": 69,
  1559. "UnitType": 1,
  1560. "Name": "课文13",
  1561. "Example": "泻鳞惶胎履哉",
  1562. "IsLocked": 1,
  1563. "OrderID": 0
  1564. },
  1565. {
  1566. "ID": 713,
  1567. "HanziBookID": 69,
  1568. "UnitType": 1,
  1569. "Name": "课文14",
  1570. "Example": "估煌珑剔澜瑶陵宏奉烬",
  1571. "IsLocked": 1,
  1572. "OrderID": 0
  1573. },
  1574. {
  1575. "ID": 714,
  1576. "HanziBookID": 69,
  1577. "UnitType": 1,
  1578. "Name": "课文15",
  1579. "Example": "瞒域艇矛盾筷炊哼喉咙哽勺搅舀",
  1580. "IsLocked": 1,
  1581. "OrderID": 0
  1582. },
  1583. {
  1584. "ID": 715,
  1585. "HanziBookID": 69,
  1586. "UnitType": 1,
  1587. "Name": "课文16",
  1588. "Example": "摄殖炭疗",
  1589. "IsLocked": 1,
  1590. "OrderID": 0
  1591. },
  1592. {
  1593. "ID": 716,
  1594. "HanziBookID": 69,
  1595. "UnitType": 1,
  1596. "Name": "课文17",
  1597. "Example": "驯矫歇杈藓狭勉锥",
  1598. "IsLocked": 1,
  1599. "OrderID": 0
  1600. },
  1601. {
  1602. "ID": 717,
  1603. "HanziBookID": 69,
  1604. "UnitType": 1,
  1605. "Name": "课文18",
  1606. "Example": "魄抑颓纫噪褐惫耽兜权",
  1607. "IsLocked": 1,
  1608. "OrderID": 0
  1609. },
  1610. {
  1611. "ID": 718,
  1612. "HanziBookID": 69,
  1613. "UnitType": 1,
  1614. "Name": "课文19",
  1615. "Example": "茧栈冤枉恍惚跷僻委迪嫁缴榜兼嘲枕",
  1616. "IsLocked": 1,
  1617. "OrderID": 0
  1618. },
  1619. {
  1620. "ID": 719,
  1621. "HanziBookID": 69,
  1622. "UnitType": 1,
  1623. "Name": "课文20",
  1624. "Example": "腼腆誊励版祥歧谨",
  1625. "IsLocked": 1,
  1626. "OrderID": 0
  1627. },
  1628. {
  1629. "ID": 720,
  1630. "HanziBookID": 69,
  1631. "UnitType": 1,
  1632. "Name": "课文21",
  1633. "Example": "榆畔更聒",
  1634. "IsLocked": 1,
  1635. "OrderID": 0
  1636. },
  1637. {
  1638. "ID": 721,
  1639. "HanziBookID": 69,
  1640. "UnitType": 1,
  1641. "Name": "课文22",
  1642. "Example": "桨桩暇",
  1643. "IsLocked": 1,
  1644. "OrderID": 0
  1645. },
  1646. {
  1647. "ID": 722,
  1648. "HanziBookID": 69,
  1649. "UnitType": 1,
  1650. "Name": "课文23",
  1651. "Example": "悄累嫦娥嫉妒瓷",
  1652. "IsLocked": 1,
  1653. "OrderID": 0
  1654. },
  1655. {
  1656. "ID": 723,
  1657. "HanziBookID": 69,
  1658. "UnitType": 1,
  1659. "Name": "课文24",
  1660. "Example": "耻识寝矣岂",
  1661. "IsLocked": 1,
  1662. "OrderID": 0
  1663. },
  1664. {
  1665. "ID": 724,
  1666. "HanziBookID": 69,
  1667. "UnitType": 1,
  1668. "Name": "课文25",
  1669. "Example": "舅宴斩凯葛述传鲁煞寇贾卷刊琐呻某",
  1670. "IsLocked": 1,
  1671. "OrderID": 0
  1672. },
  1673. {
  1674. "ID": 725,
  1675. "HanziBookID": 69,
  1676. "UnitType": 1,
  1677. "Name": "课文26",
  1678. "Example": "喻差瘾奔籍饥偿甸悟馈磁酵皎鉴沥",
  1679. "IsLocked": 1,
  1680. "OrderID": 0
  1681. }
  1682. ],
  1683. "englishRows": [
  1684. {
  1685. "ID": 83907,
  1686. "Word": "science",
  1687. "WordRemark": null,
  1688. "Level": "A2",
  1689. "BookID": 197,
  1690. "LessonID": 1,
  1691. "LessonName": null,
  1692. "Soundmark": "['salons]",
  1693. "Translate": "科学",
  1694. "EnglishExplanation": "{\"word\":\"science\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students are studying science in the laboratory.\",\"Translate\":\"学生们正在实验室里学习科学。\",\"Level\":\"A2\"},{\"Sentence\":\"She is interested in science and wants to be a scientist.\",\"Translate\":\"她对科学很感兴趣,想要成为一名科学家。\",\"Level\":\"A2\"},{\"Sentence\":\"The science experiment was a lot of fun.\",\"Translate\":\"这个科学实验很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The science behind climate change is complex.\",\"Translate\":\"气候变化背后的科学原理很复杂。\",\"Level\":\"B1\"},{\"Sentence\":\"The latest scientific discoveries have shed new light on the origins of the universe.\",\"Translate\":\"最新的科学发现为宇宙的起源带来了新的启示。\",\"Level\":\"C1\"},{\"Sentence\":\"The science of genetics has led to many breakthroughs in medicine.\",\"Translate\":\"遗传学为医学带来了许多突破。\",\"Level\":\"C1\"}]}",
  1695. "ExampleSentence": "{\"word\":\"science\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students are studying science in the laboratory.\",\"Translate\":\"学生们正在实验室里学习科学。\",\"Level\":\"A2\"},{\"Sentence\":\"She is interested in science and wants to be a scientist.\",\"Translate\":\"她对科学很感兴趣,想要成为一名科学家。\",\"Level\":\"A2\"},{\"Sentence\":\"The science experiment was a lot of fun.\",\"Translate\":\"这个科学实验很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The science behind climate change is complex.\",\"Translate\":\"气候变化背后的科学原理很复杂。\",\"Level\":\"B1\"},{\"Sentence\":\"The latest scientific discoveries have shed new light on the origins of the universe.\",\"Translate\":\"最新的科学发现为宇宙的起源带来了新的启示。\",\"Level\":\"C1\"},{\"Sentence\":\"The science of genetics has led to many breakthroughs in medicine.\",\"Translate\":\"遗传学为医学带来了许多突破。\",\"Level\":\"C1\"}]}",
  1696. "Sort": 0
  1697. },
  1698. {
  1699. "ID": 83908,
  1700. "Word": "museum",
  1701. "WordRemark": null,
  1702. "Level": "A1",
  1703. "BookID": 197,
  1704. "LessonID": 1,
  1705. "LessonName": null,
  1706. "Soundmark": "[mju'ziiom]",
  1707. "Translate": "博物馆",
  1708. "EnglishExplanation": "{\"word\":\"museum\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The museum is open on Sundays.\",\"Translate\":\"博物馆每周日开放。\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to the museum with my friends this weekend.\",\"Translate\":\"这个周末我要和朋友们去博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The museum has a vast collection of art from around the world.\",\"Translate\":\"这家博物馆拥有来自世界各地的丰富艺术藏品。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's new exhibit on modern art is fascinating.\",\"Translate\":\"博物馆的现代艺术新展览非常吸引人。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's curator has carefully selected the artifacts for the exhibition.\",\"Translate\":\"博物馆的馆长精心挑选了展览的文物。\",\"Level\":\"C1\"},{\"Sentence\":\"The museum's architecture is a work of art in itself, reflecting the cultural heritage of the city.\",\"Translate\":\"博物馆的建筑本身就是一件艺术品,反映了这座城市的文化遗产。\",\"Level\":\"C1\"}]}",
  1709. "ExampleSentence": "{\"word\":\"museum\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The museum is open on Sundays.\",\"Translate\":\"博物馆每周日开放。\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to the museum with my friends this weekend.\",\"Translate\":\"这个周末我要和朋友们去博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The museum has a vast collection of art from around the world.\",\"Translate\":\"这家博物馆拥有来自世界各地的丰富艺术藏品。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's new exhibit on modern art is fascinating.\",\"Translate\":\"博物馆的现代艺术新展览非常吸引人。\",\"Level\":\"B1\"},{\"Sentence\":\"The museum's curator has carefully selected the artifacts for the exhibition.\",\"Translate\":\"博物馆的馆长精心挑选了展览的文物。\",\"Level\":\"C1\"},{\"Sentence\":\"The museum's architecture is a work of art in itself, reflecting the cultural heritage of the city.\",\"Translate\":\"博物馆的建筑本身就是一件艺术品,反映了这座城市的文化遗产。\",\"Level\":\"C1\"}]}",
  1710. "Sort": 0
  1711. },
  1712. {
  1713. "ID": 83909,
  1714. "Word": "post office",
  1715. "WordRemark": null,
  1716. "Level": null,
  1717. "BookID": 197,
  1718. "LessonID": 1,
  1719. "LessonName": null,
  1720. "Soundmark": "['paustpfis]",
  1721. "Translate": "邮局",
  1722. "EnglishExplanation": "",
  1723. "ExampleSentence": null,
  1724. "Sort": 0
  1725. },
  1726. {
  1727. "ID": 83910,
  1728. "Word": "bookstore",
  1729. "WordRemark": null,
  1730. "Level": "A2",
  1731. "BookID": 197,
  1732. "LessonID": 1,
  1733. "LessonName": null,
  1734. "Soundmark": "['buksto:(r)]",
  1735. "Translate": "书店",
  1736. "EnglishExplanation": "{\"word\":\"bookstore\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I bought a novel at the bookstore.\",\"Translate\":\"我在书店买了一本小说。\",\"Level\":\"A2\"},{\"Sentence\":\"The new bookstore in town has a wide selection of books.\",\"Translate\":\"镇上新开的书店有很丰富的书籍选择。\",\"Level\":\"B1\"},{\"Sentence\":\"After browsing through the shelves for hours, she finally found a rare book at the local bookstore.\",\"Translate\":\"在书架上浏览了几个小时后,她终于在当地的书店找到了这本罕见的书。\",\"Level\":\"B2\"},{\"Sentence\":\"The used bookstore was a treasure trove for collectors, offering a vast array of out-of-print titles.\",\"Translate\":\"这家二手书店是收藏家的宝库,提供了大量绝版书。\",\"Level\":\"C1\"},{\"Sentence\":\"The bookstore's annual literary festival attracted renowned authors from around the world.\",\"Translate\":\"书店一年一度的文学节吸引了来自世界各地的知名作家。\",\"Level\":\"C1\"}]}",
  1737. "ExampleSentence": "{\"word\":\"bookstore\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I bought a novel at the bookstore.\",\"Translate\":\"我在书店买了一本小说。\",\"Level\":\"A2\"},{\"Sentence\":\"The new bookstore in town has a wide selection of books.\",\"Translate\":\"镇上新开的书店有很丰富的书籍选择。\",\"Level\":\"B1\"},{\"Sentence\":\"After browsing through the shelves for hours, she finally found a rare book at the local bookstore.\",\"Translate\":\"在书架上浏览了几个小时后,她终于在当地的书店找到了这本罕见的书。\",\"Level\":\"B2\"},{\"Sentence\":\"The used bookstore was a treasure trove for collectors, offering a vast array of out-of-print titles.\",\"Translate\":\"这家二手书店是收藏家的宝库,提供了大量绝版书。\",\"Level\":\"C1\"},{\"Sentence\":\"The bookstore's annual literary festival attracted renowned authors from around the world.\",\"Translate\":\"书店一年一度的文学节吸引了来自世界各地的知名作家。\",\"Level\":\"C1\"}]}",
  1738. "Sort": 0
  1739. },
  1740. {
  1741. "ID": 83911,
  1742. "Word": "cinema",
  1743. "WordRemark": null,
  1744. "Level": "A2",
  1745. "BookID": 197,
  1746. "LessonID": 1,
  1747. "LessonName": null,
  1748. "Soundmark": "['sinama]",
  1749. "Translate": "电影院",
  1750. "EnglishExplanation": "{\"word\":\"cinema\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The new cinema is very big.\",\"Translate\":\"新的电影院非常大。\",\"Level\":\"A2\"},{\"Sentence\":\"Let's go to the cinema tonight.\",\"Translate\":\"今晚我们去电影院吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The cinema is showing a new film.\",\"Translate\":\"电影院正在上映一部新电影。\",\"Level\":\"B1\"},{\"Sentence\":\"The cinema has a great sound system.\",\"Translate\":\"这家电影院有很好的音响系统。\",\"Level\":\"B1\"},{\"Sentence\":\"The art cinema shows independent films.\",\"Translate\":\"艺术电影院放映独立电影。\",\"Level\":\"C1\"},{\"Sentence\":\"The cinema is a popular cultural venue.\",\"Translate\":\"电影院是一个受欢迎的文化场所。\",\"Level\":\"C1\"}]}",
  1751. "ExampleSentence": "{\"word\":\"cinema\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The new cinema is very big.\",\"Translate\":\"新的电影院非常大。\",\"Level\":\"A2\"},{\"Sentence\":\"Let's go to the cinema tonight.\",\"Translate\":\"今晚我们去电影院吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The cinema is showing a new film.\",\"Translate\":\"电影院正在上映一部新电影。\",\"Level\":\"B1\"},{\"Sentence\":\"The cinema has a great sound system.\",\"Translate\":\"这家电影院有很好的音响系统。\",\"Level\":\"B1\"},{\"Sentence\":\"The art cinema shows independent films.\",\"Translate\":\"艺术电影院放映独立电影。\",\"Level\":\"C1\"},{\"Sentence\":\"The cinema is a popular cultural venue.\",\"Translate\":\"电影院是一个受欢迎的文化场所。\",\"Level\":\"C1\"}]}",
  1752. "Sort": 0
  1753. },
  1754. {
  1755. "ID": 83912,
  1756. "Word": "hospital",
  1757. "WordRemark": null,
  1758. "Level": "A1",
  1759. "BookID": 197,
  1760. "LessonID": 1,
  1761. "LessonName": null,
  1762. "Soundmark": "[\"hpspitl]",
  1763. "Translate": "医院",
  1764. "EnglishExplanation": "{\"word\":\"hospital\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The hospital is nearby.\",\"Translate\":\"医院就在附近。\",\"Level\":\"A1\"},{\"Sentence\":\"She works at the hospital.\",\"Translate\":\"她在医院工作。\",\"Level\":\"A1\"},{\"Sentence\":\"The hospital has many departments.\",\"Translate\":\"这家医院有很多科室。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is very clean.\",\"Translate\":\"这家医院很干净。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is equipped with advanced medical equipment.\",\"Translate\":\"这家医院配备了先进的医疗设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After the accident, she was rushed to the hospital.\",\"Translate\":\"事故发生后,她被紧急送往医院。\",\"Level\":\"B1\"},{\"Sentence\":\"The hospital has implemented various measures to improve patient care.\",\"Translate\":\"医院实施了各种措施来改善对患者的护理。\",\"Level\":\"B2\"},{\"Sentence\":\"The new hospital will be a major improvement over the old one.\",\"Translate\":\"新医院将比旧医院有很大改进。\",\"Level\":\"B2\"},{\"Sentence\":\"The hospital's management team is working to reduce waiting times.\",\"Translate\":\"医院管理团队正在努力减少等待时间。\",\"Level\":\"C1\"},{\"Sentence\":\"The hospital'",
  1765. "ExampleSentence": "{\"word\":\"hospital\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The hospital is nearby.\",\"Translate\":\"医院就在附近。\",\"Level\":\"A1\"},{\"Sentence\":\"She works at the hospital.\",\"Translate\":\"她在医院工作。\",\"Level\":\"A1\"},{\"Sentence\":\"The hospital has many departments.\",\"Translate\":\"这家医院有很多科室。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is very clean.\",\"Translate\":\"这家医院很干净。\",\"Level\":\"A2\"},{\"Sentence\":\"The hospital is equipped with advanced medical equipment.\",\"Translate\":\"这家医院配备了先进的医疗设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After the accident, she was rushed to the hospital.\",\"Translate\":\"事故发生后,她被紧急送往医院。\",\"Level\":\"B1\"},{\"Sentence\":\"The hospital has implemented various measures to improve patient care.\",\"Translate\":\"医院实施了各种措施来改善对患者的护理。\",\"Level\":\"B2\"},{\"Sentence\":\"The new hospital will be a major improvement over the old one.\",\"Translate\":\"新医院将比旧医院有很大改进。\",\"Level\":\"B2\"},{\"Sentence\":\"The hospital's management team is working to reduce waiting times.\",\"Translate\":\"医院管理团队正在努力减少等待时间。\",\"Level\":\"C1\"},{\"Sentence\":\"The hospital's innovative approach to healthcare has attracted international attention.\",\"Translate\":\"这家医院在医疗保健方面的创新方法吸引了国际关注。\",\"Level\":\"C1\"}]}",
  1766. "Sort": 0
  1767. },
  1768. {
  1769. "ID": 83913,
  1770. "Word": "crossing",
  1771. "WordRemark": null,
  1772. "Level": "A2",
  1773. "BookID": 197,
  1774. "LessonID": 1,
  1775. "LessonName": null,
  1776. "Soundmark": "[krpsin]",
  1777. "Translate": "十字路口",
  1778. "EnglishExplanation": "{\"word\":\"crossing\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Be careful when crossing the road.\",\"Translate\":\"过马路时要小心。\",\"Level\":\"A2\"},{\"Sentence\":\"The crossing was closed due to bad weather.\",\"Translate\":\"由于天气恶劣,渡口被关闭了。\",\"Level\":\"B1\"},{\"Sentence\":\"The pedestrian crossing is just ahead.\",\"Translate\":\"人行横道就在前面。\",\"Level\":\"B2\"},{\"Sentence\":\"The level crossing was blocked by a train.\",\"Translate\":\"平交道口被一辆火车堵住了。\",\"Level\":\"B2\"},{\"Sentence\":\"The climbers faced numerous challenges at the mountain crossing.\",\"Translate\":\"登山者在山脉交叉口面临着许多挑战。\",\"Level\":\"C1\"},{\"Sentence\":\"The border crossing was a complex operation.\",\"Translate\":\"边境口岸是一个复杂的操作。\",\"Level\":\"C1\"}]}",
  1779. "ExampleSentence": "{\"word\":\"crossing\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Be careful when crossing the road.\",\"Translate\":\"过马路时要小心。\",\"Level\":\"A2\"},{\"Sentence\":\"The crossing was closed due to bad weather.\",\"Translate\":\"由于天气恶劣,渡口被关闭了。\",\"Level\":\"B1\"},{\"Sentence\":\"The pedestrian crossing is just ahead.\",\"Translate\":\"人行横道就在前面。\",\"Level\":\"B2\"},{\"Sentence\":\"The level crossing was blocked by a train.\",\"Translate\":\"平交道口被一辆火车堵住了。\",\"Level\":\"B2\"},{\"Sentence\":\"The climbers faced numerous challenges at the mountain crossing.\",\"Translate\":\"登山者在山脉交叉口面临着许多挑战。\",\"Level\":\"C1\"},{\"Sentence\":\"The border crossing was a complex operation.\",\"Translate\":\"边境口岸是一个复杂的操作。\",\"Level\":\"C1\"}]}",
  1780. "Sort": 0
  1781. },
  1782. {
  1783. "ID": 83914,
  1784. "Word": "turn",
  1785. "WordRemark": null,
  1786. "Level": "A1",
  1787. "BookID": 197,
  1788. "LessonID": 1,
  1789. "LessonName": null,
  1790. "Soundmark": "[t3in]",
  1791. "Translate": "转弯",
  1792. "EnglishExplanation": "{\"word\":\"turn\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"It's my turn.\",\"Translate\":\"轮到我了。\",\"Level\":\"A1\"},{\"Sentence\":\"Whose turn is it?\",\"Translate\":\"轮到谁了?\",\"Level\":\"A1\"},{\"Sentence\":\"She turned 18 last year.\",\"Translate\":\"她去年满18岁了。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will turn a profit next year.\",\"Translate\":\"这家公司明年将盈利。\",\"Level\":\"B1\"},{\"Sentence\":\"The conversation turned to the topic of climate change.\",\"Translate\":\"谈话转到了气候变化的话题上。\",\"Level\":\"C1\"},{\"Sentence\":\"The scandal turned the politician's life upside down.\",\"Translate\":\"这桩丑闻使那位政治家的生活彻底颠覆了。\",\"Level\":\"C1\"}]}",
  1793. "ExampleSentence": "{\"word\":\"turn\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"It's my turn.\",\"Translate\":\"轮到我了。\",\"Level\":\"A1\"},{\"Sentence\":\"Whose turn is it?\",\"Translate\":\"轮到谁了?\",\"Level\":\"A1\"},{\"Sentence\":\"She turned 18 last year.\",\"Translate\":\"她去年满18岁了。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will turn a profit next year.\",\"Translate\":\"这家公司明年将盈利。\",\"Level\":\"B1\"},{\"Sentence\":\"The conversation turned to the topic of climate change.\",\"Translate\":\"谈话转到了气候变化的话题上。\",\"Level\":\"C1\"},{\"Sentence\":\"The scandal turned the politician's life upside down.\",\"Translate\":\"这桩丑闻使那位政治家的生活彻底颠覆了。\",\"Level\":\"C1\"}]}",
  1794. "Sort": 0
  1795. },
  1796. {
  1797. "ID": 83915,
  1798. "Word": "left",
  1799. "WordRemark": null,
  1800. "Level": "A1",
  1801. "BookID": 197,
  1802. "LessonID": 1,
  1803. "LessonName": null,
  1804. "Soundmark": "[left]",
  1805. "Translate": "左",
  1806. "EnglishExplanation": "{\"word\":\"left\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I have one book left.\",\"Translate\":\"我还剩下一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The shop is on the left side of the street.\",\"Translate\":\"这家店在街道的左边。\",\"Level\":\"A1\"},{\"Sentence\":\"She left her bag at home.\",\"Translate\":\"她把包忘在家里了。\",\"Level\":\"A2\"},{\"Sentence\":\"There's nothing left to eat.\",\"Translate\":\"没有剩下的食物可吃了。\",\"Level\":\"A2\"},{\"Sentence\":\"The decision left me feeling rather disappointed.\",\"Translate\":\"这个决定让我感到相当失望。\",\"Level\":\"B1\"},{\"Sentence\":\"The company left the market due to financial issues.\",\"Translate\":\"由于财务问题,这家公司退出了市场。\",\"Level\":\"B1\"},{\"Sentence\":\"The legacy she left behind is still celebrated today.\",\"Translate\":\"她留下的遗产至今仍被人们庆祝。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color left a lasting impression on the viewers.\",\"Translate\":\"艺术家的色彩运用给观众留下了深刻的印象。\",\"Level\":\"C1\"}]}",
  1807. "ExampleSentence": "{\"word\":\"left\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I have one book left.\",\"Translate\":\"我还剩下一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The shop is on the left side of the street.\",\"Translate\":\"这家店在街道的左边。\",\"Level\":\"A1\"},{\"Sentence\":\"She left her bag at home.\",\"Translate\":\"她把包忘在家里了。\",\"Level\":\"A2\"},{\"Sentence\":\"There's nothing left to eat.\",\"Translate\":\"没有剩下的食物可吃了。\",\"Level\":\"A2\"},{\"Sentence\":\"The decision left me feeling rather disappointed.\",\"Translate\":\"这个决定让我感到相当失望。\",\"Level\":\"B1\"},{\"Sentence\":\"The company left the market due to financial issues.\",\"Translate\":\"由于财务问题,这家公司退出了市场。\",\"Level\":\"B1\"},{\"Sentence\":\"The legacy she left behind is still celebrated today.\",\"Translate\":\"她留下的遗产至今仍被人们庆祝。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color left a lasting impression on the viewers.\",\"Translate\":\"艺术家的色彩运用给观众留下了深刻的印象。\",\"Level\":\"C1\"}]}",
  1808. "Sort": 0
  1809. },
  1810. {
  1811. "ID": 83916,
  1812. "Word": "straight",
  1813. "WordRemark": null,
  1814. "Level": "A2",
  1815. "BookID": 197,
  1816. "LessonID": 1,
  1817. "LessonName": null,
  1818. "Soundmark": "[streit]",
  1819. "Translate": "笔直地",
  1820. "EnglishExplanation": "{\"word\":\"straight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The road goes straight to the city center.\",\"Translate\":\"这条路直通市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"She has straight brown hair.\",\"Translate\":\"她有直的棕色头发。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit straight and listen carefully.\",\"Translate\":\"老师要求学生们坐直并认真听讲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been going straight for years without any major issues.\",\"Translate\":\"这家公司多年来一直运作正常,没有任何重大问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was determined to get straight to the truth.\",\"Translate\":\"侦探决心直接查明真相。\",\"Level\":\"C1\"},{\"Sentence\":\"After a few detours, we finally drove straight into the sunset.\",\"Translate\":\"经过几次绕路后,我们终于笔直地驶向夕阳。\",\"Level\":\"C1\"}]}",
  1821. "ExampleSentence": "{\"word\":\"straight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The road goes straight to the city center.\",\"Translate\":\"这条路直通市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"She has straight brown hair.\",\"Translate\":\"她有直的棕色头发。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit straight and listen carefully.\",\"Translate\":\"老师要求学生们坐直并认真听讲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been going straight for years without any major issues.\",\"Translate\":\"这家公司多年来一直运作正常,没有任何重大问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was determined to get straight to the truth.\",\"Translate\":\"侦探决心直接查明真相。\",\"Level\":\"C1\"},{\"Sentence\":\"After a few detours, we finally drove straight into the sunset.\",\"Translate\":\"经过几次绕路后,我们终于笔直地驶向夕阳。\",\"Level\":\"C1\"}]}",
  1822. "Sort": 0
  1823. },
  1824. {
  1825. "ID": 83917,
  1826. "Word": "right",
  1827. "WordRemark": null,
  1828. "Level": "A1",
  1829. "BookID": 197,
  1830. "LessonID": 1,
  1831. "LessonName": null,
  1832. "Soundmark": "[rat]",
  1833. "Translate": "右",
  1834. "EnglishExplanation": "{\"word\":\"right\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Turn right at the corner.\",\"Translate\":\"在拐角处右转。\",\"Level\":\"A1\"},{\"Sentence\":\"You are right.\",\"Translate\":\"你是对的。\",\"Level\":\"A1\"},{\"Sentence\":\"She has the right to say no.\",\"Translate\":\"她有权说不。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is doing everything right.\",\"Translate\":\"公司正在做一切正确的事情。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made a right decision.\",\"Translate\":\"法官做出了正确的决定。\",\"Level\":\"C1\"},{\"Sentence\":\"It's not right to judge someone based on their appearance.\",\"Translate\":\"根据外貌来判断一个人是不正确的。\",\"Level\":\"C1\"}]}",
  1835. "ExampleSentence": "{\"word\":\"right\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Turn right at the corner.\",\"Translate\":\"在拐角处右转。\",\"Level\":\"A1\"},{\"Sentence\":\"You are right.\",\"Translate\":\"你是对的。\",\"Level\":\"A1\"},{\"Sentence\":\"She has the right to say no.\",\"Translate\":\"她有权说不。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is doing everything right.\",\"Translate\":\"公司正在做一切正确的事情。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made a right decision.\",\"Translate\":\"法官做出了正确的决定。\",\"Level\":\"C1\"},{\"Sentence\":\"It's not right to judge someone based on their appearance.\",\"Translate\":\"根据外貌来判断一个人是不正确的。\",\"Level\":\"C1\"}]}",
  1836. "Sort": 0
  1837. },
  1838. {
  1839. "ID": 83918,
  1840. "Word": "ask",
  1841. "WordRemark": null,
  1842. "Level": "A1",
  1843. "BookID": 197,
  1844. "LessonID": 1,
  1845. "LessonName": null,
  1846. "Soundmark": "[aisk]",
  1847. "Translate": "问",
  1848. "EnglishExplanation": "{\"word\":\"ask\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can I ask you something?\",\"Translate\":\"我能问你点事吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She asked me to help her.\",\"Translate\":\"她让我帮助她。\",\"Level\":\"A1\"},{\"Sentence\":\"I asked him where he was going.\",\"Translate\":\"我问他要去哪里。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to write an essay.\",\"Translate\":\"老师要求学生们写一篇论文。\",\"Level\":\"A2\"},{\"Sentence\":\"The interviewer asked me some challenging questions.\",\"Translate\":\"面试官问了我一些具有挑战性的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will ask for references when you apply for the job.\",\"Translate\":\"当你申请这份工作时,公司会要求提供推荐人。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor asked us to analyze the data critically.\",\"Translate\":\"教授要求我们批判性地分析数据。\",\"Level\":\"C1\"},{\"Sentence\":\"The activist asked the government to reconsider its policy.\",\"Translate\":\"活动家要求政府重新考虑其政策。\",\"Level\":\"C1\"}]}",
  1849. "ExampleSentence": "{\"word\":\"ask\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can I ask you something?\",\"Translate\":\"我能问你点事吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She asked me to help her.\",\"Translate\":\"她让我帮助她。\",\"Level\":\"A1\"},{\"Sentence\":\"I asked him where he was going.\",\"Translate\":\"我问他要去哪里。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to write an essay.\",\"Translate\":\"老师要求学生们写一篇论文。\",\"Level\":\"A2\"},{\"Sentence\":\"The interviewer asked me some challenging questions.\",\"Translate\":\"面试官问了我一些具有挑战性的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will ask for references when you apply for the job.\",\"Translate\":\"当你申请这份工作时,公司会要求提供推荐人。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor asked us to analyze the data critically.\",\"Translate\":\"教授要求我们批判性地分析数据。\",\"Level\":\"C1\"},{\"Sentence\":\"The activist asked the government to reconsider its policy.\",\"Translate\":\"活动家要求政府重新考虑其政策。\",\"Level\":\"C1\"}]}",
  1850. "Sort": 0
  1851. },
  1852. {
  1853. "ID": 83919,
  1854. "Word": "sir",
  1855. "WordRemark": null,
  1856. "Level": "A1",
  1857. "BookID": 197,
  1858. "LessonID": 1,
  1859. "LessonName": null,
  1860. "Soundmark": "[s3:(r)]",
  1861. "Translate": "先生(礼貌称呼)",
  1862. "EnglishExplanation": "{\"word\":\"sir\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Yes, sir.\",\"Translate\":\"是的,先生。\",\"Level\":\"A1\"},{\"Sentence\":\"Excuse me, sir.\",\"Translate\":\"先生,对不起。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I help you, sir?\",\"Translate\":\"先生,我能帮您吗?\",\"Level\":\"A2\"},{\"Sentence\":\"Thank you, sir.\",\"Translate\":\"谢谢您,先生。\",\"Level\":\"A2\"}]}",
  1863. "ExampleSentence": "{\"word\":\"sir\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Yes, sir.\",\"Translate\":\"是的,先生。\",\"Level\":\"A1\"},{\"Sentence\":\"Excuse me, sir.\",\"Translate\":\"先生,对不起。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I help you, sir?\",\"Translate\":\"先生,我能帮您吗?\",\"Level\":\"A2\"},{\"Sentence\":\"Thank you, sir.\",\"Translate\":\"谢谢您,先生。\",\"Level\":\"A2\"}]}",
  1864. "Sort": 0
  1865. },
  1866. {
  1867. "ID": 83920,
  1868. "Word": "interesting",
  1869. "WordRemark": null,
  1870. "Level": "A2",
  1871. "BookID": 197,
  1872. "LessonID": 1,
  1873. "LessonName": null,
  1874. "Soundmark": "[intrastin]",
  1875. "Translate": "有趣的",
  1876. "EnglishExplanation": "{\"word\":\"interesting\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The movie was very interesting.\",\"Translate\":\"这部电影很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"I found the story quite interesting.\",\"Translate\":\"我觉得这个故事相当有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"The professor gave an interesting lecture on the topic.\",\"Translate\":\"教授就这个话题做了有趣的讲座。\",\"Level\":\"B1\"},{\"Sentence\":\"It's interesting to see how different cultures celebrate the same holiday.\",\"Translate\":\"看看不同的文化如何庆祝同一个节日是很有趣的。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has some interesting implications for the future of the company.\",\"Translate\":\"新政策对公司的未来有一些有趣的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light created an interesting contrast in the painting.\",\"Translate\":\"艺术家对色彩和光线的运用在画中创造了有趣的对比。\",\"Level\":\"C1\"}]}",
  1877. "ExampleSentence": "{\"word\":\"interesting\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The movie was very interesting.\",\"Translate\":\"这部电影很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"I found the story quite interesting.\",\"Translate\":\"我觉得这个故事相当有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"The professor gave an interesting lecture on the topic.\",\"Translate\":\"教授就这个话题做了有趣的讲座。\",\"Level\":\"B1\"},{\"Sentence\":\"It's interesting to see how different cultures celebrate the same holiday.\",\"Translate\":\"看看不同的文化如何庆祝同一个节日是很有趣的。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has some interesting implications for the future of the company.\",\"Translate\":\"新政策对公司的未来有一些有趣的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light created an interesting contrast in the painting.\",\"Translate\":\"艺术家对色彩和光线的运用在画中创造了有趣的对比。\",\"Level\":\"C1\"}]}",
  1878. "Sort": 0
  1879. },
  1880. {
  1881. "ID": 83921,
  1882. "Word": "Italian",
  1883. "WordRemark": null,
  1884. "Level": "A2",
  1885. "BookID": 197,
  1886. "LessonID": 1,
  1887. "LessonName": null,
  1888. "Soundmark": "[l'taelian]",
  1889. "Translate": "意大利的",
  1890. "EnglishExplanation": "{\"word\":\"italian\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The italian restaurant near my house is very popular.\",\"Translate\":\"我家附近的意大利餐厅很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"She's italian and loves cooking traditional dishes.\",\"Translate\":\"她是意大利人,喜欢烹饪传统菜肴。\",\"Level\":\"A2\"},{\"Sentence\":\"The italian language is known for its musicality and expressiveness.\",\"Translate\":\"意大利语以其音乐性和表现力而闻名。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian economy is one of the largest in the world.\",\"Translate\":\"意大利经济是世界上最大的经济体之一。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian Renaissance was a cultural and artistic movement that had a profound impact on European history.\",\"Translate\":\"意大利文艺复兴是一场对欧洲历史产生了深远影响的文化和艺术运动。\",\"Level\":\"C1\"},{\"Sentence\":\"The italian government's policies have been subject to intense scrutiny in recent years.\",\"Translate\":\"近年来,意大利政府的政策受到了密切关注。\",\"Level\":\"C1\"}]}",
  1891. "ExampleSentence": "{\"word\":\"italian\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The italian restaurant near my house is very popular.\",\"Translate\":\"我家附近的意大利餐厅很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"She's italian and loves cooking traditional dishes.\",\"Translate\":\"她是意大利人,喜欢烹饪传统菜肴。\",\"Level\":\"A2\"},{\"Sentence\":\"The italian language is known for its musicality and expressiveness.\",\"Translate\":\"意大利语以其音乐性和表现力而闻名。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian economy is one of the largest in the world.\",\"Translate\":\"意大利经济是世界上最大的经济体之一。\",\"Level\":\"B1\"},{\"Sentence\":\"The italian Renaissance was a cultural and artistic movement that had a profound impact on European history.\",\"Translate\":\"意大利文艺复兴是一场对欧洲历史产生了深远影响的文化和艺术运动。\",\"Level\":\"C1\"},{\"Sentence\":\"The italian government's policies have been subject to intense scrutiny in recent years.\",\"Translate\":\"近年来,意大利政府的政策受到了密切关注。\",\"Level\":\"C1\"}]}",
  1892. "Sort": 0
  1893. },
  1894. {
  1895. "ID": 83922,
  1896. "Word": "restaurant",
  1897. "WordRemark": null,
  1898. "Level": "A1",
  1899. "BookID": 197,
  1900. "LessonID": 1,
  1901. "LessonName": null,
  1902. "Soundmark": "['restrpnt]",
  1903. "Translate": "餐馆",
  1904. "EnglishExplanation": "{\"word\":\"restaurant\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's go to the restaurant for dinner.\",\"Translate\":\"我们去餐厅吃晚饭吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The new restaurant in town is very popular.\",\"Translate\":\"镇上新开的餐厅很受欢迎。\",\"Level\":\"A1\"},{\"Sentence\":\"I booked a table at the restaurant for our anniversary.\",\"Translate\":\"我为我们的周年纪念在餐厅预订了一张桌子。\",\"Level\":\"B1\"},{\"Sentence\":\"The restaurant serves a variety of cuisines from around the world.\",\"Translate\":\"这家餐厅提供来自世界各地的各种美食。\",\"Level\":\"B1\"},{\"Sentence\":\"The Michelin-starred restaurant is known for its exquisite culinary experience.\",\"Translate\":\"这家米其林星级餐厅以其精致的餐饮体验而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The restaurant's chef is renowned for his innovative and artistic dishes.\",\"Translate\":\"这家餐厅的厨师以其创新和艺术的菜肴而闻名。\",\"Level\":\"C1\"}]}",
  1905. "ExampleSentence": "{\"word\":\"restaurant\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's go to the restaurant for dinner.\",\"Translate\":\"我们去餐厅吃晚饭吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The new restaurant in town is very popular.\",\"Translate\":\"镇上新开的餐厅很受欢迎。\",\"Level\":\"A1\"},{\"Sentence\":\"I booked a table at the restaurant for our anniversary.\",\"Translate\":\"我为我们的周年纪念在餐厅预订了一张桌子。\",\"Level\":\"B1\"},{\"Sentence\":\"The restaurant serves a variety of cuisines from around the world.\",\"Translate\":\"这家餐厅提供来自世界各地的各种美食。\",\"Level\":\"B1\"},{\"Sentence\":\"The Michelin-starred restaurant is known for its exquisite culinary experience.\",\"Translate\":\"这家米其林星级餐厅以其精致的餐饮体验而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The restaurant's chef is renowned for his innovative and artistic dishes.\",\"Translate\":\"这家餐厅的厨师以其创新和艺术的菜肴而闻名。\",\"Level\":\"C1\"}]}",
  1906. "Sort": 0
  1907. },
  1908. {
  1909. "ID": 83923,
  1910. "Word": "pizza",
  1911. "WordRemark": null,
  1912. "Level": "A1",
  1913. "BookID": 197,
  1914. "LessonID": 1,
  1915. "LessonName": null,
  1916. "Soundmark": "['pi:tsa]",
  1917. "Translate": "比萨饼",
  1918. "EnglishExplanation": "{\"word\":\"pizza\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I love eating pizza.\",\"Translate\":\"我喜欢吃披萨。\",\"Level\":\"A1\"},{\"Sentence\":\"The pizza is very delicious.\",\"Translate\":\"这个披萨非常好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's order a few pizzas for the party.\",\"Translate\":\"我们为聚会订几个披萨吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The pizza shop is open until midnight.\",\"Translate\":\"这家披萨店营业到半夜。\",\"Level\":\"A2\"},{\"Sentence\":\"The aroma of freshly baked pizza filled the entire street.\",\"Translate\":\"新鲜烘烤的披萨香味充满了整条街。\",\"Level\":\"C1\"},{\"Sentence\":\"The art of making pizza involves a delicate balance between ingredients and cooking techniques.\",\"Translate\":\"制作披萨的艺术在于食材和烹饪技巧之间的微妙平衡。\",\"Level\":\"C1\"}]}",
  1919. "ExampleSentence": "{\"word\":\"pizza\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I love eating pizza.\",\"Translate\":\"我喜欢吃披萨。\",\"Level\":\"A1\"},{\"Sentence\":\"The pizza is very delicious.\",\"Translate\":\"这个披萨非常好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's order a few pizzas for the party.\",\"Translate\":\"我们为聚会订几个披萨吧。\",\"Level\":\"A2\"},{\"Sentence\":\"The pizza shop is open until midnight.\",\"Translate\":\"这家披萨店营业到半夜。\",\"Level\":\"A2\"},{\"Sentence\":\"The aroma of freshly baked pizza filled the entire street.\",\"Translate\":\"新鲜烘烤的披萨香味充满了整条街。\",\"Level\":\"C1\"},{\"Sentence\":\"The art of making pizza involves a delicate balance between ingredients and cooking techniques.\",\"Translate\":\"制作披萨的艺术在于食材和烹饪技巧之间的微妙平衡。\",\"Level\":\"C1\"}]}",
  1920. "Sort": 0
  1921. },
  1922. {
  1923. "ID": 83924,
  1924. "Word": "street",
  1925. "WordRemark": null,
  1926. "Level": "A1",
  1927. "BookID": 197,
  1928. "LessonID": 1,
  1929. "LessonName": null,
  1930. "Soundmark": "[strit]",
  1931. "Translate": "大街;街道",
  1932. "EnglishExplanation": "{\"word\":\"street\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The street is very busy.\",\"Translate\":\"这条街很繁忙。\",\"Level\":\"A1\"},{\"Sentence\":\"I live on a quiet street.\",\"Translate\":\"我住在一条安静的街上。\",\"Level\":\"A1\"},{\"Sentence\":\"The street performers entertained the crowd.\",\"Translate\":\"街头表演者娱乐了人群。\",\"Level\":\"B1\"},{\"Sentence\":\"The street festival was a huge success.\",\"Translate\":\"街头节非常成功。\",\"Level\":\"B1\"},{\"Sentence\":\"The street art in the city is impressive.\",\"Translate\":\"城市里的街头艺术令人印象深刻。\",\"Level\":\"C1\"},{\"Sentence\":\"The street protests were a manifestation of the public's dissatisfaction.\",\"Translate\":\"街头抗议是公众不满的表现。\",\"Level\":\"C1\"}]}",
  1933. "ExampleSentence": "{\"word\":\"street\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The street is very busy.\",\"Translate\":\"这条街很繁忙。\",\"Level\":\"A1\"},{\"Sentence\":\"I live on a quiet street.\",\"Translate\":\"我住在一条安静的街上。\",\"Level\":\"A1\"},{\"Sentence\":\"The street performers entertained the crowd.\",\"Translate\":\"街头表演者娱乐了人群。\",\"Level\":\"B1\"},{\"Sentence\":\"The street festival was a huge success.\",\"Translate\":\"街头节非常成功。\",\"Level\":\"B1\"},{\"Sentence\":\"The street art in the city is impressive.\",\"Translate\":\"城市里的街头艺术令人印象深刻。\",\"Level\":\"C1\"},{\"Sentence\":\"The street protests were a manifestation of the public's dissatisfaction.\",\"Translate\":\"街头抗议是公众不满的表现。\",\"Level\":\"C1\"}]}",
  1934. "Sort": 0
  1935. },
  1936. {
  1937. "ID": 83925,
  1938. "Word": "get",
  1939. "WordRemark": null,
  1940. "Level": "A1",
  1941. "BookID": 197,
  1942. "LessonID": 1,
  1943. "LessonName": null,
  1944. "Soundmark": "[get]",
  1945. "Translate": "到达",
  1946. "EnglishExplanation": "{\"word\":\"get\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I get up at 7 o'clock every day.\",\"Translate\":\"我每天7点起床。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you get me a glass of water?\",\"Translate\":\"你能给我一杯水吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to get some food from the kitchen.\",\"Translate\":\"我要从厨房拿些食物。\",\"Level\":\"A2\"},{\"Sentence\":\"She gets angry when people are late.\",\"Translate\":\"当人们迟到时,她会生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will get a lot of benefit from the new deal.\",\"Translate\":\"公司将从这笔新交易中获得很多利益。\",\"Level\":\"B1\"},{\"Sentence\":\"It's getting harder to find a good job these days.\",\"Translate\":\"如今找一份好工作越来越难了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has got the support of many employees.\",\"Translate\":\"新政策得到了许多员工的支持。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists got lost in the old city.\",\"Translate\":\"游客们在老城里迷路了。\",\"Level\":\"B2\"},{\"Sentence\":\"The team got to the finals after a series of tough matches.\",\"Translate\":\"经过一系列艰苦的比赛后,这支队伍进入了决赛。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color get",
  1947. "ExampleSentence": "{\"word\":\"get\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I get up at 7 o'clock every day.\",\"Translate\":\"我每天7点起床。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you get me a glass of water?\",\"Translate\":\"你能给我一杯水吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I'm going to get some food from the kitchen.\",\"Translate\":\"我要从厨房拿些食物。\",\"Level\":\"A2\"},{\"Sentence\":\"She gets angry when people are late.\",\"Translate\":\"当人们迟到时,她会生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will get a lot of benefit from the new deal.\",\"Translate\":\"公司将从这笔新交易中获得很多利益。\",\"Level\":\"B1\"},{\"Sentence\":\"It's getting harder to find a good job these days.\",\"Translate\":\"如今找一份好工作越来越难了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has got the support of many employees.\",\"Translate\":\"新政策得到了许多员工的支持。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists got lost in the old city.\",\"Translate\":\"游客们在老城里迷路了。\",\"Level\":\"B2\"},{\"Sentence\":\"The team got to the finals after a series of tough matches.\",\"Translate\":\"经过一系列艰苦的比赛后,这支队伍进入了决赛。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color gets across a sense of nostalgia.\",\"Translate\":\"艺术家对色彩的使用传达了一种怀旧的感觉。\",\"Level\":\"C1\"}]}",
  1948. "Sort": 0
  1949. },
  1950. {
  1951. "ID": 83926,
  1952. "Word": "BDS",
  1953. "WordRemark": null,
  1954. "Level": null,
  1955. "BookID": 197,
  1956. "LessonID": 1,
  1957. "LessonName": null,
  1958. "Soundmark": null,
  1959. "Translate": "北斗卫星导航系统",
  1960. "EnglishExplanation": "",
  1961. "ExampleSentence": null,
  1962. "Sort": 0
  1963. },
  1964. {
  1965. "ID": 83927,
  1966. "Word": "gave",
  1967. "WordRemark": null,
  1968. "Level": "A1",
  1969. "BookID": 197,
  1970. "LessonID": 1,
  1971. "LessonName": null,
  1972. "Soundmark": "[geiv]",
  1973. "Translate": "提供;交给",
  1974. "EnglishExplanation": "{\"word\":\"gave\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She gave me a book.\",\"Translate\":\"她给了我一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us homework.\",\"Translate\":\"老师给了我们作业。\",\"Level\":\"A1\"},{\"Sentence\":\"The charity event gave the community a chance to come together.\",\"Translate\":\"慈善活动让社区有机会聚在一起。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy gave rise to widespread criticism.\",\"Translate\":\"新政策引发了广泛的批评。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist gave expression to her emotions through her paintings.\",\"Translate\":\"艺术家通过她的画作表达了她的情感。\",\"Level\":\"C1\"},{\"Sentence\":\"The historian gave a nuanced analysis of the complex historical events.\",\"Translate\":\"历史学家对复杂的历史事件进行了细致入微的分析。\",\"Level\":\"C1\"}]}",
  1975. "ExampleSentence": "{\"word\":\"gave\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She gave me a book.\",\"Translate\":\"她给了我一本书。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us homework.\",\"Translate\":\"老师给了我们作业。\",\"Level\":\"A1\"},{\"Sentence\":\"The charity event gave the community a chance to come together.\",\"Translate\":\"慈善活动让社区有机会聚在一起。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy gave rise to widespread criticism.\",\"Translate\":\"新政策引发了广泛的批评。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist gave expression to her emotions through her paintings.\",\"Translate\":\"艺术家通过她的画作表达了她的情感。\",\"Level\":\"C1\"},{\"Sentence\":\"The historian gave a nuanced analysis of the complex historical events.\",\"Translate\":\"历史学家对复杂的历史事件进行了细致入微的分析。\",\"Level\":\"C1\"}]}",
  1976. "Sort": 0
  1977. },
  1978. {
  1979. "ID": 83928,
  1980. "Word": "feature",
  1981. "WordRemark": null,
  1982. "Level": "B2",
  1983. "BookID": 197,
  1984. "LessonID": 1,
  1985. "LessonName": null,
  1986. "Soundmark": "['fi:tfa(r)]",
  1987. "Translate": "特点",
  1988. "EnglishExplanation": "{\"word\":\"feature\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The new smartphone will feature an advanced AI camera.\",\"Translate\":\"这款新智能手机将配备先进的AI摄像头。\",\"Level\":\"B2\"},{\"Sentence\":\"The magazine features a story about the latest fashion trends.\",\"Translate\":\"这本杂志刊登了一篇关于最新时尚潮流的文章。\",\"Level\":\"B2\"},{\"Sentence\":\"The city's main attraction is its historic downtown area, which will be featured in the travel brochure.\",\"Translate\":\"这座城市的主要景点是其历史悠久的市中心区域,这将在旅行手册中有特别介绍。\",\"Level\":\"C1\"},{\"Sentence\":\"The film features an all-star cast and has been receiving critical acclaim.\",\"Translate\":\"这部电影由全明星阵容主演,并获得了广泛好评。\",\"Level\":\"C1\"}]}",
  1989. "ExampleSentence": "{\"word\":\"feature\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The new smartphone will feature an advanced AI camera.\",\"Translate\":\"这款新智能手机将配备先进的AI摄像头。\",\"Level\":\"B2\"},{\"Sentence\":\"The magazine features a story about the latest fashion trends.\",\"Translate\":\"这本杂志刊登了一篇关于最新时尚潮流的文章。\",\"Level\":\"B2\"},{\"Sentence\":\"The city's main attraction is its historic downtown area, which will be featured in the travel brochure.\",\"Translate\":\"这座城市的主要景点是其历史悠久的市中心区域,这将在旅行手册中有特别介绍。\",\"Level\":\"C1\"},{\"Sentence\":\"The film features an all-star cast and has been receiving critical acclaim.\",\"Translate\":\"这部电影由全明星阵容主演,并获得了广泛好评。\",\"Level\":\"C1\"}]}",
  1990. "Sort": 0
  1991. },
  1992. {
  1993. "ID": 83929,
  1994. "Word": "follow",
  1995. "WordRemark": null,
  1996. "Level": "A1",
  1997. "BookID": 197,
  1998. "LessonID": 1,
  1999. "LessonName": null,
  2000. "Soundmark": "[fplau]",
  2001. "Translate": "跟着",
  2002. "EnglishExplanation": "{\"word\":\"follow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Please follow me.\",\"Translate\":\"请跟我来。\",\"Level\":\"A1\"},{\"Sentence\":\"I will follow your instructions.\",\"Translate\":\"我会按照你的指示做。\",\"Level\":\"A1\"},{\"Sentence\":\"The dog follows its owner everywhere.\",\"Translate\":\"这只狗到处跟着它的主人。\",\"Level\":\"A2\"},{\"Sentence\":\"You should follow the rules.\",\"Translate\":\"你应该遵守规则。\",\"Level\":\"A2\"},{\"Sentence\":\"The police are following a new lead.\",\"Translate\":\"警察正在追查一个新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will follow up on the complaint.\",\"Translate\":\"公司将跟进投诉。\",\"Level\":\"B1\"},{\"Sentence\":\"The consequences of not following the regulations could be severe.\",\"Translate\":\"不遵守规定的后果可能很严重。\",\"Level\":\"C1\"},{\"Sentence\":\"The research will follow a rigorous methodology to ensure accuracy.\",\"Translate\":\"研究将遵循严格的方法以确保准确性。\",\"Level\":\"C1\"}]}",
  2003. "ExampleSentence": "{\"word\":\"follow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Please follow me.\",\"Translate\":\"请跟我来。\",\"Level\":\"A1\"},{\"Sentence\":\"I will follow your instructions.\",\"Translate\":\"我会按照你的指示做。\",\"Level\":\"A1\"},{\"Sentence\":\"The dog follows its owner everywhere.\",\"Translate\":\"这只狗到处跟着它的主人。\",\"Level\":\"A2\"},{\"Sentence\":\"You should follow the rules.\",\"Translate\":\"你应该遵守规则。\",\"Level\":\"A2\"},{\"Sentence\":\"The police are following a new lead.\",\"Translate\":\"警察正在追查一个新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will follow up on the complaint.\",\"Translate\":\"公司将跟进投诉。\",\"Level\":\"B1\"},{\"Sentence\":\"The consequences of not following the regulations could be severe.\",\"Translate\":\"不遵守规定的后果可能很严重。\",\"Level\":\"C1\"},{\"Sentence\":\"The research will follow a rigorous methodology to ensure accuracy.\",\"Translate\":\"研究将遵循严格的方法以确保准确性。\",\"Level\":\"C1\"}]}",
  2004. "Sort": 0
  2005. },
  2006. {
  2007. "ID": 83930,
  2008. "Word": "far",
  2009. "WordRemark": null,
  2010. "Level": "A1",
  2011. "BookID": 197,
  2012. "LessonID": 1,
  2013. "LessonName": null,
  2014. "Soundmark": "[fa:(r)]",
  2015. "Translate": "远的",
  2016. "EnglishExplanation": "{\"word\":\"far\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The park is far from here.\",\"Translate\":\"公园离这里很远。\",\"Level\":\"A1\"},{\"Sentence\":\"I have to walk far to get to school.\",\"Translate\":\"我必须走很远的路去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The new employee has come from far and wide to join our team.\",\"Translate\":\"新员工从四面八方来到我们的团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's influence has spread far and wide across the globe.\",\"Translate\":\"公司的影響力已经遍及全球。\",\"Level\":\"B1\"},{\"Sentence\":\"The research has implications that go far beyond the academic community.\",\"Translate\":\"这项研究的影响远远超出了学术界。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has taken the company's commitment to sustainability far beyond what was previously thought possible.\",\"Translate\":\"新政策使公司对可持续发展的承诺远远超出了以前认为可能的范围。\",\"Level\":\"C1\"}]}",
  2017. "ExampleSentence": "{\"word\":\"far\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The park is far from here.\",\"Translate\":\"公园离这里很远。\",\"Level\":\"A1\"},{\"Sentence\":\"I have to walk far to get to school.\",\"Translate\":\"我必须走很远的路去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The new employee has come from far and wide to join our team.\",\"Translate\":\"新员工从四面八方来到我们的团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's influence has spread far and wide across the globe.\",\"Translate\":\"公司的影響力已经遍及全球。\",\"Level\":\"B1\"},{\"Sentence\":\"The research has implications that go far beyond the academic community.\",\"Translate\":\"这项研究的影响远远超出了学术界。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has taken the company's commitment to sustainability far beyond what was previously thought possible.\",\"Translate\":\"新政策使公司对可持续发展的承诺远远超出了以前认为可能的范围。\",\"Level\":\"C1\"}]}",
  2018. "Sort": 0
  2019. },
  2020. {
  2021. "ID": 83931,
  2022. "Word": "tell",
  2023. "WordRemark": null,
  2024. "Level": "A1",
  2025. "BookID": 197,
  2026. "LessonID": 1,
  2027. "LessonName": null,
  2028. "Soundmark": "[tel]",
  2029. "Translate": "告诉",
  2030. "EnglishExplanation": "{\"word\":\"tell\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you tell me your name?\",\"Translate\":\"你能告诉我你的名字吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She didn't tell me about the party.\",\"Translate\":\"她没有告诉我关于聚会的事。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher will tell us a story.\",\"Translate\":\"老师将给我们讲一个故事。\",\"Level\":\"A2\"},{\"Sentence\":\"He told me that he was tired.\",\"Translate\":\"他告诉我他很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The difference between the two pictures will tell you a lot about the artist's style.\",\"Translate\":\"两幅画之间的差异会告诉你很多关于艺术家的风格。\",\"Level\":\"C1\"},{\"Sentence\":\"Her expression told a story of sadness and loss.\",\"Translate\":\"她的表情诉说着悲伤和失落的故事。\",\"Level\":\"C1\"}]}",
  2031. "ExampleSentence": "{\"word\":\"tell\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you tell me your name?\",\"Translate\":\"你能告诉我你的名字吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She didn't tell me about the party.\",\"Translate\":\"她没有告诉我关于聚会的事。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher will tell us a story.\",\"Translate\":\"老师将给我们讲一个故事。\",\"Level\":\"A2\"},{\"Sentence\":\"He told me that he was tired.\",\"Translate\":\"他告诉我他很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The difference between the two pictures will tell you a lot about the artist's style.\",\"Translate\":\"两幅画之间的差异会告诉你很多关于艺术家的风格。\",\"Level\":\"C1\"},{\"Sentence\":\"Her expression told a story of sadness and loss.\",\"Translate\":\"她的表情诉说着悲伤和失落的故事。\",\"Level\":\"C1\"}]}",
  2032. "Sort": 0
  2033. },
  2034. {
  2035. "ID": 83932,
  2036. "Word": "on foot",
  2037. "WordRemark": null,
  2038. "Level": null,
  2039. "BookID": 197,
  2040. "LessonID": 2,
  2041. "LessonName": null,
  2042. "Soundmark": null,
  2043. "Translate": "步行",
  2044. "EnglishExplanation": "",
  2045. "ExampleSentence": null,
  2046. "Sort": 0
  2047. },
  2048. {
  2049. "ID": 83933,
  2050. "Word": "by",
  2051. "WordRemark": null,
  2052. "Level": "A1",
  2053. "BookID": 197,
  2054. "LessonID": 2,
  2055. "LessonName": null,
  2056. "Soundmark": "[bal]",
  2057. "Translate": "(表示方式)乘",
  2058. "EnglishExplanation": "{\"word\":\"by\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The book is written by my favorite author.\",\"Translate\":\"这本书由我最喜欢的作者撰写。\",\"Level\":\"A1\"},{\"Sentence\":\"She was standing by the window.\",\"Translate\":\"她站在窗户旁边。\",\"Level\":\"A1\"},{\"Sentence\":\"You can improve your English by practicing every day.\",\"Translate\":\"你可以通过每天练习来提高你的英语水平。\",\"Level\":\"B1\"},{\"Sentence\":\"The painting was created by a famous artist.\",\"Translate\":\"这幅画是由一位著名的艺术家创作的。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been acquired by a multinational corporation.\",\"Translate\":\"这家公司已经被一家跨国公司收购。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy was introduced by the government to stimulate economic growth.\",\"Translate\":\"政府推出了新的政策来刺激经济增长。\",\"Level\":\"C1\"}]}",
  2059. "ExampleSentence": "{\"word\":\"by\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The book is written by my favorite author.\",\"Translate\":\"这本书由我最喜欢的作者撰写。\",\"Level\":\"A1\"},{\"Sentence\":\"She was standing by the window.\",\"Translate\":\"她站在窗户旁边。\",\"Level\":\"A1\"},{\"Sentence\":\"You can improve your English by practicing every day.\",\"Translate\":\"你可以通过每天练习来提高你的英语水平。\",\"Level\":\"B1\"},{\"Sentence\":\"The painting was created by a famous artist.\",\"Translate\":\"这幅画是由一位著名的艺术家创作的。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has been acquired by a multinational corporation.\",\"Translate\":\"这家公司已经被一家跨国公司收购。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy was introduced by the government to stimulate economic growth.\",\"Translate\":\"政府推出了新的政策来刺激经济增长。\",\"Level\":\"C1\"}]}",
  2060. "Sort": 0
  2061. },
  2062. {
  2063. "ID": 83934,
  2064. "Word": "bus",
  2065. "WordRemark": null,
  2066. "Level": "A1",
  2067. "BookID": 197,
  2068. "LessonID": 2,
  2069. "LessonName": null,
  2070. "Soundmark": "[bas]",
  2071. "Translate": "公共汽车",
  2072. "EnglishExplanation": "{\"word\":\"bus\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the bus to school.\",\"Translate\":\"我坐公交车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The bus is late again.\",\"Translate\":\"公交车又晚点了。\",\"Level\":\"A1\"},{\"Sentence\":\"The buses in this city are very reliable.\",\"Translate\":\"这座城市的公交车非常可靠。\",\"Level\":\"A2\"},{\"Sentence\":\"You can catch the bus at the next stop.\",\"Translate\":\"你可以在下一站搭乘公交车。\",\"Level\":\"A2\"},{\"Sentence\":\"The city is investing in new bus technology to reduce emissions.\",\"Translate\":\"该市正在投资新的公交技术以减少排放。\",\"Level\":\"C1\"},{\"Sentence\":\"The bus network in the city has been expanded to improve connectivity.\",\"Translate\":\"该市的公交网络已经扩大,以改善连接性。\",\"Level\":\"C1\"}]}",
  2073. "ExampleSentence": "{\"word\":\"bus\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the bus to school.\",\"Translate\":\"我坐公交车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The bus is late again.\",\"Translate\":\"公交车又晚点了。\",\"Level\":\"A1\"},{\"Sentence\":\"The buses in this city are very reliable.\",\"Translate\":\"这座城市的公交车非常可靠。\",\"Level\":\"A2\"},{\"Sentence\":\"You can catch the bus at the next stop.\",\"Translate\":\"你可以在下一站搭乘公交车。\",\"Level\":\"A2\"},{\"Sentence\":\"The city is investing in new bus technology to reduce emissions.\",\"Translate\":\"该市正在投资新的公交技术以减少排放。\",\"Level\":\"C1\"},{\"Sentence\":\"The bus network in the city has been expanded to improve connectivity.\",\"Translate\":\"该市的公交网络已经扩大,以改善连接性。\",\"Level\":\"C1\"}]}",
  2074. "Sort": 0
  2075. },
  2076. {
  2077. "ID": 83935,
  2078. "Word": "plane",
  2079. "WordRemark": null,
  2080. "Level": "A1",
  2081. "BookID": 197,
  2082. "LessonID": 2,
  2083. "LessonName": null,
  2084. "Soundmark": "[plein]",
  2085. "Translate": "飞机",
  2086. "EnglishExplanation": "{\"word\":\"plane\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will take a plane to Paris tomorrow.\",\"Translate\":\"明天我将乘飞机去巴黎。\",\"Level\":\"A1\"},{\"Sentence\":\"The plane is flying over the mountains.\",\"Translate\":\"飞机正在山上空飞行。\",\"Level\":\"A1\"},{\"Sentence\":\"She booked a plane ticket to New York last week.\",\"Translate\":\"她上周预订了一张去纽约的机票。\",\"Level\":\"A2\"},{\"Sentence\":\"The plane landed safely at the airport.\",\"Translate\":\"飞机安全地降落在机场。\",\"Level\":\"A2\"},{\"Sentence\":\"The pilot navigated the plane through the storm.\",\"Translate\":\"飞行员驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The plane was delayed due to bad weather.\",\"Translate\":\"由于天气恶劣,飞机延误了。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline operates a large fleet of planes.\",\"Translate\":\"这家航空公司经营着一支庞大的机队。\",\"Level\":\"B2\"},{\"Sentence\":\"The plane's engine failed, so it had to make an emergency landing.\",\"Translate\":\"飞机的引擎故障了,所以不得不进行紧急降落。\",\"Level\":\"B2\"},{\"Sentence\":\"The supersonic plane broke the sound barrier.\",\"Translate\":\"超音速飞机突破了音障。\",\"Level\":\"C1\"},{\"Sentence\":\"The aviation ",
  2087. "ExampleSentence": "{\"word\":\"plane\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will take a plane to Paris tomorrow.\",\"Translate\":\"明天我将乘飞机去巴黎。\",\"Level\":\"A1\"},{\"Sentence\":\"The plane is flying over the mountains.\",\"Translate\":\"飞机正在山上空飞行。\",\"Level\":\"A1\"},{\"Sentence\":\"She booked a plane ticket to New York last week.\",\"Translate\":\"她上周预订了一张去纽约的机票。\",\"Level\":\"A2\"},{\"Sentence\":\"The plane landed safely at the airport.\",\"Translate\":\"飞机安全地降落在机场。\",\"Level\":\"A2\"},{\"Sentence\":\"The pilot navigated the plane through the storm.\",\"Translate\":\"飞行员驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The plane was delayed due to bad weather.\",\"Translate\":\"由于天气恶劣,飞机延误了。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline operates a large fleet of planes.\",\"Translate\":\"这家航空公司经营着一支庞大的机队。\",\"Level\":\"B2\"},{\"Sentence\":\"The plane's engine failed, so it had to make an emergency landing.\",\"Translate\":\"飞机的引擎故障了,所以不得不进行紧急降落。\",\"Level\":\"B2\"},{\"Sentence\":\"The supersonic plane broke the sound barrier.\",\"Translate\":\"超音速飞机突破了音障。\",\"Level\":\"C1\"},{\"Sentence\":\"The aviation company is developing a new generation of planes.\",\"Translate\":\"这家航空公司正在开发新一代的飞机。\",\"Level\":\"C1\"}]}",
  2088. "Sort": 0
  2089. },
  2090. {
  2091. "ID": 83936,
  2092. "Word": "taxi",
  2093. "WordRemark": null,
  2094. "Level": "A1",
  2095. "BookID": 197,
  2096. "LessonID": 2,
  2097. "LessonName": null,
  2098. "Soundmark": "['taeksi]",
  2099. "Translate": "出租汽车",
  2100. "EnglishExplanation": "{\"word\":\"taxi\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I need to call a taxi to go to the airport.\",\"Translate\":\"我需要叫一辆出租车去机场。\",\"Level\":\"A1\"},{\"Sentence\":\"The taxi driver was very friendly.\",\"Translate\":\"出租车司机很友好。\",\"Level\":\"A1\"},{\"Sentence\":\"You can take a taxi from the hotel to the city center.\",\"Translate\":\"你可以从酒店乘坐出租车到市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"Taxis are readily available at the train station.\",\"Translate\":\"火车站有很多出租车。\",\"Level\":\"A2\"},{\"Sentence\":\"The taxi service in this city is quite reliable.\",\"Translate\":\"这个城市的出租车服务很可靠。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few drinks, we hailed a taxi to get back to our hotel.\",\"Translate\":\"喝了几杯后,我们叫了一辆出租车回酒店。\",\"Level\":\"B1\"},{\"Sentence\":\"The taxi industry has seen significant changes with the rise of ride-hailing apps.\",\"Translate\":\"随着叫车应用的兴起,出租车行业发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"Taxis are an integral part of the urban transportation infrastructure, providing a convenient mode of transport.\",\"Translate\":\"出租车是城市交通基础设施的重要组成部分,提供了一种便捷的交通",
  2101. "ExampleSentence": "{\"word\":\"taxi\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I need to call a taxi to go to the airport.\",\"Translate\":\"我需要叫一辆出租车去机场。\",\"Level\":\"A1\"},{\"Sentence\":\"The taxi driver was very friendly.\",\"Translate\":\"出租车司机很友好。\",\"Level\":\"A1\"},{\"Sentence\":\"You can take a taxi from the hotel to the city center.\",\"Translate\":\"你可以从酒店乘坐出租车到市中心。\",\"Level\":\"A2\"},{\"Sentence\":\"Taxis are readily available at the train station.\",\"Translate\":\"火车站有很多出租车。\",\"Level\":\"A2\"},{\"Sentence\":\"The taxi service in this city is quite reliable.\",\"Translate\":\"这个城市的出租车服务很可靠。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few drinks, we hailed a taxi to get back to our hotel.\",\"Translate\":\"喝了几杯后,我们叫了一辆出租车回酒店。\",\"Level\":\"B1\"},{\"Sentence\":\"The taxi industry has seen significant changes with the rise of ride-hailing apps.\",\"Translate\":\"随着叫车应用的兴起,出租车行业发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"Taxis are an integral part of the urban transportation infrastructure, providing a convenient mode of transport.\",\"Translate\":\"出租车是城市交通基础设施的重要组成部分,提供了一种便捷的交通方式。\",\"Level\":\"C1\"}]}",
  2102. "Sort": 0
  2103. },
  2104. {
  2105. "ID": 83937,
  2106. "Word": "ship",
  2107. "WordRemark": null,
  2108. "Level": "A1",
  2109. "BookID": 197,
  2110. "LessonID": 2,
  2111. "LessonName": null,
  2112. "Soundmark": "[Jip]",
  2113. "Translate": "(大)船",
  2114. "EnglishExplanation": "{\"word\":\"ship\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The ship sailed across the ocean.\",\"Translate\":\"这艘船横渡大洋。\",\"Level\":\"A1\"},{\"Sentence\":\"They traveled on a big ship.\",\"Translate\":\"他们乘坐一艘大船旅行。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will ship the goods tomorrow.\",\"Translate\":\"公司明天将发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The goods were shipped last week.\",\"Translate\":\"货物已于上周发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The captain skillfully navigated the ship through the storm.\",\"Translate\":\"船长熟练地驾驶船只穿过风暴。\",\"Level\":\"C1\"},{\"Sentence\":\"The shipping industry has experienced significant changes over the years.\",\"Translate\":\"航运业多年来经历了重大变化。\",\"Level\":\"C1\"}]}",
  2115. "ExampleSentence": "{\"word\":\"ship\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The ship sailed across the ocean.\",\"Translate\":\"这艘船横渡大洋。\",\"Level\":\"A1\"},{\"Sentence\":\"They traveled on a big ship.\",\"Translate\":\"他们乘坐一艘大船旅行。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will ship the goods tomorrow.\",\"Translate\":\"公司明天将发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The goods were shipped last week.\",\"Translate\":\"货物已于上周发货。\",\"Level\":\"A2\"},{\"Sentence\":\"The captain skillfully navigated the ship through the storm.\",\"Translate\":\"船长熟练地驾驶船只穿过风暴。\",\"Level\":\"C1\"},{\"Sentence\":\"The shipping industry has experienced significant changes over the years.\",\"Translate\":\"航运业多年来经历了重大变化。\",\"Level\":\"C1\"}]}",
  2116. "Sort": 0
  2117. },
  2118. {
  2119. "ID": 83938,
  2120. "Word": "subway",
  2121. "WordRemark": null,
  2122. "Level": "A2",
  2123. "BookID": 197,
  2124. "LessonID": 2,
  2125. "LessonName": null,
  2126. "Soundmark": "[sabwel]",
  2127. "Translate": "地铁",
  2128. "EnglishExplanation": "{\"word\":\"subway\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the city center by subway.\",\"Translate\":\"我要坐地铁去市中心.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway is very convenient for traveling around the city.\",\"Translate\":\"地铁非常方便城市出行.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway system in Tokyo is very complex, with many different lines.\",\"Translate\":\"东京的地铁系统非常复杂,有很多不同的线路.\",\"Level\":\"B1\"},{\"Sentence\":\"To avoid the crowds, try to avoid traveling during peak hours on the subway.\",\"Translate\":\"为了避开人潮,尽量避免在高峰时段乘坐地铁.\",\"Level\":\"B1\"},{\"Sentence\":\"The new subway line has significantly alleviated traffic congestion in the metropolitan area.\",\"Translate\":\"新的地铁线路大大缓解了大都市地区的交通拥堵.\",\"Level\":\"C1\"},{\"Sentence\":\"Critics argue that the expansion of the subway network has not kept pace with the city's rapid urbanization.\",\"Translate\":\"批评者认为地铁网络的扩张没有跟上城市的快速城市化步伐.\",\"Level\":\"C1\"}]}",
  2129. "ExampleSentence": "{\"word\":\"subway\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the city center by subway.\",\"Translate\":\"我要坐地铁去市中心.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway is very convenient for traveling around the city.\",\"Translate\":\"地铁非常方便城市出行.\",\"Level\":\"A2\"},{\"Sentence\":\"The subway system in Tokyo is very complex, with many different lines.\",\"Translate\":\"东京的地铁系统非常复杂,有很多不同的线路.\",\"Level\":\"B1\"},{\"Sentence\":\"To avoid the crowds, try to avoid traveling during peak hours on the subway.\",\"Translate\":\"为了避开人潮,尽量避免在高峰时段乘坐地铁.\",\"Level\":\"B1\"},{\"Sentence\":\"The new subway line has significantly alleviated traffic congestion in the metropolitan area.\",\"Translate\":\"新的地铁线路大大缓解了大都市地区的交通拥堵.\",\"Level\":\"C1\"},{\"Sentence\":\"Critics argue that the expansion of the subway network has not kept pace with the city's rapid urbanization.\",\"Translate\":\"批评者认为地铁网络的扩张没有跟上城市的快速城市化步伐.\",\"Level\":\"C1\"}]}",
  2130. "Sort": 0
  2131. },
  2132. {
  2133. "ID": 83939,
  2134. "Word": "train",
  2135. "WordRemark": null,
  2136. "Level": "A1",
  2137. "BookID": 197,
  2138. "LessonID": 2,
  2139. "LessonName": null,
  2140. "Soundmark": "[trein]",
  2141. "Translate": "火车",
  2142. "EnglishExplanation": "{\"word\":\"train\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the train to school.\",\"Translate\":\"我坐火车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is leaving the station.\",\"Translate\":\"火车正在离开车站。\",\"Level\":\"A1\"},{\"Sentence\":\"You need to train hard to become a good athlete.\",\"Translate\":\"你需要努力训练才能成为一名优秀的运动员。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will train new employees next month.\",\"Translate\":\"公司将在下个月培训新员工。\",\"Level\":\"B1\"},{\"Sentence\":\"The team has been training for the championship all season.\",\"Translate\":\"整个赛季,队伍都在为冠军而训练。\",\"Level\":\"C1\"},{\"Sentence\":\"Her years of training have made her a skilled surgeon.\",\"Translate\":\"多年的训练使她成为了一名熟练的外科医生。\",\"Level\":\"C1\"}]}",
  2143. "ExampleSentence": "{\"word\":\"train\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I take the train to school.\",\"Translate\":\"我坐火车去上学。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is leaving the station.\",\"Translate\":\"火车正在离开车站。\",\"Level\":\"A1\"},{\"Sentence\":\"You need to train hard to become a good athlete.\",\"Translate\":\"你需要努力训练才能成为一名优秀的运动员。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will train new employees next month.\",\"Translate\":\"公司将在下个月培训新员工。\",\"Level\":\"B1\"},{\"Sentence\":\"The team has been training for the championship all season.\",\"Translate\":\"整个赛季,队伍都在为冠军而训练。\",\"Level\":\"C1\"},{\"Sentence\":\"Her years of training have made her a skilled surgeon.\",\"Translate\":\"多年的训练使她成为了一名熟练的外科医生。\",\"Level\":\"C1\"}]}",
  2144. "Sort": 0
  2145. },
  2146. {
  2147. "ID": 83940,
  2148. "Word": "slow",
  2149. "WordRemark": null,
  2150. "Level": "A2",
  2151. "BookID": 197,
  2152. "LessonID": 2,
  2153. "LessonName": null,
  2154. "Soundmark": "[slau]",
  2155. "Translate": "慢的;放慢速度",
  2156. "EnglishExplanation": "{\"word\":\"slow\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic is slow today.\",\"Translate\":\"今天交通很慢。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a slow learner.\",\"Translate\":\"她是一个学习缓慢的人。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has been slow to adapt to the new technology.\",\"Translate\":\"这家公司在适应新技术方面进展缓慢。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow pace of the hike made it enjoyable for everyone.\",\"Translate\":\"这次徒步旅行的缓慢节奏让每个人都感到愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow and deliberate movements of the yoga instructor were calming.\",\"Translate\":\"瑜伽教练缓慢而刻意的动作令人放松。\",\"Level\":\"C1\"},{\"Sentence\":\"The slow erosion of the coastline is a concern for local residents.\",\"Translate\":\"海岸线的缓慢侵蚀是当地居民关心的问题。\",\"Level\":\"C1\"}]}",
  2157. "ExampleSentence": "{\"word\":\"slow\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic is slow today.\",\"Translate\":\"今天交通很慢。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a slow learner.\",\"Translate\":\"她是一个学习缓慢的人。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has been slow to adapt to the new technology.\",\"Translate\":\"这家公司在适应新技术方面进展缓慢。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow pace of the hike made it enjoyable for everyone.\",\"Translate\":\"这次徒步旅行的缓慢节奏让每个人都感到愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The slow and deliberate movements of the yoga instructor were calming.\",\"Translate\":\"瑜伽教练缓慢而刻意的动作令人放松。\",\"Level\":\"C1\"},{\"Sentence\":\"The slow erosion of the coastline is a concern for local residents.\",\"Translate\":\"海岸线的缓慢侵蚀是当地居民关心的问题。\",\"Level\":\"C1\"}]}",
  2158. "Sort": 0
  2159. },
  2160. {
  2161. "ID": 83941,
  2162. "Word": "down",
  2163. "WordRemark": null,
  2164. "Level": "A1",
  2165. "BookID": 197,
  2166. "LessonID": 2,
  2167. "LessonName": null,
  2168. "Soundmark": "[daun]",
  2169. "Translate": "减少;降低",
  2170. "EnglishExplanation": "{\"word\":\"down\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The sun is going down.\",\"Translate\":\"太阳正在落下。\",\"Level\":\"A1\"},{\"Sentence\":\"She sat down on the chair.\",\"Translate\":\"她坐在椅子上。\",\"Level\":\"A1\"},{\"Sentence\":\"The price of the product is coming down.\",\"Translate\":\"产品的价格正在下降。\",\"Level\":\"B1\"},{\"Sentence\":\"The police are trying to calm the situation down.\",\"Translate\":\"警察正在试图平息局势。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have been scaled down significantly.\",\"Translate\":\"公司的利润已经大幅度缩减。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been written down in the company's handbook.\",\"Translate\":\"新政策已经被写进公司的手册里。\",\"Level\":\"C1\"}]}",
  2171. "ExampleSentence": "{\"word\":\"down\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The sun is going down.\",\"Translate\":\"太阳正在落下。\",\"Level\":\"A1\"},{\"Sentence\":\"She sat down on the chair.\",\"Translate\":\"她坐在椅子上。\",\"Level\":\"A1\"},{\"Sentence\":\"The price of the product is coming down.\",\"Translate\":\"产品的价格正在下降。\",\"Level\":\"B1\"},{\"Sentence\":\"The police are trying to calm the situation down.\",\"Translate\":\"警察正在试图平息局势。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have been scaled down significantly.\",\"Translate\":\"公司的利润已经大幅度缩减。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been written down in the company's handbook.\",\"Translate\":\"新政策已经被写进公司的手册里。\",\"Level\":\"C1\"}]}",
  2172. "Sort": 0
  2173. },
  2174. {
  2175. "ID": 83942,
  2176. "Word": "slow down",
  2177. "WordRemark": null,
  2178. "Level": null,
  2179. "BookID": 197,
  2180. "LessonID": 2,
  2181. "LessonName": null,
  2182. "Soundmark": null,
  2183. "Translate": "慢下来",
  2184. "EnglishExplanation": "",
  2185. "ExampleSentence": null,
  2186. "Sort": 0
  2187. },
  2188. {
  2189. "ID": 83943,
  2190. "Word": "stop",
  2191. "WordRemark": null,
  2192. "Level": "A1",
  2193. "BookID": 197,
  2194. "LessonID": 2,
  2195. "LessonName": null,
  2196. "Soundmark": "[stpp]",
  2197. "Translate": "停下",
  2198. "EnglishExplanation": "{\"word\":\"stop\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bus will stop at the next corner.\",\"Translate\":\"公交车将在下一个拐角处停下来。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stop making so much noise?\",\"Translate\":\"你能不要再发出这么大的噪音吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stopped to talk to her friend.\",\"Translate\":\"她停下来跟她的朋友聊天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stop producing this product next year.\",\"Translate\":\"这家公司明年将停止生产这个产品。\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy has been implemented to stop pollution.\",\"Translate\":\"新的政策已经实施以阻止污染。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked the students to stop chatting and focus on their work.\",\"Translate\":\"老师要求学生停止聊天,专注于他们的工作。\",\"Level\":\"B1\"},{\"Sentence\":\"The government has taken measures to stop the spread of the disease.\",\"Translate\":\"政府已经采取措施来阻止疾病的传播。\",\"Level\":\"C1\"},{\"Sentence\":\"The protesters were determined to stop the construction of the new highway.\",\"Translate\":\"抗议者们决心阻止新高速公路的建设。\",\"Level\":\"C1\"}]}",
  2199. "ExampleSentence": "{\"word\":\"stop\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bus will stop at the next corner.\",\"Translate\":\"公交车将在下一个拐角处停下来。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stop making so much noise?\",\"Translate\":\"你能不要再发出这么大的噪音吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stopped to talk to her friend.\",\"Translate\":\"她停下来跟她的朋友聊天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stop producing this product next year.\",\"Translate\":\"这家公司明年将停止生产这个产品。\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy has been implemented to stop pollution.\",\"Translate\":\"新的政策已经实施以阻止污染。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked the students to stop chatting and focus on their work.\",\"Translate\":\"老师要求学生停止聊天,专注于他们的工作。\",\"Level\":\"B1\"},{\"Sentence\":\"The government has taken measures to stop the spread of the disease.\",\"Translate\":\"政府已经采取措施来阻止疾病的传播。\",\"Level\":\"C1\"},{\"Sentence\":\"The protesters were determined to stop the construction of the new highway.\",\"Translate\":\"抗议者们决心阻止新高速公路的建设。\",\"Level\":\"C1\"}]}",
  2200. "Sort": 0
  2201. },
  2202. {
  2203. "ID": 83944,
  2204. "Word": "Mrs",
  2205. "WordRemark": null,
  2206. "Level": null,
  2207. "BookID": 197,
  2208. "LessonID": 2,
  2209. "LessonName": null,
  2210. "Soundmark": "['mISIz]",
  2211. "Translate": "夫人",
  2212. "EnglishExplanation": "",
  2213. "ExampleSentence": null,
  2214. "Sort": 0
  2215. },
  2216. {
  2217. "ID": 83945,
  2218. "Word": "early",
  2219. "WordRemark": null,
  2220. "Level": "A1",
  2221. "BookID": 197,
  2222. "LessonID": 2,
  2223. "LessonName": null,
  2224. "Soundmark": "['3:li]",
  2225. "Translate": "早到的",
  2226. "EnglishExplanation": "{\"word\":\"early\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I woke up early to watch the sunrise.\",\"Translate\":\"我早早醒来观看日出。\",\"Level\":\"A1\"},{\"Sentence\":\"The early bird catches the worm.\",\"Translate\":\"早起的鸟儿有虫吃。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made an early diagnosis of the disease.\",\"Translate\":\"研究人员对该疾病进行了早期诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's early success was largely due to its innovative products.\",\"Translate\":\"公司的早期成功在很大程度上归功于其创新的产品。\",\"Level\":\"B1\"},{\"Sentence\":\"The early 20th century saw a significant shift in the global economic landscape.\",\"Translate\":\"20世纪初,全球经济格局发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The early adopters of the new technology were mostly tech enthusiasts.\",\"Translate\":\"新技术的早期采用者大多是科技爱好者。\",\"Level\":\"C1\"}]}",
  2227. "ExampleSentence": "{\"word\":\"early\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I woke up early to watch the sunrise.\",\"Translate\":\"我早早醒来观看日出。\",\"Level\":\"A1\"},{\"Sentence\":\"The early bird catches the worm.\",\"Translate\":\"早起的鸟儿有虫吃。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made an early diagnosis of the disease.\",\"Translate\":\"研究人员对该疾病进行了早期诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's early success was largely due to its innovative products.\",\"Translate\":\"公司的早期成功在很大程度上归功于其创新的产品。\",\"Level\":\"B1\"},{\"Sentence\":\"The early 20th century saw a significant shift in the global economic landscape.\",\"Translate\":\"20世纪初,全球经济格局发生了重大变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The early adopters of the new technology were mostly tech enthusiasts.\",\"Translate\":\"新技术的早期采用者大多是科技爱好者。\",\"Level\":\"C1\"}]}",
  2228. "Sort": 0
  2229. },
  2230. {
  2231. "ID": 83946,
  2232. "Word": "helmet",
  2233. "WordRemark": null,
  2234. "Level": "A2",
  2235. "BookID": 197,
  2236. "LessonID": 2,
  2237. "LessonName": null,
  2238. "Soundmark": "[helmit]",
  2239. "Translate": "头盔",
  2240. "EnglishExplanation": "{\"word\":\"helmet\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The motorcyclist wore a helmet to protect his head.\",\"Translate\":\"骑摩托车的人戴着头盔保护头部。\",\"Level\":\"A2\"},{\"Sentence\":\"All cyclists are required to wear a helmet.\",\"Translate\":\"所有骑自行车的人都必须戴头盔。\",\"Level\":\"A2\"},{\"Sentence\":\"The firefighter's helmet was damaged in the blaze, but fortunately, it still protected his head.\",\"Translate\":\"消防员的头盔在火灾中受损,但幸运的是,它仍然保护了他的头部。\",\"Level\":\"B1\"},{\"Sentence\":\"The new helmet design provides enhanced protection for athletes in high-impact sports.\",\"Translate\":\"新的头盔设计为高冲击运动中的运动员提供了更好的保护。\",\"Level\":\"B1\"},{\"Sentence\":\"The vintage motorcycle collection included an array of helmets, each with its unique historical significance.\",\"Translate\":\"这款老式摩托车收藏品包括一系列头盔,每个头盔都有其独特的历史意义。\",\"Level\":\"C1\"},{\"Sentence\":\"The advanced helmet technology has been adopted by various professional sports teams to minimize injury risks.\",\"Translate\":\"先进的头盔技术已被多支职业运动队采用,以尽量减少受伤风险。\",\"Level\":\"C1\"}]}",
  2241. "ExampleSentence": "{\"word\":\"helmet\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The motorcyclist wore a helmet to protect his head.\",\"Translate\":\"骑摩托车的人戴着头盔保护头部。\",\"Level\":\"A2\"},{\"Sentence\":\"All cyclists are required to wear a helmet.\",\"Translate\":\"所有骑自行车的人都必须戴头盔。\",\"Level\":\"A2\"},{\"Sentence\":\"The firefighter's helmet was damaged in the blaze, but fortunately, it still protected his head.\",\"Translate\":\"消防员的头盔在火灾中受损,但幸运的是,它仍然保护了他的头部。\",\"Level\":\"B1\"},{\"Sentence\":\"The new helmet design provides enhanced protection for athletes in high-impact sports.\",\"Translate\":\"新的头盔设计为高冲击运动中的运动员提供了更好的保护。\",\"Level\":\"B1\"},{\"Sentence\":\"The vintage motorcycle collection included an array of helmets, each with its unique historical significance.\",\"Translate\":\"这款老式摩托车收藏品包括一系列头盔,每个头盔都有其独特的历史意义。\",\"Level\":\"C1\"},{\"Sentence\":\"The advanced helmet technology has been adopted by various professional sports teams to minimize injury risks.\",\"Translate\":\"先进的头盔技术已被多支职业运动队采用,以尽量减少受伤风险。\",\"Level\":\"C1\"}]}",
  2242. "Sort": 0
  2243. },
  2244. {
  2245. "ID": 83947,
  2246. "Word": "must",
  2247. "WordRemark": null,
  2248. "Level": "A2",
  2249. "BookID": 197,
  2250. "LessonID": 2,
  2251. "LessonName": null,
  2252. "Soundmark": "[mast]",
  2253. "Translate": "必须",
  2254. "EnglishExplanation": "{\"word\":\"must\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"You must try this cake, it's delicious.\",\"Translate\":\"你一定要试试这个蛋糕,非常好吃。\",\"Level\":\"A2\"},{\"Sentence\":\"She must be very tired after working all night.\",\"Translate\":\"她工作了一整夜,一定很累。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy must be implemented by the end of the month.\",\"Translate\":\"新政策必须在本月底前实施。\",\"Level\":\"B2\"},{\"Sentence\":\"The evidence must be analyzed carefully to draw a conclusion.\",\"Translate\":\"必须仔细分析证据才能得出结论。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's success must be attributed to its innovative approach.\",\"Translate\":\"公司的成功必须归功于其创新的方法。\",\"Level\":\"C1\"}]}",
  2255. "ExampleSentence": "{\"word\":\"must\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"You must try this cake, it's delicious.\",\"Translate\":\"你一定要试试这个蛋糕,非常好吃。\",\"Level\":\"A2\"},{\"Sentence\":\"She must be very tired after working all night.\",\"Translate\":\"她工作了一整夜,一定很累。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy must be implemented by the end of the month.\",\"Translate\":\"新政策必须在本月底前实施。\",\"Level\":\"B2\"},{\"Sentence\":\"The evidence must be analyzed carefully to draw a conclusion.\",\"Translate\":\"必须仔细分析证据才能得出结论。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's success must be attributed to its innovative approach.\",\"Translate\":\"公司的成功必须归功于其创新的方法。\",\"Level\":\"C1\"}]}",
  2256. "Sort": 0
  2257. },
  2258. {
  2259. "ID": 83948,
  2260. "Word": "wear",
  2261. "WordRemark": null,
  2262. "Level": "A1",
  2263. "BookID": 197,
  2264. "LessonID": 2,
  2265. "LessonName": null,
  2266. "Soundmark": "[wea(r)]",
  2267. "Translate": "戴",
  2268. "EnglishExplanation": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
  2269. "ExampleSentence": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
  2270. "Sort": 0
  2271. },
  2272. {
  2273. "ID": 83949,
  2274. "Word": "attention",
  2275. "WordRemark": null,
  2276. "Level": "A2",
  2277. "BookID": 197,
  2278. "LessonID": 2,
  2279. "LessonName": null,
  2280. "Soundmark": "[a'tenfn]",
  2281. "Translate": "注意",
  2282. "EnglishExplanation": "{\"word\":\"attention\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The teacher asked for the students' attention.\",\"Translate\":\"老师要求学生们注意听讲。\",\"Level\":\"A2\"},{\"Sentence\":\"She paid close attention to the instructions.\",\"Translate\":\"她密切关注着指示。\",\"Level\":\"A2\"},{\"Sentence\":\"The company is attracting a lot of attention with its new product.\",\"Translate\":\"这家公司的新产品吸引了很多关注。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of color drew my attention to the painting.\",\"Translate\":\"艺术家对色彩的运用吸引了我的注意力到这幅画上。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture on artificial intelligence garnered significant attention from the academic community.\",\"Translate\":\"教授关于人工智能的讲座引起了学术界的广泛关注。\",\"Level\":\"C1\"},{\"Sentence\":\"The subtle nuances in her argument demanded the audience's undivided attention.\",\"Translate\":\"她论点中的微妙之处要求观众全神贯注。\",\"Level\":\"C1\"}]}",
  2283. "ExampleSentence": "{\"word\":\"attention\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The teacher asked for the students' attention.\",\"Translate\":\"老师要求学生们注意听讲。\",\"Level\":\"A2\"},{\"Sentence\":\"She paid close attention to the instructions.\",\"Translate\":\"她密切关注着指示。\",\"Level\":\"A2\"},{\"Sentence\":\"The company is attracting a lot of attention with its new product.\",\"Translate\":\"这家公司的新产品吸引了很多关注。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of color drew my attention to the painting.\",\"Translate\":\"艺术家对色彩的运用吸引了我的注意力到这幅画上。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture on artificial intelligence garnered significant attention from the academic community.\",\"Translate\":\"教授关于人工智能的讲座引起了学术界的广泛关注。\",\"Level\":\"C1\"},{\"Sentence\":\"The subtle nuances in her argument demanded the audience's undivided attention.\",\"Translate\":\"她论点中的微妙之处要求观众全神贯注。\",\"Level\":\"C1\"}]}",
  2284. "Sort": 0
  2285. },
  2286. {
  2287. "ID": 83950,
  2288. "Word": "pay attention to",
  2289. "WordRemark": null,
  2290. "Level": null,
  2291. "BookID": 197,
  2292. "LessonID": 2,
  2293. "LessonName": null,
  2294. "Soundmark": null,
  2295. "Translate": "注意",
  2296. "EnglishExplanation": "",
  2297. "ExampleSentence": null,
  2298. "Sort": 0
  2299. },
  2300. {
  2301. "ID": 83951,
  2302. "Word": "traffic",
  2303. "WordRemark": null,
  2304. "Level": "A2",
  2305. "BookID": 197,
  2306. "LessonID": 2,
  2307. "LessonName": null,
  2308. "Soundmark": "['traefik]",
  2309. "Translate": "交通",
  2310. "EnglishExplanation": "{\"word\":\"traffic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic in the city is very heavy.\",\"Translate\":\"城市里的交通很拥堵。\",\"Level\":\"A2\"},{\"Sentence\":\"We were stuck in traffic for hours.\",\"Translate\":\"我们被堵在路上几个小时。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to reduce traffic congestion in urban areas.\",\"Translate\":\"新政策旨在减少城市地区的交通拥堵。\",\"Level\":\"B2\"},{\"Sentence\":\"The traffic management system has been upgraded to improve flow and reduce congestion.\",\"Translate\":\"交通管理系统已经升级,以改善交通流并减少拥堵。\",\"Level\":\"C1\"},{\"Sentence\":\"The city's traffic infrastructure is being revamped to accommodate the growing population.\",\"Translate\":\"城市的交通基础设施正在改造,以适应日益增长的人口。\",\"Level\":\"C1\"},{\"Sentence\":\"There was a lot of traffic on the highway.\",\"Translate\":\"高速公路上有许多交通。\",\"Level\":\"A2\"}]}",
  2311. "ExampleSentence": "{\"word\":\"traffic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The traffic in the city is very heavy.\",\"Translate\":\"城市里的交通很拥堵。\",\"Level\":\"A2\"},{\"Sentence\":\"We were stuck in traffic for hours.\",\"Translate\":\"我们被堵在路上几个小时。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to reduce traffic congestion in urban areas.\",\"Translate\":\"新政策旨在减少城市地区的交通拥堵。\",\"Level\":\"B2\"},{\"Sentence\":\"The traffic management system has been upgraded to improve flow and reduce congestion.\",\"Translate\":\"交通管理系统已经升级,以改善交通流并减少拥堵。\",\"Level\":\"C1\"},{\"Sentence\":\"The city's traffic infrastructure is being revamped to accommodate the growing population.\",\"Translate\":\"城市的交通基础设施正在改造,以适应日益增长的人口。\",\"Level\":\"C1\"},{\"Sentence\":\"There was a lot of traffic on the highway.\",\"Translate\":\"高速公路上有许多交通。\",\"Level\":\"A2\"}]}",
  2312. "Sort": 0
  2313. },
  2314. {
  2315. "ID": 83952,
  2316. "Word": "traffic lights",
  2317. "WordRemark": null,
  2318. "Level": null,
  2319. "BookID": 197,
  2320. "LessonID": 2,
  2321. "LessonName": null,
  2322. "Soundmark": null,
  2323. "Translate": "交通信号灯",
  2324. "EnglishExplanation": "",
  2325. "ExampleSentence": null,
  2326. "Sort": 0
  2327. },
  2328. {
  2329. "ID": 83953,
  2330. "Word": "Munich",
  2331. "WordRemark": null,
  2332. "Level": null,
  2333. "BookID": 197,
  2334. "LessonID": 2,
  2335. "LessonName": null,
  2336. "Soundmark": "[mjuinik]",
  2337. "Translate": "慕尼黑(德国城市)",
  2338. "EnglishExplanation": "",
  2339. "ExampleSentence": null,
  2340. "Sort": 0
  2341. },
  2342. {
  2343. "ID": 83954,
  2344. "Word": "Germany",
  2345. "WordRemark": null,
  2346. "Level": null,
  2347. "BookID": 197,
  2348. "LessonID": 2,
  2349. "LessonName": null,
  2350. "Soundmark": "['d33:mani]",
  2351. "Translate": "德国",
  2352. "EnglishExplanation": "",
  2353. "ExampleSentence": null,
  2354. "Sort": 0
  2355. },
  2356. {
  2357. "ID": 83955,
  2358. "Word": "Alaska",
  2359. "WordRemark": null,
  2360. "Level": null,
  2361. "BookID": 197,
  2362. "LessonID": 2,
  2363. "LessonName": null,
  2364. "Soundmark": "[a'laeska]",
  2365. "Translate": "阿拉斯加州(美国)",
  2366. "EnglishExplanation": "",
  2367. "ExampleSentence": null,
  2368. "Sort": 0
  2369. },
  2370. {
  2371. "ID": 83956,
  2372. "Word": "sled",
  2373. "WordRemark": null,
  2374. "Level": "B1",
  2375. "BookID": 197,
  2376. "LessonID": 2,
  2377. "LessonName": null,
  2378. "Soundmark": "[sled]",
  2379. "Translate": "雪橇",
  2380. "EnglishExplanation": "{\"word\":\"sled\",\"CEFR_Level\":\"B1\",\"Sentences\":[\n{\"Sentence\":\"The children love to sled down the hill.\",\"Translate\":\"孩子们喜欢从山坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"She sled down the snowy hill on her new sled.\",\"Translate\":\"她乘坐她的新的雪橇从雪坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"Sled racing is a popular winter sport.\",\"Translate\":\"雪橇比赛是一项流行的冬季运动。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The team practiced their sled handling skills.\",\"Translate\":\"团队练习了他们的雪橇操控技巧。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The athletes competed in the luge sled event at the Winter Olympics.\",\"Translate\":\"运动员们在冬季奥运会的单人雪橇项目中竞争。\",\"Level\":\"C1\"},\n{\"Sentence\":\"The design of the sled allowed it to reach high speeds.\",\"Translate\":\"雪橇的设计使其能够达到很高的速度。\",\"Level\":\"C1\"}\n]}",
  2381. "ExampleSentence": "{\"word\":\"sled\",\"CEFR_Level\":\"B1\",\"Sentences\":[\n{\"Sentence\":\"The children love to sled down the hill.\",\"Translate\":\"孩子们喜欢从山坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"She sled down the snowy hill on her new sled.\",\"Translate\":\"她乘坐她的新的雪橇从雪坡上滑下。\",\"Level\":\"B1\"},\n{\"Sentence\":\"Sled racing is a popular winter sport.\",\"Translate\":\"雪橇比赛是一项流行的冬季运动。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The team practiced their sled handling skills.\",\"Translate\":\"团队练习了他们的雪橇操控技巧。\",\"Level\":\"B2\"},\n{\"Sentence\":\"The athletes competed in the luge sled event at the Winter Olympics.\",\"Translate\":\"运动员们在冬季奥运会的单人雪橇项目中竞争。\",\"Level\":\"C1\"},\n{\"Sentence\":\"The design of the sled allowed it to reach high speeds.\",\"Translate\":\"雪橇的设计使其能够达到很高的速度。\",\"Level\":\"C1\"}\n]}",
  2382. "Sort": 0
  2383. },
  2384. {
  2385. "ID": 83957,
  2386. "Word": "fast",
  2387. "WordRemark": null,
  2388. "Level": "A1",
  2389. "BookID": 197,
  2390. "LessonID": 2,
  2391. "LessonName": null,
  2392. "Soundmark": "[faist]",
  2393. "Translate": "快",
  2394. "EnglishExplanation": "{\"word\":\"fast\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The car is very fast.\",\"Translate\":\"这辆车非常快。\",\"Level\":\"A1\"},{\"Sentence\":\"She runs fast.\",\"Translate\":\"她跑得很快。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is too fast to jump onto.\",\"Translate\":\"火车太快了,跳上去很危险。\",\"Level\":\"B1\"},{\"Sentence\":\"The kids were held fast by their parents.\",\"Translate\":\"孩子们被他们的父母紧紧抱住。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has fast become a leader in the industry.\",\"Translate\":\"这家公司迅速成为行业领袖。\",\"Level\":\"C1\"},{\"Sentence\":\"The two friends fast became inseparable.\",\"Translate\":\"这两个朋友很快就形影不离了。\",\"Level\":\"C1\"}]}",
  2395. "ExampleSentence": "{\"word\":\"fast\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The car is very fast.\",\"Translate\":\"这辆车非常快。\",\"Level\":\"A1\"},{\"Sentence\":\"She runs fast.\",\"Translate\":\"她跑得很快。\",\"Level\":\"A1\"},{\"Sentence\":\"The train is too fast to jump onto.\",\"Translate\":\"火车太快了,跳上去很危险。\",\"Level\":\"B1\"},{\"Sentence\":\"The kids were held fast by their parents.\",\"Translate\":\"孩子们被他们的父母紧紧抱住。\",\"Level\":\"B1\"},{\"Sentence\":\"The company has fast become a leader in the industry.\",\"Translate\":\"这家公司迅速成为行业领袖。\",\"Level\":\"C1\"},{\"Sentence\":\"The two friends fast became inseparable.\",\"Translate\":\"这两个朋友很快就形影不离了。\",\"Level\":\"C1\"}]}",
  2396. "Sort": 0
  2397. },
  2398. {
  2399. "ID": 83958,
  2400. "Word": "ferry",
  2401. "WordRemark": null,
  2402. "Level": "A2",
  2403. "BookID": 197,
  2404. "LessonID": 2,
  2405. "LessonName": null,
  2406. "Soundmark": "[feri]",
  2407. "Translate": "轮渡",
  2408. "EnglishExplanation": "{\"word\":\"ferry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We took a ferry across the river.\",\"Translate\":\"我们乘渡轮过河。\",\"Level\":\"A2\"},{\"Sentence\":\"The ferry service operates daily.\",\"Translate\":\"渡轮服务每天运营。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has expanded its ferry services to several new destinations.\",\"Translate\":\"这家公司已将其渡轮服务扩展到几个新的目的地。\",\"Level\":\"B1\"},{\"Sentence\":\"Ferry tickets can be booked online in advance.\",\"Translate\":\"渡轮票可以提前在线预订。\",\"Level\":\"B1\"},{\"Sentence\":\"The historical significance of the ferry route is well-documented.\",\"Translate\":\"这条渡轮航线的历史意义有据可查。\",\"Level\":\"C1\"},{\"Sentence\":\"Operating a ferry during a storm requires great skill and caution.\",\"Translate\":\"在暴风雨中操作渡轮需要极大的技巧和谨慎。\",\"Level\":\"C1\"}]}",
  2409. "ExampleSentence": "{\"word\":\"ferry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We took a ferry across the river.\",\"Translate\":\"我们乘渡轮过河。\",\"Level\":\"A2\"},{\"Sentence\":\"The ferry service operates daily.\",\"Translate\":\"渡轮服务每天运营。\",\"Level\":\"A2\"},{\"Sentence\":\"The company has expanded its ferry services to several new destinations.\",\"Translate\":\"这家公司已将其渡轮服务扩展到几个新的目的地。\",\"Level\":\"B1\"},{\"Sentence\":\"Ferry tickets can be booked online in advance.\",\"Translate\":\"渡轮票可以提前在线预订。\",\"Level\":\"B1\"},{\"Sentence\":\"The historical significance of the ferry route is well-documented.\",\"Translate\":\"这条渡轮航线的历史意义有据可查。\",\"Level\":\"C1\"},{\"Sentence\":\"Operating a ferry during a storm requires great skill and caution.\",\"Translate\":\"在暴风雨中操作渡轮需要极大的技巧和谨慎。\",\"Level\":\"C1\"}]}",
  2410. "Sort": 0
  2411. },
  2412. {
  2413. "ID": 83959,
  2414. "Word": "Papa Westray",
  2415. "WordRemark": null,
  2416. "Level": null,
  2417. "BookID": 197,
  2418. "LessonID": 2,
  2419. "LessonName": null,
  2420. "Soundmark": "[,paipa 'westrel]",
  2421. "Translate": "帕帕韦斯特雷岛",
  2422. "EnglishExplanation": "",
  2423. "ExampleSentence": null,
  2424. "Sort": 0
  2425. },
  2426. {
  2427. "ID": 83960,
  2428. "Word": "Scotland",
  2429. "WordRemark": null,
  2430. "Level": null,
  2431. "BookID": 197,
  2432. "LessonID": 2,
  2433. "LessonName": null,
  2434. "Soundmark": "['skptland]",
  2435. "Translate": "苏格兰",
  2436. "EnglishExplanation": "",
  2437. "ExampleSentence": null,
  2438. "Sort": 0
  2439. },
  2440. {
  2441. "ID": 83961,
  2442. "Word": "visit",
  2443. "WordRemark": null,
  2444. "Level": "A1",
  2445. "BookID": 197,
  2446. "LessonID": 3,
  2447. "LessonName": null,
  2448. "Soundmark": "['vIzit]",
  2449. "Translate": "拜访",
  2450. "EnglishExplanation": "{\"word\":\"visit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will visit my friend tomorrow.\",\"Translate\":\"我明天将拜访我的朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"She visited the museum last week.\",\"Translate\":\"她上周参观了博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The tourists visited many historical sites during their trip.\",\"Translate\":\"游客们在旅行期间参观了许多历史遗址。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will visit the factory to inspect the production line.\",\"Translate\":\"公司将参观工厂以检查生产线。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture visited the topic of climate change in great detail.\",\"Translate\":\"教授的讲座详细探讨了气候变化的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's latest installation visits the theme of identity and culture.\",\"Translate\":\"艺术家的最新装置作品探讨了身份和文化的主题。\",\"Level\":\"C1\"}]}",
  2451. "ExampleSentence": "{\"word\":\"visit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will visit my friend tomorrow.\",\"Translate\":\"我明天将拜访我的朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"She visited the museum last week.\",\"Translate\":\"她上周参观了博物馆。\",\"Level\":\"A1\"},{\"Sentence\":\"The tourists visited many historical sites during their trip.\",\"Translate\":\"游客们在旅行期间参观了许多历史遗址。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will visit the factory to inspect the production line.\",\"Translate\":\"公司将参观工厂以检查生产线。\",\"Level\":\"B1\"},{\"Sentence\":\"The professor's lecture visited the topic of climate change in great detail.\",\"Translate\":\"教授的讲座详细探讨了气候变化的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's latest installation visits the theme of identity and culture.\",\"Translate\":\"艺术家的最新装置作品探讨了身份和文化的主题。\",\"Level\":\"C1\"}]}",
  2452. "Sort": 0
  2453. },
  2454. {
  2455. "ID": 83962,
  2456. "Word": "film",
  2457. "WordRemark": null,
  2458. "Level": "A2",
  2459. "BookID": 197,
  2460. "LessonID": 3,
  2461. "LessonName": null,
  2462. "Soundmark": "[film]",
  2463. "Translate": "电影",
  2464. "EnglishExplanation": "{\"word\":\"film\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students watched a film about the history of China.\",\"Translate\":\"学生们观看了一部关于中国历史的电影。\",\"Level\":\"A2\"},{\"Sentence\":\"She has acted in several film productions.\",\"Translate\":\"她曾在几部电影制作中演出。\",\"Level\":\"B1\"},{\"Sentence\":\"The film festival featured a diverse range of international films.\",\"Translate\":\"电影节展示了各种各样的国际电影。\",\"Level\":\"B2\"},{\"Sentence\":\"The cinematographer is known for his innovative film techniques.\",\"Translate\":\"这位摄影师以其创新的电影技术而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The film was shot on location in various parts of the world.\",\"Translate\":\"这部电影是在世界各地的不同地点拍摄的。\",\"Level\":\"C1\"}]}",
  2465. "ExampleSentence": "{\"word\":\"film\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The students watched a film about the history of China.\",\"Translate\":\"学生们观看了一部关于中国历史的电影。\",\"Level\":\"A2\"},{\"Sentence\":\"She has acted in several film productions.\",\"Translate\":\"她曾在几部电影制作中演出。\",\"Level\":\"B1\"},{\"Sentence\":\"The film festival featured a diverse range of international films.\",\"Translate\":\"电影节展示了各种各样的国际电影。\",\"Level\":\"B2\"},{\"Sentence\":\"The cinematographer is known for his innovative film techniques.\",\"Translate\":\"这位摄影师以其创新的电影技术而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The film was shot on location in various parts of the world.\",\"Translate\":\"这部电影是在世界各地的不同地点拍摄的。\",\"Level\":\"C1\"}]}",
  2466. "Sort": 0
  2467. },
  2468. {
  2469. "ID": 83963,
  2470. "Word": "see a film",
  2471. "WordRemark": null,
  2472. "Level": null,
  2473. "BookID": 197,
  2474. "LessonID": 3,
  2475. "LessonName": null,
  2476. "Soundmark": null,
  2477. "Translate": "看电影",
  2478. "EnglishExplanation": "",
  2479. "ExampleSentence": null,
  2480. "Sort": 0
  2481. },
  2482. {
  2483. "ID": 83964,
  2484. "Word": "trip",
  2485. "WordRemark": null,
  2486. "Level": "A2",
  2487. "BookID": 197,
  2488. "LessonID": 3,
  2489. "LessonName": null,
  2490. "Soundmark": "[trip]",
  2491. "Translate": "旅行",
  2492. "EnglishExplanation": "{\"word\":\"trip\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The trip was fun.\",\"Translate\":\"这次旅行很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"We went on a trip to the beach.\",\"Translate\":\"我们去海滩旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The trip to Paris was more enjoyable than I expected.\",\"Translate\":\"去巴黎的旅行比我预期的更愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will trip over its own feet if it doesn't adapt to the changing market.\",\"Translate\":\"如果公司不适应不断变化的市场,它将会绊倒在自己的脚上。\",\"Level\":\"B1\"},{\"Sentence\":\"The hikers had to trip along the steep mountain path.\",\"Translate\":\"徒步旅行者不得不沿着陡峭的山路艰难行进。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy might trip up the progress of the project.\",\"Translate\":\"新政策可能会阻碍项目的进展。\",\"Level\":\"C1\"}]}",
  2493. "ExampleSentence": "{\"word\":\"trip\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The trip was fun.\",\"Translate\":\"这次旅行很有趣。\",\"Level\":\"A2\"},{\"Sentence\":\"We went on a trip to the beach.\",\"Translate\":\"我们去海滩旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The trip to Paris was more enjoyable than I expected.\",\"Translate\":\"去巴黎的旅行比我预期的更愉快。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will trip over its own feet if it doesn't adapt to the changing market.\",\"Translate\":\"如果公司不适应不断变化的市场,它将会绊倒在自己的脚上。\",\"Level\":\"B1\"},{\"Sentence\":\"The hikers had to trip along the steep mountain path.\",\"Translate\":\"徒步旅行者不得不沿着陡峭的山路艰难行进。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy might trip up the progress of the project.\",\"Translate\":\"新政策可能会阻碍项目的进展。\",\"Level\":\"C1\"}]}",
  2494. "Sort": 0
  2495. },
  2496. {
  2497. "ID": 83965,
  2498. "Word": "take a trip",
  2499. "WordRemark": null,
  2500. "Level": null,
  2501. "BookID": 197,
  2502. "LessonID": 3,
  2503. "LessonName": null,
  2504. "Soundmark": null,
  2505. "Translate": "去旅行",
  2506. "EnglishExplanation": "",
  2507. "ExampleSentence": null,
  2508. "Sort": 0
  2509. },
  2510. {
  2511. "ID": 83966,
  2512. "Word": "supermarket",
  2513. "WordRemark": null,
  2514. "Level": "A2",
  2515. "BookID": 197,
  2516. "LessonID": 3,
  2517. "LessonName": null,
  2518. "Soundmark": "['sju:pama:kit]",
  2519. "Translate": "超市",
  2520. "EnglishExplanation": "{\"word\":\"supermarket\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the supermarket to buy some milk.\",\"Translate\":\"我要去超市买些牛奶。\",\"Level\":\"A2\"},{\"Sentence\":\"The supermarket is open until 10 PM.\",\"Translate\":\"超市营业到晚上10点。\",\"Level\":\"A2\"},{\"Sentence\":\"You can find a wide range of products in a supermarket.\",\"Translate\":\"你可以在超市找到各种各样的商品。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket is having a sale on fresh produce this week.\",\"Translate\":\"超市本周正在对新鲜农产品进行促销。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket chain has expanded its operations to several countries.\",\"Translate\":\"这家超市连锁店已经将其业务扩展到多个国家。\",\"Level\":\"C1\"},{\"Sentence\":\"The supermarket's logistics and supply chain management are highly efficient.\",\"Translate\":\"超市的物流和供应链管理非常高效。\",\"Level\":\"C1\"}]}",
  2521. "ExampleSentence": "{\"word\":\"supermarket\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the supermarket to buy some milk.\",\"Translate\":\"我要去超市买些牛奶。\",\"Level\":\"A2\"},{\"Sentence\":\"The supermarket is open until 10 PM.\",\"Translate\":\"超市营业到晚上10点。\",\"Level\":\"A2\"},{\"Sentence\":\"You can find a wide range of products in a supermarket.\",\"Translate\":\"你可以在超市找到各种各样的商品。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket is having a sale on fresh produce this week.\",\"Translate\":\"超市本周正在对新鲜农产品进行促销。\",\"Level\":\"B1\"},{\"Sentence\":\"The supermarket chain has expanded its operations to several countries.\",\"Translate\":\"这家超市连锁店已经将其业务扩展到多个国家。\",\"Level\":\"C1\"},{\"Sentence\":\"The supermarket's logistics and supply chain management are highly efficient.\",\"Translate\":\"超市的物流和供应链管理非常高效。\",\"Level\":\"C1\"}]}",
  2522. "Sort": 0
  2523. },
  2524. {
  2525. "ID": 83967,
  2526. "Word": "evening",
  2527. "WordRemark": null,
  2528. "Level": "A1",
  2529. "BookID": 197,
  2530. "LessonID": 3,
  2531. "LessonName": null,
  2532. "Soundmark": "[ivnin]",
  2533. "Translate": "晚上;傍晚",
  2534. "EnglishExplanation": "{\"word\":\"evening\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will see you this evening.\",\"Translate\":\"我今晚会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The evening sun was shining brightly.\",\"Translate\":\"傍晚的阳光灿烂明亮。\",\"Level\":\"A2\"},{\"Sentence\":\"We had a lovely dinner in the evening.\",\"Translate\":\"我们在晚上享用了一顿美餐。\",\"Level\":\"B1\"},{\"Sentence\":\"The evening news is broadcast at 8 PM.\",\"Translate\":\"晚间新闻在晚上8点播出。\",\"Level\":\"B1\"},{\"Sentence\":\"The concert will take place on a warm summer evening.\",\"Translate\":\"音乐会将在一个温暖的夏夜举行。\",\"Level\":\"C1\"},{\"Sentence\":\"As the evening drew to a close, we said our goodbyes.\",\"Translate\":\"随着夜晚的结束,我们互相道别。\",\"Level\":\"C1\"}]}",
  2535. "ExampleSentence": "{\"word\":\"evening\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will see you this evening.\",\"Translate\":\"我今晚会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The evening sun was shining brightly.\",\"Translate\":\"傍晚的阳光灿烂明亮。\",\"Level\":\"A2\"},{\"Sentence\":\"We had a lovely dinner in the evening.\",\"Translate\":\"我们在晚上享用了一顿美餐。\",\"Level\":\"B1\"},{\"Sentence\":\"The evening news is broadcast at 8 PM.\",\"Translate\":\"晚间新闻在晚上8点播出。\",\"Level\":\"B1\"},{\"Sentence\":\"The concert will take place on a warm summer evening.\",\"Translate\":\"音乐会将在一个温暖的夏夜举行。\",\"Level\":\"C1\"},{\"Sentence\":\"As the evening drew to a close, we said our goodbyes.\",\"Translate\":\"随着夜晚的结束,我们互相道别。\",\"Level\":\"C1\"}]}",
  2536. "Sort": 0
  2537. },
  2538. {
  2539. "ID": 83968,
  2540. "Word": "tonight",
  2541. "WordRemark": null,
  2542. "Level": "A2",
  2543. "BookID": 197,
  2544. "LessonID": 3,
  2545. "LessonName": null,
  2546. "Soundmark": "[ta'nalt]",
  2547. "Translate": "在今晚",
  2548. "EnglishExplanation": "{\"word\":\"tonight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the party tonight.\",\"Translate\":\"我今晚要去参加聚会。\",\"Level\":\"A2\"},{\"Sentence\":\"The concert is scheduled for tonight.\",\"Translate\":\"音乐会定于今晚举行。\",\"Level\":\"A2\"},{\"Sentence\":\"We're planning a surprise for our friend tonight.\",\"Translate\":\"我们今晚正为我们的朋友计划一个惊喜。\",\"Level\":\"B1\"},{\"Sentence\":\"The forecast says there's a good chance of rain tonight.\",\"Translate\":\"天气预报说今晚很有可能下雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The debate is going to be broadcast live on television tonight, attracting a large audience.\",\"Translate\":\"今晚辩论将通过电视直播,吸引大量观众。\",\"Level\":\"C1\"},{\"Sentence\":\"Tonight's performance is expected to be the highlight of the festival, featuring renowned artists.\",\"Translate\":\"今晚的演出预计将成为音乐节的亮点,届时将有知名艺术家登台。\",\"Level\":\"C1\"}]}",
  2549. "ExampleSentence": "{\"word\":\"tonight\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I'm going to the party tonight.\",\"Translate\":\"我今晚要去参加聚会。\",\"Level\":\"A2\"},{\"Sentence\":\"The concert is scheduled for tonight.\",\"Translate\":\"音乐会定于今晚举行。\",\"Level\":\"A2\"},{\"Sentence\":\"We're planning a surprise for our friend tonight.\",\"Translate\":\"我们今晚正为我们的朋友计划一个惊喜。\",\"Level\":\"B1\"},{\"Sentence\":\"The forecast says there's a good chance of rain tonight.\",\"Translate\":\"天气预报说今晚很有可能下雨。\",\"Level\":\"B1\"},{\"Sentence\":\"The debate is going to be broadcast live on television tonight, attracting a large audience.\",\"Translate\":\"今晚辩论将通过电视直播,吸引大量观众。\",\"Level\":\"C1\"},{\"Sentence\":\"Tonight's performance is expected to be the highlight of the festival, featuring renowned artists.\",\"Translate\":\"今晚的演出预计将成为音乐节的亮点,届时将有知名艺术家登台。\",\"Level\":\"C1\"}]}",
  2550. "Sort": 0
  2551. },
  2552. {
  2553. "ID": 83969,
  2554. "Word": "tomorrow",
  2555. "WordRemark": null,
  2556. "Level": "A1",
  2557. "BookID": 197,
  2558. "LessonID": 3,
  2559. "LessonName": null,
  2560. "Soundmark": "[ta'mprou]",
  2561. "Translate": "明天",
  2562. "EnglishExplanation": "{\"word\":\"tomorrow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will go to school tomorrow.\",\"Translate\":\"我明天去学校。\",\"Level\":\"A1\"},{\"Sentence\":\"The weather forecast says it will rain tomorrow.\",\"Translate\":\"天气预报说明天会下雨。\",\"Level\":\"A1\"},{\"Sentence\":\"We are going to have a test tomorrow, so I need to study tonight.\",\"Translate\":\"我们明天有考试,所以我今晚需要学习。\",\"Level\":\"A2\"},{\"Sentence\":\"Tomorrow is another day to make new plans.\",\"Translate\":\"明天是制定新计划的又一天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will announce its quarterly earnings tomorrow, which will likely impact the stock price.\",\"Translate\":\"公司明天将公布季度收益,这可能会影响股价。\",\"Level\":\"C1\"},{\"Sentence\":\"Tomorrow's meeting will be a crucial step in negotiating the merger between the two companies.\",\"Translate\":\"明天的会议将是两家公司之间谈判合并的关键一步。\",\"Level\":\"C1\"}]}",
  2563. "ExampleSentence": "{\"word\":\"tomorrow\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will go to school tomorrow.\",\"Translate\":\"我明天去学校。\",\"Level\":\"A1\"},{\"Sentence\":\"The weather forecast says it will rain tomorrow.\",\"Translate\":\"天气预报说明天会下雨。\",\"Level\":\"A1\"},{\"Sentence\":\"We are going to have a test tomorrow, so I need to study tonight.\",\"Translate\":\"我们明天有考试,所以我今晚需要学习。\",\"Level\":\"A2\"},{\"Sentence\":\"Tomorrow is another day to make new plans.\",\"Translate\":\"明天是制定新计划的又一天。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will announce its quarterly earnings tomorrow, which will likely impact the stock price.\",\"Translate\":\"公司明天将公布季度收益,这可能会影响股价。\",\"Level\":\"C1\"},{\"Sentence\":\"Tomorrow's meeting will be a crucial step in negotiating the merger between the two companies.\",\"Translate\":\"明天的会议将是两家公司之间谈判合并的关键一步。\",\"Level\":\"C1\"}]}",
  2564. "Sort": 0
  2565. },
  2566. {
  2567. "ID": 83970,
  2568. "Word": "next week",
  2569. "WordRemark": null,
  2570. "Level": null,
  2571. "BookID": 197,
  2572. "LessonID": 3,
  2573. "LessonName": null,
  2574. "Soundmark": null,
  2575. "Translate": "下周",
  2576. "EnglishExplanation": "",
  2577. "ExampleSentence": null,
  2578. "Sort": 0
  2579. },
  2580. {
  2581. "ID": 83971,
  2582. "Word": "dictionary",
  2583. "WordRemark": null,
  2584. "Level": "A2",
  2585. "BookID": 197,
  2586. "LessonID": 3,
  2587. "LessonName": null,
  2588. "Soundmark": "['dikanri]",
  2589. "Translate": "词典",
  2590. "EnglishExplanation": "{\"word\":\"dictionary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I need a dictionary to translate this sentence.\",\"Translate\":\"我需要一本词典来翻译这句话。\",\"Level\":\"A2\"},{\"Sentence\":\"The dictionary on my desk is very useful.\",\"Translate\":\"我桌子上的词典非常有用。\",\"Level\":\"A2\"},{\"Sentence\":\"Using a dictionary can help you improve your vocabulary.\",\"Translate\":\"使用词典可以帮助你提高词汇量。\",\"Level\":\"B1\"},{\"Sentence\":\"The dictionary provides many example sentences for each word.\",\"Translate\":\"这本词典为每个单词提供了许多例句。\",\"Level\":\"B1\"},{\"Sentence\":\"The online dictionary offers a comprehensive resource for language learners.\",\"Translate\":\"在线词典为语言学习者提供了全面的资源。\",\"Level\":\"C1\"},{\"Sentence\":\"Compiling a dictionary requires a vast amount of linguistic data.\",\"Translate\":\"编纂词典需要大量的语言数据。\",\"Level\":\"C1\"}]}",
  2591. "ExampleSentence": "{\"word\":\"dictionary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I need a dictionary to translate this sentence.\",\"Translate\":\"我需要一本词典来翻译这句话。\",\"Level\":\"A2\"},{\"Sentence\":\"The dictionary on my desk is very useful.\",\"Translate\":\"我桌子上的词典非常有用。\",\"Level\":\"A2\"},{\"Sentence\":\"Using a dictionary can help you improve your vocabulary.\",\"Translate\":\"使用词典可以帮助你提高词汇量。\",\"Level\":\"B1\"},{\"Sentence\":\"The dictionary provides many example sentences for each word.\",\"Translate\":\"这本词典为每个单词提供了许多例句。\",\"Level\":\"B1\"},{\"Sentence\":\"The online dictionary offers a comprehensive resource for language learners.\",\"Translate\":\"在线词典为语言学习者提供了全面的资源。\",\"Level\":\"C1\"},{\"Sentence\":\"Compiling a dictionary requires a vast amount of linguistic data.\",\"Translate\":\"编纂词典需要大量的语言数据。\",\"Level\":\"C1\"}]}",
  2592. "Sort": 0
  2593. },
  2594. {
  2595. "ID": 83972,
  2596. "Word": "comic",
  2597. "WordRemark": null,
  2598. "Level": "A2",
  2599. "BookID": 197,
  2600. "LessonID": 3,
  2601. "LessonName": null,
  2602. "Soundmark": "[kpmik]",
  2603. "Translate": "滑稽的",
  2604. "EnglishExplanation": "{\"word\":\"comic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The comic book was very popular among children.\",\"Translate\":\"这本漫画书在孩子们中很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"He is a famous comic actor.\",\"Translate\":\"他是一位著名的喜剧演员。\",\"Level\":\"A2\"},{\"Sentence\":\"The comic strip in the newspaper is always entertaining.\",\"Translate\":\"报纸上的连环漫画总是很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The comic relief in the movie was well-received.\",\"Translate\":\"电影中的喜剧缓解很受欢迎。\",\"Level\":\"B1\"},{\"Sentence\":\"The comedian's comic timing was impeccable.\",\"Translate\":\"这位喜剧演员的喜剧时机无可挑剔。\",\"Level\":\"C1\"},{\"Sentence\":\"The graphic novel is a complex comic narrative.\",\"Translate\":\"这部图形小说是一个复杂的漫画叙事。\",\"Level\":\"C1\"}]}",
  2605. "ExampleSentence": "{\"word\":\"comic\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The comic book was very popular among children.\",\"Translate\":\"这本漫画书在孩子们中很受欢迎。\",\"Level\":\"A2\"},{\"Sentence\":\"He is a famous comic actor.\",\"Translate\":\"他是一位著名的喜剧演员。\",\"Level\":\"A2\"},{\"Sentence\":\"The comic strip in the newspaper is always entertaining.\",\"Translate\":\"报纸上的连环漫画总是很有趣。\",\"Level\":\"B1\"},{\"Sentence\":\"The comic relief in the movie was well-received.\",\"Translate\":\"电影中的喜剧缓解很受欢迎。\",\"Level\":\"B1\"},{\"Sentence\":\"The comedian's comic timing was impeccable.\",\"Translate\":\"这位喜剧演员的喜剧时机无可挑剔。\",\"Level\":\"C1\"},{\"Sentence\":\"The graphic novel is a complex comic narrative.\",\"Translate\":\"这部图形小说是一个复杂的漫画叙事。\",\"Level\":\"C1\"}]}",
  2606. "Sort": 0
  2607. },
  2608. {
  2609. "ID": 83973,
  2610. "Word": "comic book",
  2611. "WordRemark": null,
  2612. "Level": null,
  2613. "BookID": 197,
  2614. "LessonID": 3,
  2615. "LessonName": null,
  2616. "Soundmark": null,
  2617. "Translate": "连环画册",
  2618. "EnglishExplanation": "",
  2619. "ExampleSentence": null,
  2620. "Sort": 0
  2621. },
  2622. {
  2623. "ID": 83974,
  2624. "Word": "word",
  2625. "WordRemark": null,
  2626. "Level": "B1",
  2627. "BookID": 197,
  2628. "LessonID": 3,
  2629. "LessonName": null,
  2630. "Soundmark": "[w3:d]",
  2631. "Translate": "单词",
  2632. "EnglishExplanation": "{\"word\":\"experience\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"She has a lot of experience in teaching English.\",\"Translate\":\"她有丰富的英语教学经验。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is looking for someone with experience in marketing.\",\"Translate\":\"公司正在寻找有市场营销经验的人。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been shaped by our experience of dealing with similar issues in the past.\",\"Translate\":\"新政策的制定受到了我们过去处理类似问题的经验的影响。\",\"Level\":\"B2\"},{\"Sentence\":\"Gaining experience in different fields can broaden one's perspective.\",\"Translate\":\"在不同领域积累经验可以拓宽人的视野。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's extensive experience in research has led to numerous groundbreaking discoveries.\",\"Translate\":\"教授在研究方面的丰富经验带来了许多开创性的发现。\",\"Level\":\"C1\"},{\"Sentence\":\"The experience of living abroad can be both challenging and enriching.\",\"Translate\":\"在国外生活的经历既具有挑战性,又能丰富个人阅历。\",\"Level\":\"C1\"}]}",
  2633. "ExampleSentence": "{\"word\":\"experience\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"She has a lot of experience in teaching English.\",\"Translate\":\"她有丰富的英语教学经验。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is looking for someone with experience in marketing.\",\"Translate\":\"公司正在寻找有市场营销经验的人。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been shaped by our experience of dealing with similar issues in the past.\",\"Translate\":\"新政策的制定受到了我们过去处理类似问题的经验的影响。\",\"Level\":\"B2\"},{\"Sentence\":\"Gaining experience in different fields can broaden one's perspective.\",\"Translate\":\"在不同领域积累经验可以拓宽人的视野。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's extensive experience in research has led to numerous groundbreaking discoveries.\",\"Translate\":\"教授在研究方面的丰富经验带来了许多开创性的发现。\",\"Level\":\"C1\"},{\"Sentence\":\"The experience of living abroad can be both challenging and enriching.\",\"Translate\":\"在国外生活的经历既具有挑战性,又能丰富个人阅历。\",\"Level\":\"C1\"}]}",
  2634. "Sort": 0
  2635. },
  2636. {
  2637. "ID": 83975,
  2638. "Word": "word book",
  2639. "WordRemark": null,
  2640. "Level": null,
  2641. "BookID": 197,
  2642. "LessonID": 3,
  2643. "LessonName": null,
  2644. "Soundmark": null,
  2645. "Translate": "单词书",
  2646. "EnglishExplanation": "",
  2647. "ExampleSentence": null,
  2648. "Sort": 0
  2649. },
  2650. {
  2651. "ID": 83976,
  2652. "Word": "postcard",
  2653. "WordRemark": null,
  2654. "Level": "A1",
  2655. "BookID": 197,
  2656. "LessonID": 3,
  2657. "LessonName": null,
  2658. "Soundmark": "[paustkaid]",
  2659. "Translate": "明信片",
  2660. "EnglishExplanation": "{\"word\":\"postcard\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I bought a postcard of the Great Wall.\",\"Translate\":\"我买了一张长城的明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"She sent me a postcard from Paris.\",\"Translate\":\"她从巴黎寄给我一张明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"The postcard has a beautiful picture of the beach.\",\"Translate\":\"这张明信片有一张美丽的海滩图片。\",\"Level\":\"A2\"},{\"Sentence\":\"I like to collect postcards from different countries.\",\"Translate\":\"我喜欢收集来自不同国家的明信片。\",\"Level\":\"A2\"},{\"Sentence\":\"The museum gift shop sells postcards with famous paintings.\",\"Translate\":\"博物馆礼品店出售印有著名画作的明信片。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a detailed message on the back of the postcard.\",\"Translate\":\"她在明信片的背面写了一条详细的信息。\",\"Level\":\"B1\"},{\"Sentence\":\"The postcard industry has seen a resurgence with the rise of tourism.\",\"Translate\":\"随着旅游业的兴起,明信片行业经历了复兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's postcards were highly sought after by collectors.\",\"Translate\":\"艺术家的明信片受到收藏家的高度追捧。\",\"Level\":\"C1\"}]}",
  2661. "ExampleSentence": "{\"word\":\"postcard\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I bought a postcard of the Great Wall.\",\"Translate\":\"我买了一张长城的明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"She sent me a postcard from Paris.\",\"Translate\":\"她从巴黎寄给我一张明信片。\",\"Level\":\"A1\"},{\"Sentence\":\"The postcard has a beautiful picture of the beach.\",\"Translate\":\"这张明信片有一张美丽的海滩图片。\",\"Level\":\"A2\"},{\"Sentence\":\"I like to collect postcards from different countries.\",\"Translate\":\"我喜欢收集来自不同国家的明信片。\",\"Level\":\"A2\"},{\"Sentence\":\"The museum gift shop sells postcards with famous paintings.\",\"Translate\":\"博物馆礼品店出售印有著名画作的明信片。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a detailed message on the back of the postcard.\",\"Translate\":\"她在明信片的背面写了一条详细的信息。\",\"Level\":\"B1\"},{\"Sentence\":\"The postcard industry has seen a resurgence with the rise of tourism.\",\"Translate\":\"随着旅游业的兴起,明信片行业经历了复兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's postcards were highly sought after by collectors.\",\"Translate\":\"艺术家的明信片受到收藏家的高度追捧。\",\"Level\":\"C1\"}]}",
  2662. "Sort": 0
  2663. },
  2664. {
  2665. "ID": 83977,
  2666. "Word": "lesson",
  2667. "WordRemark": null,
  2668. "Level": "A1",
  2669. "BookID": 197,
  2670. "LessonID": 3,
  2671. "LessonName": null,
  2672. "Soundmark": "[lesn]",
  2673. "Translate": "课",
  2674. "EnglishExplanation": "{\"word\":\"lesson\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Today we learned a new lesson.\",\"Translate\":\"今天我们学了一个新课程。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us a lot of homework for the next lesson.\",\"Translate\":\"老师给我们布置了许多作业,留到下节课。\",\"Level\":\"A1\"},{\"Sentence\":\"She's been having piano lessons for three years.\",\"Translate\":\"她已经上钢琴课三年了。\",\"Level\":\"B1\"},{\"Sentence\":\"The accident taught me a valuable lesson about road safety.\",\"Translate\":\"那次事故让我学到了关于道路安全的一个宝贵教训。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial struggles served as a lesson to its competitors about the importance of diversification.\",\"Translate\":\"该公司的财务困境对竞争对手来说是一个关于多元化重要性的教训。\",\"Level\":\"C1\"},{\"Sentence\":\"The historical event provided a sobering lesson in the dangers of unchecked nationalism.\",\"Translate\":\"这段历史事件给人们敲响了警钟,提醒人们注意不受制约的民族主义的危险。\",\"Level\":\"C1\"}]}",
  2675. "ExampleSentence": "{\"word\":\"lesson\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Today we learned a new lesson.\",\"Translate\":\"今天我们学了一个新课程。\",\"Level\":\"A1\"},{\"Sentence\":\"The teacher gave us a lot of homework for the next lesson.\",\"Translate\":\"老师给我们布置了许多作业,留到下节课。\",\"Level\":\"A1\"},{\"Sentence\":\"She's been having piano lessons for three years.\",\"Translate\":\"她已经上钢琴课三年了。\",\"Level\":\"B1\"},{\"Sentence\":\"The accident taught me a valuable lesson about road safety.\",\"Translate\":\"那次事故让我学到了关于道路安全的一个宝贵教训。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial struggles served as a lesson to its competitors about the importance of diversification.\",\"Translate\":\"该公司的财务困境对竞争对手来说是一个关于多元化重要性的教训。\",\"Level\":\"C1\"},{\"Sentence\":\"The historical event provided a sobering lesson in the dangers of unchecked nationalism.\",\"Translate\":\"这段历史事件给人们敲响了警钟,提醒人们注意不受制约的民族主义的危险。\",\"Level\":\"C1\"}]}",
  2676. "Sort": 0
  2677. },
  2678. {
  2679. "ID": 83978,
  2680. "Word": "space",
  2681. "WordRemark": null,
  2682. "Level": "A2",
  2683. "BookID": 197,
  2684. "LessonID": 3,
  2685. "LessonName": null,
  2686. "Soundmark": "[speis]",
  2687. "Translate": "太空",
  2688. "EnglishExplanation": "{\"word\":\"space\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"There is a lot of space in this room.\",\"Translate\":\"这个房间里有很多空间。\",\"Level\":\"A2\"},{\"Sentence\":\"Can you give me some space?\",\"Translate\":\"你能给我一些空间吗?\",\"Level\":\"A2\"},{\"Sentence\":\"The company is looking to expand into new markets and create more space for growth.\",\"Translate\":\"公司正在寻找扩展到新的市场并为增长创造更多空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to create a more comfortable space for employees to work.\",\"Translate\":\"新政策旨在为员工创造一个更舒适的工作空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of negative space in the painting created a sense of depth and complexity.\",\"Translate\":\"艺术家在画作中使用负空间创造了一种深度和复杂感。\",\"Level\":\"C1\"},{\"Sentence\":\"The futuristic city was designed with a focus on green space and sustainable living.\",\"Translate\":\"这座未来主义城市的设计注重绿色空间和可持续生活。\",\"Level\":\"C1\"}]}",
  2689. "ExampleSentence": "{\"word\":\"space\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"There is a lot of space in this room.\",\"Translate\":\"这个房间里有很多空间。\",\"Level\":\"A2\"},{\"Sentence\":\"Can you give me some space?\",\"Translate\":\"你能给我一些空间吗?\",\"Level\":\"A2\"},{\"Sentence\":\"The company is looking to expand into new markets and create more space for growth.\",\"Translate\":\"公司正在寻找扩展到新的市场并为增长创造更多空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy aims to create a more comfortable space for employees to work.\",\"Translate\":\"新政策旨在为员工创造一个更舒适的工作空间。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's use of negative space in the painting created a sense of depth and complexity.\",\"Translate\":\"艺术家在画作中使用负空间创造了一种深度和复杂感。\",\"Level\":\"C1\"},{\"Sentence\":\"The futuristic city was designed with a focus on green space and sustainable living.\",\"Translate\":\"这座未来主义城市的设计注重绿色空间和可持续生活。\",\"Level\":\"C1\"}]}",
  2690. "Sort": 0
  2691. },
  2692. {
  2693. "ID": 83979,
  2694. "Word": "travel",
  2695. "WordRemark": null,
  2696. "Level": "A2",
  2697. "BookID": 197,
  2698. "LessonID": 3,
  2699. "LessonName": null,
  2700. "Soundmark": "[traevl]",
  2701. "Translate": "(尤指长途)旅行",
  2702. "EnglishExplanation": "{\"word\":\"travel\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I love to travel during my vacation.\",\"Translate\":\"我喜欢在假期旅行。\",\"Level\":\"A2\"},{\"Sentence\":\"She has traveled to many countries.\",\"Translate\":\"她已经去过很多国家了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy will facilitate travel between the two countries.\",\"Translate\":\"新政策将促进两国之间的旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"As a travel writer, she has traveled extensively throughout her career.\",\"Translate\":\"作为一名旅行作家,她在职业生涯中广泛旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"The travel industry is expected to recover slowly after the pandemic.\",\"Translate\":\"预计旅游业将在疫情后缓慢复苏。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's travel expenses were scrutinized by the auditors.\",\"Translate\":\"公司的差旅费被审计人员仔细审查。\",\"Level\":\"C1\"}]}",
  2703. "ExampleSentence": "{\"word\":\"travel\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I love to travel during my vacation.\",\"Translate\":\"我喜欢在假期旅行。\",\"Level\":\"A2\"},{\"Sentence\":\"She has traveled to many countries.\",\"Translate\":\"她已经去过很多国家了。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy will facilitate travel between the two countries.\",\"Translate\":\"新政策将促进两国之间的旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"As a travel writer, she has traveled extensively throughout her career.\",\"Translate\":\"作为一名旅行作家,她在职业生涯中广泛旅行。\",\"Level\":\"B2\"},{\"Sentence\":\"The travel industry is expected to recover slowly after the pandemic.\",\"Translate\":\"预计旅游业将在疫情后缓慢复苏。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's travel expenses were scrutinized by the auditors.\",\"Translate\":\"公司的差旅费被审计人员仔细审查。\",\"Level\":\"C1\"}]}",
  2704. "Sort": 0
  2705. },
  2706. {
  2707. "ID": 83980,
  2708. "Word": "half",
  2709. "WordRemark": null,
  2710. "Level": "A1",
  2711. "BookID": 197,
  2712. "LessonID": 3,
  2713. "LessonName": null,
  2714. "Soundmark": "[haif]",
  2715. "Translate": "一半",
  2716. "EnglishExplanation": "{\"word\":\"half\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bottle is half empty.\",\"Translate\":\"瓶子一半是空的。\",\"Level\":\"A1\"},{\"Sentence\":\"She ate half of the pizza.\",\"Translate\":\"她吃了披萨的一半。\",\"Level\":\"A1\"},{\"Sentence\":\"The cake is cut into halves.\",\"Translate\":\"蛋糕被切成两半。\",\"Level\":\"B1\"},{\"Sentence\":\"The team won by half a point.\",\"Translate\":\"这个队伍以半分的优势获胜。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have halved in the last quarter.\",\"Translate\":\"公司的利润在上个季度减少了一半。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been met with half-hearted support from the community.\",\"Translate\":\"新政策得到了社区不热烈的支持。\",\"Level\":\"C1\"}]}",
  2717. "ExampleSentence": "{\"word\":\"half\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The bottle is half empty.\",\"Translate\":\"瓶子一半是空的。\",\"Level\":\"A1\"},{\"Sentence\":\"She ate half of the pizza.\",\"Translate\":\"她吃了披萨的一半。\",\"Level\":\"A1\"},{\"Sentence\":\"The cake is cut into halves.\",\"Translate\":\"蛋糕被切成两半。\",\"Level\":\"B1\"},{\"Sentence\":\"The team won by half a point.\",\"Translate\":\"这个队伍以半分的优势获胜。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's profits have halved in the last quarter.\",\"Translate\":\"公司的利润在上个季度减少了一半。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has been met with half-hearted support from the community.\",\"Translate\":\"新政策得到了社区不热烈的支持。\",\"Level\":\"C1\"}]}",
  2718. "Sort": 0
  2719. },
  2720. {
  2721. "ID": 83981,
  2722. "Word": "price",
  2723. "WordRemark": null,
  2724. "Level": "A1",
  2725. "BookID": 197,
  2726. "LessonID": 3,
  2727. "LessonName": null,
  2728. "Soundmark": "[prais]",
  2729. "Translate": "价格",
  2730. "EnglishExplanation": "{\"word\":\"price\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The price of this book is 20 dollars.\",\"Translate\":\"这本书的价格是20美元。\",\"Level\":\"A1\"},{\"Sentence\":\"I need to check the price before I buy it.\",\"Translate\":\"在购买之前,我需要查看价格。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will increase the price of their products next month.\",\"Translate\":\"公司将在下个月提高产品的价格。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of oil has fluctuated significantly over the past year.\",\"Translate\":\"过去一年,石油价格波动很大。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of success is often hard work and dedication.\",\"Translate\":\"成功的代价往往是辛勤的工作和奉献。\",\"Level\":\"C1\"},{\"Sentence\":\"The art market is known for its volatile price movements.\",\"Translate\":\"艺术品市场以其价格波动剧烈而闻名。\",\"Level\":\"C1\"}]}",
  2731. "ExampleSentence": "{\"word\":\"price\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The price of this book is 20 dollars.\",\"Translate\":\"这本书的价格是20美元。\",\"Level\":\"A1\"},{\"Sentence\":\"I need to check the price before I buy it.\",\"Translate\":\"在购买之前,我需要查看价格。\",\"Level\":\"A1\"},{\"Sentence\":\"The company will increase the price of their products next month.\",\"Translate\":\"公司将在下个月提高产品的价格。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of oil has fluctuated significantly over the past year.\",\"Translate\":\"过去一年,石油价格波动很大。\",\"Level\":\"B1\"},{\"Sentence\":\"The price of success is often hard work and dedication.\",\"Translate\":\"成功的代价往往是辛勤的工作和奉献。\",\"Level\":\"C1\"},{\"Sentence\":\"The art market is known for its volatile price movements.\",\"Translate\":\"艺术品市场以其价格波动剧烈而闻名。\",\"Level\":\"C1\"}]}",
  2732. "Sort": 0
  2733. },
  2734. {
  2735. "ID": 83982,
  2736. "Word": "Mid-Autumn Festival",
  2737. "WordRemark": null,
  2738. "Level": null,
  2739. "BookID": 197,
  2740. "LessonID": 3,
  2741. "LessonName": null,
  2742. "Soundmark": "[mid's:tam'festivl]",
  2743. "Translate": "中秋节",
  2744. "EnglishExplanation": "",
  2745. "ExampleSentence": null,
  2746. "Sort": 0
  2747. },
  2748. {
  2749. "ID": 83983,
  2750. "Word": "together",
  2751. "WordRemark": null,
  2752. "Level": "A1",
  2753. "BookID": 197,
  2754. "LessonID": 3,
  2755. "LessonName": null,
  2756. "Soundmark": "[ta'geoa(r)]",
  2757. "Translate": "一起",
  2758. "EnglishExplanation": "{\"word\":\"together\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"We are going to the movies together.\",\"Translate\":\"我们要一起去看电影。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's put the pieces together to see the whole picture.\",\"Translate\":\"让我们把这些碎片拼在一起看看全貌。\",\"Level\":\"A2\"},{\"Sentence\":\"The team worked together seamlessly to complete the project ahead of schedule.\",\"Translate\":\"团队合作无间,提前完成了项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The two companies are working together to develop a new technology.\",\"Translate\":\"两家公司正在合作开发一项新技术。\",\"Level\":\"B1\"},{\"Sentence\":\"As they grew together, their bond became unbreakable.\",\"Translate\":\"随着他们一起成长,他们的纽带变得牢不可破。\",\"Level\":\"C1\"},{\"Sentence\":\"The community came together to support the family in need.\",\"Translate\":\"社区团结起来支持需要帮助的家庭。\",\"Level\":\"C1\"}]}",
  2759. "ExampleSentence": "{\"word\":\"together\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"We are going to the movies together.\",\"Translate\":\"我们要一起去看电影。\",\"Level\":\"A1\"},{\"Sentence\":\"Let's put the pieces together to see the whole picture.\",\"Translate\":\"让我们把这些碎片拼在一起看看全貌。\",\"Level\":\"A2\"},{\"Sentence\":\"The team worked together seamlessly to complete the project ahead of schedule.\",\"Translate\":\"团队合作无间,提前完成了项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The two companies are working together to develop a new technology.\",\"Translate\":\"两家公司正在合作开发一项新技术。\",\"Level\":\"B1\"},{\"Sentence\":\"As they grew together, their bond became unbreakable.\",\"Translate\":\"随着他们一起成长,他们的纽带变得牢不可破。\",\"Level\":\"C1\"},{\"Sentence\":\"The community came together to support the family in need.\",\"Translate\":\"社区团结起来支持需要帮助的家庭。\",\"Level\":\"C1\"}]}",
  2760. "Sort": 0
  2761. },
  2762. {
  2763. "ID": 83984,
  2764. "Word": "get together",
  2765. "WordRemark": null,
  2766. "Level": null,
  2767. "BookID": 197,
  2768. "LessonID": 3,
  2769. "LessonName": null,
  2770. "Soundmark": null,
  2771. "Translate": "聚会",
  2772. "EnglishExplanation": "",
  2773. "ExampleSentence": null,
  2774. "Sort": 0
  2775. },
  2776. {
  2777. "ID": 83985,
  2778. "Word": "mooncake",
  2779. "WordRemark": null,
  2780. "Level": null,
  2781. "BookID": 197,
  2782. "LessonID": 3,
  2783. "LessonName": null,
  2784. "Soundmark": null,
  2785. "Translate": "月饼",
  2786. "EnglishExplanation": "",
  2787. "ExampleSentence": null,
  2788. "Sort": 0
  2789. },
  2790. {
  2791. "ID": 83986,
  2792. "Word": "poem",
  2793. "WordRemark": null,
  2794. "Level": "B1",
  2795. "BookID": 197,
  2796. "LessonID": 3,
  2797. "LessonName": null,
  2798. "Soundmark": "['pauim]",
  2799. "Translate": "诗",
  2800. "EnglishExplanation": "{\"word\":\"poem\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The student recited a beautiful poem in class.\",\"Translate\":\"那个学生在课堂上朗诵了一首美丽的诗。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a poem for her mother's birthday.\",\"Translate\":\"她为母亲的生日写了一首诗。\",\"Level\":\"B1\"},{\"Sentence\":\"The poet's use of imagery in the poem was striking.\",\"Translate\":\"诗人诗中使用的意象非常引人注目。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem explores themes of love and loss.\",\"Translate\":\"这首诗探讨了爱与失去的主题。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem's complex structure and symbolism require close reading.\",\"Translate\":\"这首诗复杂的结构和象征手法需要细读。\",\"Level\":\"C1\"},{\"Sentence\":\"The poet's use of metaphor in the poem adds layers of meaning.\",\"Translate\":\"诗人诗中使用的隐喻增加了多层含义。\",\"Level\":\"C1\"}]}",
  2801. "ExampleSentence": "{\"word\":\"poem\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The student recited a beautiful poem in class.\",\"Translate\":\"那个学生在课堂上朗诵了一首美丽的诗。\",\"Level\":\"B1\"},{\"Sentence\":\"She wrote a poem for her mother's birthday.\",\"Translate\":\"她为母亲的生日写了一首诗。\",\"Level\":\"B1\"},{\"Sentence\":\"The poet's use of imagery in the poem was striking.\",\"Translate\":\"诗人诗中使用的意象非常引人注目。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem explores themes of love and loss.\",\"Translate\":\"这首诗探讨了爱与失去的主题。\",\"Level\":\"B2\"},{\"Sentence\":\"The poem's complex structure and symbolism require close reading.\",\"Translate\":\"这首诗复杂的结构和象征手法需要细读。\",\"Level\":\"C1\"},{\"Sentence\":\"The poet's use of metaphor in the poem adds layers of meaning.\",\"Translate\":\"诗人诗中使用的隐喻增加了多层含义。\",\"Level\":\"C1\"}]}",
  2802. "Sort": 0
  2803. },
  2804. {
  2805. "ID": 83987,
  2806. "Word": "moon",
  2807. "WordRemark": null,
  2808. "Level": "A1",
  2809. "BookID": 197,
  2810. "LessonID": 3,
  2811. "LessonName": null,
  2812. "Soundmark": "[muin]",
  2813. "Translate": "月亮",
  2814. "EnglishExplanation": "{\"word\":\"moon\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The moon is shining brightly in the night sky.\",\"Translate\":\"月亮在夜空中闪耀着明亮的光芒。\",\"Level\":\"A1\"},{\"Sentence\":\"The astronauts walked on the moon during their mission.\",\"Translate\":\"宇航员在任务期间在月球上行走。\",\"Level\":\"A2\"},{\"Sentence\":\"The moon orbits the Earth in approximately 28 days.\",\"Translate\":\"月球大约每28天绕地球一圈。\",\"Level\":\"B1\"},{\"Sentence\":\"The full moon has a profound effect on the tides.\",\"Translate\":\"满月对潮汐有着深远的影响。\",\"Level\":\"B1\"},{\"Sentence\":\"The moon's surface is characterized by numerous craters and mountains.\",\"Translate\":\"月球表面以众多的陨石坑和山脉为特征。\",\"Level\":\"C1\"},{\"Sentence\":\"The moon's gravitational influence on the Earth is significant.\",\"Translate\":\"月球对地球的引力影响是显著的。\",\"Level\":\"C1\"}]}",
  2815. "ExampleSentence": "{\"word\":\"moon\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The moon is shining brightly in the night sky.\",\"Translate\":\"月亮在夜空中闪耀着明亮的光芒。\",\"Level\":\"A1\"},{\"Sentence\":\"The astronauts walked on the moon during their mission.\",\"Translate\":\"宇航员在任务期间在月球上行走。\",\"Level\":\"A2\"},{\"Sentence\":\"The moon orbits the Earth in approximately 28 days.\",\"Translate\":\"月球大约每28天绕地球一圈。\",\"Level\":\"B1\"},{\"Sentence\":\"The full moon has a profound effect on the tides.\",\"Translate\":\"满月对潮汐有着深远的影响。\",\"Level\":\"B1\"},{\"Sentence\":\"The moon's surface is characterized by numerous craters and mountains.\",\"Translate\":\"月球表面以众多的陨石坑和山脉为特征。\",\"Level\":\"C1\"},{\"Sentence\":\"The moon's gravitational influence on the Earth is significant.\",\"Translate\":\"月球对地球的引力影响是显著的。\",\"Level\":\"C1\"}]}",
  2816. "Sort": 0
  2817. },
  2818. {
  2819. "ID": 83988,
  2820. "Word": "studies",
  2821. "WordRemark": null,
  2822. "Level": null,
  2823. "BookID": 197,
  2824. "LessonID": 4,
  2825. "LessonName": null,
  2826. "Soundmark": "['stadizl]",
  2827. "Translate": "学习(三单)",
  2828. "EnglishExplanation": "",
  2829. "ExampleSentence": null,
  2830. "Sort": 0
  2831. },
  2832. {
  2833. "ID": 83989,
  2834. "Word": "puzzle",
  2835. "WordRemark": null,
  2836. "Level": "B1",
  2837. "BookID": 197,
  2838. "LessonID": 4,
  2839. "LessonName": null,
  2840. "Soundmark": "['pAzl]",
  2841. "Translate": "谜",
  2842. "EnglishExplanation": "{\"word\":\"puzzle\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The teacher gave the students a puzzle to solve in their free time.\",\"Translate\":\"老师给学生一个谜题,让他们在空闲时间解开。\",\"Level\":\"B1\"},{\"Sentence\":\"She spent hours trying to complete the jigsaw puzzle.\",\"Translate\":\"她花了几个小时试图完成这个拼图游戏。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was faced with a complex puzzle that required careful analysis.\",\"Translate\":\"侦探面临一个复杂的谜题,需要仔细分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The escape room presented a challenging puzzle that the team worked together to solve.\",\"Translate\":\"逃脱室提供了一个具有挑战性的谜题,团队一起合作解决。\",\"Level\":\"B2\"},{\"Sentence\":\"The cryptic message was a puzzle that required a deep understanding of cryptography.\",\"Translate\":\"这个神秘的信息是一个谜题,需要对密码学有深入的了解。\",\"Level\":\"C1\"},{\"Sentence\":\"The professor's research presented a puzzle that had stumped experts for decades.\",\"Translate\":\"教授的研究提出了一个谜题,几十年来一直难倒专家。\",\"Level\":\"C1\"}]}",
  2843. "ExampleSentence": "{\"word\":\"puzzle\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The teacher gave the students a puzzle to solve in their free time.\",\"Translate\":\"老师给学生一个谜题,让他们在空闲时间解开。\",\"Level\":\"B1\"},{\"Sentence\":\"She spent hours trying to complete the jigsaw puzzle.\",\"Translate\":\"她花了几个小时试图完成这个拼图游戏。\",\"Level\":\"B1\"},{\"Sentence\":\"The detective was faced with a complex puzzle that required careful analysis.\",\"Translate\":\"侦探面临一个复杂的谜题,需要仔细分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The escape room presented a challenging puzzle that the team worked together to solve.\",\"Translate\":\"逃脱室提供了一个具有挑战性的谜题,团队一起合作解决。\",\"Level\":\"B2\"},{\"Sentence\":\"The cryptic message was a puzzle that required a deep understanding of cryptography.\",\"Translate\":\"这个神秘的信息是一个谜题,需要对密码学有深入的了解。\",\"Level\":\"C1\"},{\"Sentence\":\"The professor's research presented a puzzle that had stumped experts for decades.\",\"Translate\":\"教授的研究提出了一个谜题,几十年来一直难倒专家。\",\"Level\":\"C1\"}]}",
  2844. "Sort": 0
  2845. },
  2846. {
  2847. "ID": 83990,
  2848. "Word": "hiking",
  2849. "WordRemark": null,
  2850. "Level": "A2",
  2851. "BookID": 197,
  2852. "LessonID": 4,
  2853. "LessonName": null,
  2854. "Soundmark": "[halkin]",
  2855. "Translate": "远足",
  2856. "EnglishExplanation": "{\"word\":\"hiking\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We went hiking in the mountains last weekend.\",\"Translate\":\"上周末我们去山区徒步旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The hiking trail was challenging but the views were breathtaking.\",\"Translate\":\"徒步小径很有挑战性,但景色令人屏息。\",\"Level\":\"B1\"},{\"Sentence\":\"Having spent years hiking through various terrains, she has developed a keen sense of navigation.\",\"Translate\":\"多年来徒步于各种地形,她培养了敏锐的导航能力。\",\"Level\":\"B2\"},{\"Sentence\":\"The hiking expedition to the remote wilderness area required meticulous planning and physical endurance.\",\"Translate\":\"前往偏远荒野地区的徒步考察需要缜密的计划和身体的耐力。\",\"Level\":\"C1\"},{\"Sentence\":\"The hikers traversed the dense forest with the aid of a compass and topographical maps.\",\"Translate\":\"徒步者借助指南针和地形图穿越了茂密的森林。\",\"Level\":\"C1\"}]}",
  2857. "ExampleSentence": "{\"word\":\"hiking\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We went hiking in the mountains last weekend.\",\"Translate\":\"上周末我们去山区徒步旅行了。\",\"Level\":\"A2\"},{\"Sentence\":\"The hiking trail was challenging but the views were breathtaking.\",\"Translate\":\"徒步小径很有挑战性,但景色令人屏息。\",\"Level\":\"B1\"},{\"Sentence\":\"Having spent years hiking through various terrains, she has developed a keen sense of navigation.\",\"Translate\":\"多年来徒步于各种地形,她培养了敏锐的导航能力。\",\"Level\":\"B2\"},{\"Sentence\":\"The hiking expedition to the remote wilderness area required meticulous planning and physical endurance.\",\"Translate\":\"前往偏远荒野地区的徒步考察需要缜密的计划和身体的耐力。\",\"Level\":\"C1\"},{\"Sentence\":\"The hikers traversed the dense forest with the aid of a compass and topographical maps.\",\"Translate\":\"徒步者借助指南针和地形图穿越了茂密的森林。\",\"Level\":\"C1\"}]}",
  2858. "Sort": 0
  2859. },
  2860. {
  2861. "ID": 83991,
  2862. "Word": "pen pal",
  2863. "WordRemark": null,
  2864. "Level": null,
  2865. "BookID": 197,
  2866. "LessonID": 4,
  2867. "LessonName": null,
  2868. "Soundmark": "['pen pael]",
  2869. "Translate": "笔友",
  2870. "EnglishExplanation": "",
  2871. "ExampleSentence": null,
  2872. "Sort": 0
  2873. },
  2874. {
  2875. "ID": 83992,
  2876. "Word": "hobby",
  2877. "WordRemark": null,
  2878. "Level": "A2",
  2879. "BookID": 197,
  2880. "LessonID": 4,
  2881. "LessonName": null,
  2882. "Soundmark": "['hpbi]",
  2883. "Translate": "业余爱好",
  2884. "EnglishExplanation": "{\"word\":\"hobby\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"My hobby is reading books.\",\"Translate\":\"我的爱好是读书。\",\"Level\":\"A2\"},{\"Sentence\":\"She has many hobbies, including swimming and dancing.\",\"Translate\":\"她有许多爱好,包括游泳和跳舞。\",\"Level\":\"B1\"},{\"Sentence\":\"His hobby of collecting rare stamps has become a lifelong passion.\",\"Translate\":\"他收集稀有邮票的爱好已经成为了一生的热情。\",\"Level\":\"B2\"},{\"Sentence\":\"The hobby of astronomy requires a significant investment of time and resources.\",\"Translate\":\"天文学的爱好需要投入大量的时间和资源。\",\"Level\":\"C1\"},{\"Sentence\":\"As a hobby, she enjoys experimenting with different photography techniques.\",\"Translate\":\"作为一种爱好,她喜欢尝试不同的摄影技巧。\",\"Level\":\"B2\"},{\"Sentence\":\"The development of his hobby into a successful business was unexpected.\",\"Translate\":\"他的爱好发展成成功的事业是意料之外的。\",\"Level\":\"C1\"}]}",
  2885. "ExampleSentence": "{\"word\":\"hobby\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"My hobby is reading books.\",\"Translate\":\"我的爱好是读书。\",\"Level\":\"A2\"},{\"Sentence\":\"She has many hobbies, including swimming and dancing.\",\"Translate\":\"她有许多爱好,包括游泳和跳舞。\",\"Level\":\"B1\"},{\"Sentence\":\"His hobby of collecting rare stamps has become a lifelong passion.\",\"Translate\":\"他收集稀有邮票的爱好已经成为了一生的热情。\",\"Level\":\"B2\"},{\"Sentence\":\"The hobby of astronomy requires a significant investment of time and resources.\",\"Translate\":\"天文学的爱好需要投入大量的时间和资源。\",\"Level\":\"C1\"},{\"Sentence\":\"As a hobby, she enjoys experimenting with different photography techniques.\",\"Translate\":\"作为一种爱好,她喜欢尝试不同的摄影技巧。\",\"Level\":\"B2\"},{\"Sentence\":\"The development of his hobby into a successful business was unexpected.\",\"Translate\":\"他的爱好发展成成功的事业是意料之外的。\",\"Level\":\"C1\"}]}",
  2886. "Sort": 0
  2887. },
  2888. {
  2889. "ID": 83993,
  2890. "Word": "jasmine",
  2891. "WordRemark": null,
  2892. "Level": null,
  2893. "BookID": 197,
  2894. "LessonID": 4,
  2895. "LessonName": null,
  2896. "Soundmark": "['d3aezmin]",
  2897. "Translate": "茉莉",
  2898. "EnglishExplanation": "",
  2899. "ExampleSentence": null,
  2900. "Sort": 0
  2901. },
  2902. {
  2903. "ID": 83994,
  2904. "Word": "idea",
  2905. "WordRemark": null,
  2906. "Level": "A2",
  2907. "BookID": 197,
  2908. "LessonID": 4,
  2909. "LessonName": null,
  2910. "Soundmark": "[ar'dia]",
  2911. "Translate": "想法;主意",
  2912. "EnglishExplanation": "{\"word\":\"idea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I have an idea for our project.\",\"Translate\":\"我对我们的项目有一个想法。\",\"Level\":\"A2\"},{\"Sentence\":\"The idea of traveling around the world is exciting.\",\"Translate\":\"环游世界的想法很令人兴奋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy is based on the idea that everyone should contribute.\",\"Translate\":\"新政策基于每个人都应该做出贡献的理念。\",\"Level\":\"B2\"},{\"Sentence\":\"The idea that robots will replace humans is a topic of debate.\",\"Translate\":\"机器人将取代人类的观点是一个有争议的话题。\",\"Level\":\"C1\"},{\"Sentence\":\"The underlying idea of the theory is complex.\",\"Translate\":\"该理论的根本思想很复杂。\",\"Level\":\"C1\"}]}",
  2913. "ExampleSentence": "{\"word\":\"idea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I have an idea for our project.\",\"Translate\":\"我对我们的项目有一个想法。\",\"Level\":\"A2\"},{\"Sentence\":\"The idea of traveling around the world is exciting.\",\"Translate\":\"环游世界的想法很令人兴奋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy is based on the idea that everyone should contribute.\",\"Translate\":\"新政策基于每个人都应该做出贡献的理念。\",\"Level\":\"B2\"},{\"Sentence\":\"The idea that robots will replace humans is a topic of debate.\",\"Translate\":\"机器人将取代人类的观点是一个有争议的话题。\",\"Level\":\"C1\"},{\"Sentence\":\"The underlying idea of the theory is complex.\",\"Translate\":\"该理论的根本思想很复杂。\",\"Level\":\"C1\"}]}",
  2914. "Sort": 0
  2915. },
  2916. {
  2917. "ID": 83995,
  2918. "Word": "Canberra",
  2919. "WordRemark": null,
  2920. "Level": null,
  2921. "BookID": 197,
  2922. "LessonID": 4,
  2923. "LessonName": null,
  2924. "Soundmark": "[kaenbara]",
  2925. "Translate": "堪培拉(澳大利亚首都)",
  2926. "EnglishExplanation": "",
  2927. "ExampleSentence": null,
  2928. "Sort": 0
  2929. },
  2930. {
  2931. "ID": 83996,
  2932. "Word": "amazing",
  2933. "WordRemark": null,
  2934. "Level": "B1",
  2935. "BookID": 197,
  2936. "LessonID": 4,
  2937. "LessonName": null,
  2938. "Soundmark": "[a'meizin]",
  2939. "Translate": "令人惊奇的",
  2940. "EnglishExplanation": "{\"word\":\"amazing\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The fireworks display was amazing.\",\"Translate\":\"烟花表演很惊艳。\",\"Level\":\"B1\"},{\"Sentence\":\"She has an amazing talent for singing.\",\"Translate\":\"她有惊人的歌唱天赋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone has an amazing feature that allows you to control it with your voice.\",\"Translate\":\"这款新智能手机有一个令人惊奇的功能,可以让你用语音控制它。\",\"Level\":\"B2\"},{\"Sentence\":\"The amazing view from the top of the mountain was breathtaking.\",\"Translate\":\"从山顶上看到的惊人景色令人屏息。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's ability to simplify complex concepts is truly amazing and has helped many students grasp difficult topics.\",\"Translate\":\"教授简化复杂概念的能力确实令人惊叹,帮助许多学生掌握了困难的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The team's amazing resilience in the face of adversity was a testament to their dedication and perseverance.\",\"Translate\":\"团队在逆境中表现出的惊人韧性证明了他们的奉献精神和毅力。\",\"Level\":\"C1\"}]}",
  2941. "ExampleSentence": "{\"word\":\"amazing\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The fireworks display was amazing.\",\"Translate\":\"烟花表演很惊艳。\",\"Level\":\"B1\"},{\"Sentence\":\"She has an amazing talent for singing.\",\"Translate\":\"她有惊人的歌唱天赋。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone has an amazing feature that allows you to control it with your voice.\",\"Translate\":\"这款新智能手机有一个令人惊奇的功能,可以让你用语音控制它。\",\"Level\":\"B2\"},{\"Sentence\":\"The amazing view from the top of the mountain was breathtaking.\",\"Translate\":\"从山顶上看到的惊人景色令人屏息。\",\"Level\":\"B2\"},{\"Sentence\":\"The professor's ability to simplify complex concepts is truly amazing and has helped many students grasp difficult topics.\",\"Translate\":\"教授简化复杂概念的能力确实令人惊叹,帮助许多学生掌握了困难的主题。\",\"Level\":\"C1\"},{\"Sentence\":\"The team's amazing resilience in the face of adversity was a testament to their dedication and perseverance.\",\"Translate\":\"团队在逆境中表现出的惊人韧性证明了他们的奉献精神和毅力。\",\"Level\":\"C1\"}]}",
  2942. "Sort": 0
  2943. },
  2944. {
  2945. "ID": 83997,
  2946. "Word": "shall",
  2947. "WordRemark": null,
  2948. "Level": "A2",
  2949. "BookID": 197,
  2950. "LessonID": 4,
  2951. "LessonName": null,
  2952. "Soundmark": "[Jal; Jael]",
  2953. "Translate": "表示征求意见",
  2954. "EnglishExplanation": "{\"word\":\"shall\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We shall go to the park tomorrow.\",\"Translate\":\"我们明天将去公园。\",\"Level\":\"A2\"},{\"Sentence\":\"Shall we dance?\",\"Translate\":\"我们跳舞好吗?\",\"Level\":\"A2\"},{\"Sentence\":\"I shall attend the meeting if I'm free.\",\"Translate\":\"如果我有空,我将参加会议。\",\"Level\":\"B1\"},{\"Sentence\":\"The company shall provide the necessary equipment.\",\"Translate\":\"公司将提供必要的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"It is imperative that the government shall take immediate action to address the crisis.\",\"Translate\":\"政府必须立即采取行动来应对危机。\",\"Level\":\"C1\"},{\"Sentence\":\"The contract stipulates that the supplier shall deliver the goods within three weeks.\",\"Translate\":\"合同规定供应商应在三周内交付货物。\",\"Level\":\"C1\"}]}",
  2955. "ExampleSentence": "{\"word\":\"shall\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"We shall go to the park tomorrow.\",\"Translate\":\"我们明天将去公园。\",\"Level\":\"A2\"},{\"Sentence\":\"Shall we dance?\",\"Translate\":\"我们跳舞好吗?\",\"Level\":\"A2\"},{\"Sentence\":\"I shall attend the meeting if I'm free.\",\"Translate\":\"如果我有空,我将参加会议。\",\"Level\":\"B1\"},{\"Sentence\":\"The company shall provide the necessary equipment.\",\"Translate\":\"公司将提供必要的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"It is imperative that the government shall take immediate action to address the crisis.\",\"Translate\":\"政府必须立即采取行动来应对危机。\",\"Level\":\"C1\"},{\"Sentence\":\"The contract stipulates that the supplier shall deliver the goods within three weeks.\",\"Translate\":\"合同规定供应商应在三周内交付货物。\",\"Level\":\"C1\"}]}",
  2956. "Sort": 0
  2957. },
  2958. {
  2959. "ID": 83998,
  2960. "Word": "goal",
  2961. "WordRemark": null,
  2962. "Level": "A2",
  2963. "BookID": 197,
  2964. "LessonID": 4,
  2965. "LessonName": null,
  2966. "Soundmark": "[gaul]",
  2967. "Translate": "射门",
  2968. "EnglishExplanation": "{\"word\":\"goal\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The team's goal is to win the championship.\",\"Translate\":\"这个球队的目标是赢得冠军。\",\"Level\":\"A2\"},{\"Sentence\":\"She achieved her goal of running a marathon.\",\"Translate\":\"她实现了跑马拉松的目标。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's goal is to expand its market share.\",\"Translate\":\"公司的目标是扩大其市场份额。\",\"Level\":\"B1\"},{\"Sentence\":\"The goal of the project is to improve the efficiency of the production process.\",\"Translate\":\"该项目的目标是提高生产流程的效率。\",\"Level\":\"B2\"},{\"Sentence\":\"The ultimate goal of the research is to develop a new treatment for the disease.\",\"Translate\":\"这项研究的最终目标是开发出一种新的疾病治疗方法。\",\"Level\":\"C1\"},{\"Sentence\":\"The goal of the policy is to promote sustainable development and reduce carbon emissions.\",\"Translate\":\"这项政策的目标是促进可持续发展并减少碳排放。\",\"Level\":\"C1\"}]}",
  2969. "ExampleSentence": "{\"word\":\"goal\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The team's goal is to win the championship.\",\"Translate\":\"这个球队的目标是赢得冠军。\",\"Level\":\"A2\"},{\"Sentence\":\"She achieved her goal of running a marathon.\",\"Translate\":\"她实现了跑马拉松的目标。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's goal is to expand its market share.\",\"Translate\":\"公司的目标是扩大其市场份额。\",\"Level\":\"B1\"},{\"Sentence\":\"The goal of the project is to improve the efficiency of the production process.\",\"Translate\":\"该项目的目标是提高生产流程的效率。\",\"Level\":\"B2\"},{\"Sentence\":\"The ultimate goal of the research is to develop a new treatment for the disease.\",\"Translate\":\"这项研究的最终目标是开发出一种新的疾病治疗方法。\",\"Level\":\"C1\"},{\"Sentence\":\"The goal of the policy is to promote sustainable development and reduce carbon emissions.\",\"Translate\":\"这项政策的目标是促进可持续发展并减少碳排放。\",\"Level\":\"C1\"}]}",
  2970. "Sort": 0
  2971. },
  2972. {
  2973. "ID": 83999,
  2974. "Word": "join",
  2975. "WordRemark": null,
  2976. "Level": "A1",
  2977. "BookID": 197,
  2978. "LessonID": 4,
  2979. "LessonName": null,
  2980. "Soundmark": "[d30in]",
  2981. "Translate": "加入",
  2982. "EnglishExplanation": "{\"word\":\"join\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll join you for dinner tonight.\",\"Translate\":\"我今晚会和你一起吃晚饭。\",\"Level\":\"A1\"},{\"Sentence\":\"She joined the club last year.\",\"Translate\":\"她去年加入了这个俱乐部。\",\"Level\":\"A1\"},{\"Sentence\":\"The two rivers join at this point.\",\"Translate\":\"两条河流在这个地方汇合。\",\"Level\":\"B1\"},{\"Sentence\":\"Many people joined the protest march.\",\"Translate\":\"很多人加入了抗议游行。\",\"Level\":\"B1\"},{\"Sentence\":\"The new employee will join our team next month.\",\"Translate\":\"新员工下个月将加入我们的团队。\",\"Level\":\"C1\"},{\"Sentence\":\"The company joined forces with a rival firm to create a new product.\",\"Translate\":\"公司与竞争对手公司联手打造新产品。\",\"Level\":\"C1\"}]}",
  2983. "ExampleSentence": "{\"word\":\"join\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll join you for dinner tonight.\",\"Translate\":\"我今晚会和你一起吃晚饭。\",\"Level\":\"A1\"},{\"Sentence\":\"She joined the club last year.\",\"Translate\":\"她去年加入了这个俱乐部。\",\"Level\":\"A1\"},{\"Sentence\":\"The two rivers join at this point.\",\"Translate\":\"两条河流在这个地方汇合。\",\"Level\":\"B1\"},{\"Sentence\":\"Many people joined the protest march.\",\"Translate\":\"很多人加入了抗议游行。\",\"Level\":\"B1\"},{\"Sentence\":\"The new employee will join our team next month.\",\"Translate\":\"新员工下个月将加入我们的团队。\",\"Level\":\"C1\"},{\"Sentence\":\"The company joined forces with a rival firm to create a new product.\",\"Translate\":\"公司与竞争对手公司联手打造新产品。\",\"Level\":\"C1\"}]}",
  2984. "Sort": 0
  2985. },
  2986. {
  2987. "ID": 84000,
  2988. "Word": "club",
  2989. "WordRemark": null,
  2990. "Level": "A1",
  2991. "BookID": 197,
  2992. "LessonID": 4,
  2993. "LessonName": null,
  2994. "Soundmark": "[klab]",
  2995. "Translate": "俱乐部",
  2996. "EnglishExplanation": "{\"word\":\"club\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I joined a club to make new friends.\",\"Translate\":\"我加入了一个俱乐部来结交新朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"The club meets every Friday.\",\"Translate\":\"俱乐部每周五聚会。\",\"Level\":\"A1\"},{\"Sentence\":\"She's a member of the school's book club.\",\"Translate\":\"她是学校读书俱乐部的成员。\",\"Level\":\"A2\"},{\"Sentence\":\"The night club was very crowded.\",\"Translate\":\"夜总会非常拥挤。\",\"Level\":\"A2\"},{\"Sentence\":\"The golf club is expensive.\",\"Translate\":\"高尔夫球杆很贵。\",\"Level\":\"B1\"},{\"Sentence\":\"The club has a strict membership policy.\",\"Translate\":\"俱乐部有严格的会员政策。\",\"Level\":\"B1\"},{\"Sentence\":\"The club's atmosphere was electric.\",\"Translate\":\"俱乐部的气氛非常激动人心。\",\"Level\":\"C1\"},{\"Sentence\":\"The club's committee makes all the decisions.\",\"Translate\":\"俱乐部的委员会做出了所有的决定。\",\"Level\":\"C1\"}]}",
  2997. "ExampleSentence": "{\"word\":\"club\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I joined a club to make new friends.\",\"Translate\":\"我加入了一个俱乐部来结交新朋友。\",\"Level\":\"A1\"},{\"Sentence\":\"The club meets every Friday.\",\"Translate\":\"俱乐部每周五聚会。\",\"Level\":\"A1\"},{\"Sentence\":\"She's a member of the school's book club.\",\"Translate\":\"她是学校读书俱乐部的成员。\",\"Level\":\"A2\"},{\"Sentence\":\"The night club was very crowded.\",\"Translate\":\"夜总会非常拥挤。\",\"Level\":\"A2\"},{\"Sentence\":\"The golf club is expensive.\",\"Translate\":\"高尔夫球杆很贵。\",\"Level\":\"B1\"},{\"Sentence\":\"The club has a strict membership policy.\",\"Translate\":\"俱乐部有严格的会员政策。\",\"Level\":\"B1\"},{\"Sentence\":\"The club's atmosphere was electric.\",\"Translate\":\"俱乐部的气氛非常激动人心。\",\"Level\":\"C1\"},{\"Sentence\":\"The club's committee makes all the decisions.\",\"Translate\":\"俱乐部的委员会做出了所有的决定。\",\"Level\":\"C1\"}]}",
  2998. "Sort": 0
  2999. },
  3000. {
  3001. "ID": 84001,
  3002. "Word": "share",
  3003. "WordRemark": null,
  3004. "Level": "A1",
  3005. "BookID": 197,
  3006. "LessonID": 4,
  3007. "LessonName": null,
  3008. "Soundmark": "[Jea(r)]",
  3009. "Translate": "分享",
  3010. "EnglishExplanation": "{\"word\":\"share\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I share my toys with my friends.\",\"Translate\":\"我和朋友们分享我的玩具。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you share the book with your brother?\",\"Translate\":\"你能和你的哥哥分享这本书吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The company will share the profits with its employees.\",\"Translate\":\"公司将与员工分享利润。\",\"Level\":\"B1\"},{\"Sentence\":\"I share your opinion on this matter.\",\"Translate\":\"我同意你对此事的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity aims to share the burden of poverty among the community.\",\"Translate\":\"慈善机构旨在与社区共同承担贫困的重担。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has sparked debate, with some arguing it will share the wealth more evenly.\",\"Translate\":\"新政策引发了争论,一些人认为它将使财富分配更加均匀。\",\"Level\":\"C1\"}]}",
  3011. "ExampleSentence": "{\"word\":\"share\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I share my toys with my friends.\",\"Translate\":\"我和朋友们分享我的玩具。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you share the book with your brother?\",\"Translate\":\"你能和你的哥哥分享这本书吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The company will share the profits with its employees.\",\"Translate\":\"公司将与员工分享利润。\",\"Level\":\"B1\"},{\"Sentence\":\"I share your opinion on this matter.\",\"Translate\":\"我同意你对此事的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity aims to share the burden of poverty among the community.\",\"Translate\":\"慈善机构旨在与社区共同承担贫困的重担。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy has sparked debate, with some arguing it will share the wealth more evenly.\",\"Translate\":\"新政策引发了争论,一些人认为它将使财富分配更加均匀。\",\"Level\":\"C1\"}]}",
  3012. "Sort": 0
  3013. },
  3014. {
  3015. "ID": 84002,
  3016. "Word": "factory",
  3017. "WordRemark": null,
  3018. "Level": "A2",
  3019. "BookID": 197,
  3020. "LessonID": 5,
  3021. "LessonName": null,
  3022. "Soundmark": "[faektri]",
  3023. "Translate": "工厂",
  3024. "EnglishExplanation": "{\"word\":\"factory\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory produces cars.\",\"Translate\":\"这家工厂生产汽车。\",\"Level\":\"A2\"},{\"Sentence\":\"Many people work in the factory.\",\"Translate\":\"很多人都在这家工厂工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The new factory will create many jobs.\",\"Translate\":\"这家新工厂将创造许多就业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory is being expanded to increase production.\",\"Translate\":\"这家工厂正在扩建以增加产量。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory's innovative production methods have significantly reduced costs.\",\"Translate\":\"这家工厂的创新生产方法大大降低了成本。\",\"Level\":\"C1\"},{\"Sentence\":\"The factory's management is considering implementing sustainable practices.\",\"Translate\":\"这家工厂的管理层正在考虑实施可持续的做法。\",\"Level\":\"C1\"}]}",
  3025. "ExampleSentence": "{\"word\":\"factory\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory produces cars.\",\"Translate\":\"这家工厂生产汽车。\",\"Level\":\"A2\"},{\"Sentence\":\"Many people work in the factory.\",\"Translate\":\"很多人都在这家工厂工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The new factory will create many jobs.\",\"Translate\":\"这家新工厂将创造许多就业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory is being expanded to increase production.\",\"Translate\":\"这家工厂正在扩建以增加产量。\",\"Level\":\"B1\"},{\"Sentence\":\"The factory's innovative production methods have significantly reduced costs.\",\"Translate\":\"这家工厂的创新生产方法大大降低了成本。\",\"Level\":\"C1\"},{\"Sentence\":\"The factory's management is considering implementing sustainable practices.\",\"Translate\":\"这家工厂的管理层正在考虑实施可持续的做法。\",\"Level\":\"C1\"}]}",
  3026. "Sort": 0
  3027. },
  3028. {
  3029. "ID": 84003,
  3030. "Word": "worker",
  3031. "WordRemark": null,
  3032. "Level": "A2",
  3033. "BookID": 197,
  3034. "LessonID": 5,
  3035. "LessonName": null,
  3036. "Soundmark": "[w3:ka(r)]",
  3037. "Translate": "工人",
  3038. "EnglishExplanation": "{\"word\":\"worker\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory employs hundreds of workers.\",\"Translate\":\"这家工厂雇佣了数百名工人。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a dedicated worker and always meets her deadlines.\",\"Translate\":\"她是一位敬业的员工,总是能按时完成任务。\",\"Level\":\"B1\"},{\"Sentence\":\"The construction workers were skilled craftsmen.\",\"Translate\":\"建筑工人都是熟练的工匠。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity relies on volunteer workers to help with events.\",\"Translate\":\"慈善机构依靠志愿者来帮助举办活动。\",\"Level\":\"B2\"},{\"Sentence\":\"The research team consisted of highly motivated knowledge workers.\",\"Translate\":\"研究团队由动力十足的知识工作者组成。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's success is largely due to its innovative workers.\",\"Translate\":\"公司的成功在很大程度上归功于其创新型员工。\",\"Level\":\"C1\"},{\"Sentence\":\"The workers' union negotiated a new contract with the management.\",\"Translate\":\"工会与管理层谈判了一份新的合同。\",\"Level\":\"C1\"}]}",
  3039. "ExampleSentence": "{\"word\":\"worker\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The factory employs hundreds of workers.\",\"Translate\":\"这家工厂雇佣了数百名工人。\",\"Level\":\"A2\"},{\"Sentence\":\"She is a dedicated worker and always meets her deadlines.\",\"Translate\":\"她是一位敬业的员工,总是能按时完成任务。\",\"Level\":\"B1\"},{\"Sentence\":\"The construction workers were skilled craftsmen.\",\"Translate\":\"建筑工人都是熟练的工匠。\",\"Level\":\"B1\"},{\"Sentence\":\"The charity relies on volunteer workers to help with events.\",\"Translate\":\"慈善机构依靠志愿者来帮助举办活动。\",\"Level\":\"B2\"},{\"Sentence\":\"The research team consisted of highly motivated knowledge workers.\",\"Translate\":\"研究团队由动力十足的知识工作者组成。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's success is largely due to its innovative workers.\",\"Translate\":\"公司的成功在很大程度上归功于其创新型员工。\",\"Level\":\"C1\"},{\"Sentence\":\"The workers' union negotiated a new contract with the management.\",\"Translate\":\"工会与管理层谈判了一份新的合同。\",\"Level\":\"C1\"}]}",
  3040. "Sort": 0
  3041. },
  3042. {
  3043. "ID": 84004,
  3044. "Word": "postman",
  3045. "WordRemark": null,
  3046. "Level": "A2",
  3047. "BookID": 197,
  3048. "LessonID": 5,
  3049. "LessonName": null,
  3050. "Soundmark": "[paustman]",
  3051. "Translate": "邮递员",
  3052. "EnglishExplanation": "{\"word\":\"postman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The postman delivered a letter to my door.\",\"Translate\":\"邮递员把一封信送到了我家门口。\",\"Level\":\"A2\"},{\"Sentence\":\"I saw the postman walking down the street.\",\"Translate\":\"我看到邮递员沿着街道走来。\",\"Level\":\"A2\"},{\"Sentence\":\"The postman has to deal with various kinds of weather.\",\"Translate\":\"邮递员必须应对各种天气。\",\"Level\":\"B1\"},{\"Sentence\":\"As a postman, he knows many people in the neighborhood.\",\"Translate\":\"作为一名邮递员,他认识邻近的很多人。\",\"Level\":\"B1\"},{\"Sentence\":\"The postman's diligence ensured that all the mail was delivered on time.\",\"Translate\":\"邮递员的勤勉确保了所有的邮件都能按时送达。\",\"Level\":\"C1\"},{\"Sentence\":\"The postman's route took him through the picturesque countryside.\",\"Translate\":\"邮递员的路线带他穿过风景如画的乡村。\",\"Level\":\"C1\"}]}",
  3053. "ExampleSentence": "{\"word\":\"postman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The postman delivered a letter to my door.\",\"Translate\":\"邮递员把一封信送到了我家门口。\",\"Level\":\"A2\"},{\"Sentence\":\"I saw the postman walking down the street.\",\"Translate\":\"我看到邮递员沿着街道走来。\",\"Level\":\"A2\"},{\"Sentence\":\"The postman has to deal with various kinds of weather.\",\"Translate\":\"邮递员必须应对各种天气。\",\"Level\":\"B1\"},{\"Sentence\":\"As a postman, he knows many people in the neighborhood.\",\"Translate\":\"作为一名邮递员,他认识邻近的很多人。\",\"Level\":\"B1\"},{\"Sentence\":\"The postman's diligence ensured that all the mail was delivered on time.\",\"Translate\":\"邮递员的勤勉确保了所有的邮件都能按时送达。\",\"Level\":\"C1\"},{\"Sentence\":\"The postman's route took him through the picturesque countryside.\",\"Translate\":\"邮递员的路线带他穿过风景如画的乡村。\",\"Level\":\"C1\"}]}",
  3054. "Sort": 0
  3055. },
  3056. {
  3057. "ID": 84005,
  3058. "Word": "businessman",
  3059. "WordRemark": null,
  3060. "Level": "B1",
  3061. "BookID": 197,
  3062. "LessonID": 5,
  3063. "LessonName": null,
  3064. "Soundmark": "[\"biznasmaen]",
  3065. "Translate": "商人;企业家",
  3066. "EnglishExplanation": "{\"word\":\"businessman\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The successful businessman invested in several startups.\",\"Translate\":\"这位成功的商人投资了几家初创公司。\",\"Level\":\"B1\"},{\"Sentence\":\"As a young businessman, he was eager to make a name for himself.\",\"Translate\":\"作为一名年轻的商人,他渴望成名。\",\"Level\":\"B1\"},{\"Sentence\":\"The businessman negotiated a deal with the foreign investors.\",\"Translate\":\"这位商人与外国投资者谈判了一笔交易。\",\"Level\":\"B2\"},{\"Sentence\":\"The businessman expanded his company into the global market.\",\"Translate\":\"这位商人将他的公司扩展到了全球市场。\",\"Level\":\"B2\"},{\"Sentence\":\"The seasoned businessman was known for his shrewd investment strategies.\",\"Translate\":\"这位经验丰富的商人以其精明的投资策略而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The businessman was lauded for his innovative approach to entrepreneurship.\",\"Translate\":\"这位商人因其创新的创业方法而受到赞扬。\",\"Level\":\"C1\"}]}",
  3067. "ExampleSentence": "{\"word\":\"businessman\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The successful businessman invested in several startups.\",\"Translate\":\"这位成功的商人投资了几家初创公司。\",\"Level\":\"B1\"},{\"Sentence\":\"As a young businessman, he was eager to make a name for himself.\",\"Translate\":\"作为一名年轻的商人,他渴望成名。\",\"Level\":\"B1\"},{\"Sentence\":\"The businessman negotiated a deal with the foreign investors.\",\"Translate\":\"这位商人与外国投资者谈判了一笔交易。\",\"Level\":\"B2\"},{\"Sentence\":\"The businessman expanded his company into the global market.\",\"Translate\":\"这位商人将他的公司扩展到了全球市场。\",\"Level\":\"B2\"},{\"Sentence\":\"The seasoned businessman was known for his shrewd investment strategies.\",\"Translate\":\"这位经验丰富的商人以其精明的投资策略而闻名。\",\"Level\":\"C1\"},{\"Sentence\":\"The businessman was lauded for his innovative approach to entrepreneurship.\",\"Translate\":\"这位商人因其创新的创业方法而受到赞扬。\",\"Level\":\"C1\"}]}",
  3068. "Sort": 0
  3069. },
  3070. {
  3071. "ID": 84006,
  3072. "Word": "police officer",
  3073. "WordRemark": null,
  3074. "Level": null,
  3075. "BookID": 197,
  3076. "LessonID": 5,
  3077. "LessonName": null,
  3078. "Soundmark": "[pa'lis 'pfisa(r)]",
  3079. "Translate": "警察",
  3080. "EnglishExplanation": "",
  3081. "ExampleSentence": null,
  3082. "Sort": 0
  3083. },
  3084. {
  3085. "ID": 84007,
  3086. "Word": "fisherman",
  3087. "WordRemark": null,
  3088. "Level": "A2",
  3089. "BookID": 197,
  3090. "LessonID": 5,
  3091. "LessonName": null,
  3092. "Soundmark": "[fifaman]",
  3093. "Translate": "渔民",
  3094. "EnglishExplanation": "{\"word\":\"fisherman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The fisherman caught a big fish.\",\"Translate\":\"渔夫捕到了一条大鱼。\",\"Level\":\"A2\"},{\"Sentence\":\"The fishermen went out to sea early in the morning.\",\"Translate\":\"渔民们一早就出海了。\",\"Level\":\"A2\"},{\"Sentence\":\"The experienced fisherman navigated through the rough waters with ease.\",\"Translate\":\"这位经验丰富的渔民轻松地在汹涌的水域中航行。\",\"Level\":\"B1\"},{\"Sentence\":\"The local fishermen's cooperative managed the fishery resources sustainably.\",\"Translate\":\"当地的渔民合作社可持续地管理渔业资源。\",\"Level\":\"B1\"},{\"Sentence\":\"The fisherman's knowledge of the ocean currents was unparalleled, allowing him to locate the most abundant fishing grounds.\",\"Translate\":\"这位渔夫对洋流的了解无人能及,这使他能够找到最丰富的渔场。\",\"Level\":\"C1\"},{\"Sentence\":\"The fisherman's philosophical musings on the nature of the sea were deeply insightful.\",\"Translate\":\"渔夫对大海本质的哲学思考非常深刻。\",\"Level\":\"C1\"}]}",
  3095. "ExampleSentence": "{\"word\":\"fisherman\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The fisherman caught a big fish.\",\"Translate\":\"渔夫捕到了一条大鱼。\",\"Level\":\"A2\"},{\"Sentence\":\"The fishermen went out to sea early in the morning.\",\"Translate\":\"渔民们一早就出海了。\",\"Level\":\"A2\"},{\"Sentence\":\"The experienced fisherman navigated through the rough waters with ease.\",\"Translate\":\"这位经验丰富的渔民轻松地在汹涌的水域中航行。\",\"Level\":\"B1\"},{\"Sentence\":\"The local fishermen's cooperative managed the fishery resources sustainably.\",\"Translate\":\"当地的渔民合作社可持续地管理渔业资源。\",\"Level\":\"B1\"},{\"Sentence\":\"The fisherman's knowledge of the ocean currents was unparalleled, allowing him to locate the most abundant fishing grounds.\",\"Translate\":\"这位渔夫对洋流的了解无人能及,这使他能够找到最丰富的渔场。\",\"Level\":\"C1\"},{\"Sentence\":\"The fisherman's philosophical musings on the nature of the sea were deeply insightful.\",\"Translate\":\"渔夫对大海本质的哲学思考非常深刻。\",\"Level\":\"C1\"}]}",
  3096. "Sort": 0
  3097. },
  3098. {
  3099. "ID": 84008,
  3100. "Word": "scientist",
  3101. "WordRemark": null,
  3102. "Level": "B2",
  3103. "BookID": 197,
  3104. "LessonID": 5,
  3105. "LessonName": null,
  3106. "Soundmark": "['saiontist]",
  3107. "Translate": "科学家",
  3108. "EnglishExplanation": "{\"word\":\"scientist\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The scientist conducted an experiment to test the hypothesis.\",\"Translate\":\"这位科学家进行了一项实验来验证这个假设。\",\"Level\":\"B2\"},{\"Sentence\":\"She became a renowned scientist in her field.\",\"Translate\":\"她成为了她所在领域的著名科学家。\",\"Level\":\"B2\"},{\"Sentence\":\"The team of scientists discovered a new species.\",\"Translate\":\"科学家团队发现了一个新物种。\",\"Level\":\"C1\"},{\"Sentence\":\"Scientists are working on developing a new technology.\",\"Translate\":\"科学家们正在致力于开发一项新技术。\",\"Level\":\"C1\"}]}",
  3109. "ExampleSentence": "{\"word\":\"scientist\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The scientist conducted an experiment to test the hypothesis.\",\"Translate\":\"这位科学家进行了一项实验来验证这个假设。\",\"Level\":\"B2\"},{\"Sentence\":\"She became a renowned scientist in her field.\",\"Translate\":\"她成为了她所在领域的著名科学家。\",\"Level\":\"B2\"},{\"Sentence\":\"The team of scientists discovered a new species.\",\"Translate\":\"科学家团队发现了一个新物种。\",\"Level\":\"C1\"},{\"Sentence\":\"Scientists are working on developing a new technology.\",\"Translate\":\"科学家们正在致力于开发一项新技术。\",\"Level\":\"C1\"}]}",
  3110. "Sort": 0
  3111. },
  3112. {
  3113. "ID": 84009,
  3114. "Word": "pilot",
  3115. "WordRemark": null,
  3116. "Level": "A2",
  3117. "BookID": 197,
  3118. "LessonID": 5,
  3119. "LessonName": null,
  3120. "Soundmark": "['pallat]",
  3121. "Translate": "飞行员",
  3122. "EnglishExplanation": "{\"word\":\"pilot\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The pilot flew the plane safely through the storm.\",\"Translate\":\"飞行员安全地驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"She became a pilot after years of training.\",\"Translate\":\"经过多年的培训,她成为了飞行员。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline is recruiting new pilots to join their team.\",\"Translate\":\"航空公司正在招募新飞行员加入他们的团队。\",\"Level\":\"B2\"},{\"Sentence\":\"As a pilot, he had to make quick decisions in emergency situations.\",\"Translate\":\"作为一名飞行员,他必须在紧急情况下迅速做出决定。\",\"Level\":\"B2\"},{\"Sentence\":\"The pilot project was successful, so they're expanding it nationwide.\",\"Translate\":\"试点项目很成功,所以他们正在全国范围内推广。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's pilot program aims to test new technologies.\",\"Translate\":\"公司的试点计划旨在测试新技术。\",\"Level\":\"C1\"}]}",
  3123. "ExampleSentence": "{\"word\":\"pilot\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The pilot flew the plane safely through the storm.\",\"Translate\":\"飞行员安全地驾驶飞机穿过暴风雨。\",\"Level\":\"B1\"},{\"Sentence\":\"She became a pilot after years of training.\",\"Translate\":\"经过多年的培训,她成为了飞行员。\",\"Level\":\"B1\"},{\"Sentence\":\"The airline is recruiting new pilots to join their team.\",\"Translate\":\"航空公司正在招募新飞行员加入他们的团队。\",\"Level\":\"B2\"},{\"Sentence\":\"As a pilot, he had to make quick decisions in emergency situations.\",\"Translate\":\"作为一名飞行员,他必须在紧急情况下迅速做出决定。\",\"Level\":\"B2\"},{\"Sentence\":\"The pilot project was successful, so they're expanding it nationwide.\",\"Translate\":\"试点项目很成功,所以他们正在全国范围内推广。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's pilot program aims to test new technologies.\",\"Translate\":\"公司的试点计划旨在测试新技术。\",\"Level\":\"C1\"}]}",
  3124. "Sort": 0
  3125. },
  3126. {
  3127. "ID": 84010,
  3128. "Word": "coach",
  3129. "WordRemark": null,
  3130. "Level": "A2",
  3131. "BookID": 197,
  3132. "LessonID": 5,
  3133. "LessonName": null,
  3134. "Soundmark": "[kauty]",
  3135. "Translate": "教练",
  3136. "EnglishExplanation": "{\"word\":\"coach\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The football coach is very experienced.\",\"Translate\":\"这位足球教练非常有经验。\",\"Level\":\"A2\"},{\"Sentence\":\"She coaches the school basketball team.\",\"Translate\":\"她执教学校篮球队。\",\"Level\":\"A2\"},{\"Sentence\":\"The coach helped me improve my tennis serve.\",\"Translate\":\"教练帮助我改进了发球技术。\",\"Level\":\"B1\"},{\"Sentence\":\"The company hired a coach to train their sales team.\",\"Translate\":\"公司聘请了一位教练来训练销售团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The life coach guided her through a difficult period.\",\"Translate\":\"这位生活教练在她困难时期给予了指导。\",\"Level\":\"C1\"},{\"Sentence\":\"The executive coach worked with the CEO to develop a new strategy.\",\"Translate\":\"高管教练与CEO合作制定了新的战略。\",\"Level\":\"C1\"}]}",
  3137. "ExampleSentence": "{\"word\":\"coach\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The football coach is very experienced.\",\"Translate\":\"这位足球教练非常有经验。\",\"Level\":\"A2\"},{\"Sentence\":\"She coaches the school basketball team.\",\"Translate\":\"她执教学校篮球队。\",\"Level\":\"A2\"},{\"Sentence\":\"The coach helped me improve my tennis serve.\",\"Translate\":\"教练帮助我改进了发球技术。\",\"Level\":\"B1\"},{\"Sentence\":\"The company hired a coach to train their sales team.\",\"Translate\":\"公司聘请了一位教练来训练销售团队。\",\"Level\":\"B1\"},{\"Sentence\":\"The life coach guided her through a difficult period.\",\"Translate\":\"这位生活教练在她困难时期给予了指导。\",\"Level\":\"C1\"},{\"Sentence\":\"The executive coach worked with the CEO to develop a new strategy.\",\"Translate\":\"高管教练与CEO合作制定了新的战略。\",\"Level\":\"C1\"}]}",
  3138. "Sort": 0
  3139. },
  3140. {
  3141. "ID": 84011,
  3142. "Word": "country",
  3143. "WordRemark": null,
  3144. "Level": "A1",
  3145. "BookID": 197,
  3146. "LessonID": 5,
  3147. "LessonName": null,
  3148. "Soundmark": "['kAntri]",
  3149. "Translate": "国家",
  3150. "EnglishExplanation": "{\"word\":\"country\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I live in a beautiful country.\",\"Translate\":\"我住在一个美丽的国家。\",\"Level\":\"A1\"},{\"Sentence\":\"The country is very big.\",\"Translate\":\"这个国家非常大。\",\"Level\":\"A1\"},{\"Sentence\":\"The country has a lot of mountains and rivers.\",\"Translate\":\"这个国家有很多山脉和河流。\",\"Level\":\"A2\"},{\"Sentence\":\"People in the country enjoy a simple life.\",\"Translate\":\"这个国家的人们享受着简单的生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The country's economy is growing rapidly.\",\"Translate\":\"这个国家的经济正在迅速发展。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's culture is very diverse.\",\"Translate\":\"这个国家的文化非常多样。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's history is complex and multifaceted.\",\"Translate\":\"这个国家的历史复杂多样。\",\"Level\":\"C1\"},{\"Sentence\":\"The country's environmental policies have been a subject of debate.\",\"Translate\":\"这个国家的环境政策一直是争论的焦点。\",\"Level\":\"C1\"}]}",
  3151. "ExampleSentence": "{\"word\":\"country\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I live in a beautiful country.\",\"Translate\":\"我住在一个美丽的国家。\",\"Level\":\"A1\"},{\"Sentence\":\"The country is very big.\",\"Translate\":\"这个国家非常大。\",\"Level\":\"A1\"},{\"Sentence\":\"The country has a lot of mountains and rivers.\",\"Translate\":\"这个国家有很多山脉和河流。\",\"Level\":\"A2\"},{\"Sentence\":\"People in the country enjoy a simple life.\",\"Translate\":\"这个国家的人们享受着简单的生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The country's economy is growing rapidly.\",\"Translate\":\"这个国家的经济正在迅速发展。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's culture is very diverse.\",\"Translate\":\"这个国家的文化非常多样。\",\"Level\":\"B1\"},{\"Sentence\":\"The country's history is complex and multifaceted.\",\"Translate\":\"这个国家的历史复杂多样。\",\"Level\":\"C1\"},{\"Sentence\":\"The country's environmental policies have been a subject of debate.\",\"Translate\":\"这个国家的环境政策一直是争论的焦点。\",\"Level\":\"C1\"}]}",
  3152. "Sort": 0
  3153. },
  3154. {
  3155. "ID": 84012,
  3156. "Word": "head teacher",
  3157. "WordRemark": null,
  3158. "Level": null,
  3159. "BookID": 197,
  3160. "LessonID": 5,
  3161. "LessonName": null,
  3162. "Soundmark": null,
  3163. "Translate": "校长",
  3164. "EnglishExplanation": "",
  3165. "ExampleSentence": null,
  3166. "Sort": 0
  3167. },
  3168. {
  3169. "ID": 84013,
  3170. "Word": "sea",
  3171. "WordRemark": null,
  3172. "Level": "A2",
  3173. "BookID": 197,
  3174. "LessonID": 5,
  3175. "LessonName": null,
  3176. "Soundmark": "[si:]",
  3177. "Translate": "大海",
  3178. "EnglishExplanation": "{\"word\":\"sea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The family went to the sea for their summer vacation.\",\"Translate\":\"这家人去海边度暑假。\",\"Level\":\"A2\"},{\"Sentence\":\"She loves watching the sunset over the sea.\",\"Translate\":\"她喜欢观看海上的日落。\",\"Level\":\"A2\"},{\"Sentence\":\"The sea was calm and peaceful that day.\",\"Translate\":\"那天海面很平静。\",\"Level\":\"B1\"},{\"Sentence\":\"The sea has many different creatures.\",\"Translate\":\"海洋里有许多不同的生物。\",\"Level\":\"B1\"},{\"Sentence\":\"The pollution in the sea is a serious environmental issue.\",\"Translate\":\"海洋污染是一个严重的环境问题。\",\"Level\":\"C1\"},{\"Sentence\":\"The sea level is rising due to climate change.\",\"Translate\":\"由于气候变化,海平面正在上升。\",\"Level\":\"C1\"}]}",
  3179. "ExampleSentence": "{\"word\":\"sea\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The family went to the sea for their summer vacation.\",\"Translate\":\"这家人去海边度暑假。\",\"Level\":\"A2\"},{\"Sentence\":\"She loves watching the sunset over the sea.\",\"Translate\":\"她喜欢观看海上的日落。\",\"Level\":\"A2\"},{\"Sentence\":\"The sea was calm and peaceful that day.\",\"Translate\":\"那天海面很平静。\",\"Level\":\"B1\"},{\"Sentence\":\"The sea has many different creatures.\",\"Translate\":\"海洋里有许多不同的生物。\",\"Level\":\"B1\"},{\"Sentence\":\"The pollution in the sea is a serious environmental issue.\",\"Translate\":\"海洋污染是一个严重的环境问题。\",\"Level\":\"C1\"},{\"Sentence\":\"The sea level is rising due to climate change.\",\"Translate\":\"由于气候变化,海平面正在上升。\",\"Level\":\"C1\"}]}",
  3180. "Sort": 0
  3181. },
  3182. {
  3183. "ID": 84014,
  3184. "Word": "stay",
  3185. "WordRemark": null,
  3186. "Level": "A1",
  3187. "BookID": 197,
  3188. "LessonID": 5,
  3189. "LessonName": null,
  3190. "Soundmark": "[stel]",
  3191. "Translate": "保持",
  3192. "EnglishExplanation": "{\"word\":\"stay\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will stay here tonight.\",\"Translate\":\"我今晚会呆在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stay for dinner?\",\"Translate\":\"你能留下来吃晚饭吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stayed at home because she was sick.\",\"Translate\":\"她因为生病而呆在家里。\",\"Level\":\"A2\"},{\"Sentence\":\"They are staying with friends for the weekend.\",\"Translate\":\"他们周末和朋友住在一起。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stay competitive by innovating.\",\"Translate\":\"公司将通过创新保持竞争力。\",\"Level\":\"B1\"},{\"Sentence\":\"To stay healthy, you need to exercise regularly.\",\"Translate\":\"为了保持健康,你需要定期锻炼。\",\"Level\":\"B1\"},{\"Sentence\":\"The hotel's reputation has stayed intact despite the crisis.\",\"Translate\":\"尽管发生了危机,但这家酒店的声誉依然完好。\",\"Level\":\"C1\"},{\"Sentence\":\"Staying ahead of the curve requires continuous learning.\",\"Translate\":\"保持领先需要不断学习。\",\"Level\":\"C1\"}]}",
  3193. "ExampleSentence": "{\"word\":\"stay\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I will stay here tonight.\",\"Translate\":\"我今晚会呆在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you stay for dinner?\",\"Translate\":\"你能留下来吃晚饭吗?\",\"Level\":\"A1\"},{\"Sentence\":\"She stayed at home because she was sick.\",\"Translate\":\"她因为生病而呆在家里。\",\"Level\":\"A2\"},{\"Sentence\":\"They are staying with friends for the weekend.\",\"Translate\":\"他们周末和朋友住在一起。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will stay competitive by innovating.\",\"Translate\":\"公司将通过创新保持竞争力。\",\"Level\":\"B1\"},{\"Sentence\":\"To stay healthy, you need to exercise regularly.\",\"Translate\":\"为了保持健康,你需要定期锻炼。\",\"Level\":\"B1\"},{\"Sentence\":\"The hotel's reputation has stayed intact despite the crisis.\",\"Translate\":\"尽管发生了危机,但这家酒店的声誉依然完好。\",\"Level\":\"C1\"},{\"Sentence\":\"Staying ahead of the curve requires continuous learning.\",\"Translate\":\"保持领先需要不断学习。\",\"Level\":\"C1\"}]}",
  3194. "Sort": 0
  3195. },
  3196. {
  3197. "ID": 84015,
  3198. "Word": "university",
  3199. "WordRemark": null,
  3200. "Level": "B2",
  3201. "BookID": 197,
  3202. "LessonID": 5,
  3203. "LessonName": null,
  3204. "Soundmark": "[juinl'v3isati]",
  3205. "Translate": "大学",
  3206. "EnglishExplanation": "{\"word\":\"university\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The university is known for its academic excellence.\",\"Translate\":\"这所大学以其学术卓越而闻名。\",\"Level\":\"B2\"},{\"Sentence\":\"She was accepted into a prestigious university.\",\"Translate\":\"她被一所著名的大学录取了。\",\"Level\":\"B2\"},{\"Sentence\":\"The university offers a wide range of undergraduate and graduate programs.\",\"Translate\":\"这所大学提供广泛的本科和研究生课程。\",\"Level\":\"C1\"},{\"Sentence\":\"Attending a top university can open doors to better career opportunities.\",\"Translate\":\"就读于顶尖大学可以为更好的职业机会打开大门。\",\"Level\":\"C1\"}]}",
  3207. "ExampleSentence": "{\"word\":\"university\",\"CEFR_Level\":\"B2\",\"Sentences\":[{\"Sentence\":\"The university is known for its academic excellence.\",\"Translate\":\"这所大学以其学术卓越而闻名。\",\"Level\":\"B2\"},{\"Sentence\":\"She was accepted into a prestigious university.\",\"Translate\":\"她被一所著名的大学录取了。\",\"Level\":\"B2\"},{\"Sentence\":\"The university offers a wide range of undergraduate and graduate programs.\",\"Translate\":\"这所大学提供广泛的本科和研究生课程。\",\"Level\":\"C1\"},{\"Sentence\":\"Attending a top university can open doors to better career opportunities.\",\"Translate\":\"就读于顶尖大学可以为更好的职业机会打开大门。\",\"Level\":\"C1\"}]}",
  3208. "Sort": 0
  3209. },
  3210. {
  3211. "ID": 84016,
  3212. "Word": "gym",
  3213. "WordRemark": null,
  3214. "Level": "A2",
  3215. "BookID": 197,
  3216. "LessonID": 5,
  3217. "LessonName": null,
  3218. "Soundmark": "[d3im]",
  3219. "Translate": "体育馆",
  3220. "EnglishExplanation": "{\"word\":\"gym\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I go to the gym every day.\",\"Translate\":\"我每天都去健身房。\",\"Level\":\"A2\"},{\"Sentence\":\"The gym is fully equipped with modern machines.\",\"Translate\":\"健身房配备了现代化的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few months of regular exercise at the gym, I noticed a significant improvement in my overall fitness.\",\"Translate\":\"在健身房定期锻炼几个月后,我注意到我的整体健康状况有了显著改善。\",\"Level\":\"B2\"},{\"Sentence\":\"The gym offers a variety of classes, from yoga to high-intensity interval training, catering to diverse fitness goals and preferences.\",\"Translate\":\"健身房提供多种课程,从瑜伽到高强度间歇训练,满足不同的健身目标和偏好。\",\"Level\":\"C1\"},{\"Sentence\":\"Not only does the gym provide state-of-the-art equipment, but it also fosters a sense of community among its members.\",\"Translate\":\"健身房不仅提供最先进的设备,还在其成员之间培养了一种社区意识。\",\"Level\":\"C1\"}]}",
  3221. "ExampleSentence": "{\"word\":\"gym\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I go to the gym every day.\",\"Translate\":\"我每天都去健身房。\",\"Level\":\"A2\"},{\"Sentence\":\"The gym is fully equipped with modern machines.\",\"Translate\":\"健身房配备了现代化的设备。\",\"Level\":\"B1\"},{\"Sentence\":\"After a few months of regular exercise at the gym, I noticed a significant improvement in my overall fitness.\",\"Translate\":\"在健身房定期锻炼几个月后,我注意到我的整体健康状况有了显著改善。\",\"Level\":\"B2\"},{\"Sentence\":\"The gym offers a variety of classes, from yoga to high-intensity interval training, catering to diverse fitness goals and preferences.\",\"Translate\":\"健身房提供多种课程,从瑜伽到高强度间歇训练,满足不同的健身目标和偏好。\",\"Level\":\"C1\"},{\"Sentence\":\"Not only does the gym provide state-of-the-art equipment, but it also fosters a sense of community among its members.\",\"Translate\":\"健身房不仅提供最先进的设备,还在其成员之间培养了一种社区意识。\",\"Level\":\"C1\"}]}",
  3222. "Sort": 0
  3223. },
  3224. {
  3225. "ID": 84017,
  3226. "Word": "if",
  3227. "WordRemark": null,
  3228. "Level": "A1",
  3229. "BookID": 197,
  3230. "LessonID": 5,
  3231. "LessonName": null,
  3232. "Soundmark": "[if]",
  3233. "Translate": "如果",
  3234. "EnglishExplanation": "{\"word\":\"if\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll see you tomorrow if the weather is fine.\",\"Translate\":\"如果天气好,我明天会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"You can come with us if you want.\",\"Translate\":\"如果你想,你可以和我们一起去。\",\"Level\":\"A1\"},{\"Sentence\":\"If I had more time, I would travel more.\",\"Translate\":\"如果我有更多时间,我会去更多地方旅行。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked if we had finished our homework.\",\"Translate\":\"老师问我们是否完成了作业。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I wouldn't do that.\",\"Translate\":\"如果我是你,我不会那样做。\",\"Level\":\"B2\"},{\"Sentence\":\"It's not clear if the new policy will be successful.\",\"Translate\":\"尚不清楚新政策是否会成功。\",\"Level\":\"B2\"},{\"Sentence\":\"If the company had invested earlier, it would be more competitive now.\",\"Translate\":\"如果公司早些时候投资,现在会更具竞争力。\",\"Level\":\"C1\"},{\"Sentence\":\"The debate centered on the question of if artificial intelligence will surpass human intelligence.\",\"Translate\":\"辩论集中在人工智能是否会超越人类智慧的问题上。\",\"Level\":\"C1\"}]}",
  3235. "ExampleSentence": "{\"word\":\"if\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'll see you tomorrow if the weather is fine.\",\"Translate\":\"如果天气好,我明天会见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"You can come with us if you want.\",\"Translate\":\"如果你想,你可以和我们一起去。\",\"Level\":\"A1\"},{\"Sentence\":\"If I had more time, I would travel more.\",\"Translate\":\"如果我有更多时间,我会去更多地方旅行。\",\"Level\":\"B1\"},{\"Sentence\":\"The teacher asked if we had finished our homework.\",\"Translate\":\"老师问我们是否完成了作业。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I wouldn't do that.\",\"Translate\":\"如果我是你,我不会那样做。\",\"Level\":\"B2\"},{\"Sentence\":\"It's not clear if the new policy will be successful.\",\"Translate\":\"尚不清楚新政策是否会成功。\",\"Level\":\"B2\"},{\"Sentence\":\"If the company had invested earlier, it would be more competitive now.\",\"Translate\":\"如果公司早些时候投资,现在会更具竞争力。\",\"Level\":\"C1\"},{\"Sentence\":\"The debate centered on the question of if artificial intelligence will surpass human intelligence.\",\"Translate\":\"辩论集中在人工智能是否会超越人类智慧的问题上。\",\"Level\":\"C1\"}]}",
  3236. "Sort": 0
  3237. },
  3238. {
  3239. "ID": 84018,
  3240. "Word": "reporter",
  3241. "WordRemark": null,
  3242. "Level": "B1",
  3243. "BookID": 197,
  3244. "LessonID": 5,
  3245. "LessonName": null,
  3246. "Soundmark": "[rl'po:ta(r)]",
  3247. "Translate": "记者",
  3248. "EnglishExplanation": "{\"word\":\"reporter\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The young reporter asked the politician many tough questions.\",\"Translate\":\"这位年轻的记者向政治家提出了许多尖锐的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"She worked as a reporter for a local newspaper.\",\"Translate\":\"她曾在当地一家报社担任记者。\",\"Level\":\"B1\"},{\"Sentence\":\"The reporter was investigating a story about corruption in the government.\",\"Translate\":\"这位记者正在调查一个关于政府腐败的报道。\",\"Level\":\"B2\"},{\"Sentence\":\"The news channel sent a reporter to cover the breaking news.\",\"Translate\":\"新闻频道派了一名记者来报道突发新闻。\",\"Level\":\"B2\"},{\"Sentence\":\"The investigative reporter uncovered a major scandal that led to widespread reforms.\",\"Translate\":\"调查记者揭露了一起重大丑闻,导致了广泛的改革。\",\"Level\":\"C1\"},{\"Sentence\":\"As a seasoned reporter, she had interviewed numerous world leaders.\",\"Translate\":\"作为一名经验丰富的记者,她采访过许多世界领导人。\",\"Level\":\"C1\"}]}",
  3249. "ExampleSentence": "{\"word\":\"reporter\",\"CEFR_Level\":\"B1\",\"Sentences\":[{\"Sentence\":\"The young reporter asked the politician many tough questions.\",\"Translate\":\"这位年轻的记者向政治家提出了许多尖锐的问题。\",\"Level\":\"B1\"},{\"Sentence\":\"She worked as a reporter for a local newspaper.\",\"Translate\":\"她曾在当地一家报社担任记者。\",\"Level\":\"B1\"},{\"Sentence\":\"The reporter was investigating a story about corruption in the government.\",\"Translate\":\"这位记者正在调查一个关于政府腐败的报道。\",\"Level\":\"B2\"},{\"Sentence\":\"The news channel sent a reporter to cover the breaking news.\",\"Translate\":\"新闻频道派了一名记者来报道突发新闻。\",\"Level\":\"B2\"},{\"Sentence\":\"The investigative reporter uncovered a major scandal that led to widespread reforms.\",\"Translate\":\"调查记者揭露了一起重大丑闻,导致了广泛的改革。\",\"Level\":\"C1\"},{\"Sentence\":\"As a seasoned reporter, she had interviewed numerous world leaders.\",\"Translate\":\"作为一名经验丰富的记者,她采访过许多世界领导人。\",\"Level\":\"C1\"}]}",
  3250. "Sort": 0
  3251. },
  3252. {
  3253. "ID": 84019,
  3254. "Word": "use",
  3255. "WordRemark": null,
  3256. "Level": "A1",
  3257. "BookID": 197,
  3258. "LessonID": 5,
  3259. "LessonName": null,
  3260. "Soundmark": "[juiz]",
  3261. "Translate": "使用",
  3262. "EnglishExplanation": "{\"word\":\"use\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I use a pen to write.\",\"Translate\":\"我用钢笔写字。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I use your phone?\",\"Translate\":\"我可以用一下你的电话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"We use English in class.\",\"Translate\":\"我们在课堂上使用英语。\",\"Level\":\"A2\"},{\"Sentence\":\"She uses a computer for work.\",\"Translate\":\"她用电脑工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will use the new technology to improve efficiency.\",\"Translate\":\"公司将使用新技术来提高效率。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color was innovative and captivating.\",\"Translate\":\"艺术家对色彩的使用是创新且引人入胜的。\",\"Level\":\"C1\"}]}",
  3263. "ExampleSentence": "{\"word\":\"use\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I use a pen to write.\",\"Translate\":\"我用钢笔写字。\",\"Level\":\"A1\"},{\"Sentence\":\"Can I use your phone?\",\"Translate\":\"我可以用一下你的电话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"We use English in class.\",\"Translate\":\"我们在课堂上使用英语。\",\"Level\":\"A2\"},{\"Sentence\":\"She uses a computer for work.\",\"Translate\":\"她用电脑工作。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will use the new technology to improve efficiency.\",\"Translate\":\"公司将使用新技术来提高效率。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color was innovative and captivating.\",\"Translate\":\"艺术家对色彩的使用是创新且引人入胜的。\",\"Level\":\"C1\"}]}",
  3264. "Sort": 0
  3265. },
  3266. {
  3267. "ID": 84020,
  3268. "Word": "type",
  3269. "WordRemark": null,
  3270. "Level": "A2",
  3271. "BookID": 197,
  3272. "LessonID": 5,
  3273. "LessonName": null,
  3274. "Soundmark": "[taip]",
  3275. "Translate": "打字",
  3276. "EnglishExplanation": "{\"word\":\"type\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"This is my type of music.\",\"Translate\":\"这是我喜欢的音乐类型。\",\"Level\":\"A2\"},{\"Sentence\":\"She's not my type.\",\"Translate\":\"她不是我喜欢的类型。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will type the documents and send them to you.\",\"Translate\":\"公司将把文件打出来并寄给你。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary is busy typing the report.\",\"Translate\":\"秘书正忙着打报告。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone is considered a game-changer in the tech industry, representing a new type of innovative product.\",\"Translate\":\"这款新型智能手机被认为是科技行业的颠覆者,代表了一种新型的创新产品。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of different materials and techniques resulted in a unique type of sculpture that challenged traditional notions of the art form.\",\"Translate\":\"艺术家使用不同的材料和技巧,创造出一种独特的雕塑类型,挑战了人们对这种艺术形式的传统观念。\",\"Level\":\"C1\"}]}",
  3277. "ExampleSentence": "{\"word\":\"type\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"This is my type of music.\",\"Translate\":\"这是我喜欢的音乐类型。\",\"Level\":\"A2\"},{\"Sentence\":\"She's not my type.\",\"Translate\":\"她不是我喜欢的类型。\",\"Level\":\"A2\"},{\"Sentence\":\"The company will type the documents and send them to you.\",\"Translate\":\"公司将把文件打出来并寄给你。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary is busy typing the report.\",\"Translate\":\"秘书正忙着打报告。\",\"Level\":\"B1\"},{\"Sentence\":\"The new smartphone is considered a game-changer in the tech industry, representing a new type of innovative product.\",\"Translate\":\"这款新型智能手机被认为是科技行业的颠覆者,代表了一种新型的创新产品。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of different materials and techniques resulted in a unique type of sculpture that challenged traditional notions of the art form.\",\"Translate\":\"艺术家使用不同的材料和技巧,创造出一种独特的雕塑类型,挑战了人们对这种艺术形式的传统观念。\",\"Level\":\"C1\"}]}",
  3278. "Sort": 0
  3279. },
  3280. {
  3281. "ID": 84021,
  3282. "Word": "quickly",
  3283. "WordRemark": null,
  3284. "Level": "A2",
  3285. "BookID": 197,
  3286. "LessonID": 5,
  3287. "LessonName": null,
  3288. "Soundmark": "[kwikli]",
  3289. "Translate": "迅速地",
  3290. "EnglishExplanation": "{\"word\":\"quickly\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She quickly finished her homework.\",\"Translate\":\"她很快完成了作业。\",\"Level\":\"A2\"},{\"Sentence\":\"The fire spread quickly throughout the building.\",\"Translate\":\"火势迅速蔓延至整栋大楼。\",\"Level\":\"B1\"},{\"Sentence\":\"The company quickly adapted to the changing market conditions.\",\"Translate\":\"公司迅速适应了不断变化的市场环境。\",\"Level\":\"B2\"},{\"Sentence\":\"The news of the merger spread quickly among investors, causing a surge in stock prices.\",\"Translate\":\"合并的消息迅速在投资者中传播,导致股价飙升。\",\"Level\":\"C1\"},{\"Sentence\":\"As the situation escalated, the response team quickly mobilized to mitigate the damage.\",\"Translate\":\"随着局势升级,响应团队迅速动员以减轻损失。\",\"Level\":\"C1\"}]}",
  3291. "ExampleSentence": "{\"word\":\"quickly\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She quickly finished her homework.\",\"Translate\":\"她很快完成了作业。\",\"Level\":\"A2\"},{\"Sentence\":\"The fire spread quickly throughout the building.\",\"Translate\":\"火势迅速蔓延至整栋大楼。\",\"Level\":\"B1\"},{\"Sentence\":\"The company quickly adapted to the changing market conditions.\",\"Translate\":\"公司迅速适应了不断变化的市场环境。\",\"Level\":\"B2\"},{\"Sentence\":\"The news of the merger spread quickly among investors, causing a surge in stock prices.\",\"Translate\":\"合并的消息迅速在投资者中传播,导致股价飙升。\",\"Level\":\"C1\"},{\"Sentence\":\"As the situation escalated, the response team quickly mobilized to mitigate the damage.\",\"Translate\":\"随着局势升级,响应团队迅速动员以减轻损失。\",\"Level\":\"C1\"}]}",
  3292. "Sort": 0
  3293. },
  3294. {
  3295. "ID": 84022,
  3296. "Word": "secretary",
  3297. "WordRemark": null,
  3298. "Level": "A2",
  3299. "BookID": 197,
  3300. "LessonID": 5,
  3301. "LessonName": null,
  3302. "Soundmark": "['sekratri]",
  3303. "Translate": "秘书",
  3304. "EnglishExplanation": "{\"word\":\"secretary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The secretary is typing a report.\",\"Translate\":\"秘书正在打一份报告。\",\"Level\":\"A2\"},{\"Sentence\":\"She works as a secretary in a big company.\",\"Translate\":\"她在一家大公司担任秘书。\",\"Level\":\"A2\"},{\"Sentence\":\"The company's secretary is responsible for handling correspondence.\",\"Translate\":\"公司的秘书负责处理信件。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary general of the United Nations is a very important position.\",\"Translate\":\"联合国秘书长是一个非常重要的职位。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary of state will attend the international conference.\",\"Translate\":\"国务卿将出席国际会议。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's secretary played a crucial role in the merger negotiations.\",\"Translate\":\"公司秘书在合并谈判中发挥了至关重要的作用。\",\"Level\":\"C1\"}]}",
  3305. "ExampleSentence": "{\"word\":\"secretary\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The secretary is typing a report.\",\"Translate\":\"秘书正在打一份报告。\",\"Level\":\"A2\"},{\"Sentence\":\"She works as a secretary in a big company.\",\"Translate\":\"她在一家大公司担任秘书。\",\"Level\":\"A2\"},{\"Sentence\":\"The company's secretary is responsible for handling correspondence.\",\"Translate\":\"公司的秘书负责处理信件。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary general of the United Nations is a very important position.\",\"Translate\":\"联合国秘书长是一个非常重要的职位。\",\"Level\":\"B1\"},{\"Sentence\":\"The secretary of state will attend the international conference.\",\"Translate\":\"国务卿将出席国际会议。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's secretary played a crucial role in the merger negotiations.\",\"Translate\":\"公司秘书在合并谈判中发挥了至关重要的作用。\",\"Level\":\"C1\"}]}",
  3306. "Sort": 0
  3307. },
  3308. {
  3309. "ID": 84023,
  3310. "Word": "angry",
  3311. "WordRemark": null,
  3312. "Level": "A2",
  3313. "BookID": 197,
  3314. "LessonID": 6,
  3315. "LessonName": null,
  3316. "Soundmark": "[angri]",
  3317. "Translate": "生气的",
  3318. "EnglishExplanation": "{\"word\":\"angry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was angry with her brother.\",\"Translate\":\"她对她的哥哥很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher was angry at the noisy students.\",\"Translate\":\"老师对吵闹的学生很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The crowd became angry when their team lost the final.\",\"Translate\":\"当他们的队伍输掉决赛时,人群变得愤怒了。\",\"Level\":\"B1\"},{\"Sentence\":\"The angry mob demanded justice.\",\"Translate\":\"愤怒的暴徒要求正义。\",\"Level\":\"B1\"},{\"Sentence\":\"The politician's decision sparked an angry backlash from the community.\",\"Translate\":\"这位政治家的决定引发了社区的愤怒反应。\",\"Level\":\"C1\"},{\"Sentence\":\"The angry tone in her voice was unmistakable.\",\"Translate\":\"她声音中的愤怒语气是毋庸置疑的。\",\"Level\":\"C1\"}]}",
  3319. "ExampleSentence": "{\"word\":\"angry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was angry with her brother.\",\"Translate\":\"她对她的哥哥很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher was angry at the noisy students.\",\"Translate\":\"老师对吵闹的学生很生气。\",\"Level\":\"A2\"},{\"Sentence\":\"The crowd became angry when their team lost the final.\",\"Translate\":\"当他们的队伍输掉决赛时,人群变得愤怒了。\",\"Level\":\"B1\"},{\"Sentence\":\"The angry mob demanded justice.\",\"Translate\":\"愤怒的暴徒要求正义。\",\"Level\":\"B1\"},{\"Sentence\":\"The politician's decision sparked an angry backlash from the community.\",\"Translate\":\"这位政治家的决定引发了社区的愤怒反应。\",\"Level\":\"C1\"},{\"Sentence\":\"The angry tone in her voice was unmistakable.\",\"Translate\":\"她声音中的愤怒语气是毋庸置疑的。\",\"Level\":\"C1\"}]}",
  3320. "Sort": 0
  3321. },
  3322. {
  3323. "ID": 84024,
  3324. "Word": "afraid",
  3325. "WordRemark": null,
  3326. "Level": "A1",
  3327. "BookID": 197,
  3328. "LessonID": 6,
  3329. "LessonName": null,
  3330. "Soundmark": "[a'freid]",
  3331. "Translate": "害怕",
  3332. "EnglishExplanation": "{\"word\":\"afraid\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm afraid of the dark.\",\"Translate\":\"我害怕黑暗。\",\"Level\":\"A1\"},{\"Sentence\":\"She's afraid to speak in front of the class.\",\"Translate\":\"她害怕在全班面前发言。\",\"Level\":\"A2\"},{\"Sentence\":\"The child was afraid of being left alone at home.\",\"Translate\":\"这个孩子害怕被独自留在家里。\",\"Level\":\"B1\"},{\"Sentence\":\"He's afraid that he might fail the exam.\",\"Translate\":\"他担心自己可能会考试不及格。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is afraid of losing its market share due to the new competitor.\",\"Translate\":\"公司担心由于新竞争者的出现而失去市场份额。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists were afraid to venture out at night due to the high crime rate.\",\"Translate\":\"由于犯罪率高,游客们不敢在晚上外出。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician was afraid of being implicated in the scandal.\",\"Translate\":\"这位政治家担心会卷入丑闻中。\",\"Level\":\"C1\"},{\"Sentence\":\"The researcher was afraid that her groundbreaking discovery might be misused.\",\"Translate\":\"研究人员担心她开创性的发现可能会被滥用。\",\"Level\":\"C1\"}]}",
  3333. "ExampleSentence": "{\"word\":\"afraid\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm afraid of the dark.\",\"Translate\":\"我害怕黑暗。\",\"Level\":\"A1\"},{\"Sentence\":\"She's afraid to speak in front of the class.\",\"Translate\":\"她害怕在全班面前发言。\",\"Level\":\"A2\"},{\"Sentence\":\"The child was afraid of being left alone at home.\",\"Translate\":\"这个孩子害怕被独自留在家里。\",\"Level\":\"B1\"},{\"Sentence\":\"He's afraid that he might fail the exam.\",\"Translate\":\"他担心自己可能会考试不及格。\",\"Level\":\"B1\"},{\"Sentence\":\"The company is afraid of losing its market share due to the new competitor.\",\"Translate\":\"公司担心由于新竞争者的出现而失去市场份额。\",\"Level\":\"B2\"},{\"Sentence\":\"The tourists were afraid to venture out at night due to the high crime rate.\",\"Translate\":\"由于犯罪率高,游客们不敢在晚上外出。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician was afraid of being implicated in the scandal.\",\"Translate\":\"这位政治家担心会卷入丑闻中。\",\"Level\":\"C1\"},{\"Sentence\":\"The researcher was afraid that her groundbreaking discovery might be misused.\",\"Translate\":\"研究人员担心她开创性的发现可能会被滥用。\",\"Level\":\"C1\"}]}",
  3334. "Sort": 0
  3335. },
  3336. {
  3337. "ID": 84025,
  3338. "Word": "sad",
  3339. "WordRemark": null,
  3340. "Level": "A1",
  3341. "BookID": 197,
  3342. "LessonID": 6,
  3343. "LessonName": null,
  3344. "Soundmark": "[saed]",
  3345. "Translate": "难过的",
  3346. "EnglishExplanation": "{\"word\":\"sad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She looked sad when she heard the news.\",\"Translate\":\"当她听到这个消息时,看起来很悲伤。\",\"Level\":\"A1\"},{\"Sentence\":\"The sad movie made me cry.\",\"Translate\":\"那部悲伤的电影让我哭了。\",\"Level\":\"A1\"},{\"Sentence\":\"He felt sad about leaving his friends behind.\",\"Translate\":\"他对离开朋友们感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The news of the pet's death made the children very sad.\",\"Translate\":\"宠物死亡的消息让孩子们非常难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The artist's use of dark colors conveyed a sad mood.\",\"Translate\":\"艺术家使用深色调传递了一种悲伤的情绪。\",\"Level\":\"C1\"},{\"Sentence\":\"The novel's sad ending left a lasting impression on the readers.\",\"Translate\":\"小说的悲伤结局给读者留下了深刻的印象。\",\"Level\":\"C1\"}]}",
  3347. "ExampleSentence": "{\"word\":\"sad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"She looked sad when she heard the news.\",\"Translate\":\"当她听到这个消息时,看起来很悲伤。\",\"Level\":\"A1\"},{\"Sentence\":\"The sad movie made me cry.\",\"Translate\":\"那部悲伤的电影让我哭了。\",\"Level\":\"A1\"},{\"Sentence\":\"He felt sad about leaving his friends behind.\",\"Translate\":\"他对离开朋友们感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The news of the pet's death made the children very sad.\",\"Translate\":\"宠物死亡的消息让孩子们非常难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The artist's use of dark colors conveyed a sad mood.\",\"Translate\":\"艺术家使用深色调传递了一种悲伤的情绪。\",\"Level\":\"C1\"},{\"Sentence\":\"The novel's sad ending left a lasting impression on the readers.\",\"Translate\":\"小说的悲伤结局给读者留下了深刻的印象。\",\"Level\":\"C1\"}]}",
  3348. "Sort": 0
  3349. },
  3350. {
  3351. "ID": 84026,
  3352. "Word": "worried",
  3353. "WordRemark": null,
  3354. "Level": "A2",
  3355. "BookID": 197,
  3356. "LessonID": 6,
  3357. "LessonName": null,
  3358. "Soundmark": "[wArid]",
  3359. "Translate": "担心的;发愁的",
  3360. "EnglishExplanation": "{\"word\":\"worried\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was worried about her exam results.\",\"Translate\":\"她担心她的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"The worried look on his face made me feel uneasy.\",\"Translate\":\"他脸上担忧的表情让我感到不安。\",\"Level\":\"B1\"},{\"Sentence\":\"The parents were getting increasingly worried as their child hadn't returned home yet.\",\"Translate\":\"孩子还没回家,父母越来越担心。\",\"Level\":\"B1\"},{\"Sentence\":\"Worried about the impact of climate change, the government has implemented new policies.\",\"Translate\":\"由于担心气候变化的影响,政府实施了新的政策。\",\"Level\":\"B2\"},{\"Sentence\":\"The increasingly worried tone in her voice indicated that something was seriously wrong.\",\"Translate\":\"她声音中越来越担忧的语气表明有些事情非常不对劲。\",\"Level\":\"B2\"},{\"Sentence\":\"The CEO appeared worried about the company's financial future during the meeting.\",\"Translate\":\"在会议期间,首席执行官似乎对公司的财务未来感到担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"Worried by the rising number of cases, the health organization launched an emergency response.\",\"Translate\":\"由于担心病例数量的增加,卫生组织启动了紧急响",
  3361. "ExampleSentence": "{\"word\":\"worried\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was worried about her exam results.\",\"Translate\":\"她担心她的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"The worried look on his face made me feel uneasy.\",\"Translate\":\"他脸上担忧的表情让我感到不安。\",\"Level\":\"B1\"},{\"Sentence\":\"The parents were getting increasingly worried as their child hadn't returned home yet.\",\"Translate\":\"孩子还没回家,父母越来越担心。\",\"Level\":\"B1\"},{\"Sentence\":\"Worried about the impact of climate change, the government has implemented new policies.\",\"Translate\":\"由于担心气候变化的影响,政府实施了新的政策。\",\"Level\":\"B2\"},{\"Sentence\":\"The increasingly worried tone in her voice indicated that something was seriously wrong.\",\"Translate\":\"她声音中越来越担忧的语气表明有些事情非常不对劲。\",\"Level\":\"B2\"},{\"Sentence\":\"The CEO appeared worried about the company's financial future during the meeting.\",\"Translate\":\"在会议期间,首席执行官似乎对公司的财务未来感到担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"Worried by the rising number of cases, the health organization launched an emergency response.\",\"Translate\":\"由于担心病例数量的增加,卫生组织启动了紧急响应。\",\"Level\":\"C1\"}]}",
  3362. "Sort": 0
  3363. },
  3364. {
  3365. "ID": 84027,
  3366. "Word": "happy",
  3367. "WordRemark": null,
  3368. "Level": "A1",
  3369. "BookID": 197,
  3370. "LessonID": 6,
  3371. "LessonName": null,
  3372. "Soundmark": "[haepi]",
  3373. "Translate": "高兴的",
  3374. "EnglishExplanation": "{\"word\":\"happy\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm happy to see you.\",\"Translate\":\"我很高兴见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The children were happy playing in the park.\",\"Translate\":\"孩子们在公园里玩得很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"She's happy with her new job.\",\"Translate\":\"她对自己的新工作很满意。\",\"Level\":\"A2\"},{\"Sentence\":\"He felt happy when he got the good news.\",\"Translate\":\"他听到这个好消息时感到很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"The team was happy to have won the championship.\",\"Translate\":\"球队很高兴赢得了冠军。\",\"Level\":\"B1\"},{\"Sentence\":\"The happy couple got married last weekend.\",\"Translate\":\"这对幸福的夫妇上周末结婚了。\",\"Level\":\"B1\"},{\"Sentence\":\"The news made her incredibly happy.\",\"Translate\":\"这个消息让她非常高兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The atmosphere at the party was happy and relaxed.\",\"Translate\":\"聚会上的气氛轻松愉快。\",\"Level\":\"C1\"}]}",
  3375. "ExampleSentence": "{\"word\":\"happy\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm happy to see you.\",\"Translate\":\"我很高兴见到你。\",\"Level\":\"A1\"},{\"Sentence\":\"The children were happy playing in the park.\",\"Translate\":\"孩子们在公园里玩得很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"She's happy with her new job.\",\"Translate\":\"她对自己的新工作很满意。\",\"Level\":\"A2\"},{\"Sentence\":\"He felt happy when he got the good news.\",\"Translate\":\"他听到这个好消息时感到很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"The team was happy to have won the championship.\",\"Translate\":\"球队很高兴赢得了冠军。\",\"Level\":\"B1\"},{\"Sentence\":\"The happy couple got married last weekend.\",\"Translate\":\"这对幸福的夫妇上周末结婚了。\",\"Level\":\"B1\"},{\"Sentence\":\"The news made her incredibly happy.\",\"Translate\":\"这个消息让她非常高兴。\",\"Level\":\"C1\"},{\"Sentence\":\"The atmosphere at the party was happy and relaxed.\",\"Translate\":\"聚会上的气氛轻松愉快。\",\"Level\":\"C1\"}]}",
  3376. "Sort": 0
  3377. },
  3378. {
  3379. "ID": 84028,
  3380. "Word": "see a doctor",
  3381. "WordRemark": null,
  3382. "Level": null,
  3383. "BookID": 197,
  3384. "LessonID": 6,
  3385. "LessonName": null,
  3386. "Soundmark": null,
  3387. "Translate": "看病",
  3388. "EnglishExplanation": "",
  3389. "ExampleSentence": null,
  3390. "Sort": 0
  3391. },
  3392. {
  3393. "ID": 84029,
  3394. "Word": "wear",
  3395. "WordRemark": null,
  3396. "Level": "A1",
  3397. "BookID": 197,
  3398. "LessonID": 6,
  3399. "LessonName": null,
  3400. "Soundmark": "[wea(r)]",
  3401. "Translate": "穿",
  3402. "EnglishExplanation": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
  3403. "ExampleSentence": "{\"word\":\"wear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I wear a coat in winter.\",\"Translate\":\"冬天我穿大衣。\",\"Level\":\"A1\"},{\"Sentence\":\"She wears glasses.\",\"Translate\":\"她戴眼镜。\",\"Level\":\"A1\"},{\"Sentence\":\"The favourite shoes she wore were red.\",\"Translate\":\"她最喜欢穿的鞋子是红色的。\",\"Level\":\"B1\"},{\"Sentence\":\"The rocks are worn smooth by the constant flow of water.\",\"Translate\":\"岩石因水的持续流动而被磨平滑了。\",\"Level\":\"B1\"},{\"Sentence\":\"The old building is showing signs of wear.\",\"Translate\":\"这座老建筑显示出磨损的迹象。\",\"Level\":\"C1\"},{\"Sentence\":\"The manager was worn out by the stress of the job.\",\"Translate\":\"经理因工作的压力而疲惫不堪。\",\"Level\":\"C1\"}]}",
  3404. "Sort": 0
  3405. },
  3406. {
  3407. "ID": 84030,
  3408. "Word": "more",
  3409. "WordRemark": null,
  3410. "Level": "A1",
  3411. "BookID": 197,
  3412. "LessonID": 6,
  3413. "LessonName": null,
  3414. "Soundmark": "[mo:(r)]",
  3415. "Translate": "更多的",
  3416. "EnglishExplanation": "{\"word\":\"more\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I want more water.\",\"Translate\":\"我要更多的水.\",\"Level\":\"A1\"},{\"Sentence\":\"She is more beautiful than her sister.\",\"Translate\":\"她比她姐姐更漂亮.\",\"Level\":\"A2\"},{\"Sentence\":\"The more I read, the more I understand.\",\"Translate\":\"我读得越多,理解得就越多.\",\"Level\":\"B1\"},{\"Sentence\":\"He is more intelligent than I expected.\",\"Translate\":\"他比我预期的更聪明.\",\"Level\":\"B1\"},{\"Sentence\":\"The more complicated the problem is, the more carefully we need to analyze it.\",\"Translate\":\"问题越复杂,我们就越需要仔细分析.\",\"Level\":\"C1\"},{\"Sentence\":\"She is more of a perfectionist than I am.\",\"Translate\":\"她比我更像一个完美主义者.\",\"Level\":\"C1\"}]}",
  3417. "ExampleSentence": "{\"word\":\"more\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I want more water.\",\"Translate\":\"我要更多的水.\",\"Level\":\"A1\"},{\"Sentence\":\"She is more beautiful than her sister.\",\"Translate\":\"她比她姐姐更漂亮.\",\"Level\":\"A2\"},{\"Sentence\":\"The more I read, the more I understand.\",\"Translate\":\"我读得越多,理解得就越多.\",\"Level\":\"B1\"},{\"Sentence\":\"He is more intelligent than I expected.\",\"Translate\":\"他比我预期的更聪明.\",\"Level\":\"B1\"},{\"Sentence\":\"The more complicated the problem is, the more carefully we need to analyze it.\",\"Translate\":\"问题越复杂,我们就越需要仔细分析.\",\"Level\":\"C1\"},{\"Sentence\":\"She is more of a perfectionist than I am.\",\"Translate\":\"她比我更像一个完美主义者.\",\"Level\":\"C1\"}]}",
  3418. "Sort": 0
  3419. },
  3420. {
  3421. "ID": 84031,
  3422. "Word": "deep",
  3423. "WordRemark": null,
  3424. "Level": "A2",
  3425. "BookID": 197,
  3426. "LessonID": 6,
  3427. "LessonName": null,
  3428. "Soundmark": "[dip]",
  3429. "Translate": "深的",
  3430. "EnglishExplanation": "{\"word\":\"deep\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The lake is very deep.\",\"Translate\":\"这个湖很深。\",\"Level\":\"A2\"},{\"Sentence\":\"She has a deep voice.\",\"Translate\":\"她有一副深沉的声音。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made a deep analysis of the data.\",\"Translate\":\"研究人员对数据进行了深入的分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The company is in deep financial trouble.\",\"Translate\":\"公司陷入了严重的财务困境。\",\"Level\":\"B2\"},{\"Sentence\":\"The new policy has deep implications for the industry.\",\"Translate\":\"新政策对该行业有着深远的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color creates a deep sense of emotion.\",\"Translate\":\"艺术家对色彩的运用营造出一种深刻的情感氛围。\",\"Level\":\"C1\"}]}",
  3431. "ExampleSentence": "{\"word\":\"deep\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The lake is very deep.\",\"Translate\":\"这个湖很深。\",\"Level\":\"A2\"},{\"Sentence\":\"She has a deep voice.\",\"Translate\":\"她有一副深沉的声音。\",\"Level\":\"A2\"},{\"Sentence\":\"The researchers made a deep analysis of the data.\",\"Translate\":\"研究人员对数据进行了深入的分析。\",\"Level\":\"B2\"},{\"Sentence\":\"The company is in deep financial trouble.\",\"Translate\":\"公司陷入了严重的财务困境。\",\"Level\":\"B2\"},{\"Sentence\":\"The new policy has deep implications for the industry.\",\"Translate\":\"新政策对该行业有着深远的影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color creates a deep sense of emotion.\",\"Translate\":\"艺术家对色彩的运用营造出一种深刻的情感氛围。\",\"Level\":\"C1\"}]}",
  3432. "Sort": 0
  3433. },
  3434. {
  3435. "ID": 84032,
  3436. "Word": "breath",
  3437. "WordRemark": null,
  3438. "Level": "A2",
  3439. "BookID": 197,
  3440. "LessonID": 6,
  3441. "LessonName": null,
  3442. "Soundmark": "[brea]",
  3443. "Translate": "呼吸",
  3444. "EnglishExplanation": "{\"word\":\"breath\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Take a deep breath and relax.\",\"Translate\":\"深呼吸然后放松.\",\"Level\":\"A2\"},{\"Sentence\":\"She was out of breath after running.\",\"Translate\":\"她跑步后喘不过气.\",\"Level\":\"A2\"},{\"Sentence\":\"The fresh mountain air filled her lungs with every breath.\",\"Translate\":\"清新的山间空气随着每次呼吸充满了她的肺部.\",\"Level\":\"B1\"},{\"Sentence\":\"His breath smelled of garlic.\",\"Translate\":\"他的呼吸有大蒜味.\",\"Level\":\"B1\"},{\"Sentence\":\"The doctor listened to the patient's breath sounds.\",\"Translate\":\"医生听了病人的呼吸声.\",\"Level\":\"C1\"},{\"Sentence\":\"The sheer terror in her eyes took my breath away.\",\"Translate\":\"她眼中的极度恐惧让我惊呆了.\",\"Level\":\"C1\"}]}",
  3445. "ExampleSentence": "{\"word\":\"breath\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"Take a deep breath and relax.\",\"Translate\":\"深呼吸然后放松.\",\"Level\":\"A2\"},{\"Sentence\":\"She was out of breath after running.\",\"Translate\":\"她跑步后喘不过气.\",\"Level\":\"A2\"},{\"Sentence\":\"The fresh mountain air filled her lungs with every breath.\",\"Translate\":\"清新的山间空气随着每次呼吸充满了她的肺部.\",\"Level\":\"B1\"},{\"Sentence\":\"His breath smelled of garlic.\",\"Translate\":\"他的呼吸有大蒜味.\",\"Level\":\"B1\"},{\"Sentence\":\"The doctor listened to the patient's breath sounds.\",\"Translate\":\"医生听了病人的呼吸声.\",\"Level\":\"C1\"},{\"Sentence\":\"The sheer terror in her eyes took my breath away.\",\"Translate\":\"她眼中的极度恐惧让我惊呆了.\",\"Level\":\"C1\"}]}",
  3446. "Sort": 0
  3447. },
  3448. {
  3449. "ID": 84033,
  3450. "Word": "take a deep breath",
  3451. "WordRemark": null,
  3452. "Level": null,
  3453. "BookID": 197,
  3454. "LessonID": 6,
  3455. "LessonName": null,
  3456. "Soundmark": null,
  3457. "Translate": "深深吸一口气",
  3458. "EnglishExplanation": "",
  3459. "ExampleSentence": null,
  3460. "Sort": 0
  3461. },
  3462. {
  3463. "ID": 84034,
  3464. "Word": "count",
  3465. "WordRemark": null,
  3466. "Level": "A2",
  3467. "BookID": 197,
  3468. "LessonID": 6,
  3469. "LessonName": null,
  3470. "Soundmark": "[kaunt]",
  3471. "Translate": "数数",
  3472. "EnglishExplanation": "{\"word\":\"count\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She can count to ten in English.\",\"Translate\":\"她可以用英语数到十。\",\"Level\":\"A2\"},{\"Sentence\":\"The count of students in the class is 30.\",\"Translate\":\"班级里的学生总数是30。\",\"Level\":\"B1\"},{\"Sentence\":\"The count of votes is still ongoing.\",\"Translate\":\"计票仍在进行中。\",\"Level\":\"B1\"},{\"Sentence\":\"The countenance of the city changed after the new development.\",\"Translate\":\"新发展后,城市的面貌发生了变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The count's estate was vast and beautiful.\",\"Translate\":\"伯爵的庄园广阔而美丽。\",\"Level\":\"C1\"}]}",
  3473. "ExampleSentence": "{\"word\":\"count\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She can count to ten in English.\",\"Translate\":\"她可以用英语数到十。\",\"Level\":\"A2\"},{\"Sentence\":\"The count of students in the class is 30.\",\"Translate\":\"班级里的学生总数是30。\",\"Level\":\"B1\"},{\"Sentence\":\"The count of votes is still ongoing.\",\"Translate\":\"计票仍在进行中。\",\"Level\":\"B1\"},{\"Sentence\":\"The countenance of the city changed after the new development.\",\"Translate\":\"新发展后,城市的面貌发生了变化。\",\"Level\":\"C1\"},{\"Sentence\":\"The count's estate was vast and beautiful.\",\"Translate\":\"伯爵的庄园广阔而美丽。\",\"Level\":\"C1\"}]}",
  3474. "Sort": 0
  3475. },
  3476. {
  3477. "ID": 84035,
  3478. "Word": "count to ten",
  3479. "WordRemark": null,
  3480. "Level": null,
  3481. "BookID": 197,
  3482. "LessonID": 6,
  3483. "LessonName": null,
  3484. "Soundmark": null,
  3485. "Translate": "数到十",
  3486. "EnglishExplanation": "",
  3487. "ExampleSentence": null,
  3488. "Sort": 0
  3489. },
  3490. {
  3491. "ID": 84036,
  3492. "Word": "chase",
  3493. "WordRemark": null,
  3494. "Level": "A2",
  3495. "BookID": 197,
  3496. "LessonID": 6,
  3497. "LessonName": null,
  3498. "Soundmark": "[tfeis]",
  3499. "Translate": "追赶",
  3500. "EnglishExplanation": "{\"word\":\"chase\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The police chased the thief down the street.\",\"Translate\":\"警察在街上追赶小偷。\",\"Level\":\"A2\"},{\"Sentence\":\"The kids love to chase each other in the park.\",\"Translate\":\"孩子们喜欢在公园里互相追逐。\",\"Level\":\"A2\"},{\"Sentence\":\"The detective was tasked with chasing down new leads.\",\"Translate\":\"侦探的任务是追查新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will chase after new business opportunities.\",\"Translate\":\"公司将追求新的商业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's latest series chases the elusive concept of beauty.\",\"Translate\":\"艺术家的最新系列作品追寻着难以捉摸的美丽概念。\",\"Level\":\"C1\"},{\"Sentence\":\"The philosopher's ideas continue to chase the implications of technological advancements.\",\"Translate\":\"哲学家的思想继续追寻技术进步的含义。\",\"Level\":\"C1\"}]}",
  3501. "ExampleSentence": "{\"word\":\"chase\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The police chased the thief down the street.\",\"Translate\":\"警察在街上追赶小偷。\",\"Level\":\"A2\"},{\"Sentence\":\"The kids love to chase each other in the park.\",\"Translate\":\"孩子们喜欢在公园里互相追逐。\",\"Level\":\"A2\"},{\"Sentence\":\"The detective was tasked with chasing down new leads.\",\"Translate\":\"侦探的任务是追查新的线索。\",\"Level\":\"B1\"},{\"Sentence\":\"The company will chase after new business opportunities.\",\"Translate\":\"公司将追求新的商业机会。\",\"Level\":\"B1\"},{\"Sentence\":\"The artist's latest series chases the elusive concept of beauty.\",\"Translate\":\"艺术家的最新系列作品追寻着难以捉摸的美丽概念。\",\"Level\":\"C1\"},{\"Sentence\":\"The philosopher's ideas continue to chase the implications of technological advancements.\",\"Translate\":\"哲学家的思想继续追寻技术进步的含义。\",\"Level\":\"C1\"}]}",
  3502. "Sort": 0
  3503. },
  3504. {
  3505. "ID": 84037,
  3506. "Word": "mice",
  3507. "WordRemark": null,
  3508. "Level": null,
  3509. "BookID": 197,
  3510. "LessonID": 6,
  3511. "LessonName": null,
  3512. "Soundmark": "[mais]",
  3513. "Translate": "老鼠(复数)",
  3514. "EnglishExplanation": "",
  3515. "ExampleSentence": null,
  3516. "Sort": 0
  3517. },
  3518. {
  3519. "ID": 84038,
  3520. "Word": "bad",
  3521. "WordRemark": null,
  3522. "Level": "A1",
  3523. "BookID": 197,
  3524. "LessonID": 6,
  3525. "LessonName": null,
  3526. "Soundmark": "[baed]",
  3527. "Translate": "邪恶的;坏的",
  3528. "EnglishExplanation": "{\"word\":\"bad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The food was bad.\",\"Translate\":\"食物很糟糕。\",\"Level\":\"A1\"},{\"Sentence\":\"He has a bad cold.\",\"Translate\":\"他患了重感冒。\",\"Level\":\"A1\"},{\"Sentence\":\"The air quality is really bad today.\",\"Translate\":\"今天的空气质量很差。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt bad about forgetting her friend's birthday.\",\"Translate\":\"她因为忘记了朋友的生日而感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The bad weather ruined our plans for the picnic.\",\"Translate\":\"糟糕的天气破坏了我们的野餐计划。\",\"Level\":\"B1\"},{\"Sentence\":\"He has a bad habit of biting his nails when he's nervous.\",\"Translate\":\"他有个坏习惯,紧张时就会咬指甲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial situation is getting worse, and it's having a bad impact on the employees.\",\"Translate\":\"公司的财务状况越来越糟糕,对员工产生了不良影响。\",\"Level\":\"B2\"},{\"Sentence\":\"The bad news spread quickly through the town.\",\"Translate\":\"坏消息在镇上迅速传播。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician's scandal had a bad effect on his reputation.\",\"Translate\":\"那位政治家的丑闻对他的声誉产生了恶劣影响。\",\"Level\":\"C1\"},",
  3529. "ExampleSentence": "{\"word\":\"bad\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The food was bad.\",\"Translate\":\"食物很糟糕。\",\"Level\":\"A1\"},{\"Sentence\":\"He has a bad cold.\",\"Translate\":\"他患了重感冒。\",\"Level\":\"A1\"},{\"Sentence\":\"The air quality is really bad today.\",\"Translate\":\"今天的空气质量很差。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt bad about forgetting her friend's birthday.\",\"Translate\":\"她因为忘记了朋友的生日而感到难过。\",\"Level\":\"A2\"},{\"Sentence\":\"The bad weather ruined our plans for the picnic.\",\"Translate\":\"糟糕的天气破坏了我们的野餐计划。\",\"Level\":\"B1\"},{\"Sentence\":\"He has a bad habit of biting his nails when he's nervous.\",\"Translate\":\"他有个坏习惯,紧张时就会咬指甲。\",\"Level\":\"B1\"},{\"Sentence\":\"The company's financial situation is getting worse, and it's having a bad impact on the employees.\",\"Translate\":\"公司的财务状况越来越糟糕,对员工产生了不良影响。\",\"Level\":\"B2\"},{\"Sentence\":\"The bad news spread quickly through the town.\",\"Translate\":\"坏消息在镇上迅速传播。\",\"Level\":\"B2\"},{\"Sentence\":\"The politician's scandal had a bad effect on his reputation.\",\"Translate\":\"那位政治家的丑闻对他的声誉产生了恶劣影响。\",\"Level\":\"C1\"},{\"Sentence\":\"The bad faith shown by the company led to a loss of trust among its customers.\",\"Translate\":\"公司表现出的恶意导致客户对其失去了信任。\",\"Level\":\"C1\"}]}",
  3530. "Sort": 0
  3531. },
  3532. {
  3533. "ID": 84039,
  3534. "Word": "hurt",
  3535. "WordRemark": null,
  3536. "Level": "A2",
  3537. "BookID": 197,
  3538. "LessonID": 6,
  3539. "LessonName": null,
  3540. "Soundmark": "[h3:t]",
  3541. "Translate": "(使)受伤",
  3542. "EnglishExplanation": "{\"word\":\"hurt\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I fell down and hurt my knee.\",\"Translate\":\"我摔倒了,伤到了膝盖。\",\"Level\":\"A2\"},{\"Sentence\":\"Be careful not to hurt yourself.\",\"Translate\":\"小心别伤到自己。\",\"Level\":\"A2\"},{\"Sentence\":\"The criticism really hurt her feelings.\",\"Translate\":\"批评真的伤害了她的感情。\",\"Level\":\"B1\"},{\"Sentence\":\"The scandal hurt the company's reputation.\",\"Translate\":\"丑闻损害了公司的声誉。\",\"Level\":\"B1\"},{\"Sentence\":\"The experience left her emotionally hurt and scarred.\",\"Translate\":\"这段经历让她在情感上受到了伤害和创伤。\",\"Level\":\"C1\"},{\"Sentence\":\"The hurt caused by his betrayal still lingered.\",\"Translate\":\"他背叛所带来的伤害仍然挥之不去。\",\"Level\":\"C1\"}]}",
  3543. "ExampleSentence": "{\"word\":\"hurt\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I fell down and hurt my knee.\",\"Translate\":\"我摔倒了,伤到了膝盖。\",\"Level\":\"A2\"},{\"Sentence\":\"Be careful not to hurt yourself.\",\"Translate\":\"小心别伤到自己。\",\"Level\":\"A2\"},{\"Sentence\":\"The criticism really hurt her feelings.\",\"Translate\":\"批评真的伤害了她的感情。\",\"Level\":\"B1\"},{\"Sentence\":\"The scandal hurt the company's reputation.\",\"Translate\":\"丑闻损害了公司的声誉。\",\"Level\":\"B1\"},{\"Sentence\":\"The experience left her emotionally hurt and scarred.\",\"Translate\":\"这段经历让她在情感上受到了伤害和创伤。\",\"Level\":\"C1\"},{\"Sentence\":\"The hurt caused by his betrayal still lingered.\",\"Translate\":\"他背叛所带来的伤害仍然挥之不去。\",\"Level\":\"C1\"}]}",
  3544. "Sort": 0
  3545. },
  3546. {
  3547. "ID": 84040,
  3548. "Word": "ill",
  3549. "WordRemark": null,
  3550. "Level": "A2",
  3551. "BookID": 197,
  3552. "LessonID": 6,
  3553. "LessonName": null,
  3554. "Soundmark": "[il]",
  3555. "Translate": "有病;不舒服",
  3556. "EnglishExplanation": "{\"word\":\"ill\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was ill and couldn't come to school.\",\"Translate\":\"她病了,不能来上学。\",\"Level\":\"A2\"},{\"Sentence\":\"The ill child was crying all night.\",\"Translate\":\"那个生病的孩子整夜都在哭。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor treated many ill patients during the epidemic.\",\"Translate\":\"在疫情期间,医生治疗了许多病人。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill effects of smoking are well known.\",\"Translate\":\"吸烟的危害是众所周知的。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill will between the two nations has been growing.\",\"Translate\":\"两国之间的恶意一直在增长。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's ill-conceived strategy led to its downfall.\",\"Translate\":\"公司错误的战略导致了它的垮台。\",\"Level\":\"C1\"}]}",
  3557. "ExampleSentence": "{\"word\":\"ill\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"She was ill and couldn't come to school.\",\"Translate\":\"她病了,不能来上学。\",\"Level\":\"A2\"},{\"Sentence\":\"The ill child was crying all night.\",\"Translate\":\"那个生病的孩子整夜都在哭。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor treated many ill patients during the epidemic.\",\"Translate\":\"在疫情期间,医生治疗了许多病人。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill effects of smoking are well known.\",\"Translate\":\"吸烟的危害是众所周知的。\",\"Level\":\"B1\"},{\"Sentence\":\"The ill will between the two nations has been growing.\",\"Translate\":\"两国之间的恶意一直在增长。\",\"Level\":\"C1\"},{\"Sentence\":\"The company's ill-conceived strategy led to its downfall.\",\"Translate\":\"公司错误的战略导致了它的垮台。\",\"Level\":\"C1\"}]}",
  3558. "Sort": 0
  3559. },
  3560. {
  3561. "ID": 84041,
  3562. "Word": "wrong",
  3563. "WordRemark": null,
  3564. "Level": "A2",
  3565. "BookID": 197,
  3566. "LessonID": 6,
  3567. "LessonName": null,
  3568. "Soundmark": "[rpn]",
  3569. "Translate": "有毛病",
  3570. "EnglishExplanation": "{\"word\":\"wrong\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I think you've got the wrong number.\",\"Translate\":\"我觉得你拨错电话号码了。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor made a wrong diagnosis.\",\"Translate\":\"医生做出了错误的诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"It would be wrong to assume that the project will be easy.\",\"Translate\":\"认为这个项目很容易是错误的。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's wrong investment decisions led to significant financial losses.\",\"Translate\":\"公司错误的投资决定导致了巨大的财务损失。\",\"Level\":\"C1\"},{\"Sentence\":\"The detective realized that the initial suspect was wrong and continued the investigation.\",\"Translate\":\"侦探意识到最初的嫌疑人是错误的,并继续进行调查。\",\"Level\":\"C1\"}]}",
  3571. "ExampleSentence": "{\"word\":\"wrong\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I think you've got the wrong number.\",\"Translate\":\"我觉得你拨错电话号码了。\",\"Level\":\"A2\"},{\"Sentence\":\"The doctor made a wrong diagnosis.\",\"Translate\":\"医生做出了错误的诊断。\",\"Level\":\"B1\"},{\"Sentence\":\"It would be wrong to assume that the project will be easy.\",\"Translate\":\"认为这个项目很容易是错误的。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's wrong investment decisions led to significant financial losses.\",\"Translate\":\"公司错误的投资决定导致了巨大的财务损失。\",\"Level\":\"C1\"},{\"Sentence\":\"The detective realized that the initial suspect was wrong and continued the investigation.\",\"Translate\":\"侦探意识到最初的嫌疑人是错误的,并继续进行调查。\",\"Level\":\"C1\"}]}",
  3572. "Sort": 0
  3573. },
  3574. {
  3575. "ID": 84042,
  3576. "Word": "should",
  3577. "WordRemark": null,
  3578. "Level": "A1",
  3579. "BookID": 197,
  3580. "LessonID": 6,
  3581. "LessonName": null,
  3582. "Soundmark": "[Jad; Jud]",
  3583. "Translate": "应该",
  3584. "EnglishExplanation": "{\"word\":\"should\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"You should try this cake, it's delicious.\",\"Translate\":\"你应该试试这个蛋糕,它很好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"I think you should take an umbrella, it's raining outside.\",\"Translate\":\"我想你应该带把伞,外面正在下雨。\",\"Level\":\"A2\"},{\"Sentence\":\"The government should invest more in renewable energy sources.\",\"Translate\":\"政府应该在可再生能源上投入更多。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I should consider taking a different approach to solve the problem.\",\"Translate\":\"如果我是你,我会考虑采取不同的方法来解决问题。\",\"Level\":\"B1\"},{\"Sentence\":\"It is suggested that the company should diversify its investments to minimize risk.\",\"Translate\":\"有人建议公司应该多元化投资以最小化风险。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy should, in theory, lead to a significant reduction in carbon emissions by 2050.\",\"Translate\":\"理论上,新政策应该会在2050年前显著减少碳排放。\",\"Level\":\"C1\"}]}",
  3585. "ExampleSentence": "{\"word\":\"should\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"You should try this cake, it's delicious.\",\"Translate\":\"你应该试试这个蛋糕,它很好吃。\",\"Level\":\"A1\"},{\"Sentence\":\"I think you should take an umbrella, it's raining outside.\",\"Translate\":\"我想你应该带把伞,外面正在下雨。\",\"Level\":\"A2\"},{\"Sentence\":\"The government should invest more in renewable energy sources.\",\"Translate\":\"政府应该在可再生能源上投入更多。\",\"Level\":\"B1\"},{\"Sentence\":\"If I were you, I should consider taking a different approach to solve the problem.\",\"Translate\":\"如果我是你,我会考虑采取不同的方法来解决问题。\",\"Level\":\"B1\"},{\"Sentence\":\"It is suggested that the company should diversify its investments to minimize risk.\",\"Translate\":\"有人建议公司应该多元化投资以最小化风险。\",\"Level\":\"C1\"},{\"Sentence\":\"The new policy should, in theory, lead to a significant reduction in carbon emissions by 2050.\",\"Translate\":\"理论上,新政策应该会在2050年前显著减少碳排放。\",\"Level\":\"C1\"}]}",
  3586. "Sort": 0
  3587. },
  3588. {
  3589. "ID": 84043,
  3590. "Word": "feel",
  3591. "WordRemark": null,
  3592. "Level": "A1",
  3593. "BookID": 197,
  3594. "LessonID": 6,
  3595. "LessonName": null,
  3596. "Soundmark": "[fi:l]",
  3597. "Translate": "觉得;感到",
  3598. "EnglishExplanation": "{\"word\":\"feel\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I feel happy today.\",\"Translate\":\"我今天感觉很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"The water feels cold.\",\"Translate\":\"这水摸起来很冷。\",\"Level\":\"A1\"},{\"Sentence\":\"She feels tired after work.\",\"Translate\":\"她下班后感到很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The fabric feels soft against my skin.\",\"Translate\":\"这布料摸起来很柔软。\",\"Level\":\"A2\"},{\"Sentence\":\"As I walked through the forest, I couldn't help but feel a deep connection to nature.\",\"Translate\":\"当我走过森林时,我不禁感到与自然有着深深的联系。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light creates a feeling that is hard to put into words.\",\"Translate\":\"艺术家对色彩和光线的运用创造出一种难以用语言表达的感觉。\",\"Level\":\"C1\"}]}",
  3599. "ExampleSentence": "{\"word\":\"feel\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I feel happy today.\",\"Translate\":\"我今天感觉很开心。\",\"Level\":\"A1\"},{\"Sentence\":\"The water feels cold.\",\"Translate\":\"这水摸起来很冷。\",\"Level\":\"A1\"},{\"Sentence\":\"She feels tired after work.\",\"Translate\":\"她下班后感到很累。\",\"Level\":\"A2\"},{\"Sentence\":\"The fabric feels soft against my skin.\",\"Translate\":\"这布料摸起来很柔软。\",\"Level\":\"A2\"},{\"Sentence\":\"As I walked through the forest, I couldn't help but feel a deep connection to nature.\",\"Translate\":\"当我走过森林时,我不禁感到与自然有着深深的联系。\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color and light creates a feeling that is hard to put into words.\",\"Translate\":\"艺术家对色彩和光线的运用创造出一种难以用语言表达的感觉。\",\"Level\":\"C1\"}]}",
  3600. "Sort": 0
  3601. },
  3602. {
  3603. "ID": 84044,
  3604. "Word": "well",
  3605. "WordRemark": null,
  3606. "Level": "A1",
  3607. "BookID": 197,
  3608. "LessonID": 6,
  3609. "LessonName": null,
  3610. "Soundmark": "[wel]",
  3611. "Translate": "健康;身体好",
  3612. "EnglishExplanation": "{\"word\":\"well\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm feeling well today.\",\"Translate\":\"我今天感觉很好.\",\"Level\":\"A1\"},{\"Sentence\":\"She sings very well.\",\"Translate\":\"她唱歌唱得很好.\",\"Level\":\"A1\"},{\"Sentence\":\"The team played well together.\",\"Translate\":\"团队合作得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"He's doing well in his new job.\",\"Translate\":\"他新工作做得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"The company has done well in the market.\",\"Translate\":\"公司在市场上表现良好.\",\"Level\":\"C1\"},{\"Sentence\":\"It's well known that she's an expert.\",\"Translate\":\"众所周知她是专家.\",\"Level\":\"C1\"}]}",
  3613. "ExampleSentence": "{\"word\":\"well\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I'm feeling well today.\",\"Translate\":\"我今天感觉很好.\",\"Level\":\"A1\"},{\"Sentence\":\"She sings very well.\",\"Translate\":\"她唱歌唱得很好.\",\"Level\":\"A1\"},{\"Sentence\":\"The team played well together.\",\"Translate\":\"团队合作得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"He's doing well in his new job.\",\"Translate\":\"他新工作做得很好.\",\"Level\":\"B1\"},{\"Sentence\":\"The company has done well in the market.\",\"Translate\":\"公司在市场上表现良好.\",\"Level\":\"C1\"},{\"Sentence\":\"It's well known that she's an expert.\",\"Translate\":\"众所周知她是专家.\",\"Level\":\"C1\"}]}",
  3614. "Sort": 0
  3615. },
  3616. {
  3617. "ID": 84045,
  3618. "Word": "sit",
  3619. "WordRemark": null,
  3620. "Level": "A1",
  3621. "BookID": 197,
  3622. "LessonID": 6,
  3623. "LessonName": null,
  3624. "Soundmark": "[sit]",
  3625. "Translate": "坐",
  3626. "EnglishExplanation": "{\"word\":\"sit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's sit down and have a rest.\",\"Translate\":\"让我们坐下休息一下吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The baby can't sit up yet.\",\"Translate\":\"这个婴儿还不能坐起来。\",\"Level\":\"A1\"},{\"Sentence\":\"The family usually sit together for dinner.\",\"Translate\":\"这家人通常坐在一起吃晚饭。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit in a circle.\",\"Translate\":\"老师让学生们围成一个圈坐下。\",\"Level\":\"A2\"},{\"Sentence\":\"The committee will sit next Monday to discuss the proposal.\",\"Translate\":\"委员会将在下周一开会讨论这个提案。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been sitting on the table for months.\",\"Translate\":\"新政策已经搁置了几个月。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made the defendant sit through a lengthy lecture.\",\"Translate\":\"法官让被告坐在那里听了一场冗长的训诫。\",\"Level\":\"C1\"},{\"Sentence\":\"The issue has been sitting uneasily with me for some time.\",\"Translate\":\"这个问题让我感到不安已经有一段时间了。\",\"Level\":\"C1\"}]}",
  3627. "ExampleSentence": "{\"word\":\"sit\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Let's sit down and have a rest.\",\"Translate\":\"让我们坐下休息一下吧。\",\"Level\":\"A1\"},{\"Sentence\":\"The baby can't sit up yet.\",\"Translate\":\"这个婴儿还不能坐起来。\",\"Level\":\"A1\"},{\"Sentence\":\"The family usually sit together for dinner.\",\"Translate\":\"这家人通常坐在一起吃晚饭。\",\"Level\":\"A2\"},{\"Sentence\":\"The teacher asked the students to sit in a circle.\",\"Translate\":\"老师让学生们围成一个圈坐下。\",\"Level\":\"A2\"},{\"Sentence\":\"The committee will sit next Monday to discuss the proposal.\",\"Translate\":\"委员会将在下周一开会讨论这个提案。\",\"Level\":\"B1\"},{\"Sentence\":\"The new policy has been sitting on the table for months.\",\"Translate\":\"新政策已经搁置了几个月。\",\"Level\":\"B1\"},{\"Sentence\":\"The judge made the defendant sit through a lengthy lecture.\",\"Translate\":\"法官让被告坐在那里听了一场冗长的训诫。\",\"Level\":\"C1\"},{\"Sentence\":\"The issue has been sitting uneasily with me for some time.\",\"Translate\":\"这个问题让我感到不安已经有一段时间了。\",\"Level\":\"C1\"}]}",
  3628. "Sort": 0
  3629. },
  3630. {
  3631. "ID": 84046,
  3632. "Word": "grass",
  3633. "WordRemark": null,
  3634. "Level": "A1",
  3635. "BookID": 197,
  3636. "LessonID": 6,
  3637. "LessonName": null,
  3638. "Soundmark": "[grais]",
  3639. "Translate": "草坪",
  3640. "EnglishExplanation": "{\"word\":\"grass\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The kids are playing on the grass.\",\"Translate\":\"孩子们在草地上玩耍。\",\"Level\":\"A1\"},{\"Sentence\":\"The park has a lot of grass.\",\"Translate\":\"公园里有很多草。\",\"Level\":\"A1\"},{\"Sentence\":\"The grass needs to be watered regularly.\",\"Translate\":\"草需要定期浇水。\",\"Level\":\"A2\"},{\"Sentence\":\"She sat on the grass and read a book.\",\"Translate\":\"她坐在草地上读书。\",\"Level\":\"A2\"},{\"Sentence\":\"The grass was so tall that it needed to be mowed.\",\"Translate\":\"草长得太高了,需要割草了。\",\"Level\":\"B1\"},{\"Sentence\":\"The smell of fresh-cut grass filled the air.\",\"Translate\":\"空气中弥漫着刚割下的草的香味。\",\"Level\":\"B1\"},{\"Sentence\":\"The grass was swaying gently in the breeze.\",\"Translate\":\"草在微风中轻轻摇摆。\",\"Level\":\"C1\"},{\"Sentence\":\"The landscape designer incorporated native grass species into the garden.\",\"Translate\":\"景观设计师在花园中融入了本土草种。\",\"Level\":\"C1\"}]}",
  3641. "ExampleSentence": "{\"word\":\"grass\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"The kids are playing on the grass.\",\"Translate\":\"孩子们在草地上玩耍。\",\"Level\":\"A1\"},{\"Sentence\":\"The park has a lot of grass.\",\"Translate\":\"公园里有很多草。\",\"Level\":\"A1\"},{\"Sentence\":\"The grass needs to be watered regularly.\",\"Translate\":\"草需要定期浇水。\",\"Level\":\"A2\"},{\"Sentence\":\"She sat on the grass and read a book.\",\"Translate\":\"她坐在草地上读书。\",\"Level\":\"A2\"},{\"Sentence\":\"The grass was so tall that it needed to be mowed.\",\"Translate\":\"草长得太高了,需要割草了。\",\"Level\":\"B1\"},{\"Sentence\":\"The smell of fresh-cut grass filled the air.\",\"Translate\":\"空气中弥漫着刚割下的草的香味。\",\"Level\":\"B1\"},{\"Sentence\":\"The grass was swaying gently in the breeze.\",\"Translate\":\"草在微风中轻轻摇摆。\",\"Level\":\"C1\"},{\"Sentence\":\"The landscape designer incorporated native grass species into the garden.\",\"Translate\":\"景观设计师在花园中融入了本土草种。\",\"Level\":\"C1\"}]}",
  3642. "Sort": 0
  3643. },
  3644. {
  3645. "ID": 84047,
  3646. "Word": "hear",
  3647. "WordRemark": null,
  3648. "Level": "A1",
  3649. "BookID": 197,
  3650. "LessonID": 6,
  3651. "LessonName": null,
  3652. "Soundmark": "[his(r)]",
  3653. "Translate": "听见",
  3654. "EnglishExplanation": "{\"word\":\"hear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I hear a bird singing outside my window.\",\"Translate\":\"我听到一只鸟在窗外唱歌。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you hear me clearly?\",\"Translate\":\"你能听清我说话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I heard the news yesterday.\",\"Translate\":\"我昨天听到了这个消息。\",\"Level\":\"A2\"},{\"Sentence\":\"She heard that the concert was sold out.\",\"Translate\":\"她听说演唱会门票已经售罄了。\",\"Level\":\"A2\"},{\"Sentence\":\"I've heard that the new restaurant is very good.\",\"Translate\":\"我听说那家新餐厅非常好。\",\"Level\":\"B1\"},{\"Sentence\":\"The news was heard by millions of people around the world.\",\"Translate\":\"这个消息被全球数百万人知晓。\",\"Level\":\"B1\"},{\"Sentence\":\"It was heard that the company would be expanding its operations.\",\"Translate\":\"据说公司将扩大其业务。\",\"Level\":\"C1\"},{\"Sentence\":\"The judge heard the case and made a decision.\",\"Translate\":\"法官听取了案件并做出了决定。\",\"Level\":\"C1\"}]}",
  3655. "ExampleSentence": "{\"word\":\"hear\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"I hear a bird singing outside my window.\",\"Translate\":\"我听到一只鸟在窗外唱歌。\",\"Level\":\"A1\"},{\"Sentence\":\"Can you hear me clearly?\",\"Translate\":\"你能听清我说话吗?\",\"Level\":\"A1\"},{\"Sentence\":\"I heard the news yesterday.\",\"Translate\":\"我昨天听到了这个消息。\",\"Level\":\"A2\"},{\"Sentence\":\"She heard that the concert was sold out.\",\"Translate\":\"她听说演唱会门票已经售罄了。\",\"Level\":\"A2\"},{\"Sentence\":\"I've heard that the new restaurant is very good.\",\"Translate\":\"我听说那家新餐厅非常好。\",\"Level\":\"B1\"},{\"Sentence\":\"The news was heard by millions of people around the world.\",\"Translate\":\"这个消息被全球数百万人知晓。\",\"Level\":\"B1\"},{\"Sentence\":\"It was heard that the company would be expanding its operations.\",\"Translate\":\"据说公司将扩大其业务。\",\"Level\":\"C1\"},{\"Sentence\":\"The judge heard the case and made a decision.\",\"Translate\":\"法官听取了案件并做出了决定。\",\"Level\":\"C1\"}]}",
  3656. "Sort": 0
  3657. },
  3658. {
  3659. "ID": 84048,
  3660. "Word": "ant",
  3661. "WordRemark": null,
  3662. "Level": "A2",
  3663. "BookID": 197,
  3664. "LessonID": 6,
  3665. "LessonName": null,
  3666. "Soundmark": "[aent]",
  3667. "Translate": "蚂蚁",
  3668. "EnglishExplanation": "{\"word\":\"ant\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The little ant is very strong.\",\"Translate\":\"这只小蚂蚁很强壮。\",\"Level\":\"A2\"},{\"Sentence\":\"Ants live in colonies.\",\"Translate\":\"蚂蚁群居生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The ants are marching in a line.\",\"Translate\":\"蚂蚁正在排队行进。\",\"Level\":\"B1\"},{\"Sentence\":\"The colony of ants worked together to build their nest.\",\"Translate\":\"蚂蚁群共同合作建造它们的巢穴。\",\"Level\":\"B1\"},{\"Sentence\":\"The ant's complex social structure is fascinating.\",\"Translate\":\"蚂蚁复杂的社会结构令人着迷。\",\"Level\":\"C1\"},{\"Sentence\":\"Ants have evolved sophisticated communication methods.\",\"Translate\":\"蚂蚁已经进化出复杂的沟通方式。\",\"Level\":\"C1\"}]}",
  3669. "ExampleSentence": "{\"word\":\"ant\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The little ant is very strong.\",\"Translate\":\"这只小蚂蚁很强壮。\",\"Level\":\"A2\"},{\"Sentence\":\"Ants live in colonies.\",\"Translate\":\"蚂蚁群居生活。\",\"Level\":\"A2\"},{\"Sentence\":\"The ants are marching in a line.\",\"Translate\":\"蚂蚁正在排队行进。\",\"Level\":\"B1\"},{\"Sentence\":\"The colony of ants worked together to build their nest.\",\"Translate\":\"蚂蚁群共同合作建造它们的巢穴。\",\"Level\":\"B1\"},{\"Sentence\":\"The ant's complex social structure is fascinating.\",\"Translate\":\"蚂蚁复杂的社会结构令人着迷。\",\"Level\":\"C1\"},{\"Sentence\":\"Ants have evolved sophisticated communication methods.\",\"Translate\":\"蚂蚁已经进化出复杂的沟通方式。\",\"Level\":\"C1\"}]}",
  3670. "Sort": 0
  3671. },
  3672. {
  3673. "ID": 84049,
  3674. "Word": "worry",
  3675. "WordRemark": null,
  3676. "Level": "A2",
  3677. "BookID": 197,
  3678. "LessonID": 6,
  3679. "LessonName": null,
  3680. "Soundmark": "[wAri]",
  3681. "Translate": "担心;担忧",
  3682. "EnglishExplanation": "{\"word\":\"worry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I worry about my exam results.\",\"Translate\":\"我担心我的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"Don't worry, everything will be alright.\",\"Translate\":\"别担心,一切都会好起来的。\",\"Level\":\"A2\"},{\"Sentence\":\"She worries that she might not finish the project on time.\",\"Translate\":\"她担心自己可能无法按时完成项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The constant noise from the construction site is starting to worry the neighbors.\",\"Translate\":\"建筑工地的持续噪音开始让邻居们担心。\",\"Level\":\"B1\"},{\"Sentence\":\"The government's inability to address the economic crisis has caused widespread worry among the population.\",\"Translate\":\"政府无法解决经济危机,这引起了民众的普遍担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"The environmental impact of the new development has been a major worry for local activists.\",\"Translate\":\"新开发项目对环境的影响一直是当地活动家们的一大担忧。\",\"Level\":\"C1\"}]}",
  3683. "ExampleSentence": "{\"word\":\"worry\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"I worry about my exam results.\",\"Translate\":\"我担心我的考试成绩。\",\"Level\":\"A2\"},{\"Sentence\":\"Don't worry, everything will be alright.\",\"Translate\":\"别担心,一切都会好起来的。\",\"Level\":\"A2\"},{\"Sentence\":\"She worries that she might not finish the project on time.\",\"Translate\":\"她担心自己可能无法按时完成项目。\",\"Level\":\"B1\"},{\"Sentence\":\"The constant noise from the construction site is starting to worry the neighbors.\",\"Translate\":\"建筑工地的持续噪音开始让邻居们担心。\",\"Level\":\"B1\"},{\"Sentence\":\"The government's inability to address the economic crisis has caused widespread worry among the population.\",\"Translate\":\"政府无法解决经济危机,这引起了民众的普遍担忧。\",\"Level\":\"C1\"},{\"Sentence\":\"The environmental impact of the new development has been a major worry for local activists.\",\"Translate\":\"新开发项目对环境的影响一直是当地活动家们的一大担忧。\",\"Level\":\"C1\"}]}",
  3684. "Sort": 0
  3685. },
  3686. {
  3687. "ID": 84050,
  3688. "Word": "stuck",
  3689. "WordRemark": null,
  3690. "Level": "A2",
  3691. "BookID": 197,
  3692. "LessonID": 6,
  3693. "LessonName": null,
  3694. "Soundmark": "[stak]",
  3695. "Translate": "陷住;无法移动",
  3696. "EnglishExplanation": "{\"word\":\"stuck\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The wheels got stuck in the mud.\",\"Translate\":\"车轮陷入了泥里。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt stuck in her boring job.\",\"Translate\":\"她觉得自己被困在枯燥的工作中。\",\"Level\":\"B1\"},{\"Sentence\":\"The traffic was so bad that we were stuck on the highway for hours.\",\"Translate\":\"交通状况很糟糕,我们在高速公路上堵了几个小时。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's financial troubles left them stuck with a large debt.\",\"Translate\":\"公司的财务问题使他们背负了巨额债务。\",\"Level\":\"C1\"},{\"Sentence\":\"After the merger, the company was stuck with redundant staff.\",\"Translate\":\"合并后,公司面临着冗员问题。\",\"Level\":\"C1\"}]}",
  3697. "ExampleSentence": "{\"word\":\"stuck\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The wheels got stuck in the mud.\",\"Translate\":\"车轮陷入了泥里。\",\"Level\":\"A2\"},{\"Sentence\":\"She felt stuck in her boring job.\",\"Translate\":\"她觉得自己被困在枯燥的工作中。\",\"Level\":\"B1\"},{\"Sentence\":\"The traffic was so bad that we were stuck on the highway for hours.\",\"Translate\":\"交通状况很糟糕,我们在高速公路上堵了几个小时。\",\"Level\":\"B2\"},{\"Sentence\":\"The company's financial troubles left them stuck with a large debt.\",\"Translate\":\"公司的财务问题使他们背负了巨额债务。\",\"Level\":\"C1\"},{\"Sentence\":\"After the merger, the company was stuck with redundant staff.\",\"Translate\":\"合并后,公司面临着冗员问题。\",\"Level\":\"C1\"}]}",
  3698. "Sort": 0
  3699. },
  3700. {
  3701. "ID": 84051,
  3702. "Word": "mud",
  3703. "WordRemark": null,
  3704. "Level": "A2",
  3705. "BookID": 197,
  3706. "LessonID": 6,
  3707. "LessonName": null,
  3708. "Soundmark": "[mAd]",
  3709. "Translate": "泥",
  3710. "EnglishExplanation": "{\"word\":\"mud\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The kids love playing in the mud.\",\"Translate\":\"孩子们喜欢在泥里玩耍.\",\"Level\":\"A2\"},{\"Sentence\":\"After the rain, the road was covered in mud.\",\"Translate\":\"雨后,路上满是泥泞.\",\"Level\":\"A2\"},{\"Sentence\":\"The hikers had to trek through thick mud to reach the campsite.\",\"Translate\":\"徒步旅行者不得不穿过厚厚的泥泞才能到达营地.\",\"Level\":\"B1\"},{\"Sentence\":\"The mud on the bottom of the lake is rich in nutrients.\",\"Translate\":\"湖底的泥富含营养.\",\"Level\":\"B1\"},{\"Sentence\":\"The artist used mud to create a textured sculpture.\",\"Translate\":\"艺术家用泥创作了一件有质感的雕塑.\",\"Level\":\"C1\"},{\"Sentence\":\"The geologist studied the composition of the mud to understand the region's geological history.\",\"Translate\":\"地质学家研究了泥的成分,以了解该地区的地质历史.\",\"Level\":\"C1\"}]}",
  3711. "ExampleSentence": "{\"word\":\"mud\",\"CEFR_Level\":\"A2\",\"Sentences\":[{\"Sentence\":\"The kids love playing in the mud.\",\"Translate\":\"孩子们喜欢在泥里玩耍.\",\"Level\":\"A2\"},{\"Sentence\":\"After the rain, the road was covered in mud.\",\"Translate\":\"雨后,路上满是泥泞.\",\"Level\":\"A2\"},{\"Sentence\":\"The hikers had to trek through thick mud to reach the campsite.\",\"Translate\":\"徒步旅行者不得不穿过厚厚的泥泞才能到达营地.\",\"Level\":\"B1\"},{\"Sentence\":\"The mud on the bottom of the lake is rich in nutrients.\",\"Translate\":\"湖底的泥富含营养.\",\"Level\":\"B1\"},{\"Sentence\":\"The artist used mud to create a textured sculpture.\",\"Translate\":\"艺术家用泥创作了一件有质感的雕塑.\",\"Level\":\"C1\"},{\"Sentence\":\"The geologist studied the composition of the mud to understand the region's geological history.\",\"Translate\":\"地质学家研究了泥的成分,以了解该地区的地质历史.\",\"Level\":\"C1\"}]}",
  3712. "Sort": 0
  3713. },
  3714. {
  3715. "ID": 84052,
  3716. "Word": "pull",
  3717. "WordRemark": null,
  3718. "Level": "A1",
  3719. "BookID": 197,
  3720. "LessonID": 6,
  3721. "LessonName": null,
  3722. "Soundmark": "[pul]",
  3723. "Translate": "拉;拽",
  3724. "EnglishExplanation": "{\"word\":\"pull\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you pull the door open?\",\"Translate\":\"你能拉开门吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The dog likes to pull on its leash.\",\"Translate\":\"这只狗喜欢拽着它的牵引绳\",\"Level\":\"A1\"},{\"Sentence\":\"She pulled out a book from her bag.\",\"Translate\":\"她从包里拿出一本书\",\"Level\":\"A2\"},{\"Sentence\":\"The team pulled together to finish the project.\",\"Translate\":\"团队齐心协力完成了这个项目\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy will pull in more investors.\",\"Translate\":\"新政策将吸引更多的投资者\",\"Level\":\"B1\"},{\"Sentence\":\"The car pulled over to the side of the road.\",\"Translate\":\"汽车靠边停了下来\",\"Level\":\"B1\"},{\"Sentence\":\"The curtains were pulled shut to block the sunlight.\",\"Translate\":\"窗帘被拉上以阻挡阳光\",\"Level\":\"B2\"},{\"Sentence\":\"The company is pulling out all the stops to meet the deadline.\",\"Translate\":\"公司正在全力以赴以赶上截止日期\",\"Level\":\"B2\"},{\"Sentence\":\"The government's decision will pull the economy out of recession.\",\"Translate\":\"政府的决定将使经济摆脱衰退\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color pulls the ",
  3725. "ExampleSentence": "{\"word\":\"pull\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Can you pull the door open?\",\"Translate\":\"你能拉开门吗?\",\"Level\":\"A1\"},{\"Sentence\":\"The dog likes to pull on its leash.\",\"Translate\":\"这只狗喜欢拽着它的牵引绳\",\"Level\":\"A1\"},{\"Sentence\":\"She pulled out a book from her bag.\",\"Translate\":\"她从包里拿出一本书\",\"Level\":\"A2\"},{\"Sentence\":\"The team pulled together to finish the project.\",\"Translate\":\"团队齐心协力完成了这个项目\",\"Level\":\"A2\"},{\"Sentence\":\"The new policy will pull in more investors.\",\"Translate\":\"新政策将吸引更多的投资者\",\"Level\":\"B1\"},{\"Sentence\":\"The car pulled over to the side of the road.\",\"Translate\":\"汽车靠边停了下来\",\"Level\":\"B1\"},{\"Sentence\":\"The curtains were pulled shut to block the sunlight.\",\"Translate\":\"窗帘被拉上以阻挡阳光\",\"Level\":\"B2\"},{\"Sentence\":\"The company is pulling out all the stops to meet the deadline.\",\"Translate\":\"公司正在全力以赴以赶上截止日期\",\"Level\":\"B2\"},{\"Sentence\":\"The government's decision will pull the economy out of recession.\",\"Translate\":\"政府的决定将使经济摆脱衰退\",\"Level\":\"C1\"},{\"Sentence\":\"The artist's use of color pulls the viewer's eye to the center of the painting.\",\"Translate\":\"艺术家的用色将观者的视线吸引到画作的中心\",\"Level\":\"C1\"}]}",
  3726. "Sort": 0
  3727. },
  3728. {
  3729. "ID": 84053,
  3730. "Word": "everyone",
  3731. "WordRemark": null,
  3732. "Level": "A1",
  3733. "BookID": 197,
  3734. "LessonID": 6,
  3735. "LessonName": null,
  3736. "Soundmark": "[evriwAn]",
  3737. "Translate": "每人",
  3738. "EnglishExplanation": "{\"word\":\"everyone\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Everyone is here.\",\"Translate\":\"每个人都在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"The news made everyone happy.\",\"Translate\":\"这个消息让每个人都很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"It is generally agreed by everyone that this is a great opportunity.\",\"Translate\":\"大家普遍认为这是一个很好的机会。\",\"Level\":\"B1\"},{\"Sentence\":\"Everyone has their own opinion on the matter.\",\"Translate\":\"每个人对这件事都有自己的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The complexity of the issue means that everyone has to work together to find a solution.\",\"Translate\":\"问题的复杂性意味着每个人都必须共同努力来找到解决方案。\",\"Level\":\"C1\"},{\"Sentence\":\"In a world where everyone is connected, information spreads rapidly.\",\"Translate\":\"在一个每个人都相互联系的世界里,信息传播得很快。\",\"Level\":\"C1\"}]}",
  3739. "ExampleSentence": "{\"word\":\"everyone\",\"CEFR_Level\":\"A1\",\"Sentences\":[{\"Sentence\":\"Everyone is here.\",\"Translate\":\"每个人都在这里。\",\"Level\":\"A1\"},{\"Sentence\":\"The news made everyone happy.\",\"Translate\":\"这个消息让每个人都很高兴。\",\"Level\":\"A2\"},{\"Sentence\":\"It is generally agreed by everyone that this is a great opportunity.\",\"Translate\":\"大家普遍认为这是一个很好的机会。\",\"Level\":\"B1\"},{\"Sentence\":\"Everyone has their own opinion on the matter.\",\"Translate\":\"每个人对这件事都有自己的看法。\",\"Level\":\"B1\"},{\"Sentence\":\"The complexity of the issue means that everyone has to work together to find a solution.\",\"Translate\":\"问题的复杂性意味着每个人都必须共同努力来找到解决方案。\",\"Level\":\"C1\"},{\"Sentence\":\"In a world where everyone is connected, information spreads rapidly.\",\"Translate\":\"在一个每个人都相互联系的世界里,信息传播得很快。\",\"Level\":\"C1\"}]}",
  3740. "Sort": 0
  3741. },
  3742. {
  3743. "ID": 84054,
  3744. "Word": "Where is the museum shop?",
  3745. "WordRemark": null,
  3746. "Level": null,
  3747. "BookID": 205,
  3748. "LessonID": 1,
  3749. "LessonName": null,
  3750. "Soundmark": null,
  3751. "Translate": "博物馆的商店在哪儿?",
  3752. "EnglishExplanation": "",
  3753. "ExampleSentence": null,
  3754. "Sort": 0
  3755. },
  3756. {
  3757. "ID": 84055,
  3758. "Word": "Itˈs near the door.",
  3759. "WordRemark": null,
  3760. "Level": null,
  3761. "BookID": 205,
  3762. "LessonID": 1,
  3763. "LessonName": null,
  3764. "Soundmark": null,
  3765. "Translate": "在大门附近。",
  3766. "EnglishExplanation": "",
  3767. "ExampleSentence": null,
  3768. "Sort": 0
  3769. },
  3770. {
  3771. "ID": 84056,
  3772. "Word": "How can we get there?",
  3773. "WordRemark": null,
  3774. "Level": null,
  3775. "BookID": 205,
  3776. "LessonID": 1,
  3777. "LessonName": null,
  3778. "Soundmark": null,
  3779. "Translate": "我们怎么到那儿?",
  3780. "EnglishExplanation": "",
  3781. "ExampleSentence": null,
  3782. "Sort": 0
  3783. },
  3784. {
  3785. "ID": 84057,
  3786. "Word": "Turn left at the bookstore.",
  3787. "WordRemark": null,
  3788. "Level": null,
  3789. "BookID": 205,
  3790. "LessonID": 1,
  3791. "LessonName": null,
  3792. "Soundmark": null,
  3793. "Translate": "到书店左转。",
  3794. "EnglishExplanation": "",
  3795. "ExampleSentence": null,
  3796. "Sort": 0
  3797. },
  3798. {
  3799. "ID": 84087,
  3800. "Word": "Better to ask the way than go astray.",
  3801. "WordRemark": null,
  3802. "Level": null,
  3803. "BookID": 205,
  3804. "LessonID": 1,
  3805. "LessonName": null,
  3806. "Soundmark": null,
  3807. "Translate": "问路总比迷路好。",
  3808. "EnglishExplanation": "",
  3809. "ExampleSentence": null,
  3810. "Sort": 0
  3811. },
  3812. {
  3813. "ID": 84058,
  3814. "Word": "How do you come to school?",
  3815. "WordRemark": null,
  3816. "Level": null,
  3817. "BookID": 205,
  3818. "LessonID": 2,
  3819. "LessonName": null,
  3820. "Soundmark": null,
  3821. "Translate": "你怎么来学校的?",
  3822. "EnglishExplanation": "",
  3823. "ExampleSentence": null,
  3824. "Sort": 0
  3825. },
  3826. {
  3827. "ID": 84059,
  3828. "Word": "Usually, I come on foot.",
  3829. "WordRemark": null,
  3830. "Level": null,
  3831. "BookID": 205,
  3832. "LessonID": 2,
  3833. "LessonName": null,
  3834. "Soundmark": null,
  3835. "Translate": "通常我走路来。",
  3836. "EnglishExplanation": "",
  3837. "ExampleSentence": null,
  3838. "Sort": 0
  3839. },
  3840. {
  3841. "ID": 84060,
  3842. "Word": "In the USA people on bikes must wear one.",
  3843. "WordRemark": null,
  3844. "Level": null,
  3845. "BookID": 205,
  3846. "LessonID": 2,
  3847. "LessonName": null,
  3848. "Soundmark": null,
  3849. "Translate": "在美国骑自行车的人必须戴(头盔)。",
  3850. "EnglishExplanation": "",
  3851. "ExampleSentence": null,
  3852. "Sort": 0
  3853. },
  3854. {
  3855. "ID": 84061,
  3856. "Word": "Donˈt go at the red light!",
  3857. "WordRemark": null,
  3858. "Level": null,
  3859. "BookID": 205,
  3860. "LessonID": 2,
  3861. "LessonName": null,
  3862. "Soundmark": null,
  3863. "Translate": "别闯红灯!",
  3864. "EnglishExplanation": "",
  3865. "ExampleSentence": null,
  3866. "Sort": 0
  3867. },
  3868. {
  3869. "ID": 84062,
  3870. "Word": "I must pay attention to the traffic lights!",
  3871. "WordRemark": null,
  3872. "Level": null,
  3873. "BookID": 205,
  3874. "LessonID": 2,
  3875. "LessonName": null,
  3876. "Soundmark": null,
  3877. "Translate": "我必须注意交通信号灯!",
  3878. "EnglishExplanation": "",
  3879. "ExampleSentence": null,
  3880. "Sort": 0
  3881. },
  3882. {
  3883. "ID": 84088,
  3884. "Word": "Horses for courses.",
  3885. "WordRemark": null,
  3886. "Level": null,
  3887. "BookID": 205,
  3888. "LessonID": 2,
  3889. "LessonName": null,
  3890. "Soundmark": null,
  3891. "Translate": "知人善任。",
  3892. "EnglishExplanation": "",
  3893. "ExampleSentence": null,
  3894. "Sort": 0
  3895. },
  3896. {
  3897. "ID": 84063,
  3898. "Word": "What are you going to do tomorrow?",
  3899. "WordRemark": null,
  3900. "Level": null,
  3901. "BookID": 205,
  3902. "LessonID": 3,
  3903. "LessonName": null,
  3904. "Soundmark": null,
  3905. "Translate": "你明天打算做什么?",
  3906. "EnglishExplanation": "",
  3907. "ExampleSentence": null,
  3908. "Sort": 0
  3909. },
  3910. {
  3911. "ID": 84064,
  3912. "Word": "Iˈm going to have an art lesson.",
  3913. "WordRemark": null,
  3914. "Level": null,
  3915. "BookID": 205,
  3916. "LessonID": 3,
  3917. "LessonName": null,
  3918. "Soundmark": null,
  3919. "Translate": "我要上美术课。",
  3920. "EnglishExplanation": "",
  3921. "ExampleSentence": null,
  3922. "Sort": 0
  3923. },
  3924. {
  3925. "ID": 84065,
  3926. "Word": "Weˈre going to draw some pictures in Renmin Park.",
  3927. "WordRemark": null,
  3928. "Level": null,
  3929. "BookID": 205,
  3930. "LessonID": 3,
  3931. "LessonName": null,
  3932. "Soundmark": null,
  3933. "Translate": "我们要到人民公园去画画。",
  3934. "EnglishExplanation": "",
  3935. "ExampleSentence": null,
  3936. "Sort": 0
  3937. },
  3938. {
  3939. "ID": 84066,
  3940. "Word": "Where are you going?",
  3941. "WordRemark": null,
  3942. "Level": null,
  3943. "BookID": 205,
  3944. "LessonID": 3,
  3945. "LessonName": null,
  3946. "Soundmark": null,
  3947. "Translate": "你们打算去哪儿?",
  3948. "EnglishExplanation": "",
  3949. "ExampleSentence": null,
  3950. "Sort": 0
  3951. },
  3952. {
  3953. "ID": 84067,
  3954. "Word": "Weˈre going to the cinema.",
  3955. "WordRemark": null,
  3956. "Level": null,
  3957. "BookID": 205,
  3958. "LessonID": 3,
  3959. "LessonName": null,
  3960. "Soundmark": null,
  3961. "Translate": "我们打算去电影院。",
  3962. "EnglishExplanation": "",
  3963. "ExampleSentence": null,
  3964. "Sort": 0
  3965. },
  3966. {
  3967. "ID": 84068,
  3968. "Word": "When are you going?",
  3969. "WordRemark": null,
  3970. "Level": null,
  3971. "BookID": 205,
  3972. "LessonID": 3,
  3973. "LessonName": null,
  3974. "Soundmark": null,
  3975. "Translate": "你们什么时候去?",
  3976. "EnglishExplanation": "",
  3977. "ExampleSentence": null,
  3978. "Sort": 0
  3979. },
  3980. {
  3981. "ID": 84089,
  3982. "Word": "Think today and speak tomorrow.",
  3983. "WordRemark": null,
  3984. "Level": null,
  3985. "BookID": 205,
  3986. "LessonID": 3,
  3987. "LessonName": null,
  3988. "Soundmark": null,
  3989. "Translate": "三思而后言。",
  3990. "EnglishExplanation": "",
  3991. "ExampleSentence": null,
  3992. "Sort": 0
  3993. },
  3994. {
  3995. "ID": 84069,
  3996. "Word": "What are Peterˈs hobbies?",
  3997. "WordRemark": null,
  3998. "Level": null,
  3999. "BookID": 205,
  4000. "LessonID": 4,
  4001. "LessonName": null,
  4002. "Soundmark": null,
  4003. "Translate": "彼得有什么爱好?",
  4004. "EnglishExplanation": "",
  4005. "ExampleSentence": null,
  4006. "Sort": 0
  4007. },
  4008. {
  4009. "ID": 84070,
  4010. "Word": "He likes reading stories.",
  4011. "WordRemark": null,
  4012. "Level": null,
  4013. "BookID": 205,
  4014. "LessonID": 4,
  4015. "LessonName": null,
  4016. "Soundmark": null,
  4017. "Translate": "他喜欢读故事。",
  4018. "EnglishExplanation": "",
  4019. "ExampleSentence": null,
  4020. "Sort": 0
  4021. },
  4022. {
  4023. "ID": 84071,
  4024. "Word": "Does he live in Sydney?",
  4025. "WordRemark": null,
  4026. "Level": null,
  4027. "BookID": 205,
  4028. "LessonID": 4,
  4029. "LessonName": null,
  4030. "Soundmark": null,
  4031. "Translate": "他住在悉尼吗?",
  4032. "EnglishExplanation": "",
  4033. "ExampleSentence": null,
  4034. "Sort": 0
  4035. },
  4036. {
  4037. "ID": 84072,
  4038. "Word": "No, he doesnˈt.",
  4039. "WordRemark": null,
  4040. "Level": null,
  4041. "BookID": 205,
  4042. "LessonID": 4,
  4043. "LessonName": null,
  4044. "Soundmark": null,
  4045. "Translate": "不,他没有。",
  4046. "EnglishExplanation": "",
  4047. "ExampleSentence": null,
  4048. "Sort": 0
  4049. },
  4050. {
  4051. "ID": 84073,
  4052. "Word": "Does he like doing word puzzles and going hiking?",
  4053. "WordRemark": null,
  4054. "Level": null,
  4055. "BookID": 205,
  4056. "LessonID": 4,
  4057. "LessonName": null,
  4058. "Soundmark": null,
  4059. "Translate": "他喜欢猜字谜和远足吗?",
  4060. "EnglishExplanation": "",
  4061. "ExampleSentence": null,
  4062. "Sort": 0
  4063. },
  4064. {
  4065. "ID": 84074,
  4066. "Word": "Yes, he does.",
  4067. "WordRemark": null,
  4068. "Level": null,
  4069. "BookID": 205,
  4070. "LessonID": 4,
  4071. "LessonName": null,
  4072. "Soundmark": null,
  4073. "Translate": "是的,他喜欢。",
  4074. "EnglishExplanation": "",
  4075. "ExampleSentence": null,
  4076. "Sort": 0
  4077. },
  4078. {
  4079. "ID": 84090,
  4080. "Word": "A friend in need is a friend indeed.",
  4081. "WordRemark": null,
  4082. "Level": null,
  4083. "BookID": 205,
  4084. "LessonID": 4,
  4085. "LessonName": null,
  4086. "Soundmark": null,
  4087. "Translate": "患难见真情。",
  4088. "EnglishExplanation": "",
  4089. "ExampleSentence": null,
  4090. "Sort": 0
  4091. },
  4092. {
  4093. "ID": 84075,
  4094. "Word": "What does he do?",
  4095. "WordRemark": null,
  4096. "Level": null,
  4097. "BookID": 205,
  4098. "LessonID": 5,
  4099. "LessonName": null,
  4100. "Soundmark": null,
  4101. "Translate": "他是做什么的?",
  4102. "EnglishExplanation": "",
  4103. "ExampleSentence": null,
  4104. "Sort": 0
  4105. },
  4106. {
  4107. "ID": 84076,
  4108. "Word": "Heˈs a businessman.",
  4109. "WordRemark": null,
  4110. "Level": null,
  4111. "BookID": 205,
  4112. "LessonID": 5,
  4113. "LessonName": null,
  4114. "Soundmark": null,
  4115. "Translate": "他是商人。",
  4116. "EnglishExplanation": "",
  4117. "ExampleSentence": null,
  4118. "Sort": 0
  4119. },
  4120. {
  4121. "ID": 84077,
  4122. "Word": "Where does he work?",
  4123. "WordRemark": null,
  4124. "Level": null,
  4125. "BookID": 205,
  4126. "LessonID": 5,
  4127. "LessonName": null,
  4128. "Soundmark": null,
  4129. "Translate": "他在哪儿工作?",
  4130. "EnglishExplanation": "",
  4131. "ExampleSentence": null,
  4132. "Sort": 0
  4133. },
  4134. {
  4135. "ID": 84078,
  4136. "Word": "He works at sea.",
  4137. "WordRemark": null,
  4138. "Level": null,
  4139. "BookID": 205,
  4140. "LessonID": 5,
  4141. "LessonName": null,
  4142. "Soundmark": null,
  4143. "Translate": "他在海上工作。",
  4144. "EnglishExplanation": "",
  4145. "ExampleSentence": null,
  4146. "Sort": 0
  4147. },
  4148. {
  4149. "ID": 84079,
  4150. "Word": "How does he go to work?",
  4151. "WordRemark": null,
  4152. "Level": null,
  4153. "BookID": 205,
  4154. "LessonID": 5,
  4155. "LessonName": null,
  4156. "Soundmark": null,
  4157. "Translate": "他怎么上班?",
  4158. "EnglishExplanation": "",
  4159. "ExampleSentence": null,
  4160. "Sort": 0
  4161. },
  4162. {
  4163. "ID": 84080,
  4164. "Word": "He goes to work by bike.",
  4165. "WordRemark": null,
  4166. "Level": null,
  4167. "BookID": 205,
  4168. "LessonID": 5,
  4169. "LessonName": null,
  4170. "Soundmark": null,
  4171. "Translate": "他骑自行车上班。",
  4172. "EnglishExplanation": "",
  4173. "ExampleSentence": null,
  4174. "Sort": 0
  4175. },
  4176. {
  4177. "ID": 84091,
  4178. "Word": "Like father, like son.",
  4179. "WordRemark": null,
  4180. "Level": null,
  4181. "BookID": 205,
  4182. "LessonID": 5,
  4183. "LessonName": null,
  4184. "Soundmark": null,
  4185. "Translate": "虎父无犬子。",
  4186. "EnglishExplanation": "",
  4187. "ExampleSentence": null,
  4188. "Sort": 0
  4189. },
  4190. {
  4191. "ID": 84081,
  4192. "Word": "Theyˈre afraid of him.",
  4193. "WordRemark": null,
  4194. "Level": null,
  4195. "BookID": 205,
  4196. "LessonID": 6,
  4197. "LessonName": null,
  4198. "Soundmark": null,
  4199. "Translate": "他们害怕他。",
  4200. "EnglishExplanation": "",
  4201. "ExampleSentence": null,
  4202. "Sort": 0
  4203. },
  4204. {
  4205. "ID": 84082,
  4206. "Word": "The cat is angry with them.",
  4207. "WordRemark": null,
  4208. "Level": null,
  4209. "BookID": 205,
  4210. "LessonID": 6,
  4211. "LessonName": null,
  4212. "Soundmark": null,
  4213. "Translate": "猫(警察)很生他们的气。",
  4214. "EnglishExplanation": "",
  4215. "ExampleSentence": null,
  4216. "Sort": 0
  4217. },
  4218. {
  4219. "ID": 84083,
  4220. "Word": "Whatˈs wrong?",
  4221. "WordRemark": null,
  4222. "Level": null,
  4223. "BookID": 205,
  4224. "LessonID": 6,
  4225. "LessonName": null,
  4226. "Soundmark": null,
  4227. "Translate": "怎么了?",
  4228. "EnglishExplanation": "",
  4229. "ExampleSentence": null,
  4230. "Sort": 0
  4231. },
  4232. {
  4233. "ID": 84084,
  4234. "Word": "Your father is ill.",
  4235. "WordRemark": null,
  4236. "Level": null,
  4237. "BookID": 205,
  4238. "LessonID": 6,
  4239. "LessonName": null,
  4240. "Soundmark": null,
  4241. "Translate": "你爸爸病了。",
  4242. "EnglishExplanation": "",
  4243. "ExampleSentence": null,
  4244. "Sort": 0
  4245. },
  4246. {
  4247. "ID": 84085,
  4248. "Word": "He should see a doctor this morning.",
  4249. "WordRemark": null,
  4250. "Level": null,
  4251. "BookID": 205,
  4252. "LessonID": 6,
  4253. "LessonName": null,
  4254. "Soundmark": null,
  4255. "Translate": "他今天早上应该去看病。",
  4256. "EnglishExplanation": "",
  4257. "ExampleSentence": null,
  4258. "Sort": 0
  4259. },
  4260. {
  4261. "ID": 84086,
  4262. "Word": "Donˈt be sad.",
  4263. "WordRemark": null,
  4264. "Level": null,
  4265. "BookID": 205,
  4266. "LessonID": 6,
  4267. "LessonName": null,
  4268. "Soundmark": null,
  4269. "Translate": "别伤心。",
  4270. "EnglishExplanation": "",
  4271. "ExampleSentence": null,
  4272. "Sort": 0
  4273. },
  4274. {
  4275. "ID": 84092,
  4276. "Word": "No pleasure without pain.",
  4277. "WordRemark": null,
  4278. "Level": null,
  4279. "BookID": 205,
  4280. "LessonID": 6,
  4281. "LessonName": null,
  4282. "Soundmark": null,
  4283. "Translate": "没有苦就没有乐。",
  4284. "EnglishExplanation": "",
  4285. "ExampleSentence": null,
  4286. "Sort": 0
  4287. }
  4288. ]
  4289. }