-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwords.json
14280 lines (14280 loc) · 576 KB
/
words.json
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
{
"all_words": [{
"meaning": "lower; degrade; humiliate; make humble; make (oneself) lose self-respect",
"word": "abase"
}, {
"meaning": "embarrass",
"word": "abash"
}, {
"meaning": "subside or moderate",
"word": "abate"
}, {
"meaning": "shorten",
"word": "abbreviate"
}, {
"meaning": "renounce; give up (position, right, or responsibility)",
"word": "abdicate"
}, {
"meaning": "abnormal or deviant",
"word": "aberrant"
}, {
"meaning": "deviation from the normal; mental disorder",
"word": "aberration"
}, {
"meaning": "assist usually in doing something wrong; encourage",
"word": "abet"
}, {
"meaning": "suspended action",
"word": "abeyance"
}, {
"meaning": "detest; hate",
"word": "abhor"
}, {
"meaning": "(of a condition) wretched; as low as possible; lacking pride; very humble; showing lack of self-respect; Ex. abject apology",
"word": "abject"
}, {
"meaning": "renounce upon oath",
"word": "abjure"
}, {
"meaning": "washing",
"word": "ablution"
}, {
"meaning": "renunciation; self-sacrifice; self-abnegation",
"word": "abnegation"
}, {
"meaning": "cancel; put an end to",
"word": "abolish"
}, {
"meaning": "loathe; hate",
"word": "abominate"
}, {
"meaning": "detestable; extremely unpleasant",
"word": "abominable"
}, {
"meaning": "being the first of its kind in a region; primitive; native; indigenous; N. aborigine",
"word": "aboriginal"
}, {
"meaning": "unsuccessful; fruitless",
"word": "abortive"
}, {
"meaning": "rubbing away; tending to grind down",
"word": "abrasive"
}, {
"meaning": "condense or shorten",
"word": "abridge"
}, {
"meaning": "abolish",
"word": "abrogate"
}, {
"meaning": "cutting off; separation",
"word": "abscission"
}, {
"meaning": "depart secretly and hide",
"word": "abscond"
}, {
"meaning": "complete; totally unlimited; having complete power; certain; not relative; Ex. absolute honesty/ruler; CF. absolutism",
"word": "absolute"
}, {
"meaning": "pardon (an offense)",
"word": "absolve"
}, {
"meaning": "refrain; withhold from participation; intentionally not use one's vote",
"word": "abstain"
}, {
"meaning": "sparing in eating and drinking; temperate",
"word": "abstemious"
}, {
"meaning": "restraint from pleasant things, esp. eating or drinking; CF. abstention: act of abstaining from vote",
"word": "abstinence"
}, {
"meaning": "theoretical; not concrete; nonrepresentational",
"word": "abstract"
}, {
"meaning": "obscure; profound; difficult to understand",
"word": "abstruse"
}, {
"meaning": "coarsely insulting; physically harmful",
"word": "abusive"
}, {
"meaning": "border upon; adjoin",
"word": "abut"
}, {
"meaning": "bottomless",
"word": "abysmal"
}, {
"meaning": "enormous chasm; vast bottomless pit",
"word": "abyss"
}, {
"meaning": "related to a school; not practical or directly useful",
"word": "academic"
}, {
"meaning": "agree",
"word": "accede"
}, {
"meaning": "move faster",
"word": "accelerate"
}, {
"meaning": "easy to approach; obtainable",
"word": "accessible"
}, {
"meaning": "additional object; useful but not essential thing",
"word": "accessory"
}, {
"meaning": "applaud; praise; greet with great approval; announce with great approval; Ex. The new drung has been acclaimed as the most important discoveries for years; N: strong expression of approval and praise",
"word": "acclaim"
}, {
"meaning": "adjust to climate or environment; adapt",
"word": "acclimate"
}, {
"meaning": "sharp upslope of a hill; OP. declivity",
"word": "acclivity"
}, {
"meaning": "award of merit; strong praise and approval",
"word": "accolade"
}, {
"meaning": "oblige or help someone; adjust or bring into harmony; adapt; make enough space for; ADJ. accommodative; CF. accomodating: helpful and obliging",
"word": "accommodate"
}, {
"meaning": "partner in crime",
"word": "accomplice"
}, {
"meaning": "agreement",
"word": "accord"
}, {
"meaning": "approach and speak first to a person",
"word": "accost"
}, {
"meaning": "equip; N. accoutrement",
"word": "accoutre"
}, {
"meaning": "growth or increase in size by gradual addition; growth; increase; increase by natural growth; Ex. towers and other accretions of the castle; V. accrete",
"word": "accretion"
}, {
"meaning": "come to one as a gain; accumulate over time; come about by addition; Ex. benefits that accrue from scientific research; Ex. interest accruing in a bank account; N. accrual",
"word": "accrue"
}, {
"meaning": "bitterness of speech and temper; ADJ. acerbic: bitter; acrid (in taste, manner, or tone)",
"word": "acerbity"
}, {
"meaning": "vinegary",
"word": "acetic"
}, {
"meaning": "slightly sour (in taste or manner); sharp; caustic",
"word": "acidulous"
}, {
"meaning": "recognize; admit",
"word": "acknowledge"
}, {
"meaning": "peak; pinnacle; highest point",
"word": "acme"
}, {
"meaning": "science of sound; quality that makes a room easy or hard to hear in",
"word": "acoustics"
}, {
"meaning": "assent; agree passively; comply without protest",
"word": "acquiesce"
}, {
"meaning": "deliverance from a charge; V. acquit: free from a charge or accusation; discharge from a duty; conduct (oneself) in a specified manner",
"word": "acquittal"
}, {
"meaning": "bitter (to the taste or smell); sharp; bitterly pungent",
"word": "acrid"
}, {
"meaning": "stinging; caustic; bitter in words or manner; N. acrimony: bitter ill-natured animosity in speech or behavior",
"word": "acrimonious"
}, {
"meaning": "fear of heights",
"word": "acrophobia"
}, {
"meaning": "calculating; pertaining to insurance statistics",
"word": "actuarial"
}, {
"meaning": "someone who advises insurance companies",
"word": "actuary"
}, {
"meaning": "motivate; activate; cause to act",
"word": "actuate"
}, {
"meaning": "sharpness (of mind or senses of sight or hearing)",
"word": "acuity"
}, {
"meaning": "mental keenness; sharpness of judgment; ability to judge quickly and well; Ex. business acumen",
"word": "acumen"
}, {
"meaning": "(of the senses) sharp; quickly perceptive; keen; penetrating; brief and severe; Ex. acute sense of smell/analysis/pain",
"word": "acute"
}, {
"meaning": "wise saying; proverb",
"word": "adage"
}, {
"meaning": "adage; someone or something well known for notoriety; ADJ. proverbial: of a proverb; widely known; ADV. proverbially",
"word": "proverb"
}, {
"meaning": "hard; inflexible",
"word": "adamant"
}, {
"meaning": "make or become suitable for a specific use; alter; modify; adjust; N. adaptation: act of adapting; composition recast into a new form; Ex. The play is an adaption of a short novel.",
"word": "adapt"
}, {
"meaning": "addition; appendix to book; something that is added (as at the end of a speech or book)",
"word": "addendum"
}, {
"meaning": "compulsive habitual need",
"word": "addiction"
}, {
"meaning": "make or become confused; muddle; drive crazy; become rotten (egg)",
"word": "addle"
}, {
"meaning": "direct a speech to; speak to; deal with or discuss; direct one's efforts or attention to; make with a destination; N: formal speech",
"word": "address"
}, {
"meaning": "expert at; very skilled",
"word": "adept"
}, {
"meaning": "stick fast; be a devotd follower; N. adhesion: adhering; devotion; loyality",
"word": "adhere"
}, {
"meaning": "supporter; follower",
"word": "adherent"
}, {
"meaning": "adjoining; neighboring; close by",
"word": "adjacent"
}, {
"meaning": "something attached to but holding an inferior position",
"word": "adjunct"
}, {
"meaning": "solemn urging; V. adjure: entreat earnestly; enjoin solemnly",
"word": "adjuration"
}, {
"meaning": "staff officer assisting the commander; assistant",
"word": "adjutant"
}, {
"meaning": "warn or speak to with gentle disapproval; reprove",
"word": "admonish"
}, {
"meaning": "decorate",
"word": "adorn"
}, {
"meaning": "skillful (in using mind or hand)",
"word": "adroit"
}, {
"meaning": "flattery; admiration that is more than is necessary or deserved",
"word": "adulation"
}, {
"meaning": "make impure or of poorer quality by adding inferior or tainted(contaminated) substances",
"word": "adulterate"
}, {
"meaning": "arrival",
"word": "advent"
}, {
"meaning": "accidental; casual; happening by chance",
"word": "adventitious"
}, {
"meaning": "opponent; enemy",
"word": "adversary"
}, {
"meaning": "going against; opposing; unfavorable; hostile",
"word": "adverse"
}, {
"meaning": "great hardship or affliction; misfortune; calamitous event",
"word": "adversity"
}, {
"meaning": "refer",
"word": "advert"
}, {
"meaning": "support; active pleading on behalf of someone or something",
"word": "advocacy"
}, {
"meaning": "speak in favor of; support (an idea or plan); urge; plead for",
"word": "advocate"
}, {
"meaning": "shield; protection; defense",
"word": "aegis"
}, {
"meaning": "nest of a large bird of prey",
"word": "aerie(aery,eyrie,eyry)"
}, {
"meaning": "artistic; dealing with or capable of appreciating the beautiful (of a person or building); CF. aesthete; CF. aesthetics",
"word": "aesthetic"
}, {
"meaning": "easily approachable; easy to talk to; warmly friendly",
"word": "affable"
}, {
"meaning": "artificial; pretended",
"word": "affected"
}, {
"meaning": "written statement made under oath (for use as proof in a court of law)",
"word": "affidavit"
}, {
"meaning": "joining; associating with",
"word": "affiliation"
}, {
"meaning": "feeling of kinship; similarity; Ex. strong affinity for her; Ex. many affinities between two languages",
"word": "affinity"
}, {
"meaning": "positive assertion; confirmation; solemn pledge by one who refuses to take an oath; V. affirm; ADJ. affirmative; CF. affirmative action: positive discrimination",
"word": "affirmation"
}, {
"meaning": "state of distress; trial; cause of distress or suffering; V. afflict: inflict grievous suffering on",
"word": "affliction"
}, {
"meaning": "abundance; wealth",
"word": "affluence"
}, {
"meaning": "insult; offense; intentional act of disrespect; V: insult or hurt the feelings of intentionally",
"word": "affront"
}, {
"meaning": "openmouthed",
"word": "agape"
}, {
"meaning": "items of business at a meeting",
"word": "agenda"
}, {
"meaning": "collection; heap; V. agglomerate: gather into a rounded mass; N. aggolmeate: jumbled mass; heap",
"word": "agglomeration"
}, {
"meaning": "make greater; increase in power, wealth, rank, or honor; N. aggrandizement",
"word": "aggrandize"
}, {
"meaning": "sum; total; ADJ. V: gather into a mass or whole; accumulate; add up to; Ex. aggregate 100 dollars",
"word": "aggregate"
}, {
"meaning": "filled with great surprise or fear; horrified",
"word": "aghast"
}, {
"meaning": "nimbleness; ability to move quickly",
"word": "agility"
}, {
"meaning": "stir up; disturb",
"word": "agitate"
}, {
"meaning": "one who is skeptical of the existence or knowability of a god or any ultimate reality",
"word": "agnostic"
}, {
"meaning": "highly excited; intensely curious",
"word": "agog"
}, {
"meaning": "pertaining to land or its cultivation; Ex. agrarian reform",
"word": "agrarian"
}, {
"meaning": "cheerful promptness without reluctance",
"word": "alacrity"
}, {
"meaning": "medieval chemistry",
"word": "alchemy"
}, {
"meaning": "nook; recess",
"word": "alcove"
}, {
"meaning": "an assumed name esp. by a criminal (usually to mislead people); ADV. alias",
"word": "alias"
}, {
"meaning": "make unfriendly or hostile; estrange; separate; change the ownership of",
"word": "alienate"
}, {
"meaning": "supplying nourishment",
"word": "alimentary"
}, {
"meaning": "payments made regularly to an ex-spouse after divorce",
"word": "alimony"
}, {
"meaning": "calm; pacify",
"word": "allay"
}, {
"meaning": "state without proof",
"word": "allege"
}, {
"meaning": "loyalty",
"word": "allegiance"
}, {
"meaning": "story, play, or picture in which characters are used as symbols; fable",
"word": "allegory"
}, {
"meaning": "relieve (pain)",
"word": "alleviate"
}, {
"meaning": "repetition of beginning sound in poetry",
"word": "alliteration"
}, {
"meaning": "assign; set apart for a particular purpose",
"word": "allocate"
}, {
"meaning": "mixture as of metals; something added that lowers in value or purity; V: mix; make less pure; lower in value or quality; spoil; CF. unalloyed: not in mixture with other maetals; pure; complete; unqualified; Ex. unalloyed happiness",
"word": "alloy"
}, {
"meaning": "refer indirectly; N. allusion: indirect reference",
"word": "allude"
}, {
"meaning": "entice; attract; tempt",
"word": "allure"
}, {
"meaning": "apparatus for making sounds; womanlike creature",
"word": "siren"
}, {
"meaning": "pertaining to soil deposits left by running water",
"word": "alluvial"
}, {
"meaning": "apart; not open in one's relationship with other people; reserved; ADV.",
"word": "aloof"
}, {
"meaning": "upward; high up in the air",
"word": "aloft"
}, {
"meaning": "noisy quarrel",
"word": "altercation"
}, {
"meaning": "unselfishly generous; concerned for others; N. altiruism: unselfish concern for the welfare of others; unselfishness; OP. egoism",
"word": "altruistic"
}, {
"meaning": "(of societies or groups) combine; unite in one body",
"word": "amalgamate"
}, {
"meaning": "combination of different things; mixture of metals (containing mercury) used for filling holes in teeth",
"word": "amalgam"
}, {
"meaning": "collect (gradually, in a very large amount)",
"word": "amass"
}, {
"meaning": "female warrior",
"word": "amazon"
}, {
"meaning": "capable of using either hand with equal ease",
"word": "ambidextrous"
}, {
"meaning": "environment; atmosphere; Ex. restraurant with a pleasant ambience; ADJ. ambient: completely surrounding; Ex. ambient temperature",
"word": "ambience"
}, {
"meaning": "unclear or doubtful in meaning; having more than one possible interpretation",
"word": "ambiguous"
}, {
"meaning": "the state of having contradictory or conflicting emotional attitudes or opinions",
"word": "ambivalence"
}, {
"meaning": "walking at an easy unhurried pace; V: walk slowly and aimlessly",
"word": "amble"
}, {
"meaning": "food of the gods",
"word": "ambrosia"
}, {
"meaning": "drink of the gods; sweet liquid collected by bees",
"word": "nectar"
}, {
"meaning": "able to walk",
"word": "ambulatory"
}, {
"meaning": "improve",
"word": "ameliorate"
}, {
"meaning": "obedient; compliant; readily managed; responsive; willing to be led; answerable or accountable legally; responsible; able to be tested by; Ex. amenable to sensible suggestions; Ex. He is very amenable; Ex. amenable to the usual tests",
"word": "amenable"
}, {
"meaning": "correct; change ; generally for the better",
"word": "amend"
}, {
"meaning": "convenient features that helps to make life pleasant; social courtesies",
"word": "amenities"
}, {
"meaning": "agreeable; lovable; warmly friendly",
"word": "amiable"
}, {
"meaning": "peaceful; politely friendly; not quarrelsome; Ex. amicable settlement",
"word": "amicable"
}, {
"meaning": "wrong; faulty; Ex. something amiss; ADV.",
"word": "amiss"
}, {
"meaning": "friendship; peaceful relationship as between nations",
"word": "amity"
}, {
"meaning": "loss of memory",
"word": "amnesia"
}, {
"meaning": "pardon (allowed by government to political criminals)",
"word": "amnesty"
}, {
"meaning": "nonmoral; having no understanding of right and wrong",
"word": "amoral"
}, {
"meaning": "moved by sexual love; loving; of sexual love; Ex. amorous advances",
"word": "amorous"
}, {
"meaning": "formless; lacking shape or definition",
"word": "amorphous"
}, {
"meaning": "able to live both on land and in water; N.",
"word": "amphibian"
}, {
"meaning": "oval building with tiers of seats; CF. arena",
"word": "amphitheater"
}, {
"meaning": "enough; abundant; spacious; large in size; Ex. ample opportunity/garden; N. amplitude: quality of being ample; abundance; largeness of space",
"word": "ample"
}, {
"meaning": "increase in size or effect; expand; broaden or clarify by expanding; intensify; make stronger; Ex. amplify one's remarks with a graph",
"word": "amplify"
}, {
"meaning": "cut off part of body; prune (a limb)",
"word": "amputate"
}, {
"meaning": "in a state of rage; Ex. run amok",
"word": "amok(amuck)"
}, {
"meaning": "charm; talisman; an object worn believed to protect against evil, bad luck",
"word": "amulet"
}, {
"meaning": "an error involving time in a story; something or someone misplaced in time; ADJ. anachronistic",
"word": "anachronism"
}, {
"meaning": "causing insensitivity to pain; N.",
"word": "analgesic"
}, {
"meaning": "condition of being unable to feel pain",
"word": "analgesia"
}, {
"meaning": "comparable; similar",
"word": "analogous"
}, {
"meaning": "similarity; parallelism; comparing two similar things",
"word": "analogy"
}, {
"meaning": "person who seeks to overturn the established government; advocate of abolishing authority",
"word": "anarchist"
}, {
"meaning": "absence of governing body; state of disorder",
"word": "anarchy"
}, {
"meaning": "solemn curse; someone or something regarded as a curse; V. anathematize",
"word": "anathema"
}, {
"meaning": "family descent; ADJ. ancestral",
"word": "ancestry"
}, {
"meaning": "secure or fasten firmly; be fixed in place; N. anchorage",
"word": "anchor"
}, {
"meaning": "serving as an aid or accessory; auxiliary; N.",
"word": "ancillary"
}, {
"meaning": "short story of an amusing or interesting event",
"word": "anecdote"
}, {
"meaning": "condition in which blood lacks red corpuscles; ADJ. anemic",
"word": "anemia"
}, {
"meaning": "substance that removes sensation with or without loss of consciousness; N. anesthesia",
"word": "anesthetic"
}, {
"meaning": "acute pain; extreme suffering",
"word": "anguish"
}, {
"meaning": "sharp-cornered; having an angle; not rounded (body); bony; lean; gaunt; stiff in manner",
"word": "angular"
}, {
"meaning": "critical remark; V. animadvert: comment critically with disapproval",
"word": "animadversion"
}, {
"meaning": "lively; spirited",
"word": "animated"
}, {
"meaning": "active enmity",
"word": "animosity"
}, {
"meaning": "hostile feeling or intent; animosity; hostility; disposition",
"word": "animus"
}, {
"meaning": "records arranged in yearly parts; history",
"word": "annals"
}, {
"meaning": "reduce brittleness and improve toughness by heating and cooling (metal or glass)",
"word": "anneal"
}, {
"meaning": "attach; add to a large thing; take possession of; incorporate (territory) into a larger existing political unit (by force); N: building added to a large one",
"word": "annex"
}, {
"meaning": "destroy",
"word": "annihilate"
}, {
"meaning": "comment; make explanatory notes",
"word": "annotate"
}, {
"meaning": "yearly allowance",
"word": "annuity"
}, {
"meaning": "make void",
"word": "annul"
}, {
"meaning": "run away secretly with the intention of getting married",
"word": "elope"
}, {
"meaning": "drug that relieves pain or trouble; opiate; ADJ. Ex. anodyne statement",
"word": "anodyne"
}, {
"meaning": "consecrate; put oil on (in a religious ceremony)",
"word": "anoint"
}, {
"meaning": "abnormal; irregular",
"word": "anomalous"
}, {
"meaning": "irregularity",
"word": "anomaly"
}, {
"meaning": "state of being nameless; anonymousness; ADJ. anonymous",
"word": "anonymity"
}, {
"meaning": "hostility; active opposition; V. antagonize: cause to become an enemy; N. antagonist: person who is opposed to another; opponent; adversary; principal character in oppostion to the protagonist",
"word": "antagonism"
}, {
"meaning": "precede",
"word": "antecede"
}, {
"meaning": "preceding events that influence what comes later; ancestors or early background",
"word": "antecedents"
}, {
"meaning": "antiquated; extremely ancient",
"word": "antediluvian"
}, {
"meaning": "song of praise or patriotism; Ex. national anthem",
"word": "anthem"
}, {
"meaning": "book of literary selections by various authors; CF. omnibus",
"word": "anthology"
}, {
"meaning": "manlike; resembling a human being; N.",
"word": "anthropoid"
}, {
"meaning": "student of the history and science of humankind",
"word": "anthropologist"
}, {
"meaning": "having human form or characteristics",
"word": "anthropomorphic"
}, {
"meaning": "letdown in thought or emotion; something unexciting, ordinary, or disappointing coming after something important or exciting",
"word": "anticlimax"
}, {
"meaning": "remedy to counteract a poison or disease; Ex. antidote to the economic troubles",
"word": "antidote"
}, {
"meaning": "aversion; dislike or opposition",
"word": "antipathy"
}, {
"meaning": "obsolete; old-fashioned; outdated",
"word": "antiquated"
}, {
"meaning": "substance that prevents infection in a wound; ADJ.",
"word": "antiseptic"
}, {
"meaning": "contrast; direct opposite of or to; ADJ. antithetic or antithetical",
"word": "antithesis"
}, {
"meaning": "iron block used in hammering out metals",
"word": "anvil"
}, {
"meaning": "lack of caring; indifference; lack of concern or interest in important matters; Ex. He was sunk in apathy after his failure; ADJ. apathetic",
"word": "apathy"
}, {
"meaning": "imitate or mimic (a person's behavior or manner)",
"word": "ape"
}, {
"meaning": "opening; hole; adjustable opening in a camera that limits the amount of light",
"word": "aperture"
}, {
"meaning": "tip; summit; climax; highest point",
"word": "apex"
}, {
"meaning": "loss of speech due to injury or illness",
"word": "aphasia"
}, {
"meaning": "pithy maxim or saying; ADJ. aphoristic",
"word": "aphorism"
}, {
"meaning": "a place where bees are kept",
"word": "apiary"
}, {
"meaning": "box for bees; V: cause to go in a hive",
"word": "hive"
}, {
"meaning": "bee-keeping",
"word": "apiculture"
}, {
"meaning": "person who keeps bees",
"word": "apiarist"
}, {
"meaning": "poise; composure in difficult situations; assurance; self-confidence",
"word": "aplomb"
}, {
"meaning": "good judgment with composure; balance; V: place in a carefully balanced position",
"word": "poise"
}, {
"meaning": "prophetic; pertaining to revelations especially of disaster; N. apocalypse",
"word": "apocalyptic"
}, {
"meaning": "(of a story) widely believed but untrue",
"word": "apocryphal"
}, {
"meaning": "highest point; the point farthest from the earth; OP. perigee",
"word": "apogee"
}, {
"meaning": "having an aversion or lack of concern for political affairs",
"word": "apolitical"
}, {
"meaning": "one who writes in defense of a cause or institution; N. apologia",
"word": "apologist"
}, {
"meaning": "stroke; loss of consciousness caused by too much blood in the brain",
"word": "apoplexy"
}, {
"meaning": "one who abandons his religious faith or political beliefs; N. apostasy",
"word": "apostate"
}, {
"meaning": "druggist; pharmacist",
"word": "apothecary"
}, {
"meaning": "pithy, compact saying",
"word": "apothegm(apophthegm)"
}, {
"meaning": "elevation to godhood; an ideal example of something",
"word": "apotheosis"
}, {
"meaning": "dismay; shock deeply",
"word": "appall"
}, {
"meaning": "ghost; phantom",
"word": "apparition"
}, {
"meaning": "pacify or soothe; Ex. appease a crying baby; N. appeasement",
"word": "appease"
}, {
"meaning": "name; title",
"word": "appellation"
}, {
"meaning": "attach",
"word": "append"
}, {
"meaning": "diligent attention; diligence; V. apply oneself",
"word": "application"
}, {
"meaning": "appropriate; fitting",
"word": "apposite"
}, {
"meaning": "estimate value of; N. appraisal",
"word": "appraise"
}, {
"meaning": "be thankful for; increase in worth; be thoroughly conscious of; ADJ. appreciable: enough to be felt; Ex. appreciable difference",
"word": "appreciate"
}, {
"meaning": "arrest (a criminal); dread; perceive; N. apprehension",
"word": "apprehend"
}, {
"meaning": "fearful; discerning",
"word": "apprehensive"
}, {
"meaning": "inform",
"word": "apprise"
}, {
"meaning": "approval",
"word": "approbation"
}, {
"meaning": "acquire; take possession of for one's own use without permission; set aside for a particular purpose; allocate; CF. misappropriate",
"word": "appropriate"
}, {
"meaning": "subordinate possessions; something added to a more important thing",
"word": "appurtenances"
}, {
"meaning": "with reference to; regarding; Ex. remarks apropos (of) the present situation; ADJ. ADV.",
"word": "apropos"
}, {
"meaning": "fitness; talent",
"word": "aptitude"
}, {
"meaning": "curved; hooked; of or like an eagle; Ex. aquiline nose",
"word": "aquiline"
}, {
"meaning": "fit for growing crops; Ex. arable land",
"word": "arable"
}, {
"meaning": "person with power to decide a matter in dispute; judge who is in a position ot make influential judgments; Ex. supreme arbiter of fashion in beachware",
"word": "arbiter"
}, {
"meaning": "unreasonable or capricious; random; tyrannical; Ex. arbitrary ruler",
"word": "arbitrary"
}, {
"meaning": "act as judge (at the request of both sides)",
"word": "arbitrate"
}, {
"meaning": "place where different trees and shrubs are studied and exhibited",
"word": "arboretum"
}, {
"meaning": "of or living in trees",
"word": "arboreal"
}, {
"meaning": "a covered passageway usually lined with shops",
"word": "arcade"
}, {
"meaning": "esoteric; secret; mysterious; known only to the initiated; Ex. arcane ritual; Ex. arcane process closed to the uninitiated listener",
"word": "arcane"
}, {
"meaning": "study of artifacts and relics of early mankind",
"word": "archaeology"
}, {
"meaning": "antiquated; no longer used; belonging to the past; N.",
"word": "archaic"
}, {
"meaning": "prototype; primitive pattern",
"word": "archetype"
}, {
"meaning": "chief; first; Ex. archbishop",
"word": "arch-"
}, {
"meaning": "group of closely located islands",
"word": "archipelago"
}, {
"meaning": "public records; place where public records are kept",
"word": "archives"
}, {
"meaning": "heat; passion; zeal; ADJ. ardent",
"word": "ardor"
}, {
"meaning": "hard; strenuous; Ex. arduous work",
"word": "arduous"
}, {
"meaning": "slang; speech spoken by only a small group of people",
"word": "argot"
}, {
"meaning": "operatic solo; a song sung by one person in an opera or oratorio",
"word": "aria"
}, {
"meaning": "(of land) dry; barren; unproductive",
"word": "arid"
}, {
"meaning": "hereditary nobility; privileged class; government by nobility; N. aristocrat",
"word": "aristocracy"
}, {
"meaning": "fleet of warships",
"word": "armada"
}, {
"meaning": "fragrant; having a sweet smell; N. aroma: strong pleasant smell",
"word": "aromatic"
}, {
"meaning": "charge in court; indict",
"word": "arraign"
}, {
"meaning": "marshal; draw up in order; arrange in order; clothe splendidly; adorn; N: fine clothes; ordered group; Ex. in battle array",
"word": "array"
}, {
"meaning": "being in debt; money that should have been paid; work that should have been done",
"word": "arrears"
}, {
"meaning": "lacking rhythm or regularity; N. arrhythmia",
"word": "arrhythmic"
}, {
"meaning": "pride; haughtiness; ADJ. arrogant: unpleasantly self-important (with a strong confidence in one's own importance and a lack of respect for other people)",
"word": "arrogance"
}, {
"meaning": "gully; narrow channel formed by rainwater",
"word": "arroyo"
}, {
"meaning": "blood-vessel; CF. vein",
"word": "artery"
}, {
"meaning": "effective; distinct; expressing ideas clearly; having clear sounds; having joints; Ex. articulate speech; V: express thoughts and feeling clearly; pronounce clearly; unite by joints",
"word": "articulate"
}, {
"meaning": "storage place for military equipment",
"word": "arsenal"
}, {
"meaning": "object made by human beings, either hand-made or mass-produced",
"word": "artifacts"
}, {
"meaning": "deception; trickery",
"word": "artifice"
}, {
"meaning": "a manually skilled worker",
"word": "artisan"
}, {
"meaning": "without guile; open and honest",
"word": "artless"
}, {
"meaning": "controlling influence; position of controlling influence; CF. in the ascendant",
"word": "ascendancy"
}, {
"meaning": "find out for certain; make certain",
"word": "ascertain"
}, {
"meaning": "practicing self-denial; avoiding physical pleasures and comforts; austere; Ex. ascetic life of Buddhist monks; N. asceticism",
"word": "ascetic"
}, {
"meaning": "refer; attribute; assign",
"word": "ascribe"
}, {
"meaning": "preventing infection; having a cleansing effect",
"word": "aseptic"
}, {
"meaning": "ash-colored; deadly pale",
"word": "ashen"
}, {
"meaning": "stupid; Ex. asinine remarks",
"word": "asinine"
}, {
"meaning": "with a sideways or indirect look (with disapproval or distruct); Ex. look askance at",
"word": "askance"
}, {
"meaning": "crookedly; slanted; at an angle",
"word": "askew"
}, {
"meaning": "sharpness; roughness; severity (of temper or weather); Ex. asperities of a Russian winter",
"word": "asperity"
}, {
"meaning": "slanderous remark; Ex. cast aspersions on",
"word": "aspersion"
}, {
"meaning": "seeker after position or status",
"word": "aspirant"
}, {
"meaning": "seek to attain (position or status); long for; Ex. aspire to become president; Ex. aspire to/after the leadership",
"word": "aspire"
}, {
"meaning": "assault",
"word": "assail"
}, {
"meaning": "analyze (to discover what materials are present); evaluate (soil or ore)",
"word": "assay"
}, {
"meaning": "agree; accept; N. assessment",
"word": "assent"
}, {
"meaning": "state strongly or positively; demand recognition of (rights, claims, etc.); make a claim to (by forceful action); Ex. assert one's independence",
"word": "assert"
}, {
"meaning": "diligent",
"word": "assiduous"
}, {
"meaning": "absorb; take (food) into the body and digest it; understand (knowledge) completely and be able to use properly; cause to become homogeneous (the people of a country or race in the wasy of behaving or thinking)",
"word": "assimilate"
}, {
"meaning": "mak less severe; ease or lessen (pain); satisfy (hunger); soothe (anger)",
"word": "assuage"
}, {
"meaning": "something taken for granted; the taking over or taking possession of; Ex. her assumption of power; V. assume",
"word": "assumption"
}, {
"meaning": "a person who governs in place of a ruler who is ill, absent, or still a child; ADJ. Ex. the Prince regent",
"word": "regent"
}, {
"meaning": "firm statement that something is certainly true; promise or pledge; certainty; confidence in one's own ability; self-confidence; Ex. In spite of all his assurances, he did not come back; Ex. assurance of his loyalty; Ex. The teacher lacked assurance in fron of his class; V. assure; tell firmly with confidence; ensure; make (something) certain to heappen; make (someone) feel sure; give confidence to; ADJ. assured: self-assured; confident in one's own ability; showing certainty",
"word": "assurance"
}, {
"meaning": "small planet",
"word": "asteroid"
}, {
"meaning": "eye defect which prevents proper focus; OP. stigmatism",
"word": "astigmatism"
}, {
"meaning": "relating to the stars",
"word": "astral"
}, {
"meaning": "binding; causing contraction (stopping bleeding); harsh or severe; stringent; Ex. astringent criticism",
"word": "astringent"
}, {
"meaning": "enormously large or extensive",
"word": "astronomical"
}, {
"meaning": "wise; shrewd; keen; seeing quickly something that is to one's advantage",
"word": "astute"
}, {
"meaning": "into parts; apart; V. sunder",
"word": "asunder"
}, {
"meaning": "place of refuge or shelter; protection (religious or political)",
"word": "asylum"
}, {
"meaning": "not identical on both sides of a dividing central line",
"word": "asymmetric"
}, {
"meaning": "resemblance to remote ancestors rather than to parents; reversion to an earlier type; throwback; ADJ. atavistic",
"word": "atavism"
}, {
"meaning": "denying the existence of God; N. atheism",
"word": "atheistic"
}, {
"meaning": "make amends for; pay for; Ex. atone for",
"word": "atone"