-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
4280 lines (4280 loc) · 116 KB
/
data.json
File metadata and controls
4280 lines (4280 loc) · 116 KB
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
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"word": "abide",
"infinitive": {
"form": "abide",
"pronunciation": "/əˈbaid/",
"example": "I will abide by the school rules."
},
"past_simple": {
"form": ["abode", "abided"],
"pronunciation": ["/əˈboud/", "/əˈbaidid/"],
"example": ["He abode in the classroom quietly.", "She abided by the teacher's instructions."]
},
"past_participle": {
"form": ["abode", "abided"],
"pronunciation": ["/əˈboud/", "/əˈbaidid/"],
"example": ["He abode by the rules during the exam.", "They have abided by the traffic laws"]
},
"meaning": "tuân theo, chịu đựng"
},
{
"word": "arise",
"infinitive": {
"form": "arise",
"pronunciation": "/əˈraiz/",
"example": ["The sun arises early in the summer."]
},
"past_simple": {
"form": "arose",
"pronunciation": "/əˈrouz/",
"example": ["A problem arose during the test."]
},
"past_participle": {
"form": "arisen",
"pronunciation": "/əˈrizn/",
"example": ["A new problem has arisen in our class."]
},
"meaning": "Phát sinh"
},
{
"word": "awake",
"infinitive": {
"form": "awake",
"pronunciation": "/əˈweik/",
"example": ["I awake early every morning."]
},
"past_simple": {
"form": "awoke",
"pronunciation": "/əˈwouk/",
"example": ["I awoke early to study for the test."]
},
"past_participle": {
"form": "awoken",
"pronunciation": "/əˈwoukən/",
"example": ["She was awoken by a loud noise early in the morning."]
},
"meaning": "đánh thức, thức, làm thức giấc"
},
{
"word": "be",
"infinitive": {
"form": "be",
"pronunciation": "/bi/",
"example": ["I want to be a teacher."]
},
"past_simple": {
"form": ["was", "were"],
"pronunciation": ["/wəz/", "/wɜːr/"],
"example": ["He was at school yesterday.", "They were happy last weekend."]
},
"past_participle": {
"form": "been",
"pronunciation": "/bɪn/",
"example": ["I have been to Hanoi."]
},
"meaning": "Thì, là, bị, ở"
},
{
"word": "bear",
"infinitive": {
"form": "bear",
"pronunciation": "/beə/",
"example": ["I cannot bear the noise."]
},
"past_simple": {
"form": "bore",
"pronunciation": "/bɔːr/",
"example": ["She bore the pain bravely."]
},
"past_participle": {
"form": "borne",
"pronunciation": "/bɔːrn/",
"example": ["The heavy load has been borne by the workers."]
},
"meaning": "Mang, Chịu đựng"
},
{
"word": "beat",
"infinitive": {
"form": "beat",
"pronunciation": "/biːt/",
"example": ["He can beat the drums very well."]
},
"past_simple": {
"form": "beat",
"pronunciation": "/biːt/",
"example": ["They beat their opponents in the match."]
},
"past_participle": {
"form": "beaten",
"pronunciation": "/ˈbiːtn̩/",
"example": ["The team was beaten by a stronger one."]
},
"meaning": "Đánh bại"
},
{
"word": "become",
"infinitive": {
"form": "become",
"pronunciation": "/bɪˈkʌm/",
"example": ["She wants to become a doctor."]
},
"past_simple": {
"form": "became",
"pronunciation": "/bɪˈkeɪm/",
"example": ["He became tired after the long run."]
},
"past_participle": {
"form": "become",
"pronunciation": "/bɪˈkʌm/",
"example": ["She has become a famous singer."]
},
"meaning": "Trở nên"
},
{
"word": "befall",
"infinitive": {
"form": "befall",
"pronunciation": "/bɪˈfɔːl/",
"example": ["Accidents can befall anyone."]
},
"past_simple": {
"form": "befell",
"pronunciation": "/bɪˈfɛl/",
"example": ["An unfortunate event befell him yesterday."]
},
"past_participle": {
"form": "befallen",
"pronunciation": "/bɪˈfɔːlən/",
"example": ["The disaster has befallen the village."]
},
"meaning": "Xảy đến"
},
{
"word": "Begin",
"infinitive": {
"form": "Begin",
"pronunciation": "/bɪˈɡɪn/",
"example": ["The class will begin at 8 AM."]
},
"past_simple": {
"form": "Began",
"pronunciation": "/bɪˈɡæn/",
"example": ["She began her studies early in the morning."]
},
"past_participle": {
"form": "Begun",
"pronunciation": "/bɪˈɡʌn/",
"example": ["They have already begun the project."]
},
"meaning": "Bắt đầu"
},
{
"word": "Behold",
"infinitive": {
"form": "Behold",
"pronunciation": "/bɪˈhəʊld/",
"example": ["Behold the beauty of the sunset."]
},
"past_simple": {
"form": "Beheld",
"pronunciation": "/bɪˈhɛld/",
"example": ["She beheld the majestic mountains."]
},
"past_participle": {
"form": "Beheld",
"pronunciation": "/bɪˈhɛld/",
"example": ["He has beheld many wonders in his life."]
},
"meaning": "Ngắm nhìn"
},
{
"word": "Bend",
"infinitive": {
"form": "Bend",
"pronunciation": "/bend/",
"example": ["Please bend the paper carefully."]
},
"past_simple": {
"form": "Bent",
"pronunciation": "/bent/",
"example": ["He bent the wire into a circle."]
},
"past_participle": {
"form": "Bent",
"pronunciation": "/bent/",
"example": ["The tree has bent under the weight of the snow."]
},
"meaning": "Bẻ cong"
},
{
"word": "Beset",
"infinitive": {
"form": "Beset",
"pronunciation": "/bɪˈsɛt/",
"example": ["The team was beset with challenges."]
},
"past_simple": {
"form": "Beset",
"pronunciation": "/bɪˈsɛt/",
"example": ["They were beset by difficulties all year."]
},
"past_participle": {
"form": "Beset",
"pronunciation": "/bɪˈsɛt/",
"example": ["The city has been beset with problems."]
},
"meaning": "Bao quanh"
},
{
"word": "bespeak",
"infinitive": {
"form": "bespeak",
"pronunciation": "/bɪˈspiːk/",
"example": ["The evidence bespeaks his innocence."]
},
"past_simple": {
"form": "bespoke",
"pronunciation": "/bɪˈspəʊk/",
"example": ["The situation bespoke a deep concern."]
},
"past_participle": {
"form": "bespoken",
"pronunciation": "/bɪˈspəʊkən/",
"example": ["The truth has been bespoken by many witnesses."]
},
"meaning": "Chứng tỏ"
},
{
"word": "bid",
"infinitive": {
"form": "bid",
"pronunciation": "/bɪd/",
"example": ["He bid $10 for the old book."]
},
"past_simple": {
"form": ["Bade", "bid"],
"pronunciation": ["/bæd/", "/bɪd/"],
"example": ["She bade him farewell before leaving.", "He bid $100 for the old clock."]
},
"past_participle": {
"form": ["bidden", "bid"],
"pronunciation": ["/bɪdən/", "/bɪd/"],
"example": ["She had bidden them to follow her.", "He had bid higher than anyone else."]
},
"meaning": "Trả giá"
},
{
"word": "Bind",
"infinitive": {
"form": "Bind",
"pronunciation": "/baɪnd/",
"example": ["I need to bind these books."]
},
"past_simple": {
"form": "Bound",
"pronunciation": "/baʊnd/",
"example": ["She bound the package with string."]
},
"past_participle": {
"form": "Bound",
"pronunciation": "/baʊnd/",
"example": ["He has bound the wound tightly."]
},
"meaning": "Buộc, trói"
},
{
"word": "Bleed",
"infinitive": {
"form": "Bleed",
"pronunciation": "/bliːd/",
"example": ["Your nose might bleed if you pick it."]
},
"past_simple": {
"form": "Bled",
"pronunciation": "/bled/",
"example": ["He bled after falling off his bike."]
},
"past_participle": {
"form": "Bled",
"pronunciation": "/bled/",
"example": ["The cut has bled a lot."]
},
"meaning": "Chảy máu"
},
{
"word": "Blow",
"infinitive": {
"form": "Blow",
"pronunciation": "/bloʊ/",
"example": ["Blow out the candles on the cake."]
},
"past_simple": {
"form": "Blew",
"pronunciation": "/bluː/",
"example": ["The wind blew the leaves away."]
},
"past_participle": {
"form": "Blown",
"pronunciation": "/bloʊn/",
"example": ["The balloon has been blown up."]
},
"meaning": "Thổi"
},
{
"word": "Break",
"infinitive": {
"form": "Break",
"pronunciation": "/breɪk/",
"example": ["Don't break that vase!"]
},
"past_simple": {
"form": "Broke",
"pronunciation": "/broʊk/",
"example": ["She broke her phone yesterday."]
},
"past_participle": {
"form": "Broken",
"pronunciation": "/ˈbroʊkən/",
"example": ["The window has been broken."]
},
"meaning": "Đập vỡ"
},
{
"word": "Breed",
"infinitive": {
"form": "Breed",
"pronunciation": "/briːd/",
"example": ["They breed rabbits for food."]
},
"past_simple": {
"form": "Bred",
"pronunciation": "/brɛd/",
"example": ["She bred horses on her farm."]
},
"past_participle": {
"form": "Bred",
"pronunciation": "/brɛd/",
"example": ["They have bred many different animals."]
},
"meaning": "Nuôi, Dạy dỗ"
},
{
"word": "bring",
"infinitive": {
"form": "bring",
"pronunciation": "/brɪŋ/",
"example": ["Please bring your homework tomorrow."]
},
"past_simple": {
"form": "brought",
"pronunciation": "/brɔːt/",
"example": ["She brought a gift to the party."]
},
"past_participle": {
"form": "brought",
"pronunciation": "/brɔːt/",
"example": ["He has brought all the necessary tools."]
},
"meaning": "Mang đến"
},
{
"word": "Broadcast",
"infinitive": {
"form": "Broadcast",
"pronunciation": "/ˈbrɔːdkɑːst/",
"example": ["They broadcast the news every evening."]
},
"past_simple": {
"form": "Broadcast",
"pronunciation": "/ˈbrɔːdkɑːst/",
"example": ["The station broadcast a live concert."]
},
"past_participle": {
"form": "Broadcast",
"pronunciation": "/ˈbrɔːdkɑːst/",
"example": ["The show has been broadcast worldwide."]
},
"meaning": "Phát thanh"
},
{
"word": "Build",
"infinitive": {
"form": "Build",
"pronunciation": "/bɪld/",
"example": ["We plan to build a new school."]
},
"past_simple": {
"form": "Built",
"pronunciation": "/bɪlt/",
"example": ["They built a bridge last year."]
},
"past_participle": {
"form": "Built",
"pronunciation": "/bɪlt/",
"example": ["He has built a successful career."]
},
"meaning": "Xây dựng"
},
{
"word": "burn",
"infinitive": {
"form": "burn",
"pronunciation": "/bɜːn/",
"example": ["Don't burn the toast!"]
},
"past_simple": {
"form": ["burnt", "burned"],
"pronunciation": ["/bɜːnt/", "/bɜːnd/"],
"example": ["The fire burnt brightly all night.", "He burned his hand on the stove."]
},
"past_participle": {
"form": ["burnt", "burned"],
"pronunciation": ["/bɜːnt/", "/bɜːnd/"],
"example": ["The house was burnt to the ground.", "He has burned the old papers."]
},
"meaning": "Đốt, Cháy"
},
{
"word": "Buy",
"infinitive": {
"form": "Buy",
"pronunciation": "/baɪ/",
"example": ["I want to buy a new book."]
},
"past_simple": {
"form": "Bought",
"pronunciation": "/bɔːt/",
"example": ["She bought a dress yesterday."]
},
"past_participle": {
"form": "Bought",
"pronunciation": "/bɔːt/",
"example": ["He has bought a new car recently."]
},
"meaning": "Mua"
},
{
"word": "Cast",
"infinitive": {
"form": "Cast",
"pronunciation": "/kɑːst/",
"example": ["He cast a stone into the river."]
},
"past_simple": {
"form": "Cast",
"pronunciation": "/kɑːst/",
"example": ["The statue has been cast in bronze."]
},
"past_participle": {
"form": "Cast",
"pronunciation": "/kɑːst/",
"example": ["The statue has been cast in bronze."]
},
"meaning": "Ném, Tung"
},
{
"word": "Catch",
"infinitive": {
"form": "Catch",
"pronunciation": "/kætʃ/",
"example": ["Try to catch the ball."]
},
"past_simple": {
"form": "Caught",
"pronunciation": "/kɔːt/",
"example": ["She caught a cold last week."]
},
"past_participle": {
"form": "Caught",
"pronunciation": "/kɔːt/",
"example": ["He has caught many fish today."]
},
"meaning": "Bắt, Chụp"
},
{
"word": "Chide",
"infinitive": {
"form": "Chide",
"pronunciation": "/tʃaɪd/",
"example": ["Parents sometimes chide their children for being late."]
},
"past_simple": {
"form": ["chid", "chided"],
"pronunciation": ["/tʃɪd/ ", "/ˈtʃaɪdɪd/"],
"example": [
"The teacher chid the students for talking too loudly.",
"She chided him for forgetting their anniversary."
]
},
"past_participle": {
"form": ["chidden", "chided"],
"pronunciation": ["/tʃɪd/", "/ˈtʃaɪdɪd/"],
"example": ["He has been chidden for his mistakes.", "They have chided the team for poor performance."]
},
"meaning": "Mắng, Chửi"
},
{
"word": "Choose",
"infinitive": {
"form": "Choose",
"pronunciation": "/tʃuːz/",
"example": ["You can choose any book you like."]
},
"past_simple": {
"form": "Chose",
"pronunciation": "/tʃoʊz/",
"example": ["She chose the blue dress for the party."]
},
"past_participle": {
"form": "Chosen",
"pronunciation": "/ˈtʃoʊzən/",
"example": ["They have chosen a new leader for the group."]
},
"meaning": "Chọn, Lựa"
},
{
"word": "Cleave",
"infinitive": {
"form": "Cleave",
"pronunciation": "/kliːv/",
"example": ["He used an axe to cleave the log."]
},
"past_simple": {
"form": "Cleft",
"pronunciation": ["/klɛft/", "/kləʊv/"],
"example": ["The rock cleft in two after the explosion."]
},
"past_participle": {
"form": "Cleft",
"pronunciation": ["/klɛft/", "/kləʊv/"],
"example": ["The wood has been cleft into smaller pieces."]
},
"meaning": "Chẻ, Tách hai"
},
{
"word": "Cleave",
"infinitive": {
"form": "Cleave",
"pronunciation": "/kliːv/",
"example": ["Some people cleave to their traditions."]
},
"past_simple": {
"form": "Clave",
"pronunciation": "/kliːvd/",
"example": ["She clave to her beliefs despite the challenges."]
},
"past_participle": {
"form": "Cleaved",
"pronunciation": "/kliːvd/",
"example": ["He has cleaved to the old customs for years."]
},
"meaning": "Dính chặt"
},
{
"word": "Come",
"infinitive": {
"form": "Come",
"pronunciation": "/kʌm/",
"example": ["Please come to my house after school."]
},
"past_simple": {
"form": "Came",
"pronunciation": "/keɪm/",
"example": ["She came to the party late."]
},
"past_participle": {
"form": "Come",
"pronunciation": "/kʌm/",
"example": ["They have come here many times."]
},
"meaning": "Đến, Đi đến"
},
{
"word": "Cost",
"infinitive": {
"form": "Cost",
"pronunciation": "/kɒst/",
"example": [""]
},
"past_simple": {
"form": "Cost",
"pronunciation": "/kɒst/",
"example": ["This book costs $10."]
},
"past_participle": {
"form": "Cost",
"pronunciation": "/kɒst/",
"example": ["The trip cost a lot of money last year."]
},
"meaning": "Có giá là"
},
{
"word": "Crow",
"infinitive": {
"form": "Crow",
"pronunciation": "/krəʊ/",
"example": ["The rooster crows every morning."]
},
"past_simple": {
"form": "Crew",
"pronunciation": "/krəʊd/",
"example": ["The rooster crew loudly at dawn."]
},
"past_participle": {
"form": "Crowed",
"pronunciation": "/krəʊd/",
"example": ["The rooster has crowed all morning."]
},
"meaning": "Gáy (gà)"
},
{
"word": "Cut",
"infinitive": {
"form": "Cut",
"pronunciation": "/kʌt/",
"example": ["Be careful not to cut your finger."]
},
"past_simple": {
"form": "Cut",
"pronunciation": "/kʌt/",
"example": ["He cut the paper with scissors."]
},
"past_participle": {
"form": "Cut",
"pronunciation": "/kʌt/",
"example": ["She has cut her hair short."]
},
"meaning": "Cắn, Chặt"
},
{
"word": "Deal",
"infinitive": {
"form": "Deal",
"pronunciation": "/diːl/",
"example": ["We need to deal with this problem quickly."]
},
"past_simple": {
"form": "Dealt",
"pronunciation": "/delt/",
"example": ["He dealt the cards to everyone."]
},
"past_participle": {
"form": "Dealt",
"pronunciation": "/delt/",
"example": ["They have dealt with many difficult situations."]
},
"meaning": "giao thiệp"
},
{
"word": "Dig",
"infinitive": {
"form": "Dig",
"pronunciation": "/dɪɡ/",
"example": ["The dog loves to dig holes in the garden."]
},
"past_simple": {
"form": "Dug",
"pronunciation": "/dʌɡ/",
"example": ["He dug a deep hole to plant the tree."]
},
"past_participle": {
"form": "Dug",
"pronunciation": "/dʌɡ/",
"example": ["They have dug a well for water."]
},
"meaning": "Đào"
},
{
"word": "Dive",
"infinitive": {
"form": "Dive",
"pronunciation": "/daɪv/",
"example": ["He loves to dive into the swimming pool."]
},
"past_simple": {
"form": ["Dove", "Dived"],
"pronunciation": ["/doʊv/", "/daɪvd/"],
"example": ["He dove off the cliff into the ocean.", "She dived into the water to save the child."]
},
"past_participle": {
"form": "Dived",
"pronunciation": "/daɪvd/",
"example": ["The submarine has dived deep under the sea."]
},
"meaning": "Lặn, Lao xuống"
},
{
"word": "Draw",
"infinitive": {
"form": "Draw",
"pronunciation": "/drɔː/",
"example": ["She likes to draw pictures of landscapes."]
},
"past_simple": {
"form": "Drew",
"pronunciation": "/druː/",
"example": ["He drew a map to show the way."]
},
"past_participle": {
"form": "Drawn",
"pronunciation": "/drɔːn/",
"example": ["The artist has drawn a beautiful portrait."]
},
"meaning": "Vẽ, Kéo"
},
{
"word": "Dream",
"infinitive": {
"form": "Dream",
"pronunciation": "/driːm/",
"example": ["I often dream about traveling the world."]
},
"past_simple": {
"form": ["Dreamt", "Dreamed"],
"pronunciation": ["/drɛmt/", "/driːmd/"],
"example": ["Last night, I dreamt about my childhood.", "He dreamed of becoming a pilot."]
},
"past_participle": {
"form": ["Dreamt", "Dreamed"],
"pronunciation": ["/drɛmt/", "/driːmd/"],
"example": ["She has dreamt of this day for years.", "They have dreamed of success since starting their journey."]
},
"meaning": "Mơ thấy"
},
{
"word": "Drink",
"infinitive": {
"form": "Drink",
"pronunciation": "/drɪŋk/",
"example": ["I drink water every morning."]
},
"past_simple": {
"form": "Drank",
"pronunciation": "/dræŋk/",
"example": ["He drank a glass of milk before bed."]
},
"past_participle": {
"form": "Drunk",
"pronunciation": "/drʌŋk/",
"example": ["She has drunk three cups of coffee today."]
},
"meaning": "Uống"
},
{
"word": "Drive",
"infinitive": {
"form": "Drive",
"pronunciation": "/draɪv/",
"example": ["He likes to drive on long road trips."]
},
"past_simple": {
"form": "Drove",
"pronunciation": "/droʊv/",
"example": ["Yesterday, she drove to the countryside."]
},
"past_participle": {
"form": "Driven",
"pronunciation": "/ˈdrɪvən/",
"example": ["They have driven across the entire country."]
},
"meaning": "Lái xe"
},
{
"word": "Dwell",
"infinitive": {
"form": "Dwell",
"pronunciation": "/dwɛl/",
"example": ["The hermit chose to dwell in a remote forest."]
},
"past_simple": {
"form": "Dwelt",
"pronunciation": "/dwɛlt/",
"example": ["He dwelt in the mountains for years."]
},
"past_participle": {
"form": "Dwelt",
"pronunciation": "/dwɛlt/",
"example": ["The tribe has dwelt in this region for centuries."]
},
"meaning": "Trú ngụ"
},
{
"word": "earn",
"infinitive": {
"form": "earn",
"pronunciation": "/ɜːn/",
"example": ""
},
"past_simple": {
"form": ["earned", "earnt"],
"pronunciation": ["/ɜːnd/", "/ɜːnt/"],
"example": ""
},
"past_participle": {
"form": ["earned", "earnt"],
"pronunciation": ["/ɜːnd/", "/ɜːnt/"],
"example": ""
},
"meaning": "kiếm sống"
},
{
"word": "Eat",
"infinitive": {
"form": "Eat",
"pronunciation": "/iːt/",
"example": ["I eat breakfast at 7 AM."]
},
"past_simple": {
"form": "Ate",
"pronunciation": "/eɪt/",
"example": ["She ate an apple for lunch."]
},
"past_participle": {
"form": "Eaten",
"pronunciation": "/ˈiːtn̩/",
"example": ["We have eaten at that restaurant before."]
},
"meaning": "Ăn"
},
{
"word": "Fall",
"infinitive": {
"form": "Fall",
"pronunciation": "/fɔːl/",
"example": ["Leaves fall from trees in autumn."]
},
"past_simple": {
"form": "Fell",
"pronunciation": "/fel/",
"example": ["She fell off the ladder."]
},
"past_participle": {
"form": "Fallen",
"pronunciation": "/ˈfɔːlən/",
"example": ["The empire has fallen."]
},
"meaning": "Ngã, Rơi"
},
{
"word": "Feed",
"infinitive": {
"form": "Feed",
"pronunciation": "/fiːd/",
"example": ["I need to feed the dog."]
},
"past_simple": {
"form": "Fed",
"pronunciation": "/fed/",
"example": ["He fed the birds in the park."]
},
"past_participle": {
"form": "Fed",
"pronunciation": "/fed/",
"example": ["The baby has been fed."]
},
"meaning": "cho ăn, ăn, nuôi"
},
{
"word": "Feel",
"infinitive": {
"form": "Feel",
"pronunciation": "/fiːl/",
"example": ["I feel happy today."]
},
"past_simple": {
"form": "Felt",
"pronunciation": "/felt/",
"example": ["She felt tired after the trip."]
},
"past_participle": {
"form": "Felt",
"pronunciation": "/felt/",
"example": ["He has felt this way for years."]
},
"meaning": "Cảm thấy"
},
{
"word": "Fight",
"infinitive": {
"form": "Fight",
"pronunciation": "/faɪt/",
"example": ["They fight for their rights."]
},
"past_simple": {
"form": "Fought",
"pronunciation": "/fɔːt/",
"example": ["He fought bravely in the battle."]
},
"past_participle": {
"form": "Fought",
"pronunciation": "/fɔːt/",
"example": ["The team has fought hard to win the championship."]
},
"meaning": "Chiến đấu"
},
{
"word": "Find",
"infinitive": {
"form": "Find",
"pronunciation": "/faɪnd/",
"example": ["I always find my keys on the table."]
},
"past_simple": {
"form": "Found",
"pronunciation": "/faʊnd/",
"example": ["She found a wallet on the street."]
},
"past_participle": {
"form": "Found",
"pronunciation": "/faʊnd/",
"example": ["They have found the missing documents."]
},
"meaning": "Tìm thấy, Thấy"
},
{
"word": "Flee",
"infinitive": {
"form": "Flee",
"pronunciation": "/fliː/",
"example": ["People flee from danger."]
},
"past_simple": {
"form": "Fled",
"pronunciation": "/flɛd/",
"example": ["They fled the city during the war."]
},
"past_participle": {
"form": "Fled",
"pronunciation": "/flɛd/",
"example": ["The refugees have fled the conflict."]
},
"meaning": "Chạy trốn"
},
{
"word": "Fling",
"infinitive": {
"form": "Fling",
"pronunciation": "/flɪŋ/",
"example": ["She decided to fling the ball across the field."]
},
"past_simple": {
"form": "Flung",
"pronunciation": "/flʌŋ/",
"example": ["He flung the door open in anger."]
},
"past_participle": {
"form": "Flung",
"pronunciation": "/flʌŋ/",
"example": ["The soldier had flung the spear with great force."]
},
"meaning": "Tung, Quang"
},
{
"word": "Fly",
"infinitive": {
"form": "Fly",
"pronunciation": "/flaɪ/",
"example": ["Birds fly high in the sky."]
},
"past_simple": {
"form": "Flew",
"pronunciation": "/fluː/",
"example": ["The plane flew over the mountains."]
},
"past_participle": {
"form": "Flown",
"pronunciation": "/floʊn/",
"example": ["The bird has flown away."]
},
"meaning": "Bay"
},
{
"word": "Forbear",
"infinitive": {
"form": "Forbear",
"pronunciation": "/fɔːrˈbɛər/",
"example": ["He had to forbear from speaking."]
},
"past_simple": {