-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit6
786 lines (786 loc) · 18.3 KB
/
unit6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
{
"words": [
{
"word": "abandon",
"phonetic": "[əˈbændən]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["抛弃,遗弃,离弃", "放弃"]
}
]
},
{
"word": "abide",
"phonetic": "[əˈbaɪd]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["容忍,忍受", "遵守,忠于", "逗留,居住"]
}
]
},
{
"word": "ability",
"phonetic": "[əˈbɪlɪti]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["能力,智能", "才能,才干"]
}
]
},
{
"word": "able",
"phonetic": "[ˈeɪbl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["有能力的,能干的", "显示出才华的"]
}
]
},
{
"word": "abnormal",
"phonetic": "[æbˈnɔːrml]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["反常的,异常的", "变态的"]
}
]
},
{
"word": "background",
"phonetic": "[ˈbækɡraʊnd]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["背景,底色", "背景情况", "个人背景资料(学历、资历等)"]
}
]
},
{
"word": "balance",
"phonetic": "[ˈbæləns]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["(使)平衡"]
},
{
"part_of_speech": "n.",
"definitions": ["天平,秤", "平衡,均衡", "差额,结余,余款"]
}
]
},
{
"word": "base",
"phonetic": "[beɪs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["基础,底部,底座", "基地,根据地", "总部,大本营"]
},
{
"part_of_speech": "vt.",
"definitions": ["(on/upon)把......基于", "以......为依据"]
}
]
},
{
"word": "basement",
"phonetic": "[ˈbeɪsmənt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["地下室", "建筑物的底部"]
}
]
},
{
"word": "basic",
"phonetic": "[ˈbeɪsɪk]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["基本(础)的", "根本的"]
}
]
},
{
"word": "basis",
"phonetic": "[ˈbeɪsɪs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["基础,根据"]
}
]
},
{
"word": "calculate",
"phonetic": "[ˈkælkjuleɪt]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["计算,推算", "估计,推测", "(常用被动语态,后接不定式)计划,打算"]
}
]
},
{
"word": "call",
"phonetic": "[kɔːl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["喊,叫", "打电话", "把……叫做,称呼,称为"]
}
]
},
{
"word": "calm",
"phonetic": "[kɑːm]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["(天气、海洋等)静的,平静的"]
}
]
},
{
"word": "campaign",
"phonetic": "[kæmˈpeɪn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["战役", "运动,竞选活动"]
},
{
"part_of_speech": "v.",
"definitions": ["发起运动,开展活动"]
}
]
},
{
"word": "candidate",
"phonetic": "[ˈkændɪdət; -dɪdæːt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["候选人,候补者", "报考者,考生"]
}
]
},
{
"word": "database",
"phonetic": "[ˈdeɪtəbeɪs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["数据库"]
}
]
},
{
"word": "date",
"phonetic": "[deɪt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["日期,年代", "约会"]
},
{
"part_of_speech": "v.",
"definitions": ["注明……的日期", "约会", "鉴定年代"]
}
]
},
{
"word": "dazzle",
"phonetic": "[ˈdæzl]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["(强光等)使目眩,耀眼", "使惊奇,使倾倒"]
},
{
"part_of_speech": "n.",
"definitions": ["耀眼的光,闪耀物", "令人赞叹的东西"]
}
]
},
{
"word": "deal",
"phonetic": "[diːl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["(dealt, dealt)处理,给予", "做买卖,经营"]
},
{
"part_of_speech": "n.",
"definitions": ["协议,交易"]
}
]
},
{
"word": "dealer",
"phonetic": "[ˈdiːlə(r)]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["商人"]
}
]
},
{
"word": "debate",
"phonetic": "[dɪˈbeɪt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["争论,辩论"]
},
{
"part_of_speech": "v.",
"definitions": ["争论,辩论"]
}
]
},
{
"word": "decade",
"phonetic": "[ˈdekeɪd]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["十年"]
}
]
},
{
"word": "decide",
"phonetic": "[dɪˈsaɪd]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["决定,下决心", "解决,裁决"]
}
]
},
{
"word": "decision",
"phonetic": "[dɪˈsɪʒn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["决定,决心", "决议,决策"]
}
]
},
{
"word": "decisive",
"phonetic": "[dɪˈsaɪsɪv]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["决定性的", "果断的,决断的"]
}
]
},
{
"word": "decorate",
"phonetic": "[ˈdekəreɪt]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["布置,装饰", "授勋"]
}
]
},
{
"word": "economic",
"phonetic": "[ˌiːkəˈnɒmɪk; ˌekə-]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["经济(上)的", "经济学的", "有利可图的,合算的"]
}
]
},
{
"word": "economical",
"phonetic": "[ˌiːkəˈnɒmɪkl; ˌeka-]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["节约的,节俭的,经济的", "省时间的"]
}
]
},
{
"word": "economics",
"phonetic": "[ˌiːkəˈnɒmɪks; ˌeka-]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["经济学", "经济原则", "国家的经济状况"]
}
]
},
{
"word": "economy",
"phonetic": "[ɪˈkonəmi]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["经济"]
}
]
},
{
"word": "economy",
"phonetic": "[ɪˈkɒnəmi]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["节约,节省(金钱、时间、资源等)", "(国家的)经济管理", "经济制度"]
}
]
},
{
"word": "educate",
"phonetic": "[ˈedʒukeɪt]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["教育,培养,训练"]
}
]
},
{
"word": "education",
"phonetic": "[ˌedʒuˈkeɪʃn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["教育,教育体制", "知识;修养"]
}
]
},
{
"word": "effect",
"phonetic": "[ɪˈfekt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["(on)作用,影响", "结果;效果,效力"]
},
{
"part_of_speech": "vt.",
"definitions": ["产生,招致,实现"]
}
]
},
{
"word": "effective",
"phonetic": "[ɪˈfektɪv]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["有效的,生效的,得力的"]
}
]
},
{
"word": "efficient",
"phonetic": "[ɪˈfɪʃnt]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["有效的,效率高的;能胜任的"]
}
]
},
{
"word": "efficiency",
"phonetic": "[ɪˈfɪʃənsi]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["效率,功效"]
}
]
},
{
"word": "effort",
"phonetic": "[ˈefərt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["努力,艰难的尝试"]
}
]
},
{
"word": "fabric",
"phonetic": "[ˈfæbrɪk]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["织物;结构,组织"]
}
]
},
{
"word": "fabricate",
"phonetic": "[ˈfæbrɪkeɪt]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["建造,制造;捏造,编造(谎言、借口等)"]
}
]
},
{
"word": "face",
"phonetic": "[feɪs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["脸,面貌;表情;正面,表面"]
},
{
"part_of_speech": "v.",
"definitions": ["面临;朝,面向"]
}
]
},
{
"word": "facet",
"phonetic": "[ˈfæsit]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["部分,方面;(宝石的)琢面,刻面"]
}
]
},
{
"word": "factor",
"phonetic": "[ˈfæktər]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["因素,要素;(数)因子,因数"]
}
]
},
{
"word": "fade",
"phonetic": "[feɪd]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["(颜色)褪去;(声音等)变微弱", "(光等)变暗淡;逐渐消失"]
}
]
},
{
"word": "fail",
"phonetic": "[feɪl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["衰退,减弱;破产;失败,不及格"]
}
]
},
{
"word": "failure",
"phonetic": "[ˈfeɪljər]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["失败,不及格;失败者", "故障,失灵;未能"]
}
]
},
{
"word": "fair",
"phonetic": "[feər]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["公平的,合理的", "相当的,尚好的", "晴朗的;整齐的,清洁的"]
},
{
"part_of_speech": "n.",
"definitions": ["集市,交易会,博览会"]
}
]
},
{
"word": "fairly",
"phonetic": "[ˈfeəli]",
"definitions_list": [
{
"part_of_speech": "adv.",
"definitions": ["公正地,诚实地;相当地"]
}
]
},
{
"word": "fall",
"phonetic": "[fɔːl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["(fell, fallen)跌倒;下降,减弱", "失势,垮台;坠落;变成,陷于"]
},
{
"part_of_speech": "n.",
"definitions": ["秋季"]
}
]
},
{
"word": "fan",
"phonetic": "[fæn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["扇子,风扇;(影、球等)迷"]
},
{
"part_of_speech": "v.",
"definitions": ["扇,煽动,激起"]
}
]
},
{
"word": "fancy",
"phonetic": "[ˈfænsi]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["想象力;幻想,幻觉", "(尤指一时的)爱好,迷恋"]
},
{
"part_of_speech": "vt.",
"definitions": ["想象,幻想"]
},
{
"part_of_speech": "adj.",
"definitions": ["根据想象的,空想出来的;花式的,别致的"]
}
]
},
{
"word": "fascinate",
"phonetic": "[ˈfæsɪneɪt]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["强烈地吸引,迷住,使神魂颠倒"]
}
]
},
{
"word": "gain",
"phonetic": "[ɡeɪn]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["获得,赢得"]
}
]
},
{
"word": "gain",
"phonetic": "[ɡeɪn]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["获得,博得", "增加", "(钟、表)走快"]
},
{
"part_of_speech": "n.",
"definitions": ["获益", "增加"]
}
]
},
{
"word": "gamble",
"phonetic": "[ˈɡæmbl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["赌博", "投机", "冒险"]
},
{
"part_of_speech": "n.",
"definitions": ["赌博", "投机", "冒险"]
}
]
},
{
"word": "gap",
"phonetic": "[ɡæp]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["间隙,缺口", "分歧,差距"]
}
]
},
{
"word": "gene",
"phonetic": "[dʒiːn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["基因"]
}
]
},
{
"word": "general",
"phonetic": "[ˈdʒenrəl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["一般的,普遍的", "总的,大体的"]
},
{
"part_of_speech": "n.",
"definitions": ["将军"]
}
]
},
{
"word": "generalize/-ise",
"phonetic": "[ˈdʒenrəlaɪz]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["归纳,概括", "推广,普及", "使普遍化"]
}
]
},
{
"word": "habit",
"phonetic": "[ˈhæbɪt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["习惯,习性,脾性"]
}
]
},
{
"word": "habitat",
"phonetic": "[ˈhæbɪtæt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["(动植物的)自然环境,栖息地"]
}
]
},
{
"word": "hamper",
"phonetic": "[ˈhæmpər]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["妨碍,阻碍", "束缚,限制,牵制"]
}
]
},
{
"word": "handicap",
"phonetic": "[ˈhændikæp]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["障碍,不利条件"]
},
{
"part_of_speech": "vt.",
"definitions": ["妨碍,使不利"]
}
]
},
{
"word": "shield",
"phonetic": "[ʃiːld]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["保护,保卫", "庇护,掩盖"]
},
{
"part_of_speech": "n.",
"definitions": ["盾,保护物,防御物"]
}
]
},
{
"word": "shift",
"phonetic": "[ʃɪft]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["转移,移动", "替换,更换,改变"]
},
{
"part_of_speech": "n.",
"definitions": ["转移,更换,改变", "班,轮班,轮班职工"]
}
]
},
{
"word": "shoulder",
"phonetic": "[ˈʃəʊldər]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["肩膀,肩部"]
},
{
"part_of_speech": "vt.",
"definitions": ["肩负,承担"]
}
]
},
{
"word": "show",
"phonetic": "[ʃəʊ]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["呈现,显示", "表明,证明"]
},
{
"part_of_speech": "n.",
"definitions": ["展览,展览会,演出"]
}
]
},
{
"word": "shower",
"phonetic": "[ˈʃaʊər]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["阵雨,阵雨般的东西", "一大批,一大串", "淋浴,淋浴器,淋浴间"]
},
{
"part_of_speech": "v.",
"definitions": ["下阵雨", "阵雨般落下(或来到)"]
}
]
}
]
}