-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit3
891 lines (891 loc) · 20.6 KB
/
unit3
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
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
{
"words": [
{
"word": "tow",
"phonetic": "[tau]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["拖,拉,牵引"]
}
]
},
{
"word": "toward(s)",
"phonetic": "[tawo:d(z)]",
"definitions_list": [
{
"part_of_speech": "prep.",
"definitions": [
"(表示运动方向) 将近",
"(表示时间) 将近",
"(表示关系) 对于",
"表示目的) 为了"
]
}
]
},
{
"word": "take",
"phonetic": "[teik]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": [
"(took, taken) 拿取,携带",
"带去,引领",
"吃,服用",
"记录,拍摄",
"取得,接受",
"需要,花费",
"捕获,抓住",
"认为,当做"
]
},
{
"part_of_speech": "n.",
"definitions": [
"(一次) 录音",
"(一次) 拍摄",
"看法,意见",
"收入额"
]
}
]
},
{
"word": "talent",
"phonetic": "[taelant]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["才能,天资,天才"]
}
]
},
{
"word": "target",
"phonetic": "[ta:grt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["目标,对象"]
},
{
"part_of_speech": "vt.",
"definitions": ["把......作为目标"]
}
]
},
{
"word": "taste",
"phonetic": "[teist]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["品尝,辨味", "体验,感到"]
},
{
"part_of_speech": "n.",
"definitions": ["滋味,味觉", "鉴赏力"]
}
]
},
{
"word": "technical",
"phonetic": "[teknikl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["技术的,工艺的"]
}
]
},
{
"word": "technician",
"phonetic": "[tekntfn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["技术员,技师,技工"]
}
]
},
{
"word": "technique",
"phonetic": "[tekni:k]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["技术,技能"]
}
]
},
{
"word": "technology",
"phonetic": "/teknolad3i/",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["科技,工艺"]
}
]
},
{
"word": "teenager",
"phonetic": "[ti:netd3a(r)]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["青少年"]
}
]
},
{
"word": "temper",
"phonetic": "[tempo(r)]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["心情,脾气", "硬度,韧度"]
}
]
},
{
"word": "temperature",
"phonetic": "[temprotfo(r)]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["温度,体温"]
}
]
},
{
"word": "temporal",
"phonetic": "[temporal]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["世间的,世俗的,现世的", "时间的"]
}
]
},
{
"word": "temporary",
"phonetic": "['temprəri]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["暂时的,临时的"]
}
]
},
{
"word": "tempt",
"phonetic": "[tempt]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["引诱,诱惑", "吸引,使感兴趣"]
}
]
},
{
"word": "temptation",
"phonetic": "[tempteʃən]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["诱惑,引诱"]
}
]
},
{
"word": "tend",
"phonetic": "[tend]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["趋向,倾向", "易于,往往会", "照料,看护"]
}
]
},
{
"word": "tendency",
"phonetic": "['tendənsi]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["趋势,趋向"]
}
]
},
{
"word": "tentative",
"phonetic": "['tentətɪv]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["试验性的,试探性的", "暂时的,(凭)推测的"]
}
]
},
{
"word": "term",
"phonetic": "[tɜːrm]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["学期", "任期,期限", "条件,条款", "术语,专有名词", "关系,地位"]
}
]
},
{
"word": "terminal",
"phonetic": "['tɜːmɪnl]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["终点站", "终端,终端机", "(电路的)端子,线接头"]
},
{
"part_of_speech": "adj.",
"definitions": ["患绝症的,晚期的", "不治的,致命的", "不可救药的", "无可挽回的", "末端的,末梢的"]
}
]
},
{
"word": "terminate",
"phonetic": "['tɜːmɪneɪt]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["停止,结束,使终止"]
}
]
},
{
"word": "testify",
"phonetic": "[ˈtestɪfaɪ]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["证实,作证,证明", "(to)表明,说明"]
}
]
},
{
"word": "trace",
"phonetic": "[treɪs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["痕迹,踪迹", "微量,少许"]
},
{
"part_of_speech": "v.",
"definitions": ["追踪,跟踪", "查出,找到", "描绘,勾画"]
}
]
},
{
"word": "track",
"phonetic": "[træk]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["足迹,踪迹", "小道,小径"]
},
{
"part_of_speech": "v.",
"definitions": ["跟踪,追踪"]
}
]
},
{
"word": "tradition",
"phonetic": "[trəˈdɪʃn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["传统,惯例"]
}
]
},
{
"word": "ultimate",
"phonetic": "[ˈʌltɪmət]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["最后的,最终的", "极点的,终极的", "基本的,根本的", "最大的,最高的"]
}
]
},
{
"word": "underestimate",
"phonetic": "[ˌʌndərˈestɪmət]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["低估"]
}
]
},
{
"word": "undergo",
"phonetic": "[ˌʌndərˈɡoʊ]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["经历,遭受,忍受"]
}
]
},
{
"word": "underlie",
"phonetic": "[ˌʌndərˈlaɪ]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["位于......之下", "引起,构成......的基础(或起因)"]
}
]
},
{
"word": "underlying",
"phonetic": "[ˌʌndərˈlaɪɪŋ]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["在下面的", "根本的", "潜在的"]
}
]
},
{
"word": "underline",
"phonetic": "[ˌʌndərˈlaɪn]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["强调"]
}
]
},
{
"word": "underline",
"phonetic": "[ˌʌndərˈlaɪn]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["在......下划线", "强调"]
}
]
},
{
"word": "understand",
"phonetic": "[ˌʌndərˈstænd]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["懂,理解", "获悉,听说", "揣测,认为"]
}
]
},
{
"word": "understanding",
"phonetic": "[ˌʌndərˈstændɪŋ]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["理解,理解力,谅解"]
},
{
"part_of_speech": "adj.",
"definitions": ["了解的,通情达理的"]
}
]
},
{
"word": "undertake",
"phonetic": "[ˌʌndərˈteɪk]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["承担,接受", "着手做,从事", "同意,保证", "负责"]
}
]
},
{
"word": "uneasy",
"phonetic": "[ʌnˈiːzi]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["心神不宁的,不安宁的", "令人不安的,不自在的"]
}
]
},
{
"word": "unemployment",
"phonetic": "[ˌʌnɪmˈplɔɪmənt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["失业,失业人数"]
}
]
},
{
"word": "unexpected",
"phonetic": "[ˌʌnkˈspektɪd]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["想不到的,意外的"]
}
]
},
{
"word": "unify",
"phonetic": "[ˈjuːnɪfaɪ]",
"definitions_list": [
{
"part_of_speech": "vt.",
"definitions": ["使成一体,统一", "使相同,使一致"]
}
]
},
{
"word": "union",
"phonetic": "[ˈjuːniən]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["一致,融洽", "联合,合并", "协会,工会,同盟"]
}
]
},
{
"word": "unique",
"phonetic": "[juˈniːk]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["唯一的,独一无二的"]
}
]
},
{
"word": "universal",
"phonetic": "[ˌjuːnɪˈvɜːrsl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["普遍的,全体的,通用的", "宇宙的,世界的"]
}
]
},
{
"word": "universe",
"phonetic": "[ˈjuːnɪvɜːrs]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["宇宙,万物"]
}
]
},
{
"word": "unlike",
"phonetic": "[ʌnˈlaɪk]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["不同的,不相似的"]
},
{
"part_of_speech": "prep.",
"definitions": ["不像,和......不同"]
}
]
},
{
"word": "unlikely",
"phonetic": "[ʌnˈlaɪkli]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["未必的,靠不住的,不像的"]
}
]
},
{
"word": "unusual",
"phonetic": "[ʌnˈjuːʒuəl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["不平常的,与众不同的"]
}
]
},
{
"word": "vague",
"phonetic": "[veɪɡ]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["含(模)糊的,不明确的"]
}
]
},
{
"word": "vain",
"phonetic": "[veɪn]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["徒劳的,无效的", "自负的,爱虚荣的"]
}
]
},
{
"word": "valid",
"phonetic": "[ˈvælɪd]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["合理的,有效的,有根据的", "具有法律效力的"]
}
]
},
{
"word": "valuable",
"phonetic": "[ˈvæljuəbl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["贵重的,有价值的"]
},
{
"part_of_speech": "n.",
"definitions": ["(pl.)贵重物品,财宝"]
}
]
},
{
"word": "wage",
"phonetic": "[weɪdʒ]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["工资,报酬"]
},
{
"part_of_speech": "vt.",
"definitions": ["进行,从事,开展"]
}
]
},
{
"word": "wander",
"phonetic": "[ˈwɒndə]",
"definitions_list": [
{
"part_of_speech": "vi.",
"definitions": ["漫步,徘徊", "迷路", "走神,开小差", "(神情)恍惚", "离题"]
}
]
},
{
"word": "vanish",
"phonetic": "[vænɪʃ]",
"definitions_list": [
{
"part_of_speech": "vi.",
"definitions": ["突然消失,逐渐消散"]
}
]
},
{
"word": "variable",
"phonetic": "[ˈveəriəbl]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["易变的,可变的,变量的"]
},
{
"part_of_speech": "n.",
"definitions": ["可变因素;变数"]
}
]
},
{
"word": "weak",
"phonetic": "[wiːk]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["虚弱的,软弱的", "差的,不够标准的", "淡的,稀的"]
}
]
},
{
"word": "variance",
"phonetic": "[ˈveəriəns]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["变化幅度,差额"]
}
]
},
{
"word": "variation",
"phonetic": "[ˌveəriˈeɪʃn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["变化,变动;变种,变异"]
}
]
},
{
"word": "wear",
"phonetic": "[weə]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["穿,戴", "留,蓄(发、须等)"]
}
]
},
{
"word": "variety",
"phonetic": "[vəˈraɪəti]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["种种,多种多样", "种类,品种"]
}
]
},
{
"word": "weary",
"phonetic": "[ˈwɪəri]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["使厌烦,使疲劳"]
},
{
"part_of_speech": "adj.",
"definitions": ["疲劳的,疲倦的", "使人疲劳的"]
}
]
},
{
"word": "various",
"phonetic": "[ˈveəriəs]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["各种各样的,不同的"]
}
]
},
{
"word": "weigh",
"phonetic": "[weɪ]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["称……重量,称", "(对看法或决定)有影响,有分量", "掂量,权衡,比较"]
}
]
},
{
"word": "vary",
"phonetic": "[ˈveəri]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["改变,变化"]
}
]
},
{
"word": "weight",
"phonetic": "[weɪt]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["重量,分量", "重(的特性)", "重要性,严重性或影响力(的程度)"]
},
{
"part_of_speech": "vt.",
"definitions": ["在(某物)上加重量,使某物重些", "给某人加负担,使某人负重"]
}
]
},
{
"word": "vast",
"phonetic": "[vɑːst]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["巨大的,辽阔的", "大量的,巨额的"]
}
]
},
{
"word": "weird",
"phonetic": "[wɪərd]",
"definitions_list": [
{
"part_of_speech": "adj.",
"definitions": ["怪异的,超自然的", "不可思议的"]
},
{
"part_of_speech": "n.",
"definitions": ["命运", "之字形", "曲折"]
},
{
"part_of_speech": "v.",
"definitions": ["呈之字形移动", "曲折行进"]
}
]
},
{
"word": "welfare",
"phonetic": "[ˈwelfer]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["福利,幸福,好处"]
}
]
},
{
"word": "zone",
"phonetic": "[zoʊn]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["地带,分布带", "地区,区域"]
},
{
"part_of_speech": "v.",
"definitions": ["分区,划分地带"]
}
]
},
{
"word": "whirl",
"phonetic": "[wɜːrl]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["旋转,急转", "(头)变混乱"]
},
{
"part_of_speech": "n.",
"definitions": ["眩晕,混乱"]
}
]
},
{
"word": "zoom",
"phonetic": "[zuːm]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["飞驰,嗡嗡声"]
},
{
"part_of_speech": "v.",
"definitions": ["飞驰,飞快地掠过", "(价格等)急剧上涨,突然扩大"]
}
]
},
{
"word": "whisper",
"phonetic": "[ˈwɪspər]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["低语,耳语,嘀咕"]
},
{
"part_of_speech": "n.",
"definitions": ["低语,耳语,私语", "传闻,谣言"]
}
]
},
{
"word": "key",
"phonetic": "[kiː]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["钥匙", "(to)答案,解答", "关键", "键,琴键"]
},
{
"part_of_speech": "adj.",
"definitions": ["主要的,关键的"]
}
]
},
{
"word": "yield",
"phonetic": "[jiːld]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["生产,产生,带来", "放弃,屈服", "(to)使适应(用)", "使和谐"]
},
{
"part_of_speech": "n.",
"definitions": ["产量,收获"]
}
]
},
{
"word": "knit",
"phonetic": "[nɪt]",
"definitions_list": [
{
"part_of_speech": "v.",
"definitions": ["编织,编结", "针织,机织", "(使)愈合", "接合", "(使)紧密结合"]
}
]
},
{
"word": "youth",
"phonetic": "[juːθ]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["青春,青春期", "年轻人"]
}
]
},
{
"word": "zigzag",
"phonetic": "[ˈzɪɡzæɡ]",
"definitions_list": [
{
"part_of_speech": "n.",
"definitions": ["之字形,锯齿形"]
},
{
"part_of_speech": "v.",
"definitions": ["呈之字形移动", "曲折行进"]
}
]
}
]
}